blob: 4588ae6f7acd0fda38afa0fee51eb57ac4eb6fa6 [file] [log] [blame]
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +08001/*
2 * Copyright (C) 2011 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3 *
4 * Under GPLv2
5 */
6
Jean-Christophe PLAGNIOL-VILLARD8c3583b2011-04-23 22:12:57 +08007struct at91_init_soc {
Jean-Christophe PLAGNIOL-VILLARD92100c12011-04-23 15:28:34 +08008 unsigned int *default_irq_priority;
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +08009 void (*map_io)(void);
Jean-Christophe PLAGNIOL-VILLARDcfa5a1f2011-10-14 01:17:18 +080010 void (*ioremap_registers)(void);
Jean-Christophe PLAGNIOL-VILLARD51ddec72011-04-24 18:15:34 +080011 void (*register_clocks)(void);
Jean-Christophe PLAGNIOL-VILLARD46539372011-04-24 18:20:28 +080012 void (*init)(void);
Jean-Christophe PLAGNIOL-VILLARD21d08b92011-04-23 15:28:34 +080013};
14
Jean-Christophe PLAGNIOL-VILLARD8c3583b2011-04-23 22:12:57 +080015extern struct at91_init_soc at91_boot_soc;
16extern struct at91_init_soc at91cap9_soc;
17extern struct at91_init_soc at91rm9200_soc;
18extern struct at91_init_soc at91sam9260_soc;
19extern struct at91_init_soc at91sam9261_soc;
20extern struct at91_init_soc at91sam9263_soc;
21extern struct at91_init_soc at91sam9g45_soc;
22extern struct at91_init_soc at91sam9rl_soc;
23extern struct at91_init_soc at91sam9x5_soc;
24
25static inline int at91_soc_is_enabled(void)
26{
27 return at91_boot_soc.init != NULL;
28}
29
30#if !defined(CONFIG_ARCH_AT91CAP9)
31#define at91cap9_soc at91_boot_soc
32#endif
33
34#if !defined(CONFIG_ARCH_AT91RM9200)
35#define at91rm9200_soc at91_boot_soc
36#endif
37
38#if !(defined(CONFIG_ARCH_AT91SAM9260) || defined(CONFIG_ARCH_AT91SAM9G20))
39#define at91sam9260_soc at91_boot_soc
40#endif
41
42#if !(defined(CONFIG_ARCH_AT91SAM9261) || defined(CONFIG_ARCH_AT91SAM9G10))
43#define at91sam9261_soc at91_boot_soc
44#endif
45
46#if !defined(CONFIG_ARCH_AT91SAM9263)
47#define at91sam9263_soc at91_boot_soc
48#endif
49
50#if !defined(CONFIG_ARCH_AT91SAM9G45)
51#define at91sam9g45_soc at91_boot_soc
52#endif
53
54#if !defined(CONFIG_ARCH_AT91SAM9RL)
55#define at91sam9rl_soc at91_boot_soc
56#endif
57
58#if !defined(CONFIG_ARCH_AT91SAM9X5)
59#define at91sam9x5_soc at91_boot_soc
60#endif