diff options
author | Nancy Chen <Nancy.Chen@freescale.com> | 2012-01-23 05:39:32 -0600 |
---|---|---|
committer | Nancy Chen <Nancy.Chen@freescale.com> | 2012-01-24 10:08:28 -0600 |
commit | 23971b0a8f674460c367b9556bc3e4c95e16faeb (patch) | |
tree | e59ac3d6b2dbcc5e6d01cd020c8b192c07631fce /include/asm-arm | |
parent | 62ade1e4ba642f476d0f7a6f756d9e6f14d3c0bb (diff) | |
download | u-boot-imx-23971b0a8f674460c367b9556bc3e4c95e16faeb.zip u-boot-imx-23971b0a8f674460c367b9556bc3e4c95e16faeb.tar.gz u-boot-imx-23971b0a8f674460c367b9556bc3e4c95e16faeb.tar.bz2 |
ENGR00172343 Add suport for i.MX 6Q Sabre Smart Device
Add suport for i.MX 6Quad SABRE Smart Device.
Signed-off-by: Nancy Chen <Nancy.Chen@freescale.com>
Signed-off-by: Tony Lin <tony.lin@freescale.com>
Signed-off-by: Frank Li <Frank.Li@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 90cef6d..3a95ac8 100644 --- a/include/asm-arm/mach-types.h +++ b/include/asm-arm/mach-types.h @@ -3257,6 +3257,7 @@ extern unsigned int __machine_arch_type; #define MACH_TYPE_MX6Q_SABREAUTO 3529 #define MACH_TYPE_MX6Q_SABRELITE 3769 #define MACH_TYPE_MX6Q_ARM2 3837 +#define MACH_TYPE_MX6Q_SABRESD 3980 #ifdef CONFIG_ARCH_EBSA110 # ifdef machine_arch_type @@ -42186,6 +42187,18 @@ extern unsigned int __machine_arch_type; # define machine_is_mx6q_arm2() (0) #endif +#ifdef CONFIG_MACH_MX6Q_SABRESD +# ifdef machine_arch_type +# undef machine_arch_type +# define machine_arch_type __machine_arch_type +# else +# define machine_arch_type MACH_TYPE_MX6Q_SABRESD +# endif +# define machine_is_mx6q_sabresd() (machine_arch_type == MACH_TYPE_MX6Q_SABRESD) +#else +# define machine_is_mx6q_sabresd() (0) +#endif + /* * These have not yet been registered */ |