summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorPeng Fan <Peng.Fan@freescale.com>2015-03-30 10:35:40 +0800
committerPeng Fan <Peng.Fan@freescale.com>2015-04-29 15:05:29 +0800
commit6510bb60f64c793230494c9242a8508165fba921 (patch)
tree6aedc775ccfccf867240f7614c88a78b95a18eaf /arch
parentf6b6f3c7b2bb7d6277801882afdced6f2b10fc17 (diff)
downloadu-boot-imx-6510bb60f64c793230494c9242a8508165fba921.zip
u-boot-imx-6510bb60f64c793230494c9242a8508165fba921.tar.gz
u-boot-imx-6510bb60f64c793230494c9242a8508165fba921.tar.bz2
MLK-10499 imx:mx6qp update printed cpu info
We should print "MX6QP Rev1.0", but not "MX6Q Rev2.0". Signed-off-by: Peng Fan <Peng.Fan@freescale.com> (cherry picked from commit 64b2be69835af80e0dbc151175617942683a3167)
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/imx-common/cpu.c19
1 files changed, 14 insertions, 5 deletions
diff --git a/arch/arm/imx-common/cpu.c b/arch/arm/imx-common/cpu.c
index da2629a..74c08d7 100644
--- a/arch/arm/imx-common/cpu.c
+++ b/arch/arm/imx-common/cpu.c
@@ -175,11 +175,20 @@ int print_cpuinfo(void)
cpurev = get_cpu_rev();
- printf("CPU: Freescale i.MX%s rev%d.%d at %d MHz\n",
- get_imx_type((cpurev & 0xFF000) >> 12),
- (cpurev & 0x000F0) >> 4,
- (cpurev & 0x0000F) >> 0,
- mxc_get_clock(MXC_ARM_CLK) / 1000000);
+ if (is_mx6dqp()) {
+ printf("CPU: Freescale i.MX%sP rev%d.%d at %d MHz\n",
+ get_imx_type((cpurev & 0xFF000) >> 12),
+ ((cpurev & 0x000F0) >> 4) - 1,
+ (cpurev & 0x0000F) >> 0,
+ mxc_get_clock(MXC_ARM_CLK) / 1000000);
+
+ } else {
+ printf("CPU: Freescale i.MX%s rev%d.%d at %d MHz\n",
+ get_imx_type((cpurev & 0xFF000) >> 12),
+ (cpurev & 0x000F0) >> 4,
+ (cpurev & 0x0000F) >> 0,
+ mxc_get_clock(MXC_ARM_CLK) / 1000000);
+ }
#if defined(CONFIG_IMX_THERMAL)
ret = uclass_get_device(UCLASS_THERMAL, 0, &thermal_dev);