diff options
| author | Sedji Gaouaou <sedji.gaouaou@atmel.com> | 2009-07-09 10:16:29 +0200 | 
|---|---|---|
| committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-07-12 17:43:34 +0200 | 
| commit | 22ee647380c42f44528f99b7c1b423725e542102 (patch) | |
| tree | 20e092ef880553d89245d23adc2b1f6b43200f89 /include/asm-arm/arch-at91/hardware.h | |
| parent | c33c5990cec7ced9ef1ef148debbca34adafa12b (diff) | |
| download | olio-uboot-2014.01-22ee647380c42f44528f99b7c1b423725e542102.tar.xz olio-uboot-2014.01-22ee647380c42f44528f99b7c1b423725e542102.zip | |
at91: Introduction of at91sam9g45 SOC.
AT91sam9g45 series is an ARM 926ej-s SOC family clocked at 400/133MHz.
It embeds USB high speed host and device, LCD, DDR2 RAM, and a full set of
peripherals.
The first board that embeds at91sam9g45 chip is the AT91SAM9G45-EKES.
On the board you can find 2 USART, USB high speed,
a 480*272 LG lcd, ethernet, gpio/joystick/buttons.
Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
Diffstat (limited to 'include/asm-arm/arch-at91/hardware.h')
| -rw-r--r-- | include/asm-arm/arch-at91/hardware.h | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/include/asm-arm/arch-at91/hardware.h b/include/asm-arm/arch-at91/hardware.h index 870410645..c42709efc 100644 --- a/include/asm-arm/arch-at91/hardware.h +++ b/include/asm-arm/arch-at91/hardware.h @@ -37,6 +37,12 @@  #include <asm/arch/at91sam9rl.h>  #define AT91_BASE_SPI	AT91SAM9RL_BASE_SPI  #define AT91_ID_UHP	AT91SAM9RL_ID_UHP +#elif defined(CONFIG_AT91SAM9G45) || defined(CONFIG_AT91SAM9M10G45) +#include <asm/arch/at91sam9g45.h> +#define AT91_BASE_EMAC  AT91SAM9G45_BASE_EMAC +#define AT91_BASE_SPI   AT91SAM9G45_BASE_SPI0 +#define AT91_ID_UHP     AT91SAM9G45_ID_UHPHS +#define AT91_PMC_UHP    AT91SAM926x_PMC_UHP  #elif defined(CONFIG_AT91CAP9)  #include <asm/arch/at91cap9.h>  #define AT91_BASE_SPI	AT91CAP9_BASE_SPI0 |