-
Notifications
You must be signed in to change notification settings - Fork 68
DQCE
Pepijn de Vos edited this page Nov 17, 2024
·
3 revisions
The DQCE (Dynamic Quadrant Clock Enable) primitive in Gowin FPGA devices dynamically controls the internal logic's enablement, allowing GCLK0~GCLK5 to be turned on or off. When a GCLK is disabled, the internal logic driven by it will not toggle, reducing power consumption. Normal operation of the DQCE requires at least one falling edge change in the CLKIN signal, and it can be controlled via the CE (Clock Enable) input signal, which is active-high.
This device is supported in Apicula.
Port | Size | Direction |
---|---|---|
CE | 1 | input |
CLKIN | 1 | input |
CLKOUT | 1 | output |
DQCE dqce_inst (
.CE(CE),
.CLKIN(CLKIN),
.CLKOUT(CLKOUT)
);