diff options
author | Robby Cai <R63905@freescale.com> | 2012-08-12 21:58:48 +0800 |
---|---|---|
committer | Robby Cai <R63905@freescale.com> | 2012-08-14 14:07:04 +0800 |
commit | dedfb0b085e54f284d86d632974ab43e699a4efd (patch) | |
tree | 301182216ab5eeb1624679d5c82ea067fc4606f8 /include/asm-arm | |
parent | 4846133a1c76892e3485907fbdab0cd16446049f (diff) | |
download | u-boot-imx-dedfb0b085e54f284d86d632974ab43e699a4efd.zip u-boot-imx-dedfb0b085e54f284d86d632974ab43e699a4efd.tar.gz u-boot-imx-dedfb0b085e54f284d86d632974ab43e699a4efd.tar.bz2 |
ENGR00220161: imx6sl: Add MX6SL EVK Support
Add mx6sl evk board support
- copied from ARM2 board support
- added a new board revision
- removed unused boot device detection
Signed-off-by: Robby Cai <R63905@freescale.com>
Diffstat (limited to 'include/asm-arm')
-rw-r--r-- | include/asm-arm/mach-types.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/asm-arm/mach-types.h b/include/asm-arm/mach-types.h index 64ffb5a..2630bac 100644 --- a/include/asm-arm/mach-types.h +++ b/include/asm-arm/mach-types.h @@ -3259,6 +3259,7 @@ extern unsigned int __machine_arch_type; #define MACH_TYPE_MX6Q_ARM2 3837 #define MACH_TYPE_MX6Q_SABRESD 3980 #define MACH_TYPE_MX6SL_ARM2 4091 +#define MACH_TYPE_MX6SL_EVK 4307 #ifdef CONFIG_ARCH_EBSA110 # ifdef machine_arch_type @@ -42200,6 +42201,18 @@ extern unsigned int __machine_arch_type; # define machine_is_mx6q_sabresd() (0) #endif +#ifdef CONFIG_MACH_MX6SL_EVK +# ifdef machine_arch_type +# undef machine_arch_type +# define machine_arch_type __machine_arch_type +# else +# define machine_arch_type MACH_TYPE_MX6SL_EVK +# endif +# define machine_is_mx6sl_evk() (machine_arch_type == MACH_TYPE_MX6SL_EVK) +#else +# define machine_is_mx6sl_evk() (0) +#endif + /* * These have not yet been registered */ |