-
Notifications
You must be signed in to change notification settings - Fork 68
DQS
Pepijn de Vos edited this page Nov 17, 2024
·
3 revisions
The Gowin DQS primitive is a bi-directional data strobe circuit for DDR memory interface, used to adjust the phase relationship between DQSIN and DQSR90, DQSW0 and DQSW270 to complete write leveling and read calibration. It has an input port called RDIR that adjusts the delay direction of DDR read, with "0" increasing the delay and "1" decreasing it. The primitive is used as a key component of memory control IP and supports various device families, including Arora, GW2A, GW2AN, GW2AR, and GW2ANR.
This device is not yet supported in Apicula
Port | Size | Direction |
---|---|---|
DLLSTEP | 8 | input |
DQSIN | 1 | input |
DQSR90 | 1 | output |
DQSW0 | 1 | output |
DQSW270 | 1 | output |
FCLK | 1 | input |
HOLD | 1 | input |
PCLK | 1 | input |
RBURST | 1 | output |
RCLKSEL | 3 | input |
RDIR | 1 | input |
READ | 4 | input |
RESET | 1 | input |
RFLAG | 1 | output |
RLOADN | 1 | input |
RMOVE | 1 | input |
RPOINT | 3 | output |
RVALID | 1 | output |
WDIR | 1 | input |
WFLAG | 1 | output |
WLOADN | 1 | input |
WMOVE | 1 | input |
WPOINT | 3 | output |
WSTEP | 8 | input |
Parameter | Default Value |
---|---|
DQS_MODE | |
FIFO_MODE_SEL | |
GSREN | |
HWL | |
ID | |
RD_PNTR |
DQS #(
.DQS_MODE(DQS_MODE),
.FIFO_MODE_SEL(FIFO_MODE_SEL),
.GSREN(GSREN),
.HWL(HWL),
.ID(ID),
.RD_PNTR(RD_PNTR)
) dqs_inst (
.DLLSTEP(DLLSTEP),
.DQSIN(DQSIN),
.DQSR90(DQSR90),
.DQSW0(DQSW0),
.DQSW270(DQSW270),
.FCLK(FCLK),
.HOLD(HOLD),
.PCLK(PCLK),
.RBURST(RBURST),
.RCLKSEL(RCLKSEL),
.RDIR(RDIR),
.READ(READ),
.RESET(RESET),
.RFLAG(RFLAG),
.RLOADN(RLOADN),
.RMOVE(RMOVE),
.RPOINT(RPOINT),
.RVALID(RVALID),
.WDIR(WDIR),
.WFLAG(WFLAG),
.WLOADN(WLOADN),
.WMOVE(WMOVE),
.WPOINT(WPOINT),
.WSTEP(WSTEP)
);