summaryrefslogtreecommitdiff
path: root/board/freescale/mx53_loco
diff options
context:
space:
mode:
authorTerry <r65388@freescale.com>2011-03-18 13:45:20 +0800
committerJustin Waters <justin.waters@timesys.com>2012-09-05 14:57:41 -0400
commit289bc893bb9717f59028171e36da63326357a053 (patch)
tree85e66dacf9720da0fb2a3cac0c65a2f224cb16f7 /board/freescale/mx53_loco
parent265aaca75ccd97f7f1e6145372861e02e88ab1b4 (diff)
ENGR00140825: Add mx53 to2.1 chip id recognition
Add mx53 to2.1 chip id recognition. Signed-off-by: Terry Lv <r65388@freescale.com>
Diffstat (limited to 'board/freescale/mx53_loco')
-rw-r--r--board/freescale/mx53_loco/mx53_loco.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/board/freescale/mx53_loco/mx53_loco.c b/board/freescale/mx53_loco/mx53_loco.c
index 83977de54c..ef9088989c 100644
--- a/board/freescale/mx53_loco/mx53_loco.c
+++ b/board/freescale/mx53_loco/mx53_loco.c
@@ -131,8 +131,11 @@ static inline void setup_soc_rev(void)
case 0x20:
system_rev = 0x53000 | CHIP_REV_2_0;
break;
+ case 0x21:
+ system_rev = 0x53000 | CHIP_REV_2_1;
+ break;
default:
- system_rev = 0x53000 | CHIP_REV_2_0;
+ system_rev = 0x53000 | CHIP_REV_UNKNOWN;
}
}