1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-17 20:02:53 +08:00

Associating clock with bus interface

- This should be moved to the block , block specific...
This commit is contained in:
Andreas Olofsson 2015-11-06 20:45:38 -05:00
parent 6e2ee17481
commit a683e58597

View File

@ -55,13 +55,24 @@ foreach file $ip_files {
# Package
###########################################################
::ipx::package_project -import_files -force -root_dir $projdir
::set_property vendor {www.parallella.org} [ipx::current_core]
::set_property library {user} [ipx::current_core]
::set_property taxonomy {{/AXI_Infrastructure}} [ipx::current_core]
::set_property vendor_display_name {ADAPTEVA} [ipx::current_core]
::set_property company_url {www.parallella.org} [ipx::current_core]
::set_property supported_families { \
ipx::package_project -import_files -force -root_dir $projdir
ipx::remove_memory_map {s_axi} [ipx::current_core]
ipx::add_memory_map {s_axi} [ipx::current_core]
ipx::associate_bus_interfaces -busif s_axi -clock sys_clk [ipx::current_core]
ipx::associate_bus_interfaces -busif m_axi -clock sys_clk [ipx::current_core]
set_property slave_memory_map_ref {s_axi} [ipx::get_bus_interface s_axi [ipx::current_core]]
ipx::add_address_block {axi_lite} [ipx::get_memory_map s_axi [ipx::current_core]]
set_property range {65536} [ipx::get_address_block axi_lite \
[ipx::get_memory_map s_axi [ipx::current_core]]]
set_property vendor {www.parallella.org} [ipx::current_core]
set_property library {user} [ipx::current_core]
set_property taxonomy {{/AXI_Infrastructure}} [ipx::current_core]
set_property vendor_display_name {ADAPTEVA} [ipx::current_core]
set_property company_url {www.parallella.org} [ipx::current_core]
set_property supported_families { \
{virtex7} {Production} \
{qvirtex7} {Production} \
{kintex7} {Production} \