Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 23 Next »

This page  provides details on building and customizing the FSBL for Zynq UltraScale+ MPSoC, and important notes on the FSBL. All the information is presented in the format of FAQs.

Table of Contents


What is FSBL?


First Stage Bootloader (FSBL) for Zynq UltraScale+ MPSoC configures the FPGA with hardware bitstream (if it exists) and loads the Operating System (OS) Image or Standalone (SA) Image or 2nd Stage Boot Loader image from the non-volatile memory (NAND/SD/eMMC/QSPI) to Memory (DDR/TCM/OCM) and takes A53/R5 out of reset. It supports multiple partitions, and each partition can be a code image or a bitstream. Each of these partitions, if required, will be authenticated and/or decrypted.
FSBL is loaded into OCM and handed off by CSU BootROM after authenticating and/or decrypting (as required) FSBL.

How to create FSBL from Vitis?

  • Launch VITIS with the below command: vitis
  • Provide path where VITIS workspace and project need to be created. With this VITIS workspace will be created
  • (Optional step) To work with local repos, Select "Xilinx" (ALT - x) -> Repositories. Against Local Repositories, click on "New..." and provide path of the local repo
  • Select File-->New-->Application Project to open "New Project" window, provide name for FSBL project
  • In the “Platform” section, click on “Create a new platform from hardware (XSA)” and select pre-defined hardware platform for ZynqMP (e.g. zcu102).
    • Alternatively, to create a new/custom platform from a .xsa file, click on “+”, browse and select the XSA file and a new hardware platform is created.
  • In the "Domain" window, select the processor psu_cortexa53_0/psu_cortexr5_0, OS as standalone and Language as C
  • Click Next and select "Zynq MP FSBL"
  • Click "Finish" to generate the A53/R5 FSBL. This populates the FSBL code and also builds it (along with BSP)
  • Debug prints in FSBL are now disabled by default (except for FSBL banner). To enable debug prints, define symbol: FSBL_DEBUG_INFO
    • In VITIS this can be done by: right click on FSBL application project -> select “C/C++ Build Settings” -> “Tool Settings” tab -> Symbols (under ARM v8 gcc compiler)
    • Click on Add (+) icon and Enter Value: FSBL_DEBUG_INFO, click on "OK" to close the "Enter Value" screen
  • In case any of the source files (FSBL or BSP) need to be modified, browse the file, make the change and save the file, build the project. elf file will be present in the Debug/Release folder of FSBL project.

What are various levels of debug prints in FSBL?

FSBL supports four levels of debug prints:
Type or printsPurposeEnabled by defining.. in FSBL codeAlternative way of enabling by defining symbol..
ALWAYSUsed for prints, which should be always enabled (e.g. FSBL banner)FSBL_PRINT_VAL to (1U)FSBL_PRINT
DEBUG GENERALTo print errors and basic general informationFSBL_DEBUG_VAL to (1U)FSBL_DEBUG
DEBUG INFOTo have more prints with format specifiers, in addition to basic general informationFSBL_DEBUG_INFO_VAL to (1U)FSBL_DEBUG_INFO
DEBUG DETAILEDTo have more detailed prints, in addition to above printsFSBL_DEBUG_DETAILED_VAL to (1U)FSBL_DEBUG_DETAILED

On what all processor cores can FSBL run on?

FSBL can only be run from A53_0 (AArch32 and AArch64), R5_0, R5_Lockstep

What part of OCM is used by FSBL?

OCM region used by FSBL: 0xFFFC0000 – 0xFFFE9FFF. The last 512 bytes of this region is used by FSBL to share the handoff parameters corresponding to applications ATF hands off. FSBL fully uses this OCM region and, in fact, in certain designs and when certain features need to enabled, the current footprint of FSBL doesn't fit in this available OCM. For details, search for "footprint" in this wiki.
ATF uses the rest of OCM i.e. from 0xFFFEA000 to 0xFFFFFFFF. Please note that the current implementation of APU-only restart assumes that FSBL "resides" in OCM even after its execution is complete. This is since, in such scenarios, PMUFW hands off to (already existing) FSBL without actually restarting.
Hence, OCM is completely used between FSBL and ATF and with the available APU-only restart mechanism, no other application can reuse it.

