more testbench code
This commit is contained in:
@@ -96,10 +96,10 @@ architecture BEHAVIOUR of DDR_CTRL_V1 is
|
||||
constant FIFO_MWM : std_logic_vector(8 downto 0) := "011001000"; -- 200.
|
||||
constant FIFO_HWM : std_logic_vector(8 downto 0) := "111110100"; -- 500.
|
||||
|
||||
type ACCESS_WIDTH_TYPE is(LONG, WORD, BYTE);
|
||||
type DDR_ACCESS_TYPE is(CPU, FIFO, BLITTER, NONE);
|
||||
type FB_REGDDR_TYPE is(FR_WAIT,FR_S0,FR_S1,FR_S2,FR_S3);
|
||||
type DDR_SM_TYPE is(DS_T1, DS_T2A, DS_T2B, DS_T3, DS_N5, DS_N6, DS_N7, DS_N8, -- Start (normal 8 cycles total = 60ns).
|
||||
type ACCESS_WIDTH_TYPE is (LONG, WORD, BYTE);
|
||||
type DDR_ACCESS_TYPE is (CPU, FIFO, BLITTER, NONE);
|
||||
type FB_REGDDR_TYPE is (FR_WAIT, FR_S0, FR_S1, FR_S2, FR_S3);
|
||||
type DDR_SM_TYPE is (DS_T1, DS_T2A, DS_T2B, DS_T3, DS_N5, DS_N6, DS_N7, DS_N8, -- Start (normal 8 cycles total = 60ns).
|
||||
DS_C2, DS_C3, DS_C4, DS_C5, DS_C6, DS_C7, -- Configuration.
|
||||
DS_T4R, DS_T5R, -- Read CPU or BLITTER.
|
||||
DS_T4W, DS_T5W, DS_T6W, DS_T7W, DS_T8W, DS_T9W, -- Write CPU or BLITTER.
|
||||
|
||||
@@ -12,13 +12,12 @@ end ddr_ctlr_tb;
|
||||
|
||||
architecture beh of ddr_ctlr_tb is
|
||||
signal clock : std_logic := '0'; -- main clock
|
||||
signal clock_33 : std_logic := '0'; -- 33 MHz clock
|
||||
signal ddr_clk : std_logic := '0'; -- ddr clock
|
||||
|
||||
signal FB_ADR : std_logic_vector(31 downto 0);
|
||||
signal DDR_SYNC_66M : std_logic := '0';
|
||||
signal FB_CS1n : std_logic;
|
||||
signal FB_OEn : std_logic;
|
||||
signal FB_OEn : std_logic := '1'; -- only write cycles for now
|
||||
signal FB_SIZE0 : std_logic := '1';
|
||||
signal FB_SIZE1 : std_logic := '1'; -- long word access
|
||||
signal FB_ALE : std_logic := 'Z'; -- defined reset state
|
||||
@@ -29,7 +28,7 @@ architecture beh of ddr_ctlr_tb is
|
||||
signal BLITTER_SIG : std_logic;
|
||||
signal BLITTER_WR : std_logic;
|
||||
signal DDRCLK0 : std_logic;
|
||||
signal CLK_33M : std_logic;
|
||||
signal CLK_33M : std_logic := '0';
|
||||
signal FIFO_MW : std_logic_vector(8 downto 0);
|
||||
signal VA : std_logic_vector(12 downto 0);
|
||||
signal VWEn : std_logic;
|
||||
@@ -154,13 +153,14 @@ begin
|
||||
stimulate_33mHz_clock : process
|
||||
begin
|
||||
wait for 30.3 ns;
|
||||
clock_33 <= not clock_33;
|
||||
CLK_33M <= not CLK_33M;
|
||||
end process;
|
||||
|
||||
stimulate_66MHz_clock : process
|
||||
begin
|
||||
wait for 66.6 ns;
|
||||
DDR_SYNC_66M <= not DDR_SYNC_66M;
|
||||
DDRCLK0 <= DDR_SYNC_66M;
|
||||
end process;
|
||||
|
||||
stimulate : process
|
||||
@@ -170,13 +170,11 @@ begin
|
||||
case bus_state is
|
||||
when S0 =>
|
||||
-- address phase
|
||||
report("State S0");
|
||||
FB_ADR <= adr;
|
||||
FB_ALE <= '1';
|
||||
FB_WRn <= '0';
|
||||
bus_state <= S1;
|
||||
when S1 =>
|
||||
report("State S1");
|
||||
-- data phase
|
||||
FB_ALE <= '0';
|
||||
FB_CS1n <= '0';
|
||||
@@ -185,9 +183,12 @@ begin
|
||||
bus_state <= S2;
|
||||
end if;
|
||||
when S2 =>
|
||||
report("State S2");
|
||||
FB_CS1n <= '0';
|
||||
bus_state <= S3;
|
||||
when S3 =>
|
||||
report("State S3");
|
||||
FB_ADR <= std_logic_vector(unsigned(FB_ADR) + 4);
|
||||
bus_state <= S0;
|
||||
FB_WRn <= 'Z';
|
||||
when others =>
|
||||
report("bus_state: ");
|
||||
end case;
|
||||
|
||||
Reference in New Issue
Block a user