File size: 9,206 Bytes
198fb2a | 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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 | yosys -import
source $::env(SCRIPTS_DIR)/util.tcl
erase_non_stage_variables synth
# If using a cached, gate level netlist, then copy over to the results dir with
# preserve timestamps flag set. If you don't, subsequent runs will cause the
# floorplan step to be re-executed.
#
# Plain cp + touch -r rather than cp -p: -p also preserves mode, which makes
# cp copy ACLs. That fails with EOPNOTSUPP when the source is on an NFSv4
# mount (every file there carries a system.nfs4_acl xattr) and the
# destination filesystem, e.g. ext4 or tmpfs, cannot store it. Only the
# timestamps matter for make's up-to-date checks; touch -r preserves them
# with nanosecond precision and, unlike cp --preserve=timestamps, is
# portable to macOS/BSD.
if { [env_var_exists_and_non_empty SYNTH_NETLIST_FILES] } {
if { [llength $::env(SYNTH_NETLIST_FILES)] == 1 } {
log_cmd exec cp $::env(SYNTH_NETLIST_FILES) $::env(RESULTS_DIR)/1_2_yosys.v
log_cmd exec touch -r $::env(SYNTH_NETLIST_FILES) \
$::env(RESULTS_DIR)/1_2_yosys.v
} else {
# The date should be the most recent date of the files, but to
# keep things simple we just use the creation date
log_cmd exec cat {*}$::env(SYNTH_NETLIST_FILES) > $::env(RESULTS_DIR)/1_2_yosys.v
}
if { [env_var_exists_and_non_empty CACHED_REPORTS] } {
foreach report $::env(CACHED_REPORTS) {
set dst $::env(REPORTS_DIR)/[file tail $report]
log_cmd exec cp $report $dst
log_cmd exec touch -r $report $dst
}
}
exit
}
proc read_checkpoint { file } {
# We are reading a Yosys checkpoint
if { [file extension $file] == ".json" } {
read_json $file
} else {
read_rtlil $file
}
}
# AUTO_MEMORIES: memory modules whose generated liberty view replaces
# their behavioral body during synthesis. The list is produced by
# scripts/memories/gen_memories.py before canonicalization; see
# docs/user/AutoMemories.md.
proc auto_memories_blackboxes { } {
if { ![env_var_equals AUTO_MEMORIES 1] } {
return {}
}
set f "$::env(RESULTS_DIR)/memories/blackboxes.txt"
if { ![file exists $f] } {
error "AUTO_MEMORIES=1 but $f is missing;\
the do-auto-memories step must run before synthesis"
}
set fh [open $f r]
set content [string map {\r ""} [read $fh]]
close $fh
return [regexp -all -inline {\S+} $content]
}
proc read_design_sources { } {
# We are reading Verilog sources
source $::env(SCRIPTS_DIR)/synth_stdcells.tcl
# Setup verilog include directories
set vIdirsArgs ""
if { [env_var_exists_and_non_empty VERILOG_INCLUDE_DIRS] } {
foreach dir $::env(VERILOG_INCLUDE_DIRS) {
lappend vIdirsArgs "-I$dir"
}
set vIdirsArgs [join $vIdirsArgs]
}
if { [env_var_equals SYNTH_HDL_FRONTEND slang] } {
# read_slang is built into Yosys (>=0.67); no plugin load needed.
set slang_args [list \
-D SYNTHESIS --keep-hierarchy --compat=vcs --ignore-assertions --top $::env(DESIGN_NAME) \
{*}$vIdirsArgs {*}[env_var_or_empty VERILOG_DEFINES]]
# slang requires all files at once
lappend slang_args {*}$::env(VERILOG_FILES)
# Add clock gate cell definition, if available
if { [env_var_exists_and_non_empty CLKGATE_MAP_FILE] } {
lappend slang_args $::env(CLKGATE_MAP_FILE)
}
# Apply top-level parameters
dict for {key value} [env_var_or_empty VERILOG_TOP_PARAMS] {
lappend slang_args -G "$key=$value"
}
# Automatically blackbox macros from ADDITIONAL_LIBS so that
# any competing Verilog definitions in the source files are
# ignored in favor of the liberty view, consistent with the
# behavior of the builtin Verilog frontend.
if { [env_var_exists_and_non_empty ADDITIONAL_LIBS] } {
foreach m [get_liberty_cell_names] {
lappend slang_args --blackboxed-module "$m"
}
}
# Apply module blackboxing based on module names as they appear
# in the input, that is before any module name mangling done
# by elaboration and synthesis
if { [env_var_exists_and_non_empty SYNTH_BLACKBOXES] } {
foreach m $::env(SYNTH_BLACKBOXES) {
lappend slang_args --blackboxed-module "$m"
}
}
# Blackbox AUTO_MEMORIES-detected memory modules so their generated
# liberty view wins over their behavioral bodies.
foreach m [auto_memories_blackboxes] {
lappend slang_args --blackboxed-module "$m"
}
# Add user arguments
lappend slang_args {*}$::env(SYNTH_SLANG_ARGS)
yosys read_slang {*}$slang_args
# Workaround for yosys-slang#119
setattr -unset init
} elseif { [env_var_equals SYNTH_HDL_FRONTEND verific] } {
if { [env_var_exists_and_non_empty VERILOG_INCLUDE_DIRS] } {
verific -vlog-incdir {*}$::env(VERILOG_INCLUDE_DIRS)
}
if { [env_var_exists_and_non_empty VERILOG_DEFINES] } {
verific -vlog-define {*}$::env(VERILOG_DEFINES)
}
verific -sv2012 {*}$::env(VERILOG_FILES)
verific -import -no-split-complex-ports $::env(DESIGN_NAME)
dict for {key value} [env_var_or_empty VERILOG_TOP_PARAMS] {
# Apply top-level parameters
chparam -set $key $value $::env(DESIGN_NAME)
}
if { [env_var_exists_and_non_empty SYNTH_BLACKBOXES] } {
error "Non-empty SYNTH_BLACKBOXES unsupported with HDL frontend \"verific\""
}
if { [llength [auto_memories_blackboxes]] > 0 } {
error "AUTO_MEMORIES unsupported with HDL frontend \"$::env(SYNTH_HDL_FRONTEND)\""
}
} elseif { ![env_var_exists_and_non_empty SYNTH_HDL_FRONTEND] } {
verilog_defaults -push
if { [env_var_exists_and_non_empty VERILOG_DEFINES] } {
verilog_defaults -add {*}$::env(VERILOG_DEFINES)
}
foreach file $::env(VERILOG_FILES) {
read_verilog -defer -sv {*}$vIdirsArgs $file
}
# Read platform specific mapfile for OPENROAD_CLKGATE cells
if { [env_var_exists_and_non_empty CLKGATE_MAP_FILE] } {
read_verilog -defer $::env(CLKGATE_MAP_FILE)
}
verilog_defaults -pop
dict for {key value} [env_var_or_empty VERILOG_TOP_PARAMS] {
# Apply top-level parameters
chparam -set $key $value $::env(DESIGN_NAME)
}
# AUTO_MEMORIES blackboxing runs before `hierarchy -check`: a
# memory wrapper may instantiate modules the sources never define
# (the behavioral body is being discarded anyway), so the check is
# only meaningful after the bodies are gone.
set auto_blackboxes [auto_memories_blackboxes]
if { [llength $auto_blackboxes] > 0 } {
hierarchy -top $::env(DESIGN_NAME)
foreach m $auto_blackboxes {
blackbox $m
}
hierarchy -check -top $::env(DESIGN_NAME)
}
if { [env_var_exists_and_non_empty SYNTH_BLACKBOXES] } {
hierarchy -check -top $::env(DESIGN_NAME)
foreach m $::env(SYNTH_BLACKBOXES) {
blackbox $m
}
}
} else {
error "Unrecognized HDL frontend: $::env(SYNTH_HDL_FRONTEND)"
}
}
if { $::env(ABC_AREA) } {
puts "Using ABC area script."
set abc_script $::env(SCRIPTS_DIR)/abc_area.script
} else {
puts "Using ABC speed script."
set abc_script $::env(SCRIPTS_DIR)/abc_speed.script
}
# Create argument list for stat
set lib_args ""
foreach lib $::env(LIB_FILES) {
append lib_args "-liberty $lib "
}
# Exclude dont_use cells. This includes macros that are specified via
# LIB_FILES and ADDITIONAL_LIBS that are included in LIB_FILES.
set lib_dont_use_args ""
if { [env_var_exists_and_non_empty DONT_USE_CELLS] } {
foreach cell $::env(DONT_USE_CELLS) {
lappend lib_dont_use_args -dont_use $cell
}
}
# Technology mapping for cells
set abc_args [list -script $abc_script \
{*}$lib_args {*}$lib_dont_use_args -constr $::env(OBJECTS_DIR)/abc.constr]
if { [env_var_exists_and_non_empty SDC_FILE_CLOCK_PERIOD] } {
puts "Extracting clock period from SDC file: $::env(SDC_FILE_CLOCK_PERIOD)"
set fp [open $::env(SDC_FILE_CLOCK_PERIOD) r]
set clock_period [string trim [read $fp]]
if { $clock_period != "" } {
puts "Setting clock period to $clock_period"
lappend abc_args -D $clock_period
}
close $fp
}
set constr [open $::env(OBJECTS_DIR)/abc.constr w]
puts $constr "set_driving_cell $::env(ABC_DRIVER_CELL)"
puts $constr "set_load $::env(ABC_LOAD_IN_FF)"
close $constr
proc convert_liberty_areas { } {
cellmatch -derive_luts =A:liberty_cell
# find a reference nand2 gate
set found_cell ""
set found_cell_area ""
# iterate over all cells with a nand2 signature
foreach cell [tee -q -s result.string select -list-mod =*/a:lut=4'b0111 %m] {
if { ![rtlil::has_attr -mod $cell area] } {
puts "Cell $cell missing area information"
continue
}
set area [rtlil::get_attr -string -mod $cell area]
if { $found_cell == "" || $area < $found_cell_area } {
set found_cell $cell
set found_cell_area $area
}
}
if { $found_cell == "" } {
error "reference nand2 cell not found"
}
# convert the area on all Liberty cells to a gate number equivalent
foreach box [tee -q -s result.string select -list-mod =A:area =A:liberty_cell %i] {
set area [rtlil::get_attr -mod -string $box area]
set gate_eq [expr int($area / $found_cell_area)]
rtlil::set_attr -mod -uint $box gate_cost_equivalent $gate_eq
}
}
|