Forum Discussion
First of all, you only need to use derive_pll_clocks once. Put it in the file after all your clock constraints. And don't use -use_net_name. You don't need it.
Next, for the PLL, I'm presuming you have it in source synchronous mode and the phase shift is set to 0 since you said you are doing center-aligned data.
For your 3rd and 4th set_input_delay constraints, those should be -clock_fall, not -fall. There's no option called -fall for clocks. That may be your main issue.
For your calculated input delay max and min, I am presuming you are using the skew method since you have positive and negative values for -max and -min, respectively. Verify that those values are correct.
Everything else looks ok.
Hi sstrell,
thanks for your reply. Your fix for the input delay constraints was spot on; I didn't realise I should have that clock_fall parameter. I think I got confused and thought that "clock_fall" was related to an older .sdc format (I'd seen it in documents such as AN433 which I believe are a bit older). Now I've changed it, and along with the set_false_path commands I can see the reports showing data being launched and latched on Rising to rising edges, and on falling to falling edges to the 2 correct input DDR registers as expected.
As for the input delay max and min values, yes I believe I am using the skew method. My main resource for this was from an appnote by TI on interfacing a particular ADC (over LVDS) with an FPGA. Totally not the device I am interfacing but it was helpful. (You can find this here: Interfacing Altera FPGAs to ADS4249 and DAC3482 (TIDA-00069 Reference Guide)). I have now gone over my values these with a colleague wrt the datasheet and he seemed to think the values I'd calculated made sense.
I am still getting some timing issues, but this is seems to be due to programmable delays on the data being introduced by the fitter wrt the clock, and also some clock uncertainty. However, this is something I am trying to fix in chip planner and is unrelated to my original issues. Thank you very much for your help; it is much appreciated.
Rory