summaryrefslogtreecommitdiff
path: root/board/freescale/mx35_3stack/mx35_3stack.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/freescale/mx35_3stack/mx35_3stack.c')
-rw-r--r--board/freescale/mx35_3stack/mx35_3stack.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/board/freescale/mx35_3stack/mx35_3stack.c b/board/freescale/mx35_3stack/mx35_3stack.c
index 7854f86..267e9f1 100644
--- a/board/freescale/mx35_3stack/mx35_3stack.c
+++ b/board/freescale/mx35_3stack/mx35_3stack.c
@@ -43,19 +43,20 @@ static inline void setup_soc_rev(void)
int reg;
reg = __REG(IIM_BASE_ADDR + IIM_SREV);
if (!reg) {
- reg = __REG(ROMPATCH_BASE_ADDR + ROMPATCH_REV);
+ reg = __REG(ROMPATCH_REV);
reg <<= 4;
} else
- reg += 0x10;
+ reg += CHIP_REV_1_0;
system_rev = 0x35000 + (reg & 0xFF);
}
static inline void set_board_rev(int rev)
{
- system_rev |= (rev & 0xF) << 8;
+ int reg;
+ system_rev = (system_rev & ~(0xF << 8)) | (rev & 0xF) << 8;
}
-static inline int is_soc_rev(int rev)
+int is_soc_rev(int rev)
{
return (system_rev & 0xFF) - rev;
}
@@ -171,6 +172,7 @@ static inline int board_detect(void)
set_board_rev(1);
return 1;
}
+ set_board_rev(0);
return 0;
}