From b4f0b1401c18e020625d4cb24a02d57b55a5219d Mon Sep 17 00:00:00 2001 From: Robin Gong Date: Fri, 30 Aug 2013 14:15:28 +0800 Subject: ENGR00276023-3: ARM: mx6: enable ldo bypass check on mx6 board Enable ldo bypass check on mx6 and get fdt->blob from 'fdt_addr' which contained the right fdt. Signed-off-by: Robin Gong --- arch/arm/cpu/armv7/mx6/soc.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'arch') diff --git a/arch/arm/cpu/armv7/mx6/soc.c b/arch/arm/cpu/armv7/mx6/soc.c index 26279bf..79788b9 100644 --- a/arch/arm/cpu/armv7/mx6/soc.c +++ b/arch/arm/cpu/armv7/mx6/soc.c @@ -453,6 +453,10 @@ int check_ldo_bypass(void) { int ret = 0; int node; + + /* get the right fdt_addr */ + gd->fdt_blob = (void *)getenv_ulong("fdt_addr", 16, + (uintptr_t)gd->fdt_blob); /* Get the node from FDT for anatop ldo-bypass */ node = fdt_node_offset_by_compatible(gd->fdt_blob, -1, "fsl,imx6q-gpc"); -- cgit v1.1