cpu : added namespace for all HSI TCL commands.
Signed-off-by: Kishore Kumar Korathaluri <kkorath@xilinx.com>
This commit is contained in:
parent
8f1be52a83
commit
db55ab2d69
1 changed files with 7 additions and 7 deletions
|
@ -120,8 +120,8 @@ proc generate {drv_handle} {
|
||||||
set libc "libc"
|
set libc "libc"
|
||||||
set libm "libm"
|
set libm "libm"
|
||||||
|
|
||||||
set sw_proc_handle [get_sw_processor]
|
set sw_proc_handle [hsi::get_sw_processor]
|
||||||
set periph [get_cells [get_property HW_INSTANCE $sw_proc_handle]]
|
set periph [hsi::get_cells [get_property HW_INSTANCE $sw_proc_handle]]
|
||||||
set proctype [get_property IP_NAME $periph]
|
set proctype [get_property IP_NAME $periph]
|
||||||
|
|
||||||
set endian [get_property CONFIG.C_ENDIANNESS $periph]
|
set endian [get_property CONFIG.C_ENDIANNESS $periph]
|
||||||
|
@ -283,7 +283,7 @@ proc generate {drv_handle} {
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach bus_inst $bus_array {
|
foreach bus_inst $bus_array {
|
||||||
set bhandle [get_intf_pins $bus_inst -of_objects $periph]
|
set bhandle [hsi::get_intf_pins $bus_inst -of_objects $periph]
|
||||||
if { $bhandle == "" } {
|
if { $bhandle == "" } {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -295,7 +295,7 @@ proc generate {drv_handle} {
|
||||||
puts $file_handle "/* Canonical definitions for bus frequencies */"
|
puts $file_handle "/* Canonical definitions for bus frequencies */"
|
||||||
set bus_id 0
|
set bus_id 0
|
||||||
foreach bus $bus_array {
|
foreach bus $bus_array {
|
||||||
set bhandle [get_intf_pins $bus_inst -of_objects $periph]
|
set bhandle [hsi::get_intf_pins $bus_inst -of_objects $periph]
|
||||||
if { $bhandle == "" } {
|
if { $bhandle == "" } {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -327,13 +327,13 @@ proc generate {drv_handle} {
|
||||||
xdefine_addr_params_for_ext_intf $drv_handle "xparameters.h"
|
xdefine_addr_params_for_ext_intf $drv_handle "xparameters.h"
|
||||||
}
|
}
|
||||||
proc xdefine_addr_params_for_ext_intf {drvhandle file_name} {
|
proc xdefine_addr_params_for_ext_intf {drvhandle file_name} {
|
||||||
set sw_proc_handle [get_sw_processor]
|
set sw_proc_handle [hsi::get_sw_processor]
|
||||||
set hw_proc_handle [get_cells [get_property HW_INSTANCE $sw_proc_handle ]]
|
set hw_proc_handle [hsi::get_cells [get_property HW_INSTANCE $sw_proc_handle ]]
|
||||||
|
|
||||||
# Open include file
|
# Open include file
|
||||||
set file_handle [::hsi::utils::open_include_file $file_name]
|
set file_handle [::hsi::utils::open_include_file $file_name]
|
||||||
|
|
||||||
set mem_ranges [get_mem_ranges -of_objects $hw_proc_handle]
|
set mem_ranges [hsi::get_mem_ranges -of_objects $hw_proc_handle]
|
||||||
foreach mem_range $mem_ranges {
|
foreach mem_range $mem_ranges {
|
||||||
set inst [get_property INSTANCE $mem_range]
|
set inst [get_property INSTANCE $mem_range]
|
||||||
if {$inst != ""} {
|
if {$inst != ""} {
|
||||||
|
|
Loading…
Add table
Reference in a new issue