aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-at91/setup.c
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2012-03-02 14:16:27 -0500
committerJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2012-03-15 11:31:22 -0400
commitc8082d344ac4c05932fec1766e5e9ce72cf286ed (patch)
tree8a2a7a4b2a61b3780c669b916b33a0cde09a7722 /arch/arm/mach-at91/setup.c
parent21ea52aadd6296480baad3b04fef87230517b54c (diff)
ARM: at91: add RSTC (Reset Controller) dt support
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Acked-by: Rob Herring <rob.herring@calxeda.com> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Diffstat (limited to 'arch/arm/mach-at91/setup.c')
-rw-r--r--arch/arm/mach-at91/setup.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/setup.c b/arch/arm/mach-at91/setup.c
index d7abc25f6c64..3e48b59dfa74 100644
--- a/arch/arm/mach-at91/setup.c
+++ b/arch/arm/mach-at91/setup.c
@@ -287,8 +287,38 @@ void __init at91_ioremap_matrix(u32 base_addr)
287} 287}
288 288
289#if defined(CONFIG_OF) 289#if defined(CONFIG_OF)
290static struct of_device_id rstc_ids[] = {
291 { .compatible = "atmel,at91sam9260-rstc", .data = at91sam9_alt_restart },
292 { .compatible = "atmel,at91sam9g45-rstc", .data = at91sam9g45_restart },
293 { /*sentinel*/ }
294};
295
296static void at91_dt_rstc(void)
297{
298 struct device_node *np;
299 const struct of_device_id *of_id;
300
301 np = of_find_matching_node(NULL, rstc_ids);
302 if (!np)
303 panic("unable to find compatible rstc node in dtb\n");
304
305 at91_rstc_base = of_iomap(np, 0);
306 if (!at91_rstc_base)
307 panic("unable to map rstc cpu registers\n");
308
309 of_id = of_match_node(rstc_ids, np);
310 if (!of_id)
311 panic("AT91: rtsc no restart function availlable\n");
312
313 arm_pm_restart = of_id->data;
314
315 of_node_put(np);
316}
317
290void __init at91_dt_initialize(void) 318void __init at91_dt_initialize(void)
291{ 319{
320 at91_dt_rstc();
321
292 /* temporary until have the ramc binding*/ 322 /* temporary until have the ramc binding*/
293 at91_boot_soc.ioremap_registers(); 323 at91_boot_soc.ioremap_registers();
294 324