DDR_IQ.v

This module splits a double data rate data stream via the IFDDRRSE primitive, and applies offset-binary conversion and I/Q detection (1 - z-2 filtering) of each stream (IQDtector.v).

DDR/IQ module

Ports | Parameters | Notes | Example | Diagram

Ports

clkinputThe clock input.
resetinputThe reset input.
dininputThe double data rate data stream.
dout0outputThe first detected data stream.
dout1output   The second detected data stream.

Parameters

wid14Width of the input data stream.

Notes

Example instantiation in Verilog:

wire	[11:0]	in;
wire	[12:0]	d1, d2;
DDR_IQ #(.wid(12)) di (.clk(clk), .reset(reset), .din(in), .dout0(d1), .dout1(d2))