Skip to content

Commit

Permalink
avr32: Fix GPIO initcall breakage
Browse files Browse the repository at this point in the history
Add essential system devices, including GPIO controllers, automatically
at core_initcall time. This ensures that the devices are there when the
PIO driver gets initialized at postcore_initcall, fixing a bug exposed
by commit d6634db "avr32: Use
platform_driver_probe for pio platform driver".

Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
  • Loading branch information
Haavard Skinnemoen committed Oct 23, 2008
1 parent e3f91ca commit e82c610
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
2 changes: 0 additions & 2 deletions arch/avr32/boards/atngw100/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,6 @@ static int __init atngw100_init(void)
* reserve any pins for it.
*/

at32_add_system_devices();

at32_add_device_usart(0);

set_hw_addr(at32_add_device_eth(0, &eth_data[0]));
Expand Down
2 changes: 0 additions & 2 deletions arch/avr32/boards/atstk1000/atstk1002.c
Original file line number Diff line number Diff line change
Expand Up @@ -305,8 +305,6 @@ static int __init atstk1002_init(void)
at32_reserve_pin(GPIO_PIN_PE(15)); /* DATA[31] */
at32_reserve_pin(GPIO_PIN_PE(26)); /* SDCS */

at32_add_system_devices();

#ifdef CONFIG_BOARD_ATSTK1006
smc_set_timing(&nand_config, &nand_timing);
smc_set_configuration(3, &nand_config);
Expand Down
2 changes: 0 additions & 2 deletions arch/avr32/boards/atstk1000/atstk1003.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,6 @@ static int __init atstk1003_init(void)
at32_reserve_pin(GPIO_PIN_PE(15)); /* DATA[31] */
at32_reserve_pin(GPIO_PIN_PE(26)); /* SDCS */

at32_add_system_devices();

#ifdef CONFIG_BOARD_ATSTK100X_SW2_CUSTOM
at32_add_device_usart(1);
#else
Expand Down
2 changes: 0 additions & 2 deletions arch/avr32/boards/atstk1000/atstk1004.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,6 @@ void __init setup_board(void)

static int __init atstk1004_init(void)
{
at32_add_system_devices();

#ifdef CONFIG_BOARD_ATSTK100X_SW2_CUSTOM
at32_add_device_usart(1);
#else
Expand Down
5 changes: 4 additions & 1 deletion arch/avr32/mach-at32ap/at32ap700x.c
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ static struct resource pio4_resource[] = {
DEFINE_DEV(pio, 4);
DEV_CLK(mck, pio4, pba, 14);

void __init at32_add_system_devices(void)
static int __init system_device_init(void)
{
platform_device_register(&at32_pm0_device);
platform_device_register(&at32_intc0_device);
Expand All @@ -832,7 +832,10 @@ void __init at32_add_system_devices(void)
platform_device_register(&pio2_device);
platform_device_register(&pio3_device);
platform_device_register(&pio4_device);

return 0;
}
core_initcall(system_device_init);

/* --------------------------------------------------------------------
* PSIF
Expand Down
10 changes: 8 additions & 2 deletions arch/avr32/mach-at32ap/include/mach/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,14 @@
*/
extern unsigned long at32_board_osc_rates[];

/* Add basic devices: system manager, interrupt controller, portmuxes, etc. */
void at32_add_system_devices(void);
/*
* This used to add essential system devices, but this is now done
* automatically. Please don't use it in new board code.
*/
static inline void __deprecated at32_add_system_devices(void)
{

}

#define ATMEL_MAX_UART 4
extern struct platform_device *atmel_default_console_device;
Expand Down

0 comments on commit e82c610

Please sign in to comment.