Visible to Intel only — GUID: sam1412661809087
Ixiasoft
ALTDQ_DQS2 Features
ALTDQ_DQS2 Device Support
Resource Utilization and Performance
ALTDQ_DQS2 Parameter Settings
ALTDQ_DQS2 Data Paths
ALTDQ_DQS2 Ports
Dynamic Reconfiguration for ALTDQ_DQS2
Stratix V Design Example
Arria V Design Example
IP-Generate Command
ALTDQ_DQS2 IP Core User Guide Archives
Document Revision History
I/O Configuration Block Bit Sequence for Arria V GZ and Stratix V Devices
DQS Configuration Block Bit Sequence for Arria V GZ and Stratix V Devices
I/O Configuration Block Bit Sequence for Arria V and Cyclone V Devices
DQS Configuration Block Bit Sequence for Arria V and Cyclone V Devices
Example Usage of Dynamic Reconfiguration for ALTDQ_DQS2
Visible to Intel only — GUID: sam1412661809087
Ixiasoft
SDC Walkthrough
To create a new .sdc, follow these steps:
- Constrain the clocks coming into the FPGA with a create_clock command. The following command creates the base clock for the input clock port driving the PLL:
create_clock -name refclk -period 10.000 [get_ports {refclk}]
- Create the generated clocks for the PLL with the following command:
derive_pll_clocks
- Apply inter-clock, intra-clock and I/O interface uncertainties based on timing model characterization using the following command:
derive_clock_uncertainty
- Constraint the virtual input clock (for incoming DQS strobe) and the capture_strobe_in port. ln this example design, it is based on a 250 MHz input clock, with a 50% duty cycle, where the first rising edge occurs at 0 ns.
create_clock -name virtual_dqs_in -period 4.000 -waveform {0 2.000}
create_clock -name dqs_in -period 4.000 -waveform {0 2.000}[get_ports {capture_strobe_in}]