2 * Copyright (C) 2011 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9 unsigned int *default_irq_priority
;
11 void (*ioremap_registers
)(void);
12 void (*register_clocks
)(void);
16 extern struct at91_init_soc at91_boot_soc
;
17 extern struct at91_init_soc at91rm9200_soc
;
18 extern struct at91_init_soc at91sam9260_soc
;
19 extern struct at91_init_soc at91sam9261_soc
;
20 extern struct at91_init_soc at91sam9263_soc
;
21 extern struct at91_init_soc at91sam9g45_soc
;
22 extern struct at91_init_soc at91sam9rl_soc
;
23 extern struct at91_init_soc at91sam9x5_soc
;
24 extern struct at91_init_soc at91sam9n12_soc
;
26 #define AT91_SOC_START(_name) \
27 struct at91_init_soc __initdata at91##_name##_soc \
32 #define AT91_SOC_END \
35 static inline int at91_soc_is_enabled(void)
37 return at91_boot_soc
.builtin
;
40 #if !defined(CONFIG_SOC_AT91RM9200)
41 #define at91rm9200_soc at91_boot_soc
44 #if !defined(CONFIG_SOC_AT91SAM9260)
45 #define at91sam9260_soc at91_boot_soc
48 #if !defined(CONFIG_SOC_AT91SAM9261)
49 #define at91sam9261_soc at91_boot_soc
52 #if !defined(CONFIG_SOC_AT91SAM9263)
53 #define at91sam9263_soc at91_boot_soc
56 #if !defined(CONFIG_SOC_AT91SAM9G45)
57 #define at91sam9g45_soc at91_boot_soc
60 #if !defined(CONFIG_SOC_AT91SAM9RL)
61 #define at91sam9rl_soc at91_boot_soc
64 #if !defined(CONFIG_SOC_AT91SAM9X5)
65 #define at91sam9x5_soc at91_boot_soc
68 #if !defined(CONFIG_SOC_AT91SAM9N12)
69 #define at91sam9n12_soc at91_boot_soc