First Stage Boot Loader (FSBL)

The first stage boot loader (FSBL) is responsible for loading the bitstream and configuring the Zynq® architecture Processing System (PS) at boot time.

When the platform project is open in Vivado® Design Suite, click theFile>Export>Export Hardwaremenu option.

Create a new software projectFile>New>Application Projectwith the namefsblas you would using the Xilinx SDK.

Using the exported Hardware Platform, select the Zynq FSBL application from the list. This creates an FSBL executable.

For more detailed information, see theSDK Help System.

Once you generate the FSBL, you must copy it into a standard location for the SDx environment flow.

Example:
samples/platforms/zc702_axis_io/sw/boot/fsbl.elf

For the SDx system compiler to use an FSBL, a BIF file must point to it, as defined by thesdx:bifattribute of theelement. Refer to theSoftware Platform XML Metadata Referencefor more information on thesdx:bifattribute. The file must reside in the/sw/boot/folder.

Tip:The BIF file for a Zynq AP SoC is very different from the BIF file for the Zynq UltraScale+ MPSoC device.
The following is an example boot.biffile for the Zynq®-7000 All Programmable (AP) SoC:
/* linux */ the_ROM_image: { [bootloader]   }
The following is an example boot.biffile for the Zynq UltraScale+™ MPSoC device:
/* linux */ the_ROM_image: { [fsbl_config] a53_x64 [bootloader] [pmufw_image] [destination_device=pl]  [destination_cpu=a53-0, exception_level=el-3, trustzone]  [destination_cpu=a53-0, exception_level=el-2]  }