diff options
Diffstat (limited to 'fpga/usrp3/top/e31x/build_e31x.tcl')
-rw-r--r-- | fpga/usrp3/top/e31x/build_e31x.tcl | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/fpga/usrp3/top/e31x/build_e31x.tcl b/fpga/usrp3/top/e31x/build_e31x.tcl new file mode 100644 index 000000000..e07b124c2 --- /dev/null +++ b/fpga/usrp3/top/e31x/build_e31x.tcl @@ -0,0 +1,39 @@ +# +# Copyright 2016 Ettus Research +# + +source $::env(VIV_TOOLS_DIR)/scripts/viv_utils.tcl +source $::env(VIV_TOOLS_DIR)/scripts/viv_strategies.tcl + +# STEP#1: Create project, add sources, refresh IP +vivado_utils::initialize_project + +# STEP#2: Run synthesis +vivado_utils::synthesize_design +vivado_utils::generate_post_synth_reports + +# STEP#3: Run implementation strategy +set e31x_strategy [dict create] +dict set e31x_strategy "opt_design.is_enabled" 1 +dict set e31x_strategy "opt_design.directive" "Default" +dict set e31x_strategy "post_opt_power_opt_design.is_enabled" 0 +dict set e31x_strategy "place_design.directive" "Default" +dict set e31x_strategy "post_place_power_opt_design.is_enabled" 0 +dict set e31x_strategy "post_place_phys_opt_design.is_enabled" 1 +dict set e31x_strategy "post_place_phys_opt_design.directive" "Default" +dict set e31x_strategy "route_design.directive" "Default" +dict set e31x_strategy "route_design.more_options" "-tns_cleanup" +dict set e31x_strategy "post_route_phys_opt_design.is_enabled" 1 +dict set e31x_strategy "post_route_phys_opt_design.directive" "Default" +vivado_strategies::implement_design $e31x_strategy + +# STEP#4: Generate reports +vivado_utils::generate_post_route_reports + +# STEP#5: Generate a bitstream, netlist and debug probes +set_property BITSTREAM.CONFIG.USR_ACCESS TIMESTAMP [get_designs *] +set byte_swap_bin 1 +vivado_utils::write_implementation_outputs $byte_swap_bin + +# Cleanup +vivado_utils::close_batch_project |