aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxime Ripard <maxime.ripard@free-electrons.com>2013-10-05 08:53:48 -0400
committerMaxime Ripard <maxime.ripard@free-electrons.com>2013-11-22 15:30:07 -0500
commit751b2ac4a21331cb353f2e6211d090f881b18bf5 (patch)
treee95b93a01c988da097621011405ef1ebec6398c8
parenta85d80b8eed0ef2a8db8e685d0c668d20ee59146 (diff)
ARM: sunxi: Register the A31 reset IP in init_time
The A31 has a reset IP that maintains a few other IPs in reset by default. Among these IPs are the UARTs, and most notably the timers. We thus need to register the reset driver before initializing the timers so that the reset timer can use the reset framework. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Acked-by: Philipp Zabel <p.zabel@pengutronix.de>
-rw-r--r--arch/arm/mach-sunxi/sunxi.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/mach-sunxi/sunxi.c b/arch/arm/mach-sunxi/sunxi.c
index 61d3a387f01c..594ac48fc029 100644
--- a/arch/arm/mach-sunxi/sunxi.c
+++ b/arch/arm/mach-sunxi/sunxi.c
@@ -10,6 +10,8 @@
10 * warranty of any kind, whether express or implied. 10 * warranty of any kind, whether express or implied.
11 */ 11 */
12 12
13#include <linux/clk-provider.h>
14#include <linux/clocksource.h>
13#include <linux/delay.h> 15#include <linux/delay.h>
14#include <linux/kernel.h> 16#include <linux/kernel.h>
15#include <linux/init.h> 17#include <linux/init.h>
@@ -132,8 +134,17 @@ static const char * const sun6i_board_dt_compat[] = {
132 NULL, 134 NULL,
133}; 135};
134 136
137extern void __init sun6i_reset_init(void);
138static void __init sun6i_timer_init(void)
139{
140 of_clk_init(NULL);
141 sun6i_reset_init();
142 clocksource_of_init();
143}
144
135DT_MACHINE_START(SUN6I_DT, "Allwinner sun6i (A31) Family") 145DT_MACHINE_START(SUN6I_DT, "Allwinner sun6i (A31) Family")
136 .init_machine = sunxi_dt_init, 146 .init_machine = sunxi_dt_init,
147 .init_time = sun6i_timer_init,
137 .dt_compat = sun6i_board_dt_compat, 148 .dt_compat = sun6i_board_dt_compat,
138 .restart = sun6i_restart, 149 .restart = sun6i_restart,
139MACHINE_END 150MACHINE_END