Article ID: 000084105 Content Type: Error Messages Last Reviewed: 03/16/2023

Error (129001): Input port DQSDISABLEN on atom "|hierarchy|dqs_delay_chain", which is a stratixv_dqs_delay_chain primitive, is not legally connected and/or configured

Environment

    Quartus® II Subscription Edition
BUILT IN - ARTICLE INTRO SECOND COMPONENT
Description

When you design with the ALTDQ_DQS2 block in a Stratix® V device, you might experience the following error when you synthesize the design:

Error (129001): Input port DQSDISABLEN on atom "|hierarchy|dqs_delay_chain", which is a stratixv_dqs_delay_chain primitive, is not legally connected and/or configured

There is a known problem that requires the DQSDISABLEN and DQSENABLEN ports to be connected to the same internal signal. Otherwise, you will get the synthesis error. 

Resolution

In the altdq_dqs2_stratixv.sv file, connect dqsdisablen and dqsenablen together to the internal signal dqs_enable_int by changing the two lines as follows:

Change lines 967 and 968:

.dqsenable (dqs_enable_int),

.dqsdisablen (dqs_disable_int),

To

.dqsenable (dqs_enable_int),

.dqsdisablen (dqs_enable_int), 

 

Similarly, change lines 1117 and 1,118:

.dqsenable (dqsn_enable_int),

.dqsdisablen (dqsn_disable_int),

To

.dqsenable (dqsn_enable_int),

.dqsdisablen (dqsn_enable_int),

 

Additional information

This problem is fixed starting with the Quartus® II software version 12.0.

Related Products

This article applies to 5 products

Stratix® V FPGAs
Stratix® V GS FPGA
Stratix® V E FPGA
Stratix® V GT FPGA
Stratix® V GX FPGA

1