Merge branch 'async-scsi-resume' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux.git] / arch / arm / mach-at91 / board-dt-sam9.c
1 /*
2  *  Setup code for AT91SAM Evaluation Kits with Device Tree support
3  *
4  *  Copyright (C) 2011 Atmel,
5  *                2011 Nicolas Ferre <nicolas.ferre@atmel.com>
6  *
7  * Licensed under GPLv2 or later.
8  */
9
10 #include <linux/types.h>
11 #include <linux/init.h>
12 #include <linux/module.h>
13 #include <linux/gpio.h>
14 #include <linux/of.h>
15 #include <linux/of_irq.h>
16 #include <linux/clk-provider.h>
17
18 #include <asm/setup.h>
19 #include <asm/irq.h>
20 #include <asm/mach/arch.h>
21 #include <asm/mach/map.h>
22 #include <asm/mach/irq.h>
23
24 #include "at91_aic.h"
25 #include "board.h"
26 #include "generic.h"
27
28
29 static void __init sam9_dt_timer_init(void)
30 {
31 #if defined(CONFIG_COMMON_CLK)
32         of_clk_init(NULL);
33 #endif
34         at91sam926x_pit_init();
35 }
36
37 static const struct of_device_id irq_of_match[] __initconst = {
38
39         { .compatible = "atmel,at91rm9200-aic", .data = at91_aic_of_init },
40         { /*sentinel*/ }
41 };
42
43 static void __init at91_dt_init_irq(void)
44 {
45         of_irq_init(irq_of_match);
46 }
47
48 static const char *at91_dt_board_compat[] __initdata = {
49         "atmel,at91sam9",
50         NULL
51 };
52
53 DT_MACHINE_START(at91sam_dt, "Atmel AT91SAM (Device Tree)")
54         /* Maintainer: Atmel */
55         .init_time      = sam9_dt_timer_init,
56         .map_io         = at91_map_io,
57         .handle_irq     = at91_aic_handle_irq,
58         .init_early     = at91_dt_initialize,
59         .init_irq       = at91_dt_init_irq,
60         .dt_compat      = at91_dt_board_compat,
61 MACHINE_END