summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--arch/arm/cpu/armv7/mx6/soc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/arm/cpu/armv7/mx6/soc.c b/arch/arm/cpu/armv7/mx6/soc.c
index 79788b9..e3f4377 100644
--- a/arch/arm/cpu/armv7/mx6/soc.c
+++ b/arch/arm/cpu/armv7/mx6/soc.c
@@ -477,9 +477,11 @@ int check_1_2G(void)
struct fuse_bank0_regs *fuse_bank0 =
(struct fuse_bank0_regs *)bank->fuse_regs;
- reg = readl(&fuse_bank0->cfg4);
- if (reg & (0x3 << 16))
+ reg = readl(&fuse_bank0->cfg3);
+ if ((reg >> 16) & 0x3 == 0x3) {
+ printf("Please use ldo-enable dts!\n");
result = 1;
+ }
return result;
}