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 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
|
#!/usr/bin/tcsh -f
#
# synthesize.sh:
#-------------------------------------------------------------------------
#
# This script synthesizes verilog files for qflow using yosys
#
#-------------------------------------------------------------------------
# November 2006
# Steve Beccue and Tim Edwards
# MultiGiG, Inc.
# Scotts Valley, CA
# Updated 2013 Tim Edwards
# Open Circuit Design
#-------------------------------------------------------------------------
if ($#argv == 2) then
set projectpath=$argv[1]
set sourcename=$argv[2]
else
echo Usage: synthesize.sh <project_path> <source_name>
echo
echo where
echo
echo <project_path> is the name of the project directory containing
echo a file called qflow_vars.sh.
echo
echo <source_name> is the root name of the verilog file, and
echo
echo Options are set from project_vars.sh. Use the following
echo variable names:
echo
echo $yosys_options for yosys
echo $yosys_script for yosys
echo $nobuffers to bypass ybuffer
echo $fanout_options for blifFanout
exit 1
endif
set rootname=${sourcename:h}
#---------------------------------------------------------------------
# This script is called with the first argument <project_path>, which should
# have file "qflow_vars.sh". Get all of our standard variable definitions
# from the qflow_vars.sh file.
#---------------------------------------------------------------------
if (! -f ${projectpath}/qflow_vars.sh ) then
echo "Error: Cannot find file qflow_vars.sh in path ${projectpath}"
exit 1
endif
source ${projectpath}/qflow_vars.sh
source ${techdir}/${techname}.sh
cd ${projectpath}
if (-f project_vars.sh) then
source project_vars.sh
endif
# Reset the logfile
rm -f ${synthlog} >& /dev/null
touch ${synthlog}
# Prepend techdir to libertyfile unless libertyfile begins with "/"
set abspath=`echo ${libertyfile} | cut -c1`
if ( "${abspath}" == "/" ) then
set libertypath=${libertyfile}
else
set libertypath=${techdir}/${libertyfile}
endif
# Prepend techdir to spicefile unless spicefile begins with "/"
set abspath=`echo ${spicefile} | cut -c1`
if ( "${abspath}" == "/" ) then
set spicepath=${spicefile}
else
set spicepath=${techdir}/${spicefile}
endif
# Prepend techdir to leffile unless leffile begins with "/"
set abspath=`echo ${leffile} | cut -c1`
if ( "${abspath}" == "/" ) then
set lefpath=${leffile}
else
set lefpath=${techdir}/${leffile}
endif
#---------------------------------------------------------------------
# Determine hierarchy by running yosys with a simple script to check
# hierarchy. Add files until yosys no longer reports an error.
# Any error not related to a missing source file causes the script
# to rerun yosys and dump error information into the log file, and
# exit.
#---------------------------------------------------------------------
cd ${sourcedir}
set uniquedeplist = ""
set yerrcnt = 2
while ($yerrcnt > 1)
# Note: While the use of read_liberty to allow structural verilog only
# works in yosys 0.3.1 and newer, the following line works for the
# purpose of querying the hierarchy in all versions.
if ( !( -f ${rootname}.v )) then
echo "Error: Verilog source file ${rootname}.v cannot be found!" \
|& tee -a ${synthlog}
endif
cat > ${rootname}.ys << EOF
# Synthesis script for yosys created by qflow
read_liberty -lib -ignore_miss_dir -setattr blackbox ${libertypath}
read_verilog ${rootname}.v
EOF
foreach subname ( $uniquedeplist )
if ( !( -f ${subname}.v )) then
echo "Error: Verilog source file ${subname}.v cannot be found!" \
|& tee -a ${synthlog}
endif
echo "read_verilog ${subname}.v" >> ${rootname}.ys
end
cat >> ${rootname}.ys << EOF
# Hierarchy check
hierarchy -check
EOF
set yerrors = `eval ${bindir}/yosys -s ${rootname}.ys |& sed -e "/\\/s#\\#/#g" \
| grep ERROR`
set yerrcnt = `echo $yerrors | wc -c`
if ($yerrcnt > 1) then
set yvalid = `echo $yerrors | grep "referenced in module" | wc -c`
if ($yvalid > 1) then
set newdep = `echo $yerrors | cut -d " " -f 3 | cut -c3- | cut -d "'" -f 1`
set uniquedeplist = "${uniquedeplist} ${newdep}"
else
${bindir}/yosys -s ${rootname}.ys >& ${synthlog}
echo "Errors detected in verilog source, need to be corrected." \
|& tee -a ${synthlog}
echo "See file ${synthlog} for error output."
echo "Synthesis flow stopped due to error condition." >> ${synthlog}
exit 1
endif
endif
# end while ($yerrcnt > 1)
end
#---------------------------------------------------------------------
# Generate the main yosys script
#---------------------------------------------------------------------
set blif_opts = ""
# Set option for generating buffers
set blif_opts = "${blif_opts} -buf ${bufcell} ${bufpin_in} ${bufpin_out}"
# Set option for generating only the flattened top-level cell
# set blif_opts = "${blif_opts} ${rootname}"
# Determine version of yosys
set versionstring = `${bindir}/yosys -V | cut -d' ' -f2`
set major = `echo $versionstring | cut -d. -f1`
set minor = `echo $versionstring | cut -d. -f2`
# Sigh. . . versioning doesn't follow any fixed standard
set minortest = `echo $minor | cut -d+ -f2`
set minor = `echo $minor | cut -d+ -f1`
if ( ${minortest} == "" ) then
set revisionstring = `echo $versionstring | cut -d. -f3`
if ( ${revisionstring} == "" ) set revisionstring = 0
set revision = `echo $revisionstring | cut -d+ -f1`
set subrevision = `echo $revisionstring | cut -d+ -f2`
if ( ${subrevision} == "" ) set subrevision = 0
else
set revision = 0
set subrevision = ${minortest}
endif
set minor = `echo ${minor} | sed 's/+//'`
cat > ${rootname}.ys << EOF
# Synthesis script for yosys created by qflow
EOF
# From yosys version 3.0.0+514, structural verilog using cells from the
# the same standard cell set that is mapped by abc is supported.
if (( ${major} == 0 && ${minor} == 3 && ${revision} == 0 && ${subrevision} >= 514) || \
( ${major} == 0 && ${minor} == 3 && ${revision} > 0 ) || \
( ${major} == 0 && ${minor} > 3 ) || \
( ${major} > 0) ) then
cat > ${rootname}.ys << EOF
read_liberty -lib -ignore_miss_dir -setattr blackbox ${libertypath}
EOF
endif
cat > ${rootname}.ys << EOF
read_liberty -lib -ignore_miss_dir -setattr blackbox ${libertypath}
read_verilog ${rootname}.v
EOF
foreach subname ( $uniquedeplist )
echo "read_verilog ${subname}.v" >> ${rootname}.ys
end
# Will not support yosys 0.0.x syntax; flag a warning instead
if ( ${major} == 0 && ${minor} == 0 ) then
echo "Warning: yosys 0.0.x unsupported. Please update!"
echo "Output is likely to be incompatible with qflow."
endif
if ( ${major} == 0 && ${minor} < 5 ) then
cat >> ${rootname}.ys << EOF
# High-level synthesis
hierarchy -top ${rootname}
EOF
endif
if ( ${?yosys_script} ) then
if ( -f ${yosys_script} ) then
cat ${yosys_script} >> ${rootname}.ys
else
echo "Error: yosys script ${yosys_script} specified but not found"
endif
else if ( ${major} != 0 || ${minor} >= 5 ) then
cat >> ${rootname}.ys << EOF
# High-level synthesis
synth -top ${rootname}
EOF
else
cat >> ${rootname}.ys << EOF
# High-level synthesis
proc; memory; opt; fsm; opt
# Map to internal cell library
techmap; opt
EOF
endif
cat >> ${rootname}.ys << EOF
# Map register flops
dfflibmap -liberty ${libertypath}
opt
EOF
if ( ${?abc_script} ) then
if ( ${abc_script} != "" ) then
cat >> ${rootname}.ys << EOF
abc -exe ${bindir}/yosys-abc -liberty ${libertypath} -script ${abc_script}
flatten
EOF
else
echo "Warning: no abc script ${abc_script}, using default, no script" \
|& tee -a ${synthlog}
cat >> ${rootname}.ys << EOF
abc -exe ${bindir}/yosys-abc -liberty ${libertypath}
flatten
EOF
endif
else
cat >> ${rootname}.ys << EOF
# Map combinatorial cells, standard script
abc -exe ${bindir}/yosys-abc -liberty ${libertypath} -script +strash;scorr;ifraig;retime,{D};strash;dch,-f;map,-M,1,{D}
flatten
EOF
endif
# Purge buffering of internal net name aliases. Option "debug"
# retains all internal names by buffering them, resulting in a
# larger layout (especially for layouts derived from hierarchical
# source), but one in which all signal names from the source can
# be probed.
if ( ! ${?yosys_debug} ) then
cat >> ${rootname}.ys << EOF
clean -purge
EOF
endif
# Map tiehi and tielo, if they are defined
if ( ${?tiehi} && ${?tiehipin_out} ) then
if ( "${tiehi}" != "" ) then
echo "hilomap -hicell $tiehi $tiehipin_out" >> ${rootname}.ys
endif
endif
if ( ${?tielo} && ${?tielopin_out} ) then
if ( "${tielo}" != "" ) then
echo "hilomap -locell $tielo $tielopin_out" >> ${rootname}.ys
endif
endif
# Output buffering, if not specifically prevented
if ( ${major} > 0 || ${minor} > 1 ) then
if (!($?nobuffers)) then
cat >> ${rootname}.ys << EOF
# Output buffering
iopadmap -outpad ${bufcell} ${bufpin_in}:${bufpin_out} -bits
EOF
endif
endif
cat >> ${rootname}.ys << EOF
# Cleanup
opt
clean
write_blif ${blif_opts} ${rootname}_mapped.blif
EOF
#---------------------------------------------------------------------
# Yosys synthesis
#---------------------------------------------------------------------
if ( ! ${?yosys_options} ) then
set yosys_options = ""
endif
# Check if "yosys_options" specifies a script to use for yosys.
# If not, call yosys with the default script.
set usescript = `echo ${yosys_options} | grep -- -s | wc -l`
# If there is a file ${rootname}_mapped.blif, move it to a temporary
# place so we can see if yosys generates a new one or not.
if ( -f ${rootname}_mapped.blif ) then
mv ${rootname}_mapped.blif ${rootname}_mapped_orig.blif
endif
echo "Running yosys for verilog parsing and synthesis" |& tee -a ${synthlog}
if ( ${usescript} == 1 ) then
eval ${bindir}/yosys ${yosys_options} |& tee -a ${synthlog}
else
eval ${bindir}/yosys ${yosys_options} -s ${rootname}.ys |& tee -a ${synthlog}
endif
#---------------------------------------------------------------------
# Spot check: Did yosys produce file ${rootname}_mapped.blif?
#---------------------------------------------------------------------
if ( !( -f ${rootname}_mapped.blif )) then
echo "outputprep failure: No file ${rootname}_mapped.blif." \
|& tee -a ${synthlog}
echo "Premature exit." |& tee -a ${synthlog}
echo "Synthesis flow stopped due to error condition." >> ${synthlog}
# Replace the old blif file, if we had moved it
if ( -f ${rootname}_mapped_orig.blif ) then
mv ${rootname}_mapped_orig.blif ${rootname}_mapped.blif
endif
exit 1
else
# Remove the old blif file, if we had moved it
if ( -f ${rootname}_mapped_orig.blif ) then
rm ${rootname}_mapped_orig.blif
endif
endif
echo "Cleaning up output syntax" |& tee -a ${synthlog}
${scriptdir}/ypostproc.tcl ${rootname}_mapped.blif ${rootname} \
${techdir}/${techname}.sh
#----------------------------------------------------------------------
# Add buffers in front of all outputs (for yosys versions before 0.2.0)
#----------------------------------------------------------------------
if ( ${major} == 0 && ${minor} < 2 ) then
if ($?nobuffers) then
set final_blif = "${rootname}_mapped_tmp.blif"
else
echo "Adding output buffers"
${scriptdir}/ybuffer.tcl ${rootname}_mapped_tmp.blif \
${rootname}_mapped_buf.blif ${techdir}/${techname}.sh
set final_blif = "${rootname}_mapped_buf.blif"
endif
else
# Buffers already handled within yosys
set final_blif = "${rootname}_mapped_tmp.blif"
endif
#---------------------------------------------------------------------
# The following definitions will replace "LOGIC0" and "LOGIC1"
# with buffers from gnd and vdd, respectively. This takes care
# of technologies where tie-low and tie-high cells are not
# defined.
#---------------------------------------------------------------------
echo "Cleaning Up blif file syntax" |& tee -a ${synthlog}
if ( "$tielo" == "") then
set subs0a="/LOGIC0/s/O=/${bufpin_in}=gnd ${bufpin_out}=/"
set subs0b="/LOGIC0/s/LOGIC0/${bufcell}/"
else
set subs0a=""
set subs0b=""
endif
if ( "$tiehi" == "") then
set subs1a="/LOGIC1/s/O=/${bufpin_in}=vdd ${bufpin_out}=/"
set subs1b="/LOGIC1/s/LOGIC1/${bufcell}/"
else
set subs1a=""
set subs1b=""
endif
#---------------------------------------------------------------------
# Remove backslashes, references to "$techmap", and
# make local input nodes of the form $0node<a:b><c> into the
# form node<c>_FF_INPUT
#---------------------------------------------------------------------
cat ${final_blif} | sed \
-e "$subs0a" -e "$subs0b" -e "$subs1a" -e "$subs1b" \
-e 's/\\\([^$]\)/\1/g' \
-e 's/$techmap//g' \
-e 's/$0\([^ \t<]*\)<[0-9]*:[0-9]*>\([^ \t]*\)/\1\2_FF_INPUT/g' \
> ${synthdir}/${rootname}.blif
# Switch to synthdir for processing of the BDNET netlist
cd ${synthdir}
#---------------------------------------------------------------------
# If "nofanout" is set, then don't run blifFanout.
#---------------------------------------------------------------------
if ($?nofanout) then
set nchanged=0
else
#---------------------------------------------------------------------
# Make a copy of the original blif file, as this will be overwritten
# by the fanout handling process
#---------------------------------------------------------------------
cp ${rootname}.blif ${rootname}_bak.blif
#---------------------------------------------------------------------
# Check all gates for fanout load, and adjust gate strengths as
# necessary. Iterate this step until all gates satisfy drive
# requirements.
#
# Use option "-c value" in fanout_options to force a value for the
# (maximum expected) output load, in fF (default is 30fF)
# Use option "-l value" in fanout_options to force a value for the
# maximum latency, in ps (default is 1000ps)
#---------------------------------------------------------------------
rm -f ${rootname}_nofanout
touch ${rootname}_nofanout
if ($?gndnet) then
echo $gndnet >> ${rootname}_nofanout
endif
if ($?vddnet) then
echo $vddnet >> ${rootname}_nofanout
endif
if (! $?fanout_options) then
set fanout_options=""
endif
echo "Running blifFanout (iterative)" |& tee -a ${synthlog}
echo "" >> ${synthlog}
if (-f ${libertypath} && -f ${bindir}/blifFanout ) then
set nchanged=1000
while ($nchanged > 0)
mv ${rootname}.blif tmp.blif
if ("x${separator}" == "x") then
set sepoption=""
else
set sepoption="-s ${separator}"
endif
if ("x${bufcell}" == "x") then
set bufoption=""
else
set bufoption="-b ${bufcell} -i ${bufpin_in} -o ${bufpin_out}"
endif
${bindir}/blifFanout ${fanout_options} -I ${rootname}_nofanout \
-p ${libertypath} ${sepoption} ${bufoption} \
tmp.blif ${rootname}.blif >>& ${synthlog}
set nchanged=$status
echo "gates resized: $nchanged" |& tee -a ${synthlog}
end
else
set nchanged=0
endif
endif
#---------------------------------------------------------------------
# Spot check: Did blifFanout produce an error?
#---------------------------------------------------------------------
if ( $nchanged < 0 ) then
echo "blifFanout failure. See file ${synthlog} for error messages." \
|& tee -a ${synthlog}
echo "Premature exit." |& tee -a ${synthlog}
echo "Synthesis flow stopped due to error condition." >> ${synthlog}
exit 1
endif
echo "" >> ${synthlog}
echo "Generating RTL verilog and SPICE netlist file in directory" \
|& tee -a ${synthlog}
echo " ${synthdir}" |& tee -a ${synthlog}
echo "Files:" |& tee -a ${synthlog}
echo " Verilog: ${synthdir}/${rootname}.rtl.v" |& tee -a ${synthlog}
echo " Verilog: ${synthdir}/${rootname}.rtlnopwr.v" |& tee -a ${synthlog}
echo " Spice: ${synthdir}/${rootname}.spc" |& tee -a ${synthlog}
echo "" >> ${synthlog}
echo "Running blif2Verilog." |& tee -a ${synthlog}
${bindir}/blif2Verilog -c -v ${vddnet} -g ${gndnet} ${rootname}.blif \
> ${rootname}.rtl.v
${bindir}/blif2Verilog -c -p -v ${vddnet} -g ${gndnet} ${rootname}.blif \
> ${rootname}.rtlnopwr.v
echo "Running blif2BSpice." |& tee -a ${synthlog}
if ("x${spicefile}" == "x") then
set spiceopt=""
else
set spiceopt="-l ${spicepath}"
endif
${bindir}/blif2BSpice -p ${vddnet} -g ${gndnet} ${spiceopt} \
${rootname}.blif > ${rootname}.spc
#---------------------------------------------------------------------
# Spot check: Did blif2Verilog or blif2BSpice exit with an error?
# Note that these files are not critical to the main synthesis flow,
# so if they are missing, we flag a warning but do not exit.
#---------------------------------------------------------------------
if ( !( -f ${rootname}.rtl.v || \
( -M ${rootname}.rtl.v < -M ${rootname}.blif ))) then
echo "blif2Verilog failure: No file ${rootname}.rtl.v created." \
|& tee -a ${synthlog}
endif
if ( !( -f ${rootname}.rtlnopwr.v || \
( -M ${rootname}.rtlnopwr.v < -M ${rootname}.blif ))) then
echo "blif2Verilog failure: No file ${rootname}.rtlnopwr.v created." \
|& tee -a ${synthlog}
endif
if ( !( -f ${rootname}.spc || \
( -M ${rootname}.spc < -M ${rootname}.blif ))) then
echo "blif2BSpice failure: No file ${rootname}.spc created." \
|& tee -a ${synthlog}
echo "Premature exit." |& tee -a ${synthlog}
echo "Synthesis flow stopped due to error condition." >> ${synthlog}
exit 1
endif
#---------------------------------------------------------------------
# Spot check: Did blif2cel produce file ${rootname}.cel?
#---------------------------------------------------------------------
if ( !( -f ${layoutdir}/${rootname}.cel || ( -M ${layoutdir}/${rootname}.cel \
< -M ${rootname}.blif ))) then
echo "blif2cel failure: No file ${rootname}.cel." |& tee -a ${synthlog}
echo "blif2cel was called with arguments: ${synthdir}/${rootname}.blif "
echo " ${lefpath} ${layoutdir}/${rootname}.cel"
echo "Premature exit." |& tee -a ${synthlog}
echo "Synthesis flow stopped due to error condition." >> ${synthlog}
exit 1
endif
#---------------------------------------------------------------------
cd ${projectpath}
set endtime = `date`
echo "Synthesis script ended on $endtime" >> $synthlog
|