mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-28 09:14:00 +00:00
ARM: imx legacy: kzm: move peripheral initialization to .init_late
The change moves some of peripheral registrations and initializations (all peripherals dependent on GPIOs) from .init_machine to .init_late level, this allows to safely shift the shared GPIO controller driver initialization level after init level of i.MX IOMUXC driver. The change is tested on qemu kzm target. Reported-by: Guenter Roeck <linux@roeck-us.net> Tested-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Vladimir Zapolskiy <vz@mleia.com> Signed-off-by: Shawn Guo <shawnguo@kernel.org>
This commit is contained in:
parent
29b4817d40
commit
4bc2e627c5
1 changed files with 7 additions and 2 deletions
|
@ -245,13 +245,17 @@ static void __init kzm_board_init(void)
|
||||||
|
|
||||||
mxc_iomux_setup_multiple_pins(kzm_pins,
|
mxc_iomux_setup_multiple_pins(kzm_pins,
|
||||||
ARRAY_SIZE(kzm_pins), "kzm");
|
ARRAY_SIZE(kzm_pins), "kzm");
|
||||||
kzm_init_ext_uart();
|
|
||||||
kzm_init_smsc9118();
|
|
||||||
kzm_init_imx_uart();
|
kzm_init_imx_uart();
|
||||||
|
|
||||||
pr_info("Clock input source is 26MHz\n");
|
pr_info("Clock input source is 26MHz\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void __init kzm_late_init(void)
|
||||||
|
{
|
||||||
|
kzm_init_ext_uart();
|
||||||
|
kzm_init_smsc9118();
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This structure defines static mappings for the kzm-arm11-01 board.
|
* This structure defines static mappings for the kzm-arm11-01 board.
|
||||||
*/
|
*/
|
||||||
|
@ -291,5 +295,6 @@ MACHINE_START(KZM_ARM11_01, "Kyoto Microcomputer Co., Ltd. KZM-ARM11-01")
|
||||||
.init_irq = mx31_init_irq,
|
.init_irq = mx31_init_irq,
|
||||||
.init_time = kzm_timer_init,
|
.init_time = kzm_timer_init,
|
||||||
.init_machine = kzm_board_init,
|
.init_machine = kzm_board_init,
|
||||||
|
.init_late = kzm_late_init,
|
||||||
.restart = mxc_restart,
|
.restart = mxc_restart,
|
||||||
MACHINE_END
|
MACHINE_END
|
||||||
|
|
Loading…
Add table
Reference in a new issue