diff options
Diffstat (limited to 'arch/arm/mach-pxa/palmt5.c')
| -rw-r--r-- | arch/arm/mach-pxa/palmt5.c | 29 | 
1 files changed, 21 insertions, 8 deletions
diff --git a/arch/arm/mach-pxa/palmt5.c b/arch/arm/mach-pxa/palmt5.c index 0680f1a575a..30662363907 100644 --- a/arch/arm/mach-pxa/palmt5.c +++ b/arch/arm/mach-pxa/palmt5.c @@ -64,6 +64,7 @@ static unsigned long palmt5_pin_config[] __initdata = {  	GPIO29_AC97_SDATA_IN_0,  	GPIO30_AC97_SDATA_OUT,  	GPIO31_AC97_SYNC, +	GPIO95_AC97_nRESET,  	/* IrDA */  	GPIO40_GPIO,	/* ir disable */ @@ -72,7 +73,7 @@ static unsigned long palmt5_pin_config[] __initdata = {  	/* USB */  	GPIO15_GPIO,	/* usb detect */ -	GPIO95_GPIO,	/* usb power */ +	GPIO93_GPIO,	/* usb power */  	/* MATRIX KEYPAD */  	GPIO100_KP_MKIN_0 | WAKEUP_ON_LEVEL_HIGH, @@ -344,7 +345,7 @@ static struct pxaficp_platform_data palmt5_ficp_platform_data = {  static struct pxa2xx_udc_mach_info palmt5_udc_info __initdata = {  	.gpio_vbus		= GPIO_NR_PALMT5_USB_DETECT_N,  	.gpio_vbus_inverted	= 1, -	.gpio_pullup		= GPIO_NR_PALMT5_USB_POWER, +	.gpio_pullup		= GPIO_NR_PALMT5_USB_PULLUP,  	.gpio_pullup_inverted	= 0,  }; @@ -419,10 +420,22 @@ static struct wm97xx_batt_info wm97xx_batt_pdata = {  /******************************************************************************   * aSoC audio   ******************************************************************************/ -static struct palm27x_asoc_info palm27x_asoc_pdata = { +static struct palm27x_asoc_info palmt5_asoc_pdata = {  	.jack_gpio	= GPIO_NR_PALMT5_EARPHONE_DETECT,  }; +static pxa2xx_audio_ops_t palmt5_ac97_pdata = { +	.reset_gpio	= 95, +}; + +static struct platform_device palmt5_asoc = { +	.name = "palm27x-asoc", +	.id   = -1, +	.dev  = { +		.platform_data = &palmt5_asoc_pdata, +	}, +}; +  /******************************************************************************   * Framebuffer   ******************************************************************************/ @@ -485,14 +498,15 @@ static struct platform_device *devices[] __initdata = {  #endif  	&palmt5_backlight,  	&power_supply, +	&palmt5_asoc,  };  /* setup udc GPIOs initial state */  static void __init palmt5_udc_init(void)  { -	if (!gpio_request(GPIO_NR_PALMT5_USB_POWER, "UDC Vbus")) { -		gpio_direction_output(GPIO_NR_PALMT5_USB_POWER, 1); -		gpio_free(GPIO_NR_PALMT5_USB_POWER); +	if (!gpio_request(GPIO_NR_PALMT5_USB_PULLUP, "UDC Vbus")) { +		gpio_direction_output(GPIO_NR_PALMT5_USB_PULLUP, 1); +		gpio_free(GPIO_NR_PALMT5_USB_PULLUP);  	}  } @@ -503,12 +517,11 @@ static void __init palmt5_init(void)  	set_pxa_fb_info(&palmt5_lcd_screen);  	pxa_set_mci_info(&palmt5_mci_platform_data);  	palmt5_udc_init(); +	pxa_set_ac97_info(&palmt5_ac97_pdata);  	pxa_set_udc_info(&palmt5_udc_info); -	pxa_set_ac97_info(NULL);  	pxa_set_ficp_info(&palmt5_ficp_platform_data);  	pxa_set_keypad_info(&palmt5_keypad_platform_data);  	wm97xx_bat_set_pdata(&wm97xx_batt_pdata); -	palm27x_asoc_set_pdata(&palm27x_asoc_pdata);  	platform_add_devices(devices, ARRAY_SIZE(devices));  }  |