diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2014-01-26 15:06:41 -0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2014-02-11 11:24:12 +0100 |
commit | 94db66557997a929313e0f5020c83368b1c6627f (patch) | |
tree | ebf36d6578d1140bd995c49cc9f266f8937d7052 /arch/arm/imx-common | |
parent | 6a99f03d696ee51e584a9c95b9fb065ebf0d46b4 (diff) | |
download | u-boot-imx-94db66557997a929313e0f5020c83368b1c6627f.zip u-boot-imx-94db66557997a929313e0f5020c83368b1c6627f.tar.gz u-boot-imx-94db66557997a929313e0f5020c83368b1c6627f.tar.bz2 |
mx6: Distinguish mx6dual from mx6quad
Currently when we boot a mx6dual U-boot reports that it is a mx6quad.
Report it as MX6D instead:
CPU: Freescale i.MX6D rev1.2 at 792 MHz
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Stefano babic <sbabic@denx.de>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
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 9231649..a77c4de 100644 --- a/arch/arm/imx-common/cpu.c +++ b/arch/arm/imx-common/cpu.c @@ -106,6 +106,8 @@ const char *get_imx_type(u32 imxtype) switch (imxtype) { case MXC_CPU_MX6Q: return "6Q"; /* Quad-core version of the mx6 */ + case MXC_CPU_MX6D: + return "6D"; /* Dual-core version of the mx6 */ case MXC_CPU_MX6DL: return "6DL"; /* Dual Lite version of the mx6 */ case MXC_CPU_MX6SOLO: |