sw_apps:zynqmp_fsbl: Removed the RTL version reference

All the references to the RTL version are removed in the FSBL code.

Signed-off-by: Sarat Chand Savitala <saratcha@xilinx.com>
This commit is contained in:
Sarat Chand Savitala 2015-02-24 00:12:31 +05:30 committed by Nava kishore Manne
parent 58335dabbd
commit c402428673
2 changed files with 1 additions and 10 deletions

View file

@ -99,7 +99,6 @@ extern "C" {
* Register: CSU_VERSION
*/
#define CSU_VERSION ( ( CSU_BASEADDR ) + 0X00000044U )
#define CSU_VERSION_RTL_VERSION_MASK 0X00000FF0U
#define CSU_VERSION_PLATFORM_MASK 0X0000F000U
@ -514,9 +513,6 @@ extern "C" {
#define XFSBL_PLATFORM XFSBL_PLATFORM_VELOCE
#endif
#define XFSBL_RTL_VERSION \
(Xil_In32(CSU_VERSION) & CSU_VERSION_RTL_VERSION_MASK )
#define XFSBL_PLATFORM_SILICON (0X00000000U)
#define XFSBL_PLATFORM_REMUS (0X00001000U)
#define XFSBL_PLATFORM_VELOCE (0X00002000U)

View file

@ -286,7 +286,7 @@ void XFsbl_PrintFsblBanner(void )
XFsbl_Printf(DEBUG_PRINT_ALWAYS,
"Xilinx Zynq MP First Stage Boot Loader \n\r");
XFsbl_Printf(DEBUG_PRINT_ALWAYS,
"Release %d.%d SW Beta2 %s - %s\r\n",
"Release %d.%d SW Beta2 %s - %s\r\n",
SDK_RELEASE_YEAR, SDK_RELEASE_QUARTER,__DATE__,__TIME__);
/**
* Print the platform
@ -304,11 +304,6 @@ void XFsbl_PrintFsblBanner(void )
XFsbl_Printf(DEBUG_GENERAL, "Platform Not identified \r\n");
}
/**
* Print the RTL Version
*/
XFsbl_Printf(DEBUG_GENERAL, "RTL Version: %0lx\r\n", XFSBL_RTL_VERSION);
return ;
}