mirror of
https://github.com/jhshi/openofdm.git
synced 2025-02-20 17:12:51 +00:00
Add conditional compiling framework
This commit is contained in:
parent
a7b95b492c
commit
1659c01ac7
79
create_vivado_proj.sh
Executable file
79
create_vivado_proj.sh
Executable file
@ -0,0 +1,79 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Author: Xianjun jiao
|
||||
# SPDX-FileCopyrightText: 2022 UGent
|
||||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
print_usage () {
|
||||
echo "usage:"
|
||||
echo "Need at least 2 arguments: \$XILINX_DIR \$TCL_FILENAME"
|
||||
echo "More arguments (max 7) will be passed as arguments to the .tcl script to create ip_name_pre_def.v"
|
||||
echo "Among these max 7 arguments:"
|
||||
echo "- the 1st: BOARD_NAME (antsdr zc706_fmcs2 zed_fmcs2 zc702_fmcs2 adrv9361z7035 adrv9364z7020 zcu102_fmcs2)"
|
||||
echo "- the 2nd: NUM_CLK_PER_US (for example: input 100 for 100MHz)"
|
||||
echo "- the 3rd-7th: User pre defines (assume it is ABC) for conditional compiling. Will be \`define IP_NAME_ABC in ip_name_pre_def.v"
|
||||
echo " - the 3rd exception: in the case of openofdm_rx, it indicates SAMPLE_FILE for simulation. Can be changed later in openofdm_rx_pre_def.v"
|
||||
}
|
||||
|
||||
print_usage
|
||||
|
||||
if [ "$#" -lt 2 ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
XILINX_DIR=$1
|
||||
TCL_FILENAME=$2
|
||||
|
||||
echo XILINX_DIR $XILINX_DIR
|
||||
echo TCL_FILENAME $TCL_FILENAME
|
||||
|
||||
if [ -d "$XILINX_DIR/SDK" ]; then
|
||||
echo "\$XILINX_DIR is found!"
|
||||
else
|
||||
echo "\$XILINX_DIR is not correct. Please check!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -f "$TCL_FILENAME" ]; then
|
||||
echo "\$TCL_FILENAME is found!"
|
||||
else
|
||||
echo "\$TCL_FILENAME does NOT exist. Please check!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
source $XILINX_DIR/SDK/2018.3/settings64.sh
|
||||
|
||||
ARG1=""
|
||||
ARG2=""
|
||||
ARG3=""
|
||||
ARG4=""
|
||||
ARG5=""
|
||||
ARG6=""
|
||||
ARG7=""
|
||||
|
||||
if [[ -n $3 ]]; then
|
||||
ARG1=$3
|
||||
fi
|
||||
if [[ -n $4 ]]; then
|
||||
ARG2=$4
|
||||
fi
|
||||
if [[ -n $5 ]]; then
|
||||
ARG3=$5
|
||||
fi
|
||||
if [[ -n $6 ]]; then
|
||||
ARG4=$6
|
||||
fi
|
||||
if [[ -n $7 ]]; then
|
||||
ARG5=$7
|
||||
fi
|
||||
if [[ -n $8 ]]; then
|
||||
ARG6=$8
|
||||
fi
|
||||
if [[ -n $9 ]]; then
|
||||
ARG7=$9
|
||||
fi
|
||||
|
||||
set -x
|
||||
vivado -source $TCL_FILENAME -tclargs $ARG1 $ARG2 $ARG3 $ARG4 $ARG5 $ARG6 $ARG7
|
||||
set +x
|
||||
|
141
openofdm_rx.tcl
141
openofdm_rx.tcl
@ -16,6 +16,97 @@
|
||||
#
|
||||
#*****************************************************************************************
|
||||
|
||||
#-----------process arguments (if exist)-------
|
||||
# set argv [] before source this .tcl to not having any arguments
|
||||
# set argv [list ARGUMENT1 ARGUMENT2 ...] to before source this .tcl to have arguments
|
||||
# argument 1: BOARD_NAME
|
||||
# argument 2: NUM_CLK_PER_US. For example: input 100 for 100MHz. Valid values: 100/200/240/400
|
||||
# argument 3: IQ sample filename with full path (for SAMPLE_FILE in dot11_tb.v). Change it in pre_def.v according to your need later on.
|
||||
# argument 4~7 (if exist): for `define OPENOFDM_RX_ARGUMENT in openofdm_rx_pre_def.v to enable some compiling time conditions
|
||||
|
||||
set ARGUMENT1 [lindex $argv 0]
|
||||
set ARGUMENT2 [lindex $argv 1]
|
||||
set ARGUMENT3 [lindex $argv 2]
|
||||
set ARGUMENT4 [lindex $argv 3]
|
||||
set ARGUMENT5 [lindex $argv 4]
|
||||
set ARGUMENT6 [lindex $argv 5]
|
||||
set ARGUMENT7 [lindex $argv 6]
|
||||
|
||||
if {$ARGUMENT1 eq ""} {
|
||||
set BOARD_NAME zed_fmcs2
|
||||
} else {
|
||||
set BOARD_NAME $ARGUMENT1
|
||||
}
|
||||
|
||||
if {$ARGUMENT2 eq ""} {
|
||||
set NUM_CLK_PER_US 100
|
||||
} else {
|
||||
set NUM_CLK_PER_US $ARGUMENT2
|
||||
}
|
||||
|
||||
source ./parse_board_name.tcl
|
||||
|
||||
set MODULE_NAME OPENOFDM_RX
|
||||
set fd [open "./verilog/openofdm_rx_pre_def.v" w]
|
||||
if {$NUM_CLK_PER_US == 100} {
|
||||
puts $fd "`define CLK_SPEED_100M"
|
||||
} elseif {$NUM_CLK_PER_US == 200} {
|
||||
puts $fd "`define CLK_SPEED_200M"
|
||||
} elseif {$NUM_CLK_PER_US == 240} {
|
||||
puts $fd "`define CLK_SPEED_240M"
|
||||
} elseif {$NUM_CLK_PER_US == 400} {
|
||||
puts $fd "`define CLK_SPEED_400M"
|
||||
} else {
|
||||
throw {NUM_CLK_PER_US MUST BE 100/200/240/400!}
|
||||
}
|
||||
|
||||
if {$ARGUMENT3 eq ""} {
|
||||
puts $fd "`define SAMPLE_FILE \"../../../../../testing_inputs/simulated/ht_mcs7_gi1_aggr0_len14_pre100_post200_openwifi.txt\""
|
||||
} else {
|
||||
puts $fd "`define SAMPLE_FILE \"$ARGUMENT3\""
|
||||
}
|
||||
if {$ARGUMENT4 eq ""} {
|
||||
puts $fd " "
|
||||
} else {
|
||||
puts $fd "`define $MODULE_NAME\_$ARGUMENT4"
|
||||
}
|
||||
if {$ARGUMENT5 eq ""} {
|
||||
puts $fd " "
|
||||
} else {
|
||||
puts $fd "`define $MODULE_NAME\_$ARGUMENT5"
|
||||
}
|
||||
if {$ARGUMENT6 eq ""} {
|
||||
puts $fd " "
|
||||
} else {
|
||||
puts $fd "`define $MODULE_NAME\_$ARGUMENT6"
|
||||
}
|
||||
if {$ARGUMENT7 eq ""} {
|
||||
puts $fd " "
|
||||
} else {
|
||||
puts $fd "`define $MODULE_NAME\_$ARGUMENT7"
|
||||
}
|
||||
close $fd
|
||||
#-----end of process arguments (if exist)-------
|
||||
|
||||
puts "BOARD_NAME $BOARD_NAME"
|
||||
puts "NUM_CLK_PER_US $NUM_CLK_PER_US"
|
||||
puts "ultra_scale_flag $ultra_scale_flag"
|
||||
puts "part_string $part_string"
|
||||
puts "fpga_size_flag $fpga_size_flag"
|
||||
puts "ARGUMENT3 $ARGUMENT3"
|
||||
puts "ARGUMENT4 $MODULE_NAME\_$ARGUMENT4"
|
||||
puts "ARGUMENT5 $MODULE_NAME\_$ARGUMENT5"
|
||||
puts "ARGUMENT6 $MODULE_NAME\_$ARGUMENT6"
|
||||
puts "ARGUMENT7 $MODULE_NAME\_$ARGUMENT7"
|
||||
|
||||
#------------some defines related to sub-IP---------------------
|
||||
if {$ultra_scale_flag == 0} {
|
||||
set ip_fix_string zynq
|
||||
} else {
|
||||
set ip_fix_string zynquplus
|
||||
}
|
||||
#-----end of some defines related to sub-IP---------------------
|
||||
|
||||
# -----------generate openofdm_rx_git_rev.v---------------
|
||||
set fd [open "./verilog/openofdm_rx_git_rev.v" w]
|
||||
set HASHCODE [exec ./get_git_rev.sh]
|
||||
@ -26,6 +117,15 @@ close $fd
|
||||
# Set the reference directory for source file relative paths (by default the value is script directory path)
|
||||
set origin_dir [file dirname [info script]]
|
||||
|
||||
#----------Copy the IP files to a dedicated/git-un-tracked ip_repo folder-----------------------
|
||||
#----------because they will be changed during status reporting and upgrading at the end--------
|
||||
file delete -force $origin_dir/ip_repo
|
||||
file mkdir $origin_dir/ip_repo
|
||||
|
||||
file copy -force $origin_dir/verilog/coregen/div_gen_new_ip_core_$ip_fix_string $origin_dir/ip_repo/div_gen_new
|
||||
exec cp -rf $origin_dir/verilog/Xilinx/$ip_fix_string/. $origin_dir/ip_repo/
|
||||
#---end of copy---------------------------------------------------------------------------------
|
||||
|
||||
# Use origin directory path location variable, if specified in the tcl shell
|
||||
if { [info exists ::origin_dir_loc] } {
|
||||
set origin_dir $::origin_dir_loc
|
||||
@ -92,7 +192,7 @@ if { $::argc > 0 } {
|
||||
set src_dir "[file normalize "$origin_dir/verilog"]"
|
||||
|
||||
# Create project
|
||||
create_project ${project_name} ./${project_name} -part xc7z020clg484-1
|
||||
create_project ${project_name} ./${project_name} -part $part_string
|
||||
|
||||
# Set the directory path for the new project
|
||||
set proj_dir [get_property directory [current_project]]
|
||||
@ -145,7 +245,7 @@ if {[string equal [get_filesets -quiet sources_1] ""]} {
|
||||
|
||||
# Set IP repository paths
|
||||
set obj [get_filesets sources_1]
|
||||
set_property "ip_repo_paths" "[file normalize "$origin_dir/verilog/coregen/div_gen_new_ip_core_zynq"]" $obj
|
||||
set_property "ip_repo_paths" "[file normalize "$origin_dir/verilog/coregen/div_gen_new_ip_core_$ip_fix_string"]" $obj
|
||||
|
||||
# Rebuild user ip_repo's index before adding any source files
|
||||
update_ip_catalog -rebuild
|
||||
@ -153,8 +253,6 @@ update_ip_catalog -rebuild
|
||||
# Set 'sources_1' fileset object
|
||||
set obj [get_filesets sources_1]
|
||||
set files [list \
|
||||
"[file normalize "$origin_dir/verilog/Xilinx/zynq/complex_multiplier/complex_multiplier.xci"]"\
|
||||
"[file normalize "$origin_dir/verilog/Xilinx/zynq/atan_lut/atan_lut.xci"]"\
|
||||
"[file normalize "$origin_dir/verilog/bits_to_bytes.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/calc_mean.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/complex_mult.v"]"\
|
||||
@ -167,7 +265,6 @@ set files [list \
|
||||
"[file normalize "$origin_dir/verilog/common_defs.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/demodulate.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/descramble.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/coregen/div_gen_new_ip_core_zynq/src/div_gen.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/divider.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/dot11.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/equalizer.v"]"\
|
||||
@ -184,15 +281,18 @@ set files [list \
|
||||
"[file normalize "$origin_dir/verilog/openofdm_rx.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/running_sum_dual_ch.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/signal_watchdog.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/Xilinx/zynq/deinter_lut/deinter_lut.coe"]"\
|
||||
"[file normalize "$origin_dir/verilog/Xilinx/zynq/atan_lut/atan_lut.coe"]"\
|
||||
"[file normalize "$origin_dir/verilog/Xilinx/zynq/rot_lut/rot_lut.coe"]"\
|
||||
"[file normalize "$origin_dir/verilog/Xilinx/zynq/viterbi/viterbi_v7_0.xci"]"\
|
||||
"[file normalize "$origin_dir/verilog/Xilinx/zynq/deinter_lut/deinter_lut.xci"]"\
|
||||
"[file normalize "$origin_dir/verilog/coregen/div_gen_new_ip_core_zynq/src/div_gen_div_gen_0_0/div_gen_div_gen_0_0.xci"]"\
|
||||
"[file normalize "$origin_dir/verilog/coregen/div_gen_new_ip_core_zynq/src/div_gen_xlslice_0_0/div_gen_xlslice_0_0.xci"]"\
|
||||
"[file normalize "$origin_dir/verilog/Xilinx/zynq/xfft/xfft_v9.xci"]"\
|
||||
"[file normalize "$origin_dir/verilog/Xilinx/zynq/rot_lut/rot_lut.xci"]"\
|
||||
"[file normalize "$origin_dir/ip_repo/complex_multiplier/complex_multiplier.xci"]"\
|
||||
"[file normalize "$origin_dir/ip_repo/atan_lut/atan_lut.coe"]"\
|
||||
"[file normalize "$origin_dir/ip_repo/atan_lut/atan_lut.xci"]"\
|
||||
"[file normalize "$origin_dir/ip_repo/viterbi/viterbi_v7_0.xci"]"\
|
||||
"[file normalize "$origin_dir/ip_repo/deinter_lut/deinter_lut.coe"]"\
|
||||
"[file normalize "$origin_dir/ip_repo/deinter_lut/deinter_lut.xci"]"\
|
||||
"[file normalize "$origin_dir/ip_repo/xfft/xfft_v9.xci"]"\
|
||||
"[file normalize "$origin_dir/ip_repo/rot_lut/rot_lut.coe"]"\
|
||||
"[file normalize "$origin_dir/ip_repo/rot_lut/rot_lut.xci"]"\
|
||||
"[file normalize "$origin_dir/ip_repo/div_gen_new/src/div_gen.v"]"\
|
||||
"[file normalize "$origin_dir/ip_repo/div_gen_new/src/div_gen_div_gen_0_0/div_gen_div_gen_0_0.xci"]"\
|
||||
"[file normalize "$origin_dir/ip_repo/div_gen_new/src/div_gen_xlslice_0_0/div_gen_xlslice_0_0.xci"]"\
|
||||
]
|
||||
# If you want to make a copy of the file to new src folder, use following command
|
||||
# set imported_files [import_files -fileset sources_1 $files]
|
||||
@ -308,7 +408,7 @@ set_property -name "xsim.simulate.xsim.more_options" -value "" -objects $obj
|
||||
|
||||
# Create 'synth_1' run (if not found)
|
||||
if {[string equal [get_runs -quiet synth_1] ""]} {
|
||||
create_run -name synth_1 -part xc7z045ffg900-2 -flow {Vivado Synthesis 2018} -strategy "Vivado Synthesis Defaults" -report_strategy {No Reports} -constrset constrs_1
|
||||
create_run -name synth_1 -part $part_string -flow {Vivado Synthesis 2018} -strategy "Vivado Synthesis Defaults" -report_strategy {No Reports} -constrset constrs_1
|
||||
} else {
|
||||
set_property strategy "Vivado Synthesis Defaults" [get_runs synth_1]
|
||||
set_property flow "Vivado Synthesis 2018" [get_runs synth_1]
|
||||
@ -373,7 +473,7 @@ current_run -synthesis [get_runs synth_1]
|
||||
|
||||
# Create 'impl_1' run (if not found)
|
||||
if {[string equal [get_runs -quiet impl_1] ""]} {
|
||||
create_run -name impl_1 -part xc7z045ffg900-2 -flow {Vivado Implementation 2018} -strategy "Vivado Implementation Defaults" -report_strategy {No Reports} -constrset constrs_1 -parent_run synth_1
|
||||
create_run -name impl_1 -part $part_string -flow {Vivado Implementation 2018} -strategy "Vivado Implementation Defaults" -report_strategy {No Reports} -constrset constrs_1 -parent_run synth_1
|
||||
} else {
|
||||
set_property strategy "Vivado Implementation Defaults" [get_runs impl_1]
|
||||
set_property flow "Vivado Implementation 2018" [get_runs impl_1]
|
||||
@ -778,3 +878,12 @@ set_property -name "steps.write_bitstream.args.more options" -value "" -objects
|
||||
current_run -implementation [get_runs impl_1]
|
||||
|
||||
puts "INFO: Project created:$project_name"
|
||||
|
||||
#--------to avoid IP error message (parameter error or not found, need to be reported status and upgraded)-------
|
||||
update_compile_order -fileset sources_1
|
||||
report_ip_status -name ip_status
|
||||
upgrade_ip [get_ips {atan_lut complex_multiplier deinter_lut div_gen_div_gen_0_0 div_gen_xlslice_0_0 rot_lut viterbi_v7_0 xfft_v9}] -log ip_upgrade.log
|
||||
export_ip_user_files -of_objects [get_ips {atan_lut complex_multiplier deinter_lut div_gen_div_gen_0_0 div_gen_xlslice_0_0 rot_lut viterbi_v7_0 xfft_v9}] -no_script -sync -force -quiet
|
||||
|
||||
update_compile_order -fileset sources_1
|
||||
report_ip_status -name ip_status
|
||||
|
@ -1,777 +0,0 @@
|
||||
#*****************************************************************************************
|
||||
#
|
||||
# By xianjun.jiao@imec.be; wei.liu@imec.be
|
||||
#
|
||||
# This file contains the Vivado Tcl commands for re-creating the project to the state*
|
||||
# when this script was generated. In order to re-create the project, please source this
|
||||
# file in the Vivado Tcl Shell.
|
||||
#
|
||||
# * Note that the runs in the created project will be configured the same way as the
|
||||
# original project, however they will not be launched automatically. To regenerate the
|
||||
# run results please launch the synthesis/implementation runs as needed.
|
||||
#
|
||||
#
|
||||
#*****************************************************************************************
|
||||
|
||||
# -----------generate openofdm_rx_git_rev.v---------------
|
||||
set fd [open "./verilog/openofdm_rx_git_rev.v" w]
|
||||
set HASHCODE [exec ./get_git_rev.sh]
|
||||
puts $fd "`define OPENOFDM_RX_GIT_REV (32'h$HASHCODE)"
|
||||
close $fd
|
||||
# ----end of generate openofdm_rx_git_rev.v---------------
|
||||
|
||||
# Set the reference directory for source file relative paths (by default the value is script directory path)
|
||||
set origin_dir [file dirname [info script]]
|
||||
|
||||
# Use origin directory path location variable, if specified in the tcl shell
|
||||
if { [info exists ::origin_dir_loc] } {
|
||||
set origin_dir $::origin_dir_loc
|
||||
}
|
||||
|
||||
# Set the project name
|
||||
set project_name "openofdm_rx_ultra_scale"
|
||||
exec rm -rf $project_name
|
||||
|
||||
# Use project name variable, if specified in the tcl shell
|
||||
if { [info exists ::user_project_name] } {
|
||||
set project_name $::user_project_name
|
||||
}
|
||||
|
||||
variable script_file
|
||||
set script_file "openofdm_rx_ultra_scale.tcl"
|
||||
|
||||
# Help information for this script
|
||||
proc help {} {
|
||||
variable script_file
|
||||
puts "\nDescription:"
|
||||
puts "Recreate a Vivado project from this script. The created project will be"
|
||||
puts "functionally equivalent to the original project for which this script was"
|
||||
puts "generated. The script contains commands for creating a project, filesets,"
|
||||
puts "runs, adding/importing sources and setting properties on various objects.\n"
|
||||
puts "Syntax:"
|
||||
puts "$script_file"
|
||||
puts "$script_file -tclargs \[--origin_dir <path>\]"
|
||||
puts "$script_file -tclargs \[--project_name <name>\]"
|
||||
puts "$script_file -tclargs \[--help\]\n"
|
||||
puts "Usage:"
|
||||
puts "Name Description"
|
||||
puts "-------------------------------------------------------------------------"
|
||||
puts "\[--origin_dir <path>\] Determine source file paths wrt this path. Default"
|
||||
puts " origin_dir path value is \".\", otherwise, the value"
|
||||
puts " that was set with the \"-paths_relative_to\" switch"
|
||||
puts " when this script was generated.\n"
|
||||
puts "\[--project_name <name>\] Create project with the specified name. Default"
|
||||
puts " name is the name of the project from where this"
|
||||
puts " script was generated.\n"
|
||||
puts "\[--help\] Print help information for this script"
|
||||
puts "-------------------------------------------------------------------------\n"
|
||||
exit 0
|
||||
}
|
||||
|
||||
if { $::argc > 0 } {
|
||||
for {set i 0} {$i < [llength $::argc]} {incr i} {
|
||||
set option [string trim [lindex $::argv $i]]
|
||||
switch -regexp -- $option {
|
||||
"--origin_dir" { incr i; set origin_dir [lindex $::argv $i] }
|
||||
"--project_name" { incr i; set project_name [lindex $::argv $i] }
|
||||
"--help" { help }
|
||||
default {
|
||||
if { [regexp {^-} $option] } {
|
||||
puts "ERROR: Unknown option '$option' specified, please type '$script_file -tclargs --help' for usage info.\n"
|
||||
return 1
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# Set the directory path for the original project from where this script was exported
|
||||
set src_dir "[file normalize "$origin_dir/verilog"]"
|
||||
|
||||
# Create project
|
||||
create_project ${project_name} ./${project_name} -part xczu9eg-ffvb1156-2-e
|
||||
|
||||
# Set the directory path for the new project
|
||||
set proj_dir [get_property directory [current_project]]
|
||||
|
||||
# Reconstruct message rules
|
||||
# None
|
||||
|
||||
# Set project properties
|
||||
set obj [current_project]
|
||||
set_property -name "board_connections" -value "" -objects $obj
|
||||
set_property -name "board_part" -value "xilinx.com:zcu102:part0:3.1" -objects $obj
|
||||
set_property -name "compxlib.activehdl_compiled_library_dir" -value "$proj_dir/${project_name}.cache/compile_simlib/activehdl" -objects $obj
|
||||
set_property -name "compxlib.funcsim" -value "1" -objects $obj
|
||||
set_property -name "compxlib.ies_compiled_library_dir" -value "$proj_dir/${project_name}.cache/compile_simlib/ies" -objects $obj
|
||||
set_property -name "compxlib.modelsim_compiled_library_dir" -value "$proj_dir/${project_name}.cache/compile_simlib/modelsim" -objects $obj
|
||||
set_property -name "compxlib.overwrite_libs" -value "0" -objects $obj
|
||||
set_property -name "compxlib.questa_compiled_library_dir" -value "$proj_dir/${project_name}.cache/compile_simlib/questa" -objects $obj
|
||||
set_property -name "compxlib.riviera_compiled_library_dir" -value "$proj_dir/${project_name}.cache/compile_simlib/riviera" -objects $obj
|
||||
set_property -name "compxlib.timesim" -value "1" -objects $obj
|
||||
set_property -name "compxlib.vcs_compiled_library_dir" -value "$proj_dir/${project_name}.cache/compile_simlib/vcs" -objects $obj
|
||||
set_property -name "compxlib.xsim_compiled_library_dir" -value "" -objects $obj
|
||||
set_property -name "corecontainer.enable" -value "0" -objects $obj
|
||||
set_property -name "default_lib" -value "xil_defaultlib" -objects $obj
|
||||
set_property -name "dsa.num_compute_units" -value "60" -objects $obj
|
||||
set_property -name "dsa.rom.debug_type" -value "0" -objects $obj
|
||||
set_property -name "dsa.rom.prom_type" -value "0" -objects $obj
|
||||
set_property -name "enable_optional_runs_sta" -value "0" -objects $obj
|
||||
set_property -name "generate_ip_upgrade_log" -value "1" -objects $obj
|
||||
set_property -name "ip_cache_permissions" -value "read write" -objects $obj
|
||||
set_property -name "ip_interface_inference_priority" -value "" -objects $obj
|
||||
set_property -name "ip_output_repo" -value "$proj_dir/${project_name}.cache/ip" -objects $obj
|
||||
set_property -name "project_type" -value "Default" -objects $obj
|
||||
set_property -name "pr_flow" -value "0" -objects $obj
|
||||
set_property -name "sim.ip.auto_export_scripts" -value "1" -objects $obj
|
||||
set_property -name "sim.use_ip_compiled_libs" -value "1" -objects $obj
|
||||
set_property -name "simulator_language" -value "Mixed" -objects $obj
|
||||
set_property -name "source_mgmt_mode" -value "All" -objects $obj
|
||||
set_property -name "target_language" -value "Verilog" -objects $obj
|
||||
set_property -name "target_simulator" -value "XSim" -objects $obj
|
||||
set_property -name "xpm_libraries" -value "XPM_MEMORY" -objects $obj
|
||||
set_property -name "xsim.array_display_limit" -value "1024" -objects $obj
|
||||
set_property -name "xsim.radix" -value "hex" -objects $obj
|
||||
set_property -name "xsim.time_unit" -value "ns" -objects $obj
|
||||
set_property -name "xsim.trace_limit" -value "65536" -objects $obj
|
||||
|
||||
# Create 'sources_1' fileset (if not found)
|
||||
if {[string equal [get_filesets -quiet sources_1] ""]} {
|
||||
create_fileset -srcset sources_1
|
||||
}
|
||||
|
||||
# Set IP repository paths
|
||||
set obj [get_filesets sources_1]
|
||||
set_property "ip_repo_paths" "[file normalize "$origin_dir/verilog/coregen/div_gen_new_ip_core_zynquplus"]" $obj
|
||||
|
||||
# Rebuild user ip_repo's index before adding any source files
|
||||
update_ip_catalog -rebuild
|
||||
|
||||
# Set 'sources_1' fileset object
|
||||
set obj [get_filesets sources_1]
|
||||
set files [list \
|
||||
"[file normalize "$origin_dir/verilog/Xilinx/zynquplus/complex_multiplier/complex_multiplier.xci"]"\
|
||||
"[file normalize "$origin_dir/verilog/Xilinx/zynquplus/atan_lut/atan_lut.xci"]"\
|
||||
"[file normalize "$origin_dir/verilog/bits_to_bytes.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/calc_mean.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/complex_mult.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/complex_to_mag.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/complex_to_mag_sq.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/crc32.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/deinterleave.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/delayT.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/delay_sample.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/common_defs.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/demodulate.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/descramble.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/coregen/div_gen_new_ip_core_zynquplus/src/div_gen.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/divider.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/dot11.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/equalizer.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/ht_sig_crc.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/moving_avg.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/ofdm_decoder.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/openofdm_rx_s_axi.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/phase.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/usrp2/ram_2port.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/rotate.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/stage_mult.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/sync_long.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/sync_short.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/openofdm_rx.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/running_sum_dual_ch.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/signal_watchdog.v"]"\
|
||||
"[file normalize "$origin_dir/verilog/Xilinx/zynquplus/deinter_lut/deinter_lut.coe"]"\
|
||||
"[file normalize "$origin_dir/verilog/Xilinx/zynquplus/atan_lut/atan_lut.coe"]"\
|
||||
"[file normalize "$origin_dir/verilog/Xilinx/zynquplus/rot_lut/rot_lut.coe"]"\
|
||||
"[file normalize "$origin_dir/verilog/Xilinx/zynquplus/viterbi/viterbi_v7_0.xci"]"\
|
||||
"[file normalize "$origin_dir/verilog/Xilinx/zynquplus/deinter_lut/deinter_lut.xci"]"\
|
||||
"[file normalize "$origin_dir/verilog/coregen/div_gen_new_ip_core_zynquplus/src/div_gen_div_gen_0_0/div_gen_div_gen_0_0.xci"]"\
|
||||
"[file normalize "$origin_dir/verilog/coregen/div_gen_new_ip_core_zynquplus/src/div_gen_xlslice_0_0/div_gen_xlslice_0_0.xci"]"\
|
||||
"[file normalize "$origin_dir/verilog/Xilinx/zynquplus/xfft/xfft_v9.xci"]"\
|
||||
"[file normalize "$origin_dir/verilog/Xilinx/zynquplus/rot_lut/rot_lut.xci"]"\
|
||||
]
|
||||
# If you want to make a copy of the file to new src folder, use following command
|
||||
# set imported_files [import_files -fileset sources_1 $files]
|
||||
# If you want to keep the files remote, use the following command
|
||||
# set added_files [add_files -fileset sources_1 $files]
|
||||
add_files -norecurse -fileset $obj $files
|
||||
|
||||
# #Set 'sources_1' fileset file properties for remote files
|
||||
#set file "$origin_dir/verilog/coregen/div_gen_v3_0.ngc"
|
||||
#set file [file normalize $file]
|
||||
#set file_obj [get_files -of_objects [get_filesets sources_1] [list "*$file"]]
|
||||
#set_property -name "file_type" -value "NGC" -objects $file_obj
|
||||
|
||||
set file "openofdm_rx_s_axi.v"
|
||||
set file_obj [get_files -of_objects [get_filesets sources_1] [list "*$file"]]
|
||||
set_property -name "used_in" -value "synthesis simulation" -objects $file_obj
|
||||
set_property -name "used_in_implementation" -value "0" -objects $file_obj
|
||||
|
||||
set file "openofdm_rx.v"
|
||||
set file_obj [get_files -of_objects [get_filesets sources_1] [list "*$file"]]
|
||||
set_property -name "used_in" -value "synthesis simulation" -objects $file_obj
|
||||
set_property -name "used_in_implementation" -value "0" -objects $file_obj
|
||||
|
||||
set file "running_sum_dual_ch.v"
|
||||
set file_obj [get_files -of_objects [get_filesets sources_1] [list "*$file"]]
|
||||
set_property -name "used_in" -value "synthesis simulation" -objects $file_obj
|
||||
set_property -name "used_in_implementation" -value "0" -objects $file_obj
|
||||
|
||||
set file "signal_watchdog.v"
|
||||
set file_obj [get_files -of_objects [get_filesets sources_1] [list "*$file"]]
|
||||
set_property -name "used_in" -value "synthesis simulation" -objects $file_obj
|
||||
set_property -name "used_in_implementation" -value "0" -objects $file_obj
|
||||
|
||||
# Set 'sources_1' fileset file properties for local files
|
||||
|
||||
# Set 'sources_1' fileset properties
|
||||
set obj [get_filesets sources_1]
|
||||
set_property -name "top" -value "openofdm_rx" -objects $obj
|
||||
|
||||
# Create 'constrs_1' fileset (if not found)
|
||||
if {[string equal [get_filesets -quiet constrs_1] ""]} {
|
||||
create_fileset -constrset constrs_1
|
||||
}
|
||||
|
||||
# Set 'constrs_1' fileset object
|
||||
set obj [get_filesets constrs_1]
|
||||
|
||||
# Empty (no sources present)
|
||||
|
||||
|
||||
# Create constraints !
|
||||
# Set 'constrs_1' fileset properties
|
||||
set obj [get_filesets constrs_1]
|
||||
|
||||
# Create runs
|
||||
# Create 'sim_1' fileset (if not found)
|
||||
if {[string equal [get_filesets -quiet sim_1] ""]} {
|
||||
create_fileset -simset sim_1
|
||||
}
|
||||
|
||||
# Set 'sim_1' fileset object
|
||||
set obj [get_filesets sim_1]
|
||||
set files [list \
|
||||
"[file normalize "$origin_dir/verilog/dot11_tb.v"]"
|
||||
]
|
||||
add_files -norecurse -fileset $obj $files
|
||||
# Empty (no sources present)
|
||||
|
||||
# Set 'sim_1' fileset properties
|
||||
set obj [get_filesets sim_1]
|
||||
set_property -name "32bit" -value "0" -objects $obj
|
||||
set_property -name "generic" -value "" -objects $obj
|
||||
set_property -name "include_dirs" -value "" -objects $obj
|
||||
set_property -name "incremental" -value "1" -objects $obj
|
||||
set_property -name "name" -value "sim_1" -objects $obj
|
||||
set_property -name "nl.cell" -value "" -objects $obj
|
||||
set_property -name "nl.incl_unisim_models" -value "0" -objects $obj
|
||||
set_property -name "nl.process_corner" -value "slow" -objects $obj
|
||||
set_property -name "nl.rename_top" -value "" -objects $obj
|
||||
set_property -name "nl.sdf_anno" -value "1" -objects $obj
|
||||
set_property -name "nl.write_all_overrides" -value "0" -objects $obj
|
||||
set_property -name "source_set" -value "sources_1" -objects $obj
|
||||
set_property -name "top" -value "dot11_tb" -objects $obj
|
||||
set_property -name "transport_int_delay" -value "0" -objects $obj
|
||||
set_property -name "transport_path_delay" -value "0" -objects $obj
|
||||
set_property -name "verilog_define" -value "" -objects $obj
|
||||
set_property -name "verilog_uppercase" -value "0" -objects $obj
|
||||
set_property -name "xelab.dll" -value "0" -objects $obj
|
||||
set_property -name "xsim.compile.tcl.pre" -value "" -objects $obj
|
||||
set_property -name "xsim.compile.xvhdl.more_options" -value "" -objects $obj
|
||||
set_property -name "xsim.compile.xvhdl.nosort" -value "1" -objects $obj
|
||||
set_property -name "xsim.compile.xvhdl.relax" -value "1" -objects $obj
|
||||
set_property -name "xsim.compile.xvlog.more_options" -value "" -objects $obj
|
||||
set_property -name "xsim.compile.xvlog.nosort" -value "1" -objects $obj
|
||||
set_property -name "xsim.compile.xvlog.relax" -value "1" -objects $obj
|
||||
set_property -name "xsim.elaborate.debug_level" -value "typical" -objects $obj
|
||||
set_property -name "xsim.elaborate.load_glbl" -value "1" -objects $obj
|
||||
set_property -name "xsim.elaborate.mt_level" -value "auto" -objects $obj
|
||||
set_property -name "xsim.elaborate.rangecheck" -value "0" -objects $obj
|
||||
set_property -name "xsim.elaborate.relax" -value "1" -objects $obj
|
||||
set_property -name "xsim.elaborate.sdf_delay" -value "sdfmax" -objects $obj
|
||||
set_property -name "xsim.elaborate.snapshot" -value "" -objects $obj
|
||||
set_property -name "xsim.elaborate.xelab.more_options" -value "" -objects $obj
|
||||
set_property -name "xsim.simulate.custom_tcl" -value "" -objects $obj
|
||||
set_property -name "xsim.simulate.log_all_signals" -value "0" -objects $obj
|
||||
set_property -name "xsim.simulate.runtime" -value "1000ns" -objects $obj
|
||||
set_property -name "xsim.simulate.saif" -value "" -objects $obj
|
||||
set_property -name "xsim.simulate.saif_all_signals" -value "0" -objects $obj
|
||||
set_property -name "xsim.simulate.saif_scope" -value "" -objects $obj
|
||||
set_property -name "xsim.simulate.tcl.post" -value "" -objects $obj
|
||||
set_property -name "xsim.simulate.wdb" -value "" -objects $obj
|
||||
set_property -name "xsim.simulate.xsim.more_options" -value "" -objects $obj
|
||||
|
||||
# Create 'synth_1' run (if not found)
|
||||
if {[string equal [get_runs -quiet synth_1] ""]} {
|
||||
create_run -name synth_1 -part xczu9eg-ffvb1156-2-e -flow {Vivado Synthesis 2018} -strategy "Vivado Synthesis Defaults" -report_strategy {No Reports} -constrset constrs_1
|
||||
} else {
|
||||
set_property strategy "Vivado Synthesis Defaults" [get_runs synth_1]
|
||||
set_property flow "Vivado Synthesis 2018" [get_runs synth_1]
|
||||
}
|
||||
set obj [get_runs synth_1]
|
||||
set_property set_report_strategy_name 1 $obj
|
||||
set_property report_strategy {Vivado Synthesis Default Reports} $obj
|
||||
set_property set_report_strategy_name 0 $obj
|
||||
# Create 'synth_1_synth_report_utilization_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs synth_1] synth_1_synth_report_utilization_0] "" ] } {
|
||||
create_report_config -report_name synth_1_synth_report_utilization_0 -report_type report_utilization:1.0 -steps synth_design -runs synth_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs synth_1] synth_1_synth_report_utilization_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "1" -objects $obj
|
||||
set_property -name "options.pblocks" -value "" -objects $obj
|
||||
set_property -name "options.cells" -value "" -objects $obj
|
||||
set_property -name "options.slr" -value "0" -objects $obj
|
||||
set_property -name "options.packthru" -value "0" -objects $obj
|
||||
set_property -name "options.hierarchical" -value "0" -objects $obj
|
||||
set_property -name "options.hierarchical_depth" -value "" -objects $obj
|
||||
set_property -name "options.hierarchical_percentages" -value "0" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
set obj [get_runs synth_1]
|
||||
set_property -name "constrset" -value "constrs_1" -objects $obj
|
||||
set_property -name "description" -value "Vivado Synthesis Defaults" -objects $obj
|
||||
set_property -name "flow" -value "Vivado Synthesis 2018" -objects $obj
|
||||
set_property -name "name" -value "synth_1" -objects $obj
|
||||
set_property -name "needs_refresh" -value "0" -objects $obj
|
||||
set_property -name "srcset" -value "sources_1" -objects $obj
|
||||
# set_property -name "incremental_checkpoint" -value "" -objects $obj
|
||||
set_property -name "include_in_archive" -value "1" -objects $obj
|
||||
set_property -name "strategy" -value "Vivado Synthesis Defaults" -objects $obj
|
||||
set_property -name "steps.synth_design.tcl.pre" -value "" -objects $obj
|
||||
set_property -name "steps.synth_design.tcl.post" -value "" -objects $obj
|
||||
set_property -name "steps.synth_design.args.flatten_hierarchy" -value "rebuilt" -objects $obj
|
||||
set_property -name "steps.synth_design.args.gated_clock_conversion" -value "off" -objects $obj
|
||||
set_property -name "steps.synth_design.args.bufg" -value "12" -objects $obj
|
||||
set_property -name "steps.synth_design.args.fanout_limit" -value "10000" -objects $obj
|
||||
set_property -name "steps.synth_design.args.directive" -value "Default" -objects $obj
|
||||
set_property -name "steps.synth_design.args.retiming" -value "0" -objects $obj
|
||||
set_property -name "steps.synth_design.args.fsm_extraction" -value "auto" -objects $obj
|
||||
set_property -name "steps.synth_design.args.keep_equivalent_registers" -value "0" -objects $obj
|
||||
set_property -name "steps.synth_design.args.resource_sharing" -value "auto" -objects $obj
|
||||
set_property -name "steps.synth_design.args.control_set_opt_threshold" -value "auto" -objects $obj
|
||||
set_property -name "steps.synth_design.args.no_lc" -value "0" -objects $obj
|
||||
set_property -name "steps.synth_design.args.no_srlextract" -value "0" -objects $obj
|
||||
set_property -name "steps.synth_design.args.shreg_min_size" -value "3" -objects $obj
|
||||
set_property -name "steps.synth_design.args.max_bram" -value "-1" -objects $obj
|
||||
set_property -name "steps.synth_design.args.max_uram" -value "-1" -objects $obj
|
||||
set_property -name "steps.synth_design.args.max_dsp" -value "-1" -objects $obj
|
||||
set_property -name "steps.synth_design.args.max_bram_cascade_height" -value "-1" -objects $obj
|
||||
set_property -name "steps.synth_design.args.max_uram_cascade_height" -value "-1" -objects $obj
|
||||
set_property -name "steps.synth_design.args.cascade_dsp" -value "auto" -objects $obj
|
||||
set_property -name "steps.synth_design.args.assert" -value "0" -objects $obj
|
||||
set_property -name "steps.synth_design.args.more options" -value "" -objects $obj
|
||||
|
||||
# set the current synth run
|
||||
current_run -synthesis [get_runs synth_1]
|
||||
|
||||
# Create 'impl_1' run (if not found)
|
||||
if {[string equal [get_runs -quiet impl_1] ""]} {
|
||||
create_run -name impl_1 -part xczu9eg-ffvb1156-2-e -flow {Vivado Implementation 2018} -strategy "Vivado Implementation Defaults" -report_strategy {No Reports} -constrset constrs_1 -parent_run synth_1
|
||||
} else {
|
||||
set_property strategy "Vivado Implementation Defaults" [get_runs impl_1]
|
||||
set_property flow "Vivado Implementation 2018" [get_runs impl_1]
|
||||
}
|
||||
set obj [get_runs impl_1]
|
||||
set_property set_report_strategy_name 1 $obj
|
||||
set_property report_strategy {Vivado Implementation Default Reports} $obj
|
||||
set_property set_report_strategy_name 0 $obj
|
||||
# Create 'impl_1_init_report_timing_summary_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_init_report_timing_summary_0] "" ] } {
|
||||
create_report_config -report_name impl_1_init_report_timing_summary_0 -report_type report_timing_summary:1.0 -steps init_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_init_report_timing_summary_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "0" -objects $obj
|
||||
set_property -name "options.check_timing_verbose" -value "0" -objects $obj
|
||||
set_property -name "options.delay_type" -value "" -objects $obj
|
||||
set_property -name "options.setup" -value "0" -objects $obj
|
||||
set_property -name "options.hold" -value "0" -objects $obj
|
||||
set_property -name "options.max_paths" -value "10" -objects $obj
|
||||
set_property -name "options.nworst" -value "" -objects $obj
|
||||
set_property -name "options.unique_pins" -value "0" -objects $obj
|
||||
set_property -name "options.path_type" -value "" -objects $obj
|
||||
set_property -name "options.slack_lesser_than" -value "" -objects $obj
|
||||
set_property -name "options.report_unconstrained" -value "0" -objects $obj
|
||||
set_property -name "options.warn_on_violation" -value "0" -objects $obj
|
||||
set_property -name "options.significant_digits" -value "" -objects $obj
|
||||
set_property -name "options.cell" -value "" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_opt_report_drc_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_opt_report_drc_0] "" ] } {
|
||||
create_report_config -report_name impl_1_opt_report_drc_0 -report_type report_drc:1.0 -steps opt_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_opt_report_drc_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "1" -objects $obj
|
||||
set_property -name "options.upgrade_cw" -value "0" -objects $obj
|
||||
set_property -name "options.checks" -value "" -objects $obj
|
||||
set_property -name "options.ruledecks" -value "" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_opt_report_timing_summary_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_opt_report_timing_summary_0] "" ] } {
|
||||
create_report_config -report_name impl_1_opt_report_timing_summary_0 -report_type report_timing_summary:1.0 -steps opt_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_opt_report_timing_summary_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "0" -objects $obj
|
||||
set_property -name "options.check_timing_verbose" -value "0" -objects $obj
|
||||
set_property -name "options.delay_type" -value "" -objects $obj
|
||||
set_property -name "options.setup" -value "0" -objects $obj
|
||||
set_property -name "options.hold" -value "0" -objects $obj
|
||||
set_property -name "options.max_paths" -value "10" -objects $obj
|
||||
set_property -name "options.nworst" -value "" -objects $obj
|
||||
set_property -name "options.unique_pins" -value "0" -objects $obj
|
||||
set_property -name "options.path_type" -value "" -objects $obj
|
||||
set_property -name "options.slack_lesser_than" -value "" -objects $obj
|
||||
set_property -name "options.report_unconstrained" -value "0" -objects $obj
|
||||
set_property -name "options.warn_on_violation" -value "0" -objects $obj
|
||||
set_property -name "options.significant_digits" -value "" -objects $obj
|
||||
set_property -name "options.cell" -value "" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_power_opt_report_timing_summary_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_power_opt_report_timing_summary_0] "" ] } {
|
||||
create_report_config -report_name impl_1_power_opt_report_timing_summary_0 -report_type report_timing_summary:1.0 -steps power_opt_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_power_opt_report_timing_summary_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "0" -objects $obj
|
||||
set_property -name "options.check_timing_verbose" -value "0" -objects $obj
|
||||
set_property -name "options.delay_type" -value "" -objects $obj
|
||||
set_property -name "options.setup" -value "0" -objects $obj
|
||||
set_property -name "options.hold" -value "0" -objects $obj
|
||||
set_property -name "options.max_paths" -value "10" -objects $obj
|
||||
set_property -name "options.nworst" -value "" -objects $obj
|
||||
set_property -name "options.unique_pins" -value "0" -objects $obj
|
||||
set_property -name "options.path_type" -value "" -objects $obj
|
||||
set_property -name "options.slack_lesser_than" -value "" -objects $obj
|
||||
set_property -name "options.report_unconstrained" -value "0" -objects $obj
|
||||
set_property -name "options.warn_on_violation" -value "0" -objects $obj
|
||||
set_property -name "options.significant_digits" -value "" -objects $obj
|
||||
set_property -name "options.cell" -value "" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_place_report_io_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_place_report_io_0] "" ] } {
|
||||
create_report_config -report_name impl_1_place_report_io_0 -report_type report_io:1.0 -steps place_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_place_report_io_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "1" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_place_report_utilization_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_place_report_utilization_0] "" ] } {
|
||||
create_report_config -report_name impl_1_place_report_utilization_0 -report_type report_utilization:1.0 -steps place_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_place_report_utilization_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "1" -objects $obj
|
||||
set_property -name "options.pblocks" -value "" -objects $obj
|
||||
set_property -name "options.cells" -value "" -objects $obj
|
||||
set_property -name "options.slr" -value "0" -objects $obj
|
||||
set_property -name "options.packthru" -value "0" -objects $obj
|
||||
set_property -name "options.hierarchical" -value "0" -objects $obj
|
||||
set_property -name "options.hierarchical_depth" -value "" -objects $obj
|
||||
set_property -name "options.hierarchical_percentages" -value "0" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_place_report_control_sets_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_place_report_control_sets_0] "" ] } {
|
||||
create_report_config -report_name impl_1_place_report_control_sets_0 -report_type report_control_sets:1.0 -steps place_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_place_report_control_sets_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "1" -objects $obj
|
||||
set_property -name "options.verbose" -value "1" -objects $obj
|
||||
set_property -name "options.cells" -value "" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_place_report_incremental_reuse_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_place_report_incremental_reuse_0] "" ] } {
|
||||
create_report_config -report_name impl_1_place_report_incremental_reuse_0 -report_type report_incremental_reuse:1.0 -steps place_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_place_report_incremental_reuse_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "0" -objects $obj
|
||||
set_property -name "options.cells" -value "" -objects $obj
|
||||
set_property -name "options.hierarchical" -value "0" -objects $obj
|
||||
set_property -name "options.hierarchical_depth" -value "" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_place_report_incremental_reuse_1' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_place_report_incremental_reuse_1] "" ] } {
|
||||
create_report_config -report_name impl_1_place_report_incremental_reuse_1 -report_type report_incremental_reuse:1.0 -steps place_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_place_report_incremental_reuse_1]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "0" -objects $obj
|
||||
set_property -name "options.cells" -value "" -objects $obj
|
||||
set_property -name "options.hierarchical" -value "0" -objects $obj
|
||||
set_property -name "options.hierarchical_depth" -value "" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_place_report_timing_summary_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_place_report_timing_summary_0] "" ] } {
|
||||
create_report_config -report_name impl_1_place_report_timing_summary_0 -report_type report_timing_summary:1.0 -steps place_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_place_report_timing_summary_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "0" -objects $obj
|
||||
set_property -name "options.check_timing_verbose" -value "0" -objects $obj
|
||||
set_property -name "options.delay_type" -value "" -objects $obj
|
||||
set_property -name "options.setup" -value "0" -objects $obj
|
||||
set_property -name "options.hold" -value "0" -objects $obj
|
||||
set_property -name "options.max_paths" -value "10" -objects $obj
|
||||
set_property -name "options.nworst" -value "" -objects $obj
|
||||
set_property -name "options.unique_pins" -value "0" -objects $obj
|
||||
set_property -name "options.path_type" -value "" -objects $obj
|
||||
set_property -name "options.slack_lesser_than" -value "" -objects $obj
|
||||
set_property -name "options.report_unconstrained" -value "0" -objects $obj
|
||||
set_property -name "options.warn_on_violation" -value "0" -objects $obj
|
||||
set_property -name "options.significant_digits" -value "" -objects $obj
|
||||
set_property -name "options.cell" -value "" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_post_place_power_opt_report_timing_summary_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_post_place_power_opt_report_timing_summary_0] "" ] } {
|
||||
create_report_config -report_name impl_1_post_place_power_opt_report_timing_summary_0 -report_type report_timing_summary:1.0 -steps post_place_power_opt_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_post_place_power_opt_report_timing_summary_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "0" -objects $obj
|
||||
set_property -name "options.check_timing_verbose" -value "0" -objects $obj
|
||||
set_property -name "options.delay_type" -value "" -objects $obj
|
||||
set_property -name "options.setup" -value "0" -objects $obj
|
||||
set_property -name "options.hold" -value "0" -objects $obj
|
||||
set_property -name "options.max_paths" -value "10" -objects $obj
|
||||
set_property -name "options.nworst" -value "" -objects $obj
|
||||
set_property -name "options.unique_pins" -value "0" -objects $obj
|
||||
set_property -name "options.path_type" -value "" -objects $obj
|
||||
set_property -name "options.slack_lesser_than" -value "" -objects $obj
|
||||
set_property -name "options.report_unconstrained" -value "0" -objects $obj
|
||||
set_property -name "options.warn_on_violation" -value "0" -objects $obj
|
||||
set_property -name "options.significant_digits" -value "" -objects $obj
|
||||
set_property -name "options.cell" -value "" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_phys_opt_report_timing_summary_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_phys_opt_report_timing_summary_0] "" ] } {
|
||||
create_report_config -report_name impl_1_phys_opt_report_timing_summary_0 -report_type report_timing_summary:1.0 -steps phys_opt_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_phys_opt_report_timing_summary_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "0" -objects $obj
|
||||
set_property -name "options.check_timing_verbose" -value "0" -objects $obj
|
||||
set_property -name "options.delay_type" -value "" -objects $obj
|
||||
set_property -name "options.setup" -value "0" -objects $obj
|
||||
set_property -name "options.hold" -value "0" -objects $obj
|
||||
set_property -name "options.max_paths" -value "10" -objects $obj
|
||||
set_property -name "options.nworst" -value "" -objects $obj
|
||||
set_property -name "options.unique_pins" -value "0" -objects $obj
|
||||
set_property -name "options.path_type" -value "" -objects $obj
|
||||
set_property -name "options.slack_lesser_than" -value "" -objects $obj
|
||||
set_property -name "options.report_unconstrained" -value "0" -objects $obj
|
||||
set_property -name "options.warn_on_violation" -value "0" -objects $obj
|
||||
set_property -name "options.significant_digits" -value "" -objects $obj
|
||||
set_property -name "options.cell" -value "" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_route_report_drc_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_route_report_drc_0] "" ] } {
|
||||
create_report_config -report_name impl_1_route_report_drc_0 -report_type report_drc:1.0 -steps route_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_route_report_drc_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "1" -objects $obj
|
||||
set_property -name "options.upgrade_cw" -value "0" -objects $obj
|
||||
set_property -name "options.checks" -value "" -objects $obj
|
||||
set_property -name "options.ruledecks" -value "" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_route_report_methodology_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_route_report_methodology_0] "" ] } {
|
||||
create_report_config -report_name impl_1_route_report_methodology_0 -report_type report_methodology:1.0 -steps route_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_route_report_methodology_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "1" -objects $obj
|
||||
set_property -name "options.checks" -value "" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_route_report_power_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_route_report_power_0] "" ] } {
|
||||
create_report_config -report_name impl_1_route_report_power_0 -report_type report_power:1.0 -steps route_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_route_report_power_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "1" -objects $obj
|
||||
set_property -name "options.advisory" -value "0" -objects $obj
|
||||
set_property -name "options.xpe" -value "" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_route_report_route_status_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_route_report_route_status_0] "" ] } {
|
||||
create_report_config -report_name impl_1_route_report_route_status_0 -report_type report_route_status:1.0 -steps route_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_route_report_route_status_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "1" -objects $obj
|
||||
set_property -name "options.of_objects" -value "" -objects $obj
|
||||
set_property -name "options.route_type" -value "" -objects $obj
|
||||
set_property -name "options.list_all_nets" -value "0" -objects $obj
|
||||
set_property -name "options.show_all" -value "0" -objects $obj
|
||||
set_property -name "options.has_routing" -value "0" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_route_report_timing_summary_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_route_report_timing_summary_0] "" ] } {
|
||||
create_report_config -report_name impl_1_route_report_timing_summary_0 -report_type report_timing_summary:1.0 -steps route_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_route_report_timing_summary_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "1" -objects $obj
|
||||
set_property -name "options.check_timing_verbose" -value "0" -objects $obj
|
||||
set_property -name "options.delay_type" -value "" -objects $obj
|
||||
set_property -name "options.setup" -value "0" -objects $obj
|
||||
set_property -name "options.hold" -value "0" -objects $obj
|
||||
set_property -name "options.max_paths" -value "10" -objects $obj
|
||||
set_property -name "options.nworst" -value "" -objects $obj
|
||||
set_property -name "options.unique_pins" -value "0" -objects $obj
|
||||
set_property -name "options.path_type" -value "" -objects $obj
|
||||
set_property -name "options.slack_lesser_than" -value "" -objects $obj
|
||||
set_property -name "options.report_unconstrained" -value "0" -objects $obj
|
||||
set_property -name "options.warn_on_violation" -value "0" -objects $obj
|
||||
set_property -name "options.significant_digits" -value "" -objects $obj
|
||||
set_property -name "options.cell" -value "" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_route_report_incremental_reuse_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_route_report_incremental_reuse_0] "" ] } {
|
||||
create_report_config -report_name impl_1_route_report_incremental_reuse_0 -report_type report_incremental_reuse:1.0 -steps route_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_route_report_incremental_reuse_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "1" -objects $obj
|
||||
set_property -name "options.cells" -value "" -objects $obj
|
||||
set_property -name "options.hierarchical" -value "0" -objects $obj
|
||||
set_property -name "options.hierarchical_depth" -value "" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_route_report_clock_utilization_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_route_report_clock_utilization_0] "" ] } {
|
||||
create_report_config -report_name impl_1_route_report_clock_utilization_0 -report_type report_clock_utilization:1.0 -steps route_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_route_report_clock_utilization_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "1" -objects $obj
|
||||
set_property -name "options.write_xdc" -value "0" -objects $obj
|
||||
set_property -name "options.clock_roots_only" -value "0" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
# Create 'impl_1_post_route_phys_opt_report_timing_summary_0' report (if not found)
|
||||
if { [ string equal [get_report_configs -of_objects [get_runs impl_1] impl_1_post_route_phys_opt_report_timing_summary_0] "" ] } {
|
||||
create_report_config -report_name impl_1_post_route_phys_opt_report_timing_summary_0 -report_type report_timing_summary:1.0 -steps post_route_phys_opt_design -runs impl_1
|
||||
}
|
||||
set obj [get_report_configs -of_objects [get_runs impl_1] impl_1_post_route_phys_opt_report_timing_summary_0]
|
||||
if { $obj != "" } {
|
||||
set_property -name "is_enabled" -value "1" -objects $obj
|
||||
set_property -name "options.check_timing_verbose" -value "0" -objects $obj
|
||||
set_property -name "options.delay_type" -value "" -objects $obj
|
||||
set_property -name "options.setup" -value "0" -objects $obj
|
||||
set_property -name "options.hold" -value "0" -objects $obj
|
||||
set_property -name "options.max_paths" -value "10" -objects $obj
|
||||
set_property -name "options.nworst" -value "" -objects $obj
|
||||
set_property -name "options.unique_pins" -value "0" -objects $obj
|
||||
set_property -name "options.path_type" -value "" -objects $obj
|
||||
set_property -name "options.slack_lesser_than" -value "" -objects $obj
|
||||
set_property -name "options.report_unconstrained" -value "0" -objects $obj
|
||||
set_property -name "options.warn_on_violation" -value "1" -objects $obj
|
||||
set_property -name "options.significant_digits" -value "" -objects $obj
|
||||
set_property -name "options.cell" -value "" -objects $obj
|
||||
set_property -name "options.more_options" -value "" -objects $obj
|
||||
|
||||
}
|
||||
set obj [get_runs impl_1]
|
||||
set_property -name "constrset" -value "constrs_1" -objects $obj
|
||||
set_property -name "description" -value "Default settings for Implementation." -objects $obj
|
||||
set_property -name "flow" -value "Vivado Implementation 2018" -objects $obj
|
||||
set_property -name "name" -value "impl_1" -objects $obj
|
||||
set_property -name "needs_refresh" -value "0" -objects $obj
|
||||
set_property -name "pr_configuration" -value "" -objects $obj
|
||||
set_property -name "srcset" -value "sources_1" -objects $obj
|
||||
# set_property -name "incremental_checkpoint" -value "" -objects $obj
|
||||
set_property -name "include_in_archive" -value "1" -objects $obj
|
||||
set_property -name "strategy" -value "Vivado Implementation Defaults" -objects $obj
|
||||
set_property -name "steps.opt_design.is_enabled" -value "1" -objects $obj
|
||||
set_property -name "steps.opt_design.tcl.pre" -value "" -objects $obj
|
||||
set_property -name "steps.opt_design.tcl.post" -value "" -objects $obj
|
||||
set_property -name "steps.opt_design.args.verbose" -value "0" -objects $obj
|
||||
set_property -name "steps.opt_design.args.directive" -value "Default" -objects $obj
|
||||
set_property -name "steps.opt_design.args.more options" -value "" -objects $obj
|
||||
set_property -name "steps.power_opt_design.is_enabled" -value "0" -objects $obj
|
||||
set_property -name "steps.power_opt_design.tcl.pre" -value "" -objects $obj
|
||||
set_property -name "steps.power_opt_design.tcl.post" -value "" -objects $obj
|
||||
set_property -name "steps.power_opt_design.args.more options" -value "" -objects $obj
|
||||
set_property -name "steps.place_design.tcl.pre" -value "" -objects $obj
|
||||
set_property -name "steps.place_design.tcl.post" -value "" -objects $obj
|
||||
set_property -name "steps.place_design.args.directive" -value "Default" -objects $obj
|
||||
set_property -name "steps.place_design.args.more options" -value "" -objects $obj
|
||||
set_property -name "steps.post_place_power_opt_design.is_enabled" -value "0" -objects $obj
|
||||
set_property -name "steps.post_place_power_opt_design.tcl.pre" -value "" -objects $obj
|
||||
set_property -name "steps.post_place_power_opt_design.tcl.post" -value "" -objects $obj
|
||||
set_property -name "steps.post_place_power_opt_design.args.more options" -value "" -objects $obj
|
||||
set_property -name "steps.phys_opt_design.is_enabled" -value "0" -objects $obj
|
||||
set_property -name "steps.phys_opt_design.tcl.pre" -value "" -objects $obj
|
||||
set_property -name "steps.phys_opt_design.tcl.post" -value "" -objects $obj
|
||||
set_property -name "steps.phys_opt_design.args.directive" -value "Default" -objects $obj
|
||||
set_property -name "steps.phys_opt_design.args.more options" -value "" -objects $obj
|
||||
set_property -name "steps.route_design.tcl.pre" -value "" -objects $obj
|
||||
set_property -name "steps.route_design.tcl.post" -value "" -objects $obj
|
||||
set_property -name "steps.route_design.args.directive" -value "Default" -objects $obj
|
||||
set_property -name "steps.route_design.args.more options" -value "" -objects $obj
|
||||
set_property -name "steps.post_route_phys_opt_design.is_enabled" -value "0" -objects $obj
|
||||
set_property -name "steps.post_route_phys_opt_design.tcl.pre" -value "" -objects $obj
|
||||
set_property -name "steps.post_route_phys_opt_design.tcl.post" -value "" -objects $obj
|
||||
set_property -name "steps.post_route_phys_opt_design.args.directive" -value "Default" -objects $obj
|
||||
set_property -name "steps.post_route_phys_opt_design.args.more options" -value "" -objects $obj
|
||||
set_property -name "steps.write_bitstream.tcl.pre" -value "" -objects $obj
|
||||
set_property -name "steps.write_bitstream.tcl.post" -value "" -objects $obj
|
||||
set_property -name "steps.write_bitstream.args.raw_bitfile" -value "0" -objects $obj
|
||||
set_property -name "steps.write_bitstream.args.mask_file" -value "0" -objects $obj
|
||||
set_property -name "steps.write_bitstream.args.no_binary_bitfile" -value "0" -objects $obj
|
||||
set_property -name "steps.write_bitstream.args.bin_file" -value "0" -objects $obj
|
||||
set_property -name "steps.write_bitstream.args.readback_file" -value "0" -objects $obj
|
||||
set_property -name "steps.write_bitstream.args.logic_location_file" -value "0" -objects $obj
|
||||
set_property -name "steps.write_bitstream.args.verbose" -value "0" -objects $obj
|
||||
set_property -name "steps.write_bitstream.args.more options" -value "" -objects $obj
|
||||
|
||||
# set the current impl run
|
||||
current_run -implementation [get_runs impl_1]
|
||||
|
||||
puts "INFO: Project created:$project_name"
|
40
parse_board_name.tcl
Normal file
40
parse_board_name.tcl
Normal file
@ -0,0 +1,40 @@
|
||||
# // Author: Xianjun Jiao
|
||||
# // SPDX-FileCopyrightText: 2022 UGent
|
||||
# // SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
# fpga_size_flag: 0 small; 1 big
|
||||
|
||||
if {$BOARD_NAME=="zed_fmcs2"} {
|
||||
set ultra_scale_flag 0
|
||||
set part_string xc7z020clg484-1
|
||||
set fpga_size_flag 0
|
||||
} elseif {$BOARD_NAME=="zcu102_fmcs2"} {
|
||||
set ultra_scale_flag 1
|
||||
set part_string xczu9eg-ffvb1156-2-e
|
||||
set fpga_size_flag 1
|
||||
} elseif {$BOARD_NAME=="zc706_fmcs2"} {
|
||||
set ultra_scale_flag 0
|
||||
set part_string xc7z045ffg900-2
|
||||
set fpga_size_flag 1
|
||||
} elseif {$BOARD_NAME=="zc702_fmcs2"} {
|
||||
set ultra_scale_flag 0
|
||||
set part_string xc7z020clg484-1
|
||||
set fpga_size_flag 0
|
||||
} elseif {$BOARD_NAME=="antsdr"} {
|
||||
set ultra_scale_flag 0
|
||||
set part_string xc7z020clg400-1
|
||||
set fpga_size_flag 0
|
||||
} elseif {$BOARD_NAME=="adrv9361z7035"} {
|
||||
set ultra_scale_flag 0
|
||||
set part_string xc7z035ifbg676-2L
|
||||
set fpga_size_flag 1
|
||||
} elseif {$BOARD_NAME=="adrv9364z7020"} {
|
||||
set ultra_scale_flag 0
|
||||
set part_string xc7z020clg400-1
|
||||
set fpga_size_flag 0
|
||||
} else {
|
||||
set ultra_scale_flag []
|
||||
set part_string []
|
||||
set fpga_size_flag []
|
||||
puts "$BOARD_NAME is not valid!"
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
`include "common_defs.v"
|
||||
`include "openofdm_rx_pre_def.v"
|
||||
|
||||
module dot11 (
|
||||
input clock,
|
||||
|
@ -1,3 +1,5 @@
|
||||
`include "openofdm_rx_pre_def.v"
|
||||
|
||||
`timescale 1ns/1ps
|
||||
|
||||
module dot11_side_ch_tb;
|
||||
|
@ -1,3 +1,5 @@
|
||||
`include "openofdm_rx_pre_def.v"
|
||||
|
||||
`timescale 1ns/1ps
|
||||
|
||||
module dot11_tb;
|
||||
|
@ -1,5 +1,7 @@
|
||||
// Xianjun jiao. putaoshu@msn.com; xianjun.jiao@imec.be;
|
||||
|
||||
`include "openofdm_rx_pre_def.v"
|
||||
|
||||
`timescale 1 ns / 1 ps
|
||||
`include "openofdm_rx_git_rev.v"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user