Jean-Christophe PLAGNIOL-VILLARD | 21d08b9 | 2011-04-23 15:28:34 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> |
| 3 | * |
| 4 | * Under GPLv2 |
| 5 | */ |
| 6 | |
Jean-Christophe PLAGNIOL-VILLARD | 8c3583b | 2011-04-23 22:12:57 +0800 | [diff] [blame] | 7 | struct at91_init_soc { |
Jean-Christophe PLAGNIOL-VILLARD | 8d39e0fd0 | 2012-08-16 17:36:55 +0800 | [diff] [blame] | 8 | int builtin; |
Jean-Christophe PLAGNIOL-VILLARD | 21d08b9 | 2011-04-23 15:28:34 +0800 | [diff] [blame] | 9 | void (*map_io)(void); |
Jean-Christophe PLAGNIOL-VILLARD | 4653937 | 2011-04-24 18:20:28 +0800 | [diff] [blame] | 10 | void (*init)(void); |
Jean-Christophe PLAGNIOL-VILLARD | 21d08b9 | 2011-04-23 15:28:34 +0800 | [diff] [blame] | 11 | }; |
| 12 | |
Jean-Christophe PLAGNIOL-VILLARD | 8c3583b | 2011-04-23 22:12:57 +0800 | [diff] [blame] | 13 | extern struct at91_init_soc at91_boot_soc; |
Jean-Christophe PLAGNIOL-VILLARD | 8c3583b | 2011-04-23 22:12:57 +0800 | [diff] [blame] | 14 | extern struct at91_init_soc at91rm9200_soc; |
| 15 | extern struct at91_init_soc at91sam9260_soc; |
| 16 | extern struct at91_init_soc at91sam9261_soc; |
| 17 | extern struct at91_init_soc at91sam9263_soc; |
| 18 | extern struct at91_init_soc at91sam9g45_soc; |
| 19 | extern struct at91_init_soc at91sam9rl_soc; |
| 20 | extern struct at91_init_soc at91sam9x5_soc; |
Hong Xu | 0205968 | 2012-04-17 14:26:30 +0800 | [diff] [blame] | 21 | extern struct at91_init_soc at91sam9n12_soc; |
Ludovic Desroches | 8f4b479 | 2013-03-22 13:24:12 +0000 | [diff] [blame] | 22 | extern struct at91_init_soc sama5d3_soc; |
Nicolas Ferre | 2dc850b | 2014-09-15 18:15:54 +0200 | [diff] [blame] | 23 | extern struct at91_init_soc sama5d4_soc; |
Jean-Christophe PLAGNIOL-VILLARD | 8c3583b | 2011-04-23 22:12:57 +0800 | [diff] [blame] | 24 | |
Jean-Christophe PLAGNIOL-VILLARD | 8d39e0fd0 | 2012-08-16 17:36:55 +0800 | [diff] [blame] | 25 | #define AT91_SOC_START(_name) \ |
Ludovic Desroches | 84ddb08 | 2013-03-22 13:24:09 +0000 | [diff] [blame] | 26 | struct at91_init_soc __initdata _name##_soc \ |
Jean-Christophe PLAGNIOL-VILLARD | 8d39e0fd0 | 2012-08-16 17:36:55 +0800 | [diff] [blame] | 27 | __used \ |
| 28 | = { \ |
| 29 | .builtin = 1, \ |
| 30 | |
| 31 | #define AT91_SOC_END \ |
| 32 | }; |
| 33 | |
Jean-Christophe PLAGNIOL-VILLARD | 8c3583b | 2011-04-23 22:12:57 +0800 | [diff] [blame] | 34 | static inline int at91_soc_is_enabled(void) |
| 35 | { |
Jean-Christophe PLAGNIOL-VILLARD | 8d39e0fd0 | 2012-08-16 17:36:55 +0800 | [diff] [blame] | 36 | return at91_boot_soc.builtin; |
Jean-Christophe PLAGNIOL-VILLARD | 8c3583b | 2011-04-23 22:12:57 +0800 | [diff] [blame] | 37 | } |
| 38 | |
Jean-Christophe PLAGNIOL-VILLARD | 1e3ce2b | 2012-04-06 11:51:50 +0800 | [diff] [blame] | 39 | #if !defined(CONFIG_SOC_AT91RM9200) |
Jean-Christophe PLAGNIOL-VILLARD | 8c3583b | 2011-04-23 22:12:57 +0800 | [diff] [blame] | 40 | #define at91rm9200_soc at91_boot_soc |
| 41 | #endif |
| 42 | |
Jean-Christophe PLAGNIOL-VILLARD | 1e3ce2b | 2012-04-06 11:51:50 +0800 | [diff] [blame] | 43 | #if !defined(CONFIG_SOC_AT91SAM9260) |
Jean-Christophe PLAGNIOL-VILLARD | 8c3583b | 2011-04-23 22:12:57 +0800 | [diff] [blame] | 44 | #define at91sam9260_soc at91_boot_soc |
| 45 | #endif |
| 46 | |
Jean-Christophe PLAGNIOL-VILLARD | 1e3ce2b | 2012-04-06 11:51:50 +0800 | [diff] [blame] | 47 | #if !defined(CONFIG_SOC_AT91SAM9261) |
Jean-Christophe PLAGNIOL-VILLARD | 8c3583b | 2011-04-23 22:12:57 +0800 | [diff] [blame] | 48 | #define at91sam9261_soc at91_boot_soc |
| 49 | #endif |
| 50 | |
Jean-Christophe PLAGNIOL-VILLARD | 1e3ce2b | 2012-04-06 11:51:50 +0800 | [diff] [blame] | 51 | #if !defined(CONFIG_SOC_AT91SAM9263) |
Jean-Christophe PLAGNIOL-VILLARD | 8c3583b | 2011-04-23 22:12:57 +0800 | [diff] [blame] | 52 | #define at91sam9263_soc at91_boot_soc |
| 53 | #endif |
| 54 | |
Jean-Christophe PLAGNIOL-VILLARD | 1e3ce2b | 2012-04-06 11:51:50 +0800 | [diff] [blame] | 55 | #if !defined(CONFIG_SOC_AT91SAM9G45) |
Jean-Christophe PLAGNIOL-VILLARD | 8c3583b | 2011-04-23 22:12:57 +0800 | [diff] [blame] | 56 | #define at91sam9g45_soc at91_boot_soc |
| 57 | #endif |
| 58 | |
Jean-Christophe PLAGNIOL-VILLARD | 1e3ce2b | 2012-04-06 11:51:50 +0800 | [diff] [blame] | 59 | #if !defined(CONFIG_SOC_AT91SAM9RL) |
Jean-Christophe PLAGNIOL-VILLARD | 8c3583b | 2011-04-23 22:12:57 +0800 | [diff] [blame] | 60 | #define at91sam9rl_soc at91_boot_soc |
| 61 | #endif |
| 62 | |
Jean-Christophe PLAGNIOL-VILLARD | 1e3ce2b | 2012-04-06 11:51:50 +0800 | [diff] [blame] | 63 | #if !defined(CONFIG_SOC_AT91SAM9X5) |
Jean-Christophe PLAGNIOL-VILLARD | 8c3583b | 2011-04-23 22:12:57 +0800 | [diff] [blame] | 64 | #define at91sam9x5_soc at91_boot_soc |
| 65 | #endif |
Hong Xu | 0205968 | 2012-04-17 14:26:30 +0800 | [diff] [blame] | 66 | |
| 67 | #if !defined(CONFIG_SOC_AT91SAM9N12) |
| 68 | #define at91sam9n12_soc at91_boot_soc |
| 69 | #endif |
Ludovic Desroches | 8f4b479 | 2013-03-22 13:24:12 +0000 | [diff] [blame] | 70 | |
| 71 | #if !defined(CONFIG_SOC_SAMA5D3) |
| 72 | #define sama5d3_soc at91_boot_soc |
| 73 | #endif |
Nicolas Ferre | 2dc850b | 2014-09-15 18:15:54 +0200 | [diff] [blame] | 74 | |
| 75 | #if !defined(CONFIG_SOC_SAMA5D4) |
| 76 | #define sama5d4_soc at91_boot_soc |
| 77 | #endif |