Knowledge Base Article

Why is my Channel 0 Write Data reaching all of my Native PHY channels in my multichannel design?

Description

Due to a problem in the Quartus® II software version 14.1, the Channel 0 reconfiguration data is incorrectly written to all channels in the instance. This problem occurs when a multichannel Native PHY instance uses a multichannel, independent Avalon memory mapped interface for dynamic reconfiguration.

Resolution

To work around this problem,

  1. Open the file <variant_name>/alt_xcvr_native_avmm_nf.sv.
  2. Find line 158.
  3. Change it from:

Current Line 158:

assign avmm_writedata[ig*8 :8] = arb_writedata[7:0];
 

To:

Corrected Line 158:

assign avmm_writedata[ig*8 :8] = arb_writedata[ig*32 :8];

 

This problem is scheduled to be fixed in a future release of the Quartus software.

Updated 1 month ago
Version 2.0
No CommentsBe the first to comment