PoC.io.ddrio.in
Instantiates chip-specific DDR input registers.
Both data DataIn_high/low are synchronously outputted to the on-chip logic
with the rising edge of Clock. DataIn_high is the value at the Pad
sampled with the same rising edge. DataIn_low is the value sampled with
the falling edge directly before this rising edge. Thus sampling starts with
the falling edge of the clock as depicted in the following waveform.
After power-up, the output ports DataIn_high and DataIn_low both equal
INIT_VALUE.
Pad must be connected to a PAD because FPGAs only have these registers in
IOBs.
Entity Declaration:
1 generic (
2 BITS : positive;
3 INIT_VALUE : bit_vector := x"FFFFFFFF"
4 );
5 port (
6 Clock : in std_logic;
7 ClockEnable : in std_logic;
8 DataIn_high : out std_logic_vector(BITS - 1 downto 0);
9 DataIn_low : out std_logic_vector(BITS - 1 downto 0);
10 Pad : in std_logic_vector(BITS - 1 downto 0)
11 );
12end entity;