From 866f0451230a5c98fac53d35eecfd49c366f250c Mon Sep 17 00:00:00 2001 From: Paul Reckamp <paulrr2@illinois.edu> Date: Sat, 12 Dec 2020 18:06:46 -0600 Subject: [PATCH] changes to script --- scripts/create_vc709_proj.tcl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/create_vc709_proj.tcl b/scripts/create_vc709_proj.tcl index d93277b..c0e109e 100755 --- a/scripts/create_vc709_proj.tcl +++ b/scripts/create_vc709_proj.tcl @@ -1,7 +1,7 @@ set proj_name "tcp_ip_vc709" set root_dir [pwd] set proj_dir $root_dir/$proj_name -set src_dir $root_dir/../rtl +set src_dir $root_dir/../hdl set ip_dir $root_dir/../ip set ip_repo $root_dir/../iprepo set constraints_dir $root_dir/../constraints @@ -53,7 +53,7 @@ update_compile_order -fileset sources_1 #FIFOs -create_ip -name axis_data_fifo -vendor xilinx.com -library ip -version 1.1 -module_name axis_data_fifo_64_cc -dir $ip_dir/vc709 +create_ip -name axis_data_fifo -vendor xilinx.com -library ip -version 2.0 -module_name axis_data_fifo_64_cc -dir $ip_dir/vc709 set_property -dict [list CONFIG.TDATA_NUM_BYTES {8} CONFIG.IS_ACLK_ASYNC {1} CONFIG.HAS_TKEEP {1} CONFIG.HAS_TLAST {1} CONFIG.SYNCHRONIZATION_STAGES {3} CONFIG.Component_Name {axis_data_fifo_64_cc}] [get_ips axis_data_fifo_64_cc] generate_target {instantiation_template} [get_files $ip_dir/vc709/axis_data_fifo_64_cc/axis_data_fifo_64_cc.xci] update_compile_order -fileset sources_1 @@ -98,11 +98,11 @@ create_ip -name toe -vendor ethz.systems -library hls -version 1.6 -module_name generate_target {instantiation_template} [get_files $ip_dir/vc709/toe_ip/toe_ip.xci] update_compile_order -fileset sources_1 -create_ip -name ip_handler -vendor ethz.systems -library hls -version 1.2 -module_name ip_handler_ip -dir $ip_dir/vc709 +create_ip -name ip_handler -vendor ethz.systems.fpga -library hls -version 2.0 -module_name ip_handler_ip -dir $ip_dir/vc709 generate_target {instantiation_template} [get_files $ip_dir/vc709/ip_handler_ip/ip_handler_ip.xci] update_compile_order -fileset sources_1 -create_ip -name mac_ip_encode -vendor xilinx.labs -library hls -version 1.04 -module_name mac_ip_encode_ip -dir $ip_dir/vc709 +create_ip -name mac_ip_encode -vendor ethz.systems.fpga -library hls -version 2.0 -module_name mac_ip_encode_ip -dir $ip_dir/vc709 generate_target {instantiation_template} [get_files $ip_dir/vc709/mac_ip_encode_ip/mac_ip_encode_ip.xci] update_compile_order -fileset sources_1 @@ -122,7 +122,7 @@ create_ip -name iperf_client -vendor ethz.systems.fpga -library hls -version 1.0 generate_target {instantiation_template} [get_files $ip_dir/vc709/iperf_client_ip/iperf_client_ip.xci] update_compile_order -fileset sources_1 -create_ip -name arp_server_subnet -vendor ethz.systems -library hls -version 1.0 -module_name arp_server_subnet_ip -dir $ip_dir/vc709 +create_ip -name arp_server_subnet -vendor ethz.systems.fpga -library hls -version 1.1 -module_name arp_server_subnet_ip -dir $ip_dir/vc709 generate_target {instantiation_template} [get_files $ip_dir/vc709/arp_server_subnet_ip/arp_server_subnet_ip.xci] update_compile_order -fileset sources_1 @@ -134,7 +134,7 @@ create_ip -name udp -vendor ethz.systems.fpga -library hls -version 0.4 -module_ generate_target {instantiation_template} [get_files $ip_dir/vc709/udp_ip/udp_ip.xci] update_compile_order -fileset sources_1 -create_ip -name iperf_udp_client -vendor ethz.systems.fpga -library hls -version 0.8 -module_name iperf_udp_client_ip -dir $ip_dir/vc709 +create_ip -name iperf_udp -vendor ethz.systems.fpga -library hls -version 0.9 -module_name iperf_udp_client_ip -dir $ip_dir/vc709 generate_target {instantiation_template} [get_files $ip_dir/vc709/iperf_udp_client_ip/iperf_udp_client_ip.xci] update_compile_order -fileset sources_1 -- GitLab