PoC.io.ddrio.out

Instantiates chip-specific DDR output registers.

Both data DataOut_high/low as well as OutputEnable are sampled with the rising_edge(Clock) from the on-chip logic. DataOut_high is brought out with this rising edge. DataOut_low is brought out with the falling edge.

OutputEnable (Tri-State) is high-active. It is automatically inverted if necessary. If an output enable is not required, you may save some logic by setting NO_OUTPUT_ENABLE = true.

If NO_OUTPUT_ENABLE = false then output is disabled after power-up. If NO_OUTPUT_ENABLE = true then output after power-up equals INIT_VALUE.

Pad must be connected to a PAD because FPGAs only have these registers in IOBs.

Entity Declaration:

 1    INIT_VALUE          : bit_vector  := x"FFFFFFFF"
 2  );
 3  port (
 4    Clock         : in  std_logic;
 5    ClockEnable   : in  std_logic := '1';
 6    OutputEnable  : in  std_logic := '1';
 7    DataOut_high  : in  std_logic_vector(BITS - 1 downto 0);
 8    DataOut_low   : in  std_logic_vector(BITS - 1 downto 0);
 9    Pad           : out std_logic_vector(BITS - 1 downto 0)
10  );
11end entity;
12
13
14architecture rtl of ddrio_out is