^

AR# 46123 LogiCORE IP Ethernet 1000BASE-X PCS/PMA or SGMII v11.2 - Changes required to implement on 7-Series General ES silicon

When targeting 7 Series General ES devices, the Ethernet 1000BASE-X PCS/PMA v11.2 core wrapper files need to be updated to not assert the GTX RXUSERRDY or TXUSERRDY until after the MMCM has locked to indicate that the user clocks are valid.

When using SGMII with the Fabric Elastic buffer, the comma alignment needs to be set for a two byte boundary. Otherwise, the core could fail to correctly clock and cause the fabric elastic buffer to over or under flow. This solution applies to targeting General ES silicon.

If using Initial ES silicon, the Ethernet 1000BASE-X PCS/PMA v11.1 core should be used and the modification in (Xilinx Answer 44937) should be followed.

To drive the TXUSERRDY and RXUSERRDY with the MMCM locked from the MMCM, make the following updates:
  1. Add an input port to core_name_block and transceiver called mmcm_locked.
  2. In the core_name_example_design.v/vhd file:
    1. create signal mmcm_locked.
    2. connect signal mmcm_locked to LOCKED port of MMCM used to generate userclk and userclk2 and to the mmcm_locked input added to the core_name_block.
  3. In the transceiver.v/vhd file, drive GT0_TXUSERRDY_IN and GT0_RXUSERRDY_IN with mmcm_locked (was previously driven by cplllock).
  4. In core_name_block.v/vhd, map mmcm_locked to the DCM_LOCKED input port on the core netlist.

If using SGMII with the fabric elastic buffer, Comma alignment attributes need to be updated:

(on page 3 of the GUI, select under SGMII Capabilities "10/100/1000 Mb/s (clock tolerance compliant with ethernet specification)):

If using VHDL in example_design\transceiver\gtxwizard_gt.vhd change:

ALIGN_COMMA_WORD => (1),
CLK_COR_MAX_LAT => (9),
CLK_COR_MIN_LAT => (7),

To:
ALIGN_COMMA_WORD => (2),
CLK_COR_MAX_LAT => (10),
CLK_COR_MIN_LAT => (8),



If using Verilog in example_design\transceiver\gtxwizard_gt.v change:

.ALIGN_COMMA_WORD (1),
.CLK_COR_MAX_LAT (9),
.CLK_COR_MIN_LAT (7),

To:

.ALIGN_COMMA_WORD (2),
.CLK_COR_MAX_LAT (10),
.CLK_COR_MIN_LAT (8),
AR# 46123
Date Created 02/21/2012
Last Updated 02/24/2012
Status Active
Type
Devices
  • Virtex-7
  • Kintex-7
IP
  • Ethernet 1000BASE-X PCS/PMA or SGMII
Feed Back