From b5d70fa084be92cca36f49c2b817a92f7973113f Mon Sep 17 00:00:00 2001 From: Sarat Chand Savitala Date: Tue, 6 Oct 2015 23:04:43 +0530 Subject: [PATCH] sw_apps:zynqmp_fsbl: Added tcl procedures to validate processor and os tcl procedures are added to facilitate validating the FSBL supported processor(s) and os platform. Signed-off-by: Sarat Chand Savitala Acked-by: Srikanth Vemula --- lib/sw_apps/zynqmp_fsbl/data/zynqmp_fsbl.tcl | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/lib/sw_apps/zynqmp_fsbl/data/zynqmp_fsbl.tcl b/lib/sw_apps/zynqmp_fsbl/data/zynqmp_fsbl.tcl index f7cc34c4..9f683eed 100755 --- a/lib/sw_apps/zynqmp_fsbl/data/zynqmp_fsbl.tcl +++ b/lib/sw_apps/zynqmp_fsbl/data/zynqmp_fsbl.tcl @@ -35,12 +35,20 @@ proc swapp_get_name {} { } proc swapp_get_description {} { - return "First Stage Bootloader (FSBL) for Zynq MP. The FSBL configures the FPGA with HW bit stream (if it exists) \ + return "First Stage Bootloader (FSBL) for Zynq Ultrascale+ MPSoC. The FSBL configures the FPGA with HW bit stream (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/QSPI) to RAM (DDR) and takes A5x/R5 out of reset. It supports multiple partitions, \ + non-volatile memory (NAND/SD/QSPI) to RAM (DDR) and takes A53/R5 out of reset. It supports multiple partitions, \ and each partition can be a code image or a bit stream."; } +proc swapp_get_supported_processors {} { + return "psu_cortexa53 psu_cortexr5"; +} + +proc swapp_get_supported_os {} { + return "standalone"; +} + proc check_standalone_os {} { set oslist [hsi::get_os];