File: build_n3xx.tcl

package info (click to toggle)
uhd 4.3.0.0%2Bds1-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 175,384 kB
  • sloc: cpp: 271,145; ansic: 103,960; python: 95,906; vhdl: 55,838; tcl: 14,117; xml: 8,535; makefile: 2,706; sh: 2,432; pascal: 230; javascript: 120; csh: 94; asm: 20; perl: 11
file content (39 lines) | stat: -rw-r--r-- 1,585 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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 n3xx_strategy [dict create]
dict set n3xx_strategy "opt_design.is_enabled"                   1
dict set n3xx_strategy "opt_design.directive"                    "NoBramPowerOpt"
dict set n3xx_strategy "post_opt_power_opt_design.is_enabled"    0
dict set n3xx_strategy "place_design.directive"                  "ExtraNetDelay_high"
dict set n3xx_strategy "post_place_power_opt_design.is_enabled"  0
dict set n3xx_strategy "post_place_phys_opt_design.is_enabled"   1
dict set n3xx_strategy "post_place_phys_opt_design.directive"    "AggressiveExplore"
dict set n3xx_strategy "route_design.directive"                  "Explore"
dict set n3xx_strategy "route_design.more_options"               "-tns_cleanup"
dict set n3xx_strategy "post_route_phys_opt_design.is_enabled"   1
dict set n3xx_strategy "post_route_phys_opt_design.directive"    "Explore"
vivado_strategies::implement_design $n3xx_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