From mboxrd@z Thu Jan 1 00:00:00 1970 From: Luis Araneda Date: Thu, 19 Jul 2018 13:22:33 -0400 Subject: [U-Boot] [RFC PATCH 4/4] arm: zynq: spl: implement FPGA load from FIT In-Reply-To: <0705398a-e315-766c-2157-b7a0f25f9530@xilinx.com> References: <20180718074141.16539-1-luaraneda@gmail.com> <20180718074141.16539-5-luaraneda@gmail.com> <7829067e-3316-8db0-6431-b5d1430f3bda@xilinx.com> <0705398a-e315-766c-2157-b7a0f25f9530@xilinx.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Michal, On Thu, Jul 19, 2018 at 2:16 AM Michal Simek wrote: > Also on zc706 without FULL_FIT my path in spl_load_fit_image is not > jumping to "if (external_data) {" branch where spl_load_fpga_image is > which is kind of interesting because it looks like you are going there. To enter the path "if (external_data) {" branch where spl_load_fpga_image is}" you have to create the FIT image with the "-E" option, I'm creating it with: > ./tools/mkimage -f -E I started to use the option because my initial tests weren't entering the path either, and I found it when analyzing the (generated) .u-boot.img.cmd file. I just tested your patch with and without the "-E" option, and it works on both cases :) Thanks, Luis Araneda.