Visible to Intel only — GUID: eqd1605295347939
Ixiasoft
Visible to Intel only — GUID: eqd1605295347939
Ixiasoft
2.3. Simulating the IP Core
You can simulate your Low Latency 50G Ethernet IP core variation with the functional simulation model and the testbench generated with the IP core. The functional simulation model is a cycle-accurate model that allows for fast functional simulation of your IP core instance using industry-standard Verilog HDL simulators. You can simulate the Intel-provided testbench or create your own testbench to exercise the IP core functional simulation model.
The functional simulation model and testbench files are generated in project subdirectories. These directories also include scripts to compile and run the design example.
In the top-level wrapper file for your simulation project, you can set the the following RTL parameters to enable simulation optimization. These optimizations significantly decrease the time to reach link initialization.
- SIM_SHORT_AM: Shortens the interval between alignment markers to accelerate alignment marker lock.
- SIM_SHORT_AM = 1'b1: The TX inserts alignment marker at every 1280 64b/66b blocks. The RX RS-FEC expects alignment marker at every 1280 64b/66b blocks.
- SIM_SHORT_AM = 1'b0: The TX RS-FEC inserts alignment marker at every 81920 64b/66b blocks. The RX RS-FEC expects alignment marker at every 81920 64b/66b blocks.
In general, parameters are set through the IP core parameter editor and you should not change them manually. The only exceptions are these simulation optimization parameters.
To set these parameters on the PHY blocks, add the following lines to the top-level wrapper file:
defparam <dut instance>.SIM_SHORT_AM = 1'b1;