lwip: Give error message when A53 32 bit compiler is used

Error out from tcl when A53 32 bit compiler is used as lwip
library does not support it.

Signed-off-by: Harini Katakam <harinik@xilinx.com>
Acked by: Anirudha Sarangi <anirudh@xilinx.com>
This commit is contained in:
Harini Katakam 2015-08-18 18:34:12 +05:30 committed by Nava kishore Manne
parent 9fbce794b4
commit ed4a66f256
2 changed files with 13 additions and 0 deletions

View file

@ -293,6 +293,17 @@ proc lwip_drc {libhandle} {
# find the list of xps_ethernetlite, xps_ll_temac, or axi_ethernet cores
set sw_processor [hsi::get_sw_processor]
set processor [hsi::get_cells -hier [common::get_property HW_INSTANCE $sw_processor]]
set processor_type [common::get_property IP_NAME $processor]
if {$processor_type == "psu_cortexa53"} {
set procdrv [hsi::get_sw_processor]
set compiler [get_property CONFIG.compiler $procdrv]
if {[string compare -nocase $compiler "arm-none-eabi-gcc"] == 0} {
error "ERROR: No support for 32 bit A53 compiler \n"
return
}
}
set emac_periphs_list [get_emac_periphs $processor]

View file

@ -1,5 +1,7 @@
Change Log for lwip
=================================
2015-08-18
* Error out for A53 32 bit compiler
2015-08-10
* Add support for A53
2015-07-19