From fc0717dc30824a3e0b9115c44787af7483e5aaa7 Mon Sep 17 00:00:00 2001 From: Justin Waters Date: Wed, 30 Apr 2008 16:40:21 -0400 Subject: Add support for AT91SAM9G20-EK This patch adds support for the AT91SAM9G20-EK board. It comes from the patch u-boot-1.1.5_atmel_1.6.diff, courtesy of linux4sam.org. Signed-off-by: Justin Waters --- include/asm-arm/arch-at91sam926x/hardware.h | 2 +- include/asm-arm/mach-types.h | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) (limited to 'include/asm-arm') diff --git a/include/asm-arm/arch-at91sam926x/hardware.h b/include/asm-arm/arch-at91sam926x/hardware.h index ff5b3246f2..044acd26fe 100644 --- a/include/asm-arm/arch-at91sam926x/hardware.h +++ b/include/asm-arm/arch-at91sam926x/hardware.h @@ -23,7 +23,7 @@ #include -#ifdef CONFIG_AT91SAM9260EK +#if defined(CONFIG_AT91SAM9260EK) || defined(CONFIG_AT91SAM9G20EK) #ifndef __ASSEMBLY__ #include #else diff --git a/include/asm-arm/mach-types.h b/include/asm-arm/mach-types.h index 5fd67438b4..c32923200e 100644 --- a/include/asm-arm/mach-types.h +++ b/include/asm-arm/mach-types.h @@ -741,6 +741,7 @@ extern unsigned int __machine_arch_type; #define MACH_TYPE_AT91SAM9260EK 1099 #define MACH_TYPE_AT91SAM9263EK 1202 #define MACH_TYPE_AT91SAM9RLEK 1326 +#define MACH_TYPE_AT91SAM9G20EK 1624 #ifdef CONFIG_ARCH_EBSA110 # ifdef machine_arch_type @@ -9454,6 +9455,18 @@ extern unsigned int __machine_arch_type; # define machine_is_at91sam9rlek() (0) #endif +#ifdef CONFIG_MACH_AT91SAM9G20EK +# ifdef machine_arch_type +# undef machine_arch_type +# define machine_arch_type __machine_arch_type +# else +# define machine_arch_type MACH_TYPE_AT91SAM9G20EK +# endif +# define machine_is_at91sam9g20ek() (machine_arch_type == MACH_TYPE_AT91SAM9G20EK) +#else +# define machine_is_at91sam9g20ek() (0) +#endif + /* * These have not yet been registered */ -- cgit v1.2.3