Altera® POS-PHY レベル 4 (レシーバー) MegaCore® で自動生成される Synopsys デザイン制約 (.sdc)ファイルの問題により、パスからパスへのリカバリータイミング違反が発生する可能性 "*dpa_align:dpa_align|dpa_reset"
があります "*altlvds_rx_component|*auto_generated|rx*bit_slip_reg"
。
これは、以下の自動生成される .sdc 割り当てが無視されているためです。
set_multicycle_path -setup -end -from "*dpa_align:dpa_align|dpa_reset" -to "*altlvds_rx_component|*auto_generated|rx[*]~bit_slip_reg" 2
set_multicycle_path -hold -end -from "*dpa_align:dpa_align|dpa_reset" -to "*altlvds_rx_component|*auto_generated|rx[*]~bit_slip_reg" 1
この問題を回避するには、上記の課題 (自動生成される .sdc ファイルに記載されています) を次の課題に置き換えることができます。
set_multicycle_path -setup -end -from [get_keepers {*dpa_align:dpa_align|dpa_reset}] -to [get_keepers {*altlvds_rx_component|*auto_generated|rx*~bit_slip_reg}] 2
set_multicycle_path -hold -end -from [get_keepers {*dpa_align:dpa_align|dpa_reset}] -to [get_keepers {*altlvds_rx_component|*auto_generated|rx*~bit_slip_reg}] 1
この問題は、Altera コンプリート・デザイン・スイートの今後のリリースで解決される予定です。