Skip to main content

Design Engineer - STA, SD, Power, PDN at Dew Software

Hello Dear Readers,   Currently at Dew Software Bangalore vacancy for Design Engineer - STA, SD, Power, PDN role. Dew Software, a leading player in the Digital Transformation space, is seeking a skilled Design Engineer specializing in STA (Static Timing Analysis), SD (Signal Integrity), Power, and PDN (Power Delivery Network) to join our team. Working with Fortune 500 companies to support their digital innovation and transformation strategies, the Design Engineer will be responsible for ensuring the integrity and efficiency of digital designs through comprehensive analysis and optimization. Dew Software is dedicated to delivering exceptional outcomes with cutting-edge technologies, and this is an excellent opportunity to contribute to the growth and success of our clients. Responsibilities: Perform STA (Static Timing Analysis) to ensure design meets timing requirements Conduct signal integrity analysis to optimize signal integrity and minimize signal integrity issues Provide power anal

SDC (Synopsys Design Constraints) contents part 4

Today, we will be discussing the remaining constraints mentioned in the SDC, which pertain to timing exceptions and design rules. This is the final part of the SDC contents. This is going to be interesting, especially with multicycle paths. Take time to read and try to comprehend.

10. set_max_transition

    By setting max transition value, our design checks that all ports and pins are meeting the specified limits mentioned in SDC. If these are not satisfied then timing report will give DRVs (design rule violations) in terms of slack. This is specified as

            set_max_transition 0.5  UBUF1/A

setting maximum limit of 500ps on pin A of Buffer1.

11. set_max_capacitance

    This is same as max transition, setting the maximum capacitance value. if our design not meeting this value then violation will occur. This will also reports under design rule violations in terms of slack.

    set_max_capacitance 0.7 [all_nets]

setting maximum capacitance of 700fF on all nets.

similarly, set_max_fanout.

The difference between max_capacitance and max_fanout is, max capacitance is maximum allowable load capacitance for each cell or net whereas max fanout is maximum number of loads that each cell/net can drive.

Timing exceptions

12. set_false_path

    Certain paths in our design are not real, by setting these paths as false paths we can exclude them from STA analysis. Thus, run time of STA tool will be reduced. The paths which have logically incorrect, the paths whose inputs are tied to either supply or ground called configuration inputs, the paths from test inputs and asynchronous inputs are considered as false paths. These are few examples of false paths but not limited,  STA tool cannot identify the false paths as a designer we need to specify.

False path is set using set_false_path. Examples are shown below.

        set_false_path  -from [get_clocks SCAN_CLK]  -to [get_clocks CORE_CLOCK]

        set_false_path  -through [get_pins UMUX1/A]

Any path passing through multiplexer pin A is ignored for timing analysis.

        set_false_path  -to [get_ports TEST_REG*]

Any path that ends at the TEST_REG* port are false paths.

Note that "-through" option can slow down the timing analysis so, use it wherever it is absolutely necessary otherwise look for other options to specify such paths.

13. set_multicycle_path

    Sometimes data path between launch and capture flop takes more than one clock cycle to propagate the logic, such paths are called multicycle paths (MCP). The normal constraint on this path is overridden to propagate the logic on multiple cycles. For example, setup check for single cycle path is the arrival time at D pin of capture flip flop must be less than the Tclk-Tsu(capture)-Tskew. But it will change for MCP  as logic propagated after N clock cycles so setup will be checked at Nth clock cycle then our setup check will be arrival time at D pin of capture flop must be less than N*Tclk-Tsu(capture)-Tskew to capture the data properly. Multicycle path for setup is set by using

        create_clock  -period 10  [get_ports CLKM]    

         set_multicycle_path  3   -setup   -from [get_pins UFF1/Q]   -to [get_pins UFF2/D]

That is setup check will be done at 30ns instead of  checking at 10ns.

Similarly, we have to set for hold check. By default hold will check at 1 clock edge before setup check edge (data capture edge). That is if setup check will be done at Nth clock cycle the hold check will be at (N-1)th clock cycle. For this example 

       set_multicycle_path  2  -hold   -from [get_pins UFF1/Q]   -to [get_pins UFF2/D].

The actual hold check will be done at 1 cycle before setup that is at 20ns, by setting multiplier 2 it will go backward by 2 cycles. That means hold check will be done at 0ns.  If "-hold" option not mentioned then default hold will be checked at 20ns.

Note that setup capture edge moves forward by number of clock cycles specified from the default capture edge whereas hold check edge moves backward by number clock cycles specified from the default hold check edge (that is 1 cycle before setup edge).



Multicycle paths for clock crossing domains

