diff options
author | Peng Fan | 2016-12-11 19:24:20 +0800 |
---|---|---|
committer | Stefano Babic | 2016-12-16 11:38:24 +0100 |
commit | 7ce6d3c868407044703f93e315ea3b56fa80f7ff (patch) | |
tree | 60668691480fa70f8f2d0654bb66895cba4a3897 /arch/arm/imx-common | |
parent | faf1e62bf04b01dc7110a459f558aaf414bfcac0 (diff) |
imx: add i.MX 6SLL 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>
Cc: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'arch/arm/imx-common')
-rw-r--r-- | arch/arm/imx-common/cpu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/imx-common/cpu.c b/arch/arm/imx-common/cpu.c index 632facabd70..40fe813d290 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 "6SOLO"; /* Solo version of the mx6 */ case MXC_CPU_MX6SL: return "6SL"; /* Solo-Lite version of the mx6 */ + case MXC_CPU_MX6SLL: + return "6SLL"; /* SLL version of the mx6 */ case MXC_CPU_MX6SX: return "6SX"; /* SoloX version of the mx6 */ case MXC_CPU_MX6UL: |