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.

how to fix fanout and transition violations in DC

Status
Not open for further replies.

tozibam

Newbie level 1
Joined
Mar 10, 2015
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
15
Hi,

In my dctcl file, the constraints for reset are as followings:

set_drive 0 [find port rstb]
set_dont_touch_network [find port rstb]
set_resistance 0 [find net rstb]
set_ideal_net [find net rstb]

In vhdl file, a net connected to the reset of 256 registers is designed as:

reg_clr <= '0' when new_iv='1' else rstb

Since reset is set as don't touch, DC cannot optimize the reg_clr.

I have set the max fanout to be 15 so there is the violation.

There are also max_transition violations probably caused by high fanout network. It is shown as follows:

max_transition

Required Actual
Net Transition Transition Slack
-----------------------------------------------------------------
reg_clr (dont_touch) 1.50 8.91 -7.41 (VIOLATED)
PIN : s2_0/data_reg_reg/RB
1.50 8.91 -7.41 (VIOLATED)
PIN : s2_1/data_reg_reg/RB
1.50 8.91 -7.41 (VIOLATED)
PIN : s2_2/data_reg_reg/RB
1.50 8.91 -7.41 (VIOLATED)
PIN : s2_3/data_reg_reg/RB
1.50 8.91 -7.41 (VIOLATED)
PIN : s2_4/data_reg_reg/RB
1.50 8.91 -7.41 (VIOLATED)
PIN : s2_5/data_reg_reg/RB
1.50 8.91 -7.41 (VIOLATED)
PIN : s2_6/data_reg_reg/RB


Could anyone teach me how to optimize this type of network? It is conneted to reset via a combinational logic and I cannot use set_drive 0.

Thanks.
 

Without floorplan, it is not relevant to fix DRV (trans/cap) during the synthesis step.
This must be done during the PnR.
 
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top