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.

STA --> Constraining IOs for High Speed Serial Interface (HSI)

Status
Not open for further replies.

Esteban13

Newbie level 2
Newbie level 2
Joined
Dec 28, 2010
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,292
Hi;

could you please help me understanding how to define STA constraints on IOs for an HSI interface ?
What are the important path to checks; especially for the receiving part ?

Thank you in advance

Regards
 

Esteban,
You can set up set_input_delay and set_output_delays for your synthesis tools. For Highspeed designs, setting max/min values have had best results . . .

# Constrain the input I/O path
set_input_delay -clock clk -max 3 [all_inputs]
set_input_delay -clock clk -min 2 [all_inputs]

# Constrain the output I/O path
set_output_delay -clock clk 2 [all_outputs] 2

However, you may need to experiment with these . .

-- adam
 
Adam;

many thanks for your answer.
BtW; my question was more interface oriented.
My point was to better understand what are the importants parts to check linked to an HSI interface.

Best Regards
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top