Place and Route |
Place and route (P&R) tools uses a physical technology information written in the technology file (If you find the file "rohm018_icc.tf" in your working directory, you may skkip this setting). Make a symbolic link from the technology file for P&R tool (Synopsys IC compiler) to your working directory.
vlsi> cd ~/d vlsi> ln -s kyoto/templete/rohm018_astro_kyoto-u.tf rohm018_icc.tf
Execute the following command line to start IC compiler.
vlsi> setlic Choose the number of Synopsys IC compiler. vlsi> cd ~/d/ICC vlsi> icc_shell -gui -64bit (Don't use &)
icc_shell> derive_pg_connection -tie -power_net VDD -ground_net VSS
Contents of led_pin.tcl
set_pin_physical_constraints -pin_name {WIDTH[3]} -layers {METAL3} -width 0.28 -depth 0.28 -side 1 -order 1 set_pin_physical_constraints -pin_name {WIDTH[2]} -layers {METAL3} -width 0.28 -depth 0.28 -side 1 -order 2 set_pin_physical_constraints -pin_name {WIDTH[1]} -layers {METAL3} -width 0.28 -depth 0.28 -side 1 -order 3 set_pin_physical_constraints -pin_name {WIDTH[0]} -layers {METAL3} -width 0.28 -depth 0.28 -side 1 -order 4 set pin_physical_constraints -pin_name {CLK} -layers {METAL3} -width 0.28 -depth 0.28 -side 1 -order 5 set_pin_physical_constraints -pin_name {RST_B} -layers {METAL3} -width 0.28 -depth 0.28 -side 1 -order 6 set_pin_physical_constraints -pin_name {OUT} -layers {METAL4} -width 0.28 -depth 0.28 -side 2 -order 1 |
In this figure, the square is a circuit boundary and the direction of an arrow shows an order of the pins. Instead of "-order", you can use "-offset" to specify the distance from the starting point on each side. The width of the pin and length of the pin are specified by using "-width" and "-depth". You can increase the width and depth of IO pins, because "0.28" micrometer is a minimum size in the design rule.
icc_shell> set_pnet_options -complete {METAL1 METAL2}
icc_shell> connect_tie_cells -objects [get_cells * ] -obj_type cell_inst -tie_high_lib_cell ROHM18TIEHI -tie_low_lib_cell ROHM18TIELO
icc_shell> set_route_options -same_net_notch check_and_fix
icc_shell> clock_opt -fix_hold_all_clocks -no_clock_routeNOTE: The clock tree network is required to deliver the consistent timing of the clock signal. Therefore, routing of the clock tree is carried out previous to other networks.
Master cell names (Use space as a delimiter)
ROHM18FILLERX64 ROHM18FILLERX32 ROHM18FILLERX16 ROHM18FILLERX8 ROHM18FILLERX4 ROHM18FILLERX2 ROHM18FILLER |
icc_shell> source ../kyoto/icc/tcl/antennarule_tcl icc_shell> set_route_zrt_global_options -default true icc_shell> set_route_zrt_detail_options -antenna true -antenna_on_iteration 2 -diode_libcell_names {ROHM18DIODEX1 ROHM18DIODEX2 ROHM18DIODEX4} -insert_diodes_during_routing true -max_antenna_pin_count -1 -port_antenna_mode top_layer -antenna_fixing_preference use_diodes -default_port_external_gate_size 0.45 -default_port_external_antenna_area 5NOTE: The length of the metal connected to gate electrode of MOSFET is restricted by the antenna rule to prevent ESD (Electrostatic Discharge) damage in the fabrication process.
icc_shell> route_zrt_group -all_clock_nets
Total number of DRCs = 0 Total number of antenna violations = 0 Total number of voltage-area violations = no voltage-areas defined |
icc_shell> route_zrt_detail -incremental true
icc_shell> verify_zrt_route -drc false -antenna true
icc_shell> set_write_stream_options -map_layer ../kyoto/template/A2GDS.map -child_depth 99 -output_pin {text geometry} -output_design_intent
icc_shell> define_name_rules verilog -allowed "A-Z0-9_" -type net icc_shell> change_names -rules verilog -hierarchy
Copyright (C) 2016- Akio Kitagawa, Kanazawa Univ.