How is xfsbl_translation_table.S different from translation_table.S of BSP?

xfsbl_translation_table.S is a copy of file translation_table.S (of A53). The difference is that the FSBL’s copy of this file marks DDR region as reserved. This is to avoid speculative access to DDR before it is initialized. Once the DDR initialization is done in FSBL, memory attributes for DDR region is changed to “Memory” so that it is cacheable.

What ECC initialization is done by FSBL?

TCM ECC Initialization: When FSBL runs on R5, TCM ECC is always initialized. Also, when FSBL loads application targeted on R5, the corresponding TCM's ECC is initialized. When FSBL runs on A53, by default, TCM ECC is not initialized as this also involves powering up of RPU. In such cases, TCM ECC Initialization can be performed by defining FSBL_A53_TCM_ECC_EXCLUDE_VAL to 0 in xfsbl_config.h.
DDR ECC Initialization: Done in FSBL if ECC for DDR is enabled in design.

I’m unable to build FSBL due to size issues, how can I reduce its footprint?

FSBL provides option to enable/disable certain features from building. By selectively disabling certain features as mentioned in below table, code size can be reduced. These flags are defined in xfsbl_config.h of FSBL.
FLAGdefault valueMeaning of default setting / NotesSignificant impact on FSBL size?
FSBL_NAND_EXCLUDE_VAL(0U)NAND Boot mode related code is included (if NAND is present in design)Yes
FSBL_QSPI_EXCLUDE_VAL(0U)QSPI Boot mode related code is included (if QSPI is present in design)Yes
FSBL_SD_EXCLUDE_VAL(0U)SD Boot mode related code is included (if SD is present in design)Yes
FSBL_SECURE_EXCLUDE_VAL(0U)Secure features (Authenctication and decryption) are enabledYes
FSBL_BS_EXCLUDE_VAL(0U)PL Bitstream load capability is enabledYes
FSBL_SHA2_EXCLUDE_VAL(1U)SHA2 is not supportedYes
FSBL_EARLY_HANDOFF_EXCLUDE_VAL(1U)This flag/feature is not fully supported and hence is not recommended to change this settingNo
FSBL_WDT_EXCLUDE_VAL(0U)Watchdod timer feature is includedNo
FSBL_PERF_EXCLUDE_VAL(1U)Performance prints are not shown by defaultNo
FSBL_A53_TCM_ECC_EXCLUDE_VAL(1U)TCM ECC is not initialized for A53 ALWAYS. Changing this flag will result in TCM ECC being initialized always.No
FSBL_PL_CLEAR_EXCLUDE_VAL(1U)PL Initialization/clearing will be done ONLY when the boot image has PL bitstream. Changing this will result in PL Initialization/clearing to be done ALWAYS during FSBL InitializationNo
FSBL_USB_EXCLUDE_VAL(1U)USB Slave boot mode support is disabledYes
FSBL_PROT_BYPASS_EXCLUDE_VAL(1U)By default (from 2018.1), complete XMPU/XPPU configuration is done. Changing this flag will result in FSBL bypassing XPPU and FPD XMPU configuration and isolation/protection feature will be just limited to OCM slave.No
FSBL_PARTITION_LOAD_EXCLUDE_VAL(0U)By default FSBL loads all the partitions in the image, if this macro is been set, FSBL skips the partitions loading and will run the way it runs in JTAG boot mode.
FSBL_FORCE_ENC_EXCLUDE_VAL(0U)By default FSBL forces encryption of all the partitions when ENC_ONLY bit is blown, but if this macro is been set encryption can be optional for all the partitions loaded by FSBL, however it is compulsory for FSBL partition.

Are there any other ways by which FSBL footprint can be further reduced?

Debug prints: By default only FSBL banner is printed. If more debug prints are enabled, these will result in use of more memory.
Drivers Asserts: Asserts are used within all Xilinx drivers and can be turned off on a system-wide basis by defining, at compile time, the NDEBUG identifier (adding –DNDEBUG against extra_compiler_flags of drivers). This will help further reduce FSBL footprint.