Example 1: Let us consider there is a multicycle between two different clock domains with the same period.

        create_clock  -name CLKM    -period 10  [get_ports CLKM]

        create_clock  -name CLKP    -period 10  [get_ports CLKP]

        set_multicycle_path  2 -from [get_pins UFF1/Q]   -to [get_pins UFF3/D]

Here, no option mentioned so default this is for setup. Note that always checks will be done with respect to capture flop so in timing report path group will always be that of capture flipflop.



         In this figure launch edge is at 0 by default capture edge will be 1 cycle  away, by setting setup multiplier 2 the capture edge will be put 2 clock cycles away from the launch edge.

If we specify "-hold" option , then

         set_multicycle_path 1 -hold   -from [get_pins UFF1/Q]   -to [get_pins UFF3/D]


The default hold check is 1 cycle before capture edge, by setting multiplier 1 puts the hold check before one clock cycle of default hold check. That means hold check is two clock cycles before the capture edge.

Example 2 :Now consider there is multicycle path between two different clock domains with different time period.

            create_clock   -period 20    [get_ports CLKM]

            create_clock   -period 5   [get_ports CLKP]

            set_multicycle_path 4  -setup  -from [get_clocks CLKM]  -to [get_clocks CLKP]   -end

Here. "-end" indicates  the number of capture clock cycles moves by. It is default for multicycle setup. "-start" option indicates the number of launch clock cycles move by. it is default for multicycle hold.


         Here, capture edge moved by 4 clock cycles because "-end" option is mentioned. remember end option always specifies the capture edge or end point of the path.

                 set_multicycle_path 3  -hold  -from [get_clocks CLKM]  -to [get_clocks CLKP]   -end

Here capture edge moved back by 3 clock cycles from default hold check edge. which is shown in below figure.

As you can see default hold check edge is 15ns, by setting multiplier 3 new hold check is at 0ns.

This post completes the series of SDC contents. In the next post we will discuss more concepts in STA.

Thank you guys for reading the post.

Comments

Popular posts from this blog

Apprenticeship CAI at MediaTek Bangalore

Hello Dear Readers,   Currently at MediaTek Bangalore vacancy for an Apprenticeship CAI role. Job Description: B.Tech degree in Electrical/Electronics Engineering with a strong educational background in Digital circuit design Experience in physical design of high performance design with frequencies > 2 Ghz. Experienced in hierarchical design, budgeting, multiple voltage domains and multiple clock domains. Strong skills with Cadence Encounter. Solid understanding of STA and timing constraints. Experienced in working on advanced process nodes (16nm). Strong expertise in Physical Verification to debug LVS/DRC issues at the block level. Requirement: B.Tech degree in Electrical/Electronics Engineering with strong educational background in Digital circuit design Experience in physical design of high performance design with frequencies > 2 Ghz. Experienced in hierarchical design, budgeting, multiple voltage domains and multiple clock domains. Strong skills with Cadence Encounter. Solid

Power Analysis in the VLSI Chip Design

  Hello Dear Readers,   Today in this series of posts I will provide some deep insight into Power Analysis in the VLSI Chip Design. The power analysis flow calculates (estimates of) the active and static leakage power dissipation of the SoC design. This electrical analysis step utilizes the detailed extraction model of the block and global SoC layouts. The active power estimates depend on the availability of switching factors for all signals in the cell netlist. Representative simulation test cases are applied to the netlist model, and the signal value change data are recorded. The output data from the power analysis flow guide the following SoC tape out release assessments:  Total SoC power specification (average and standby leakage): The specification for SoC power is critical for package selection and is used by end customers for thermal analysis of the product enclosure. In addition to the package technology selection, the SoC power dissipation is used to evaluate the die attach ma

IC Physical Design (PnR) at Ulkasemi

Hello Dear Readers,   Ulkasemi  has a vacancy for an IC Physical Design (PnR) role. Job Overview: As a full-time Trainee Engineer, the individual will be working on IC Physical Design implementation from RTL to GDSII to create design databases ready for manufacturing with a special focus on power, performance & area optimization with next-generation state-of-the-art process technologies. Job Responsibilities: Perform physical design implementation which includes Floor planning, Power Planning, Clock Tree Synthesis, Place and Route, ECO, Logic Equivalence checks Timing analysis, physical & electrical verification, driving the sign-off closure meeting schedule, and design goals Develop flow, methodologies, and automation scripts for various implementation steps Follow the instructions, compile documents, prepare deliverables, and report to the team lead Should remain up to date with the latest technology trends Educational Qualification:   B.Sc/M.Sc   in EEE or equivalent degree