From: Tom Rini Date: Thu, 3 Aug 2017 12:53:36 +0000 (-0400) Subject: qemu-ppce500: Update get_phys_ccsrbar_addr_early() X-Git-Tag: v2017.09-rc2~131 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9f841559a5ecfc1c860819a5b6b516568bc374d5;p=platform%2Fkernel%2Fu-boot.git qemu-ppce500: Update get_phys_ccsrbar_addr_early() The logic of what fdt_get_base_address() will search for and return has changed. Rework get_phys_ccsrbar_addr_early() to perform the logic that fdt_get_base_address used to perform. Fixes: 336a44877af8 ("fdt: Correct fdt_get_base_address()") Reviewed-by: Simon Glass Cc: Alexander Graf Signed-off-by: Tom Rini --- diff --git a/board/freescale/qemu-ppce500/qemu-ppce500.c b/board/freescale/qemu-ppce500/qemu-ppce500.c index 6cb5692..0c65ec7 100644 --- a/board/freescale/qemu-ppce500/qemu-ppce500.c +++ b/board/freescale/qemu-ppce500/qemu-ppce500.c @@ -50,13 +50,19 @@ uint64_t get_phys_ccsrbar_addr_early(void) { void *fdt = get_fdt_virt(); uint64_t r; + int size, node; + u32 naddr; + const fdt32_t *prop; /* * To be able to read the FDT we need to create a temporary TLB * map for it. */ map_fdt_as(10); - r = fdt_get_base_address(fdt, fdt_path_offset(fdt, "/soc")); + node = fdt_path_offset(fdt, "/soc"); + naddr = fdt_address_cells(fdt, node); + prop = fdt_getprop(fdt, node, "ranges", &size); + r = fdt_translate_address(fdt, node, prop + naddr); disable_tlb(10); return r;