diff options
author | Peng Fan <peng.fan@nxp.com> | 2016-06-30 15:36:51 +0800 |
---|---|---|
committer | Peng Fan <peng.fan@nxp.com> | 2016-10-11 12:53:47 +0800 |
commit | e566b248c710776541d4ab884f6ddd352d4fe5ea (patch) | |
tree | d4a29469ca848a35c4e9ee9c20ce627c303d98e2 /arch | |
parent | 697f9ffc0eea9facf2fdaf596f008560db42ea7d (diff) | |
download | u-boot-imx-e566b248c710776541d4ab884f6ddd352d4fe5ea.zip u-boot-imx-e566b248c710776541d4ab884f6ddd352d4fe5ea.tar.gz u-boot-imx-e566b248c710776541d4ab884f6ddd352d4fe5ea.tar.bz2 |
MLK-13307-1 imx: Add MX6SLL CPU type
Add i.MX6SLL CPU type.
MXC_CPU_MX6D is not a real value in chip, so change it to 0x6A.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/imx-common/cpu.c | 2 | ||||
-rw-r--r-- | arch/arm/include/asm/arch-imx/cpu.h | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/imx-common/cpu.c b/arch/arm/imx-common/cpu.c index a8a015d..2272d2d 100644 --- a/arch/arm/imx-common/cpu.c +++ b/arch/arm/imx-common/cpu.c @@ -155,6 +155,8 @@ const char *get_imx_type(u32 imxtype) return "6DL"; /* Dual Lite version of the mx6 */ case MXC_CPU_MX6SOLO: return "6SOLO"; /* Solo version of the mx6 */ + case MXC_CPU_MX6SLL: + return "6SLL"; /* Solo-Lite-Lite version of the mx6 */ case MXC_CPU_MX6SL: return "6SL"; /* Solo-Lite version of the mx6 */ case MXC_CPU_MX6SX: diff --git a/arch/arm/include/asm/arch-imx/cpu.h b/arch/arm/include/asm/arch-imx/cpu.h index c0f6c0e..5a663c0 100644 --- a/arch/arm/include/asm/arch-imx/cpu.h +++ b/arch/arm/include/asm/arch-imx/cpu.h @@ -19,7 +19,8 @@ #define MXC_CPU_MX6UL 0x64 #define MXC_CPU_MX6ULL 0x65 #define MXC_CPU_MX6SOLO 0x66 /* dummy */ -#define MXC_CPU_MX6D 0x67 +#define MXC_CPU_MX6SLL 0x67 +#define MXC_CPU_MX6D 0x6A #define MXC_CPU_MX6DP 0x68 #define MXC_CPU_MX6QP 0x69 #define MXC_CPU_MX7D 0x72 |