2011-04-23 15:28:34 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
|
|
|
|
*
|
|
|
|
* Under GPLv2
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct at91_soc {
|
2011-04-23 15:28:34 +08:00
|
|
|
unsigned int *default_irq_priority;
|
2011-04-23 15:28:34 +08:00
|
|
|
void (*map_io)(void);
|
|
|
|
void (*init)(unsigned long main_clock);
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct at91_soc at91_boot_soc;
|
|
|
|
extern struct at91_soc at91cap9_soc;
|
|
|
|
extern struct at91_soc at91rm9200_soc;
|
|
|
|
extern struct at91_soc at91sam9260_soc;
|
|
|
|
extern struct at91_soc at91sam9261_soc;
|
|
|
|
extern struct at91_soc at91sam9263_soc;
|
|
|
|
extern struct at91_soc at91sam9g45_soc;
|
|
|
|
extern struct at91_soc at91sam9rl_soc;
|
|
|
|
extern struct at91_soc at91sam9x5_soc;
|