Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Before synthesis, SDC is applied, but after synthesis, the pin name is changed, so sdc is not applied.

Status
Not open for further replies.

Collang2

Junior Member level 3
Joined
Jun 11, 2021
Messages
25
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
314
Hi
I'm having trouble applying the sdc because of this, is there an easy way?

I used the SDC script given by the IP Vendor to synthesis(Design Compiler)
There is no problem with using IP sdc in synthesis.


In gtech netlist, Pin name is ABC.DEF/B/clocked_on (same in IP sdc)
However, after synthesis, the pin name changes to ABC_DEF/B/CK. Therefore, there is an error that this pin cannot be found.

So I can't apply sdc to Netlist in PrimeTime, and ICC
 

You can write sdc after synthesis. And apply this sdc in ptime.
 

Solution
There are multiple ways to deal with that
Some people just write multiple SDC files. Others prefer to write the SDC from one tool, like genus or dc, and then load it in the next tool like Innovus or ICC

Another way is to use filters to catch the pin
Example instead of using get_pins cellname/clk
you can use:

set cells [get_cells lvl/lvl/lvl_reg[0]]
set clkpin [get_pins -filter { is_clock_pin == true } -of_objects $cells]

or to get the Q:
set qpin [get_pins -filter { direction == out } -of_objects [get_cells path/path/path/flop_reg]]
SDC allows for if statements too, so you can do something like this

set rnpins [get_pins -quiet path/path/path/RN ] # IF RN is here it is post synthesis
if {[sizeof_collection $rnpins] > 0} {
set_disable_timing -from RN -to SN \
[get_cells path/path/path/flop_reg* ]
}
 
Last edited:

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top