I’m unable to debug FSBL in Vitis. Any change in optimizations used by FSBL?

For 2019.2, FSBL will be built with –Os and LTO optimizations by default in VITIS.

In order to debug, the following are two options :

  1.  Remove Optimizations
    1. Check "xfsbl_config.h" file, make sure that EXCLUDE flags options are not enabled/included. One thing to note here is that removing optimizations results in increase of code size and can result in not being able to build FSBL. In this case, the second option (of reducing optimization) can be looked at and followed.
  2. Reduce/Change the level of Optimization
    1. The first step can be done in three ways
      1. Disable Optimizations - In the "Miscellaneous" Section of FSBL app, remove highlighted options below.                                                                                        In some cases, this would still make the FSBL too big to not be able to fit in OCM and proceed with debug.
      2. Modify flags to remove "-Os -flto -ffat-lto-objects" and include only -O1 instead.                                                         
      3. If doing the above doesn't work and -O1 is still difficult to debug, modify flags to remove "-Os -flto -ffat-lto-objects" and include -Og instead.
        1. -Og stands for Optimized Debug Experience. To be used along with this, some of the optimization flags can be tried manually.
          "-Og -finline-functions-called-once" is known to have worked.

          Refer to the following doc for more info : https://gcc.gnu.org/onlinedocs/gcc-8.2.0/gcc/Optimize-Options.html#Optimize-Options

b. The following needs to be done after reducing opt by following either of the three methods above.

