From 269c3548779d0343574609e8b64d7ef31d38da63 Mon Sep 17 00:00:00 2001 From: Wendy Liang Date: Thu, 17 Mar 2016 17:15:15 -0700 Subject: [PATCH] ARM64: zynqmp: Change the netboot load address The netboot address to load the FIT image needs to be higher than the address where the kernel is loaded. For ZynqMP, kernel is loaded to 0x80000, the netboot address for the image.ub which is supposed to be the FIT image needs to be higher. Set it to 10000000. Signed-off-by: Wendy Liang Signed-off-by: Michal Simek --- include/configs/xilinx_zynqmp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/xilinx_zynqmp.h b/include/configs/xilinx_zynqmp.h index 7a3c12fa8e7..e5d8e634297 100644 --- a/include/configs/xilinx_zynqmp.h +++ b/include/configs/xilinx_zynqmp.h @@ -195,7 +195,7 @@ "fdt set /timer clock-frequency <240000> && " \ "fdt set /amba/i2c_clk clock-frequency <240000> && " \ "booti 80000 - f000000\0" \ - "netboot=tftpboot 80000 image.ub && bootm\0" \ + "netboot=tftpboot 10000000 image.ub && bootm\0" \ "qspiboot=sf probe 0 0 0 && sf read $fdt_addr $fdt_offset $fdt_size && " \ "sf read $kernel_addr $kernel_offset $kernel_size && " \ "booti $kernel_addr - $fdt_addr\0" \ -- 2.47.3