Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 57940016 authored by Lee Jones's avatar Lee Jones Committed by Linus Walleij
Browse files

ARM: ux500: Fix u9540 booting issues



The u9540 stopped booting after the v3.7 merge window due to
a lack of common clk support and early PRCMU initialisation.
In this patch we rectify these issues, placing the u9540
development board back into a successfully booting state.

Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 5cc23666
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -71,13 +71,11 @@ void __init ux500_init_irq(void)
	 * Init clocks here so that they are available for system timer
	 * initialization.
	 */
	if (cpu_is_u8500_family())
	if (cpu_is_u8500_family() || cpu_is_u9540())
		db8500_prcmu_early_init();

	if (cpu_is_u8500_family())
	if (cpu_is_u8500_family() || cpu_is_u9540())
		u8500_clk_init();
	else if (cpu_is_u9540())
		u9540_clk_init();
	else if (cpu_is_u8540())
		u8540_clk_init();
}