diff options
author | Ye.Li <B37916@freescale.com> | 2015-05-04 17:04:23 +0800 |
---|---|---|
committer | Ye.Li <B37916@freescale.com> | 2015-05-04 19:20:55 +0800 |
commit | e70b30f39df9e88c3e5f088145de8e441ee82593 (patch) | |
tree | e6234302d9247d9c26a6b755ad6c63bb2fc4888e /arch/arm/imx-common | |
parent | dd842f32b6d8d770e844790643ece352f92b8c5e (diff) | |
download | u-boot-imx-e70b30f39df9e88c3e5f088145de8e441ee82593.zip u-boot-imx-e70b30f39df9e88c3e5f088145de8e441ee82593.tar.gz u-boot-imx-e70b30f39df9e88c3e5f088145de8e441ee82593.tar.bz2 |
MLK-10808-1 imx: mx6ul: Add i.MX6UL CPU type
Add MXC_CPU_MX6UL for i.MX6UL CPU type which is got at runtime.
The 0x64 is defined as i.MX6Ul CPU type value in RM, but the value
has been occupied by i.MX6D as a dummy CPU type.
So we also need change i.MX6D to a invalid value 0x67.
Signed-off-by: Ye.Li <B37916@freescale.com>
Diffstat (limited to 'arch/arm/imx-common')
-rw-r--r-- | arch/arm/imx-common/cpu.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/imx-common/cpu.c b/arch/arm/imx-common/cpu.c index 7d0e5c0..8eb6a5a 100644 --- a/arch/arm/imx-common/cpu.c +++ b/arch/arm/imx-common/cpu.c @@ -2,7 +2,7 @@ * (C) Copyright 2007 * Sascha Hauer, Pengutronix * - * (C) Copyright 2009 Freescale Semiconductor, Inc. + * (C) Copyright 2009-2015 Freescale Semiconductor, Inc. * * SPDX-License-Identifier: GPL-2.0+ */ @@ -151,6 +151,8 @@ const char *get_imx_type(u32 imxtype) return "6SL"; /* Solo-Lite version of the mx6 */ case MXC_CPU_MX6SX: return "6SX"; /* SoloX version of the mx6 */ + case MXC_CPU_MX6UL: + return "6UL"; /* UL version of the mx6 */ case MXC_CPU_MX51: return "51"; case MXC_CPU_MX53: |