BSP settings: Highlighted zynqmp_fsbl_bsp flag need to be changed to false (to avoid turning on of optimization again of BSP for FSBL during rebuilding caused by above change.



What are the memory regions and registers reserved for FSBL?

Following are the memory regions and registers reserved for FSBL:

  1. DDR region - 0x100000U (XFSBL_DDR_TEMP_ADDRESS) → This is the address in DDR where bitstream will be copied temporarily.
  2. DDR region - 0x4000000U (XFSBL_DDR_TEMP_BUFFER_ADDRESS) - This is the address in DDR where boot image will be copied in USB boot mode.
  3. 0xFFD80034 (PMU_GLOBAL_GLOBAL_GEN_STORAGE2) → Since 2018.1 if POS is enabled, FSBL waits till PMU has finished resuming by polling this register. Users are free to use this register after reset so it can still be considered as "reserved for customers".
  4. 0xFFD80038 (PMU_GLOBAL_GLOBAL_GEN_STORAGE3) → Since 2018.1 if POS is enabled, PMU waits till FSBL has finished reading the boot type. This additional handshake step is required in boot scenarios where FSBL is started by CSU. PFW must wait for CSU to trigger FSBL start otherwise there may be race condition where PFW is trying to restore state of processor as part of resume from Power Off Suspend sequence while CSU is trying to run FSBL on that same processor. Users are free to use this register after reset so it can still be considered as "reserved for customers".
  5. 0xFFD80040 (PMU_GLOBAL_GLOBAL_GEN_STORAGE4 - bits 1 and 2) → Since 2018.3, these bits are used to know the status of RPU 0 and RPU 1 usage which will be updated by FSBL. Based on this information, PMU will decide whether to shutdown the unused RPU cores or not.
  6. 0XFFD80040 (PMU_GLOBAL_GLOBAL_GEN_STORAGE4 - bit 16) → Written by PMUFW, FSBL uses this register to know if reset is APU only reset.
  7. 0XFFD80044 (PMU_GLOBAL_GLOBAL_GEN_STORAGE5 - bit 0) → Written by FSBL, PMU Firmware uses this register to know if FSBL has completed its execution. Since 2018.1, this check is performed to initialize and start the CSU WDT timer when ENABLE_WDT macro is defined.
  8. 0XFFD80044 (PMU_GLOBAL_GLOBAL_GEN_STORAGE5 - bits 1 and 2) → Written by FSBL. PMU Firmware uses these bits to know if FSBL is running on which processor. 01: APU, 10: RPU0, 11: RPU LS
  9. 0XFFD80048 (PMU_GLOBAL_GLOBAL_GEN_STORAGE6) -> FSBL writes to this register the address from where ATF can read the details of partitions to which ATF has to handoff
  10. 0XFFD80060 (PMU_GLOBAL_PERS_GLOB_GEN_STORAGE4) → For error reporting in FSBL
  11. 0xFFD8006C (PMU_GLOBAL_PERS_GLOBAL_GEN_STORAGE7 - bit 4) → Since 2018.3, FSBL is using this bit to indicate DDR clock ready.

PMU Firmware also uses few general storage registers. Please refer to this link in PMU Firmware wiki for the list of registers reserved for PMU Firmware

Is there any order in which I have to specify bitstream in BIF file (for boot image creation)?

Yes, from 2017.1 release. Bitstream should be loaded before ATF is loaded. The reason is FSBL uses the OCM region which is reserved for ATF for holding a temporary buffer in the case where bitstream is present in .BIN file. Because of this, if bitstream is loaded after ATF, FSBL will overwrite the ATF image with its temporary buffer, corrupting ATF image. Hence, bitstream should be positioned in .BIF before ATF and preferably immediately after FSBL and PMUFW.

I could see that USB boot mode support is added in FSBL but is disabled by default. Why?

USB boot mode support increases the footprint of FSBL further (by ~10KB). Since it is intended mostly during initial development phase, its support is disabled by default to conserve OCM space. Please refer “I’m unable to build FSBL due to size issues, how can I reduce its footprint” section for details on how to reduce memory foot print of FSBL.

What board specific configuration is done in FSBL?

FSBL should be generic and ideally should be free from any board specific configuration. However, for the ease of development, certain board specific initialization is done in XFsbl_BoardInit() in which below are done:
Feature applicability board wiseZCU102ZCU106
GT configuration for ZCU102 boardYesNo
Reset to GEMYesYes
Enabling FMC ADJYesYes
USB reset (CRL_APB_BOOT_PIN_CTRL)YesYes
PCIe reset (GPIO_DATA_1 register)YesNo

What is early handoff and does FSBL support this?

FSBL loads the partitions one after other and once loading of all partitions is complete, handing off to CPUs of corresponding partitions is done by FSBL. Early handoff is a scenario where a partition is handed off immediately after its loading into memory. This feature can be useful when an (e.g. RPU) application needs to be started as early as possible after its loading.
This feature (for R5 partitions) was supported by FSBL in earlier releases. The corresponding code in FSBL is still present but this feature is no more being supported in FSBL. This is since, Isolation will be enabled in FSBL while handing off (first/early). This can create problem when loading of further partitions (accessing of memory, CSU).

What are various handoffs supported (between AArch32, AArch64, different cores)?

Below table shows various combinations of handoffs supported in FSBL:
FSBLApplicationProcessor coresExecution address
64-bit64-bitAll (i.e. A53-0, A53-1, A53-2, A53-3)Any address
64-bit32-bitA53-1, A53-2, A53-30x0
32-bit32-bitA53-0Any address
32-bit32-bitA53-1, A53-2, A53-30x0
32-bit64-bitA53-1, A53-2, A53-3Any address

What are the various hooks provided in FSBL code?

Hooks are functions which can be defined by users. FSBL provides blank functions, and calls them from certain strategic locations. Below are the hooks available currently:
Hook purpose/locationHook function name
Before PL bitstream loadingXFsbl_HookBeforeBSDownload()
After PL bitstream loadingXFsbl_HookAfterBSDownload()
Before (the first) Handoff (to any application)XFsbl_HookBeforeHandoff()
Before fallbackXFsbl_HookBeforeFallback()
To add more initialization code, in addition to that in psu_init or to replace psu_init with custom initializationXFsbl_HookPsuInit(()

How boot time measurements can be done in FSBL?

Boot time (or performance) measurement is a way to measure time taken to complete certain time consuming activities (e.g. partition copy, authentication, decryption etc). In addition, overall time taken by FSBL (measured from after psu_init completion to completion of all partitions/bitstream loading) is also provided. This feature can be enabled by defining macro FSBL_PERF_EXCLUDE_VAL (in xfsbl_config.h) to 0. Debug prints should not be enabled when p

What is Secondary Boot mode?

There is a provision to have two boot devices in the Zynq UltraScale+ MPSoC architecture. The primary boot mode is the boot mode used by BootROM to load FSBL and optionally
PMU FW. The secondary boot mode is the boot device used by FSBL to load all the other partitions. The supported secondary boot modes are QSPI24, QSPI32, SD0, eMMC, SD1,
SD1-ls, NAND and USB. By default, secondary boot device is the same as primary boot device unless explicitly mentioned using boot_device param in the bif file.
A secondary boot device can be specified in the bif file as [boot_device] qspi24. This implies that FSBL would be loaded from the primary boot device but all other partitions will be loaded from the secondary boot device qspi24. Secondary boot requires and two bif files and hence two boot images. The first bif contains the partitions loaded by BootRom and also the “[boot_device] qspi24“statement specifying the secondary boot mode. The second bif file contains the FSBL partition followed by all the partitions to be loaded by FSBL.
"bootgen -bif_help boot_device" will list all the secondary boot options.
If secondary boot mode is specified, it should be different from the primary boot device. For example, if QSPI32 is the primary boot mode, QSPI24 cannot be the secondary boot mode. Instead, you can have SD0, eMMC, SD1, SD1-ls, NAND, USB as secondary boot modes. All combinations of boot devices are supported as primary and secondary boot devices.
Attached are sample bif files for primary and (usb as secondary) boot modes: 
boota53_all.bif

What are the peripherals/IPs required for FSBL?

CSUDMA, ADMA_0 and any one instance of IPI are required IPs for FSBL. In addition, for ZCU102 and ZCU106 boards, I2C0 is needed for board-specific configuration done in FSBL. Hence these IPs are required in design and also should be not isolated from the processor for which FSBL is being created.

Revision History

What's new in 2020.1 release?

  • FSBL updates PMU GLOBAL register to indicate PL configuration
  • Update the status of FSBL image encryption in bit 3 of PMU_GLOBAL_GLOBAL_GEN_STORAGE5
  • Added support for ZCU216 and ZCU208 boards
  • FSBL considers high DDR addresses for R5
  • Added Macronix 2G flash support to FSBL


What's new in 2019.2 release?

  • Added support for RPU only subsystem restart case

What's new in 2019.1 release?

  • Added dual parallel configuration support and QPI support for 24bit qspi boot mode for Macronix flash parts
  • AES engine and SHA engine are reset during FSBL initialization
  • Zeroize PL upon error in decryption
  • Removed sha2 support from FSBL
  • Always select EEPROM lower page for reading SPD data
  • Dynamic DDR configuration is strictly based upon the design for all boards including ZCU102 and ZCU106
  • Added support for armclang compiler
  • Removed disabling of the WDT error before exiting FSBL to avoid overwriting of the PMU settings
  • Updated PMU with FSBL running status using bits 1 and 2 from PMU global general-purpose register 5
  • DDR end address is not fixed at 2GB but derived from Vivado
  • Using XilPM XPm_SetConfiguration API instead of using direct IPI calls for communicating with PMUFW.

What's new in 2018.2 release?

  • Added ability to read FMC EEPROM and set VADJ voltage for ZCU104 boards
  • Added support for enhanced user fuses revocation for secure boot

What's new in 2018.1 release?

  • Isolation fully enabled in FSBL
  • Added support for NIST-SHA3 padding
  • Added Boot header authentication
  • Forcing encryption for all partitions when ENC_ONLY eFUSE bit is set
  • Fixed AES KEY and IV re-use vulneribility issue
  • Added support to exclude partition loading
  • Added warning prints in case PMU-FW is not running
  • Added support for Macronix 1.8V flash
  • Added support to make FSBL wait for PMU to detect boot type

What's new in 2017.4 release?

  • Added functionality in FSBL to distinguish EV devices from EG devices

What's new in 2017.3 release?

  • Secondary boot mode support added
    • Supported secondary boot modes: QSPI24, QSPI32, SD0, SD1, eMMC, SD1-LS, USB, NAND.
  • QSPI 1-bit and 2-bit support added

Related Links



1) XFSBL_PL_PWRUP_WAIT_MICROSEC macro added to provide wait time for PL to power up. The default value is zero but customers can set it as per their requirements.


  • No labels