mx25: add CPU revision 1.2
authorEric Benard <eric@eukrea.com>
Sun, 23 Sep 2012 02:03:05 +0000 (02:03 +0000)
committerTom Rini <trini@ti.com>
Mon, 15 Oct 2012 18:54:10 +0000 (11:54 -0700)
tested on a MCIMX257CJM4A which now reports :
CPU:   Freescale i.MX25 rev1.2 at 399 MHz

Signed-off-by: Eric BĂ©nard <eric@eukrea.com>
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
arch/arm/cpu/arm926ejs/mx25/generic.c
arch/arm/include/asm/arch-mx25/imx-regs.h

index 90e584a..4f1aad0 100644 (file)
@@ -140,6 +140,9 @@ u32 get_cpu_rev(void)
        case 0x01:
                system_rev |= CHIP_REV_1_1;
                break;
+       case 0x02:
+               system_rev |= CHIP_REV_1_2;
+               break;
        default:
                system_rev |= 0x8000;
                break;
index 672f9d7..e780296 100644 (file)
@@ -357,5 +357,6 @@ struct aips_regs {
 
 #define CHIP_REV_1_0           0x10
 #define CHIP_REV_1_1           0x11
+#define CHIP_REV_1_2           0x12
 
 #endif                         /* _IMX_REGS_H */