Hi,
I am confused between the function of BSP and FSBL, and its impact on uboot and kernel. My question is three fold:
1. BSP initializes the arm processor, clock, ram, etc. But since FSBL is what is being loaded after control is passed from the BootROM, I assume FSBL contains the Board support Package (I base this on the workflow of building FSBL in Xilinx SDK) and therefore (bsp part of) FSBL does all initialization and configurations necessary to launch the secondary boot loader (u-boot). Is this assumption and boot sequence correct?
2. What is the purpose of having linux-xlnx and u-boot-xlnx repositories separate from original linux and denx repos? My understanding says that since all the initialization is carried out in the FSBL, so I could use vanilla linux kernel source and u-boot source, compile it for arm and run it on zynq. But are there any additional components in xilinx maintained clone of the kernel and u-boot which are specific to zynq processors?
3. Are there any initializations which take place in u-boot and kernel which are specific to zynq boards which are not done in the FSBL? I am not concerned about the general linux boot procedure where storage media is initialized to read and load kernel, fdt and platform drivers are linked together, etc.