---------------------------------------------------------------------
|
---------------------------------------------------------------------
|
-- TITLE: Memory Controller
|
-- TITLE: Memory Controller
|
-- AUTHOR: Steve Rhoads (rhoadss@yahoo.com)
|
-- AUTHOR: Steve Rhoads (rhoadss@yahoo.com)
|
-- DATE CREATED: 1/31/01
|
-- DATE CREATED: 1/31/01
|
-- FILENAME: mem_ctrl.vhd
|
-- FILENAME: mem_ctrl.vhd
|
-- PROJECT: Plasma CPU core
|
-- PROJECT: Plasma CPU core
|
-- COPYRIGHT: Software placed into the public domain by the author.
|
-- COPYRIGHT: Software placed into the public domain by the author.
|
-- Software 'as is' without warranty. Author liable for nothing.
|
-- Software 'as is' without warranty. Author liable for nothing.
|
-- DESCRIPTION:
|
-- DESCRIPTION:
|
-- Memory controller for the Plasma CPU.
|
-- Memory controller for the Plasma CPU.
|
-- Supports Big or Little Endian mode.
|
-- Supports Big or Little Endian mode.
|
-- Four cycles for a write unless a(31)='1' then two cycles.
|
-- Four cycles for a write unless a(31)='1' then two cycles.
|
-- This entity could implement interfaces to:
|
-- This entity could implement interfaces to:
|
-- Data cache
|
-- Data cache
|
-- Address cache
|
-- Address cache
|
-- Memory management unit (MMU)
|
-- Memory management unit (MMU)
|
-- DRAM controller
|
-- DRAM controller
|
---------------------------------------------------------------------
|
---------------------------------------------------------------------
|
library ieee;
|
library ieee;
|
use ieee.std_logic_1164.all;
|
use ieee.std_logic_1164.all;
|
use work.mlite_pack.all;
|
use work.mlite_pack.all;
|
|
|
entity mem_ctrl is
|
entity mem_ctrl is
|
generic(ACCURATE_TIMING : boolean := false);
|
generic(ACCURATE_TIMING : boolean := false);
|
port(clk : in std_logic;
|
port(clk : in std_logic;
|
reset_in : in std_logic;
|
reset_in : in std_logic;
|
pause_in : in std_logic;
|
pause_in : in std_logic;
|
nullify_op : in std_logic;
|
nullify_op : in std_logic;
|
address_pc : in std_logic_vector(31 downto 0);
|
address_pc : in std_logic_vector(31 downto 0);
|
opcode_out : out std_logic_vector(31 downto 0);
|
opcode_out : out std_logic_vector(31 downto 0);
|
|
|
address_data : in std_logic_vector(31 downto 0);
|
address_data : in std_logic_vector(31 downto 0);
|
mem_source : in mem_source_type;
|
mem_source : in mem_source_type;
|
data_write : in std_logic_vector(31 downto 0);
|
data_write : in std_logic_vector(31 downto 0);
|
data_read : out std_logic_vector(31 downto 0);
|
data_read : out std_logic_vector(31 downto 0);
|
pause_out : out std_logic;
|
pause_out : out std_logic;
|
|
|
mem_address : out std_logic_vector(31 downto 0);
|
mem_address : out std_logic_vector(31 downto 0);
|
mem_data_w : out std_logic_vector(31 downto 0);
|
mem_data_w : out std_logic_vector(31 downto 0);
|
mem_data_r : in std_logic_vector(31 downto 0);
|
mem_data_r : in std_logic_vector(31 downto 0);
|
mem_byte_sel : out std_logic_vector(3 downto 0);
|
mem_byte_sel : out std_logic_vector(3 downto 0);
|
mem_write : out std_logic);
|
mem_write : out std_logic);
|
end; --entity mem_ctrl
|
end; --entity mem_ctrl
|
|
|
architecture logic of mem_ctrl is
|
architecture logic of mem_ctrl is
|
--"00" = big_endian; "11" = little_endian
|
--"00" = big_endian; "11" = little_endian
|
constant little_endian : std_logic_vector(1 downto 0) := "00";
|
constant ENDIAN_MODE : std_logic_vector(1 downto 0) := "00";
|
signal opcode_reg : std_logic_vector(31 downto 0);
|
signal opcode_reg : std_logic_vector(31 downto 0);
|
signal next_opcode_reg : std_logic_vector(31 downto 0);
|
signal next_opcode_reg : std_logic_vector(31 downto 0);
|
|
|
subtype mem_state_type is std_logic_vector(1 downto 0);
|
subtype mem_state_type is std_logic_vector(1 downto 0);
|
signal mem_state_reg : mem_state_type;
|
signal mem_state_reg : mem_state_type;
|
constant STATE_FETCH : mem_state_type := "00";
|
constant STATE_FETCH : mem_state_type := "00";
|
constant STATE_ADDR : mem_state_type := "01";
|
constant STATE_ADDR : mem_state_type := "01";
|
constant STATE_WRITE : mem_state_type := "10";
|
constant STATE_WRITE : mem_state_type := "10";
|
constant STATE_PAUSE : mem_state_type := "11";
|
constant STATE_PAUSE : mem_state_type := "11";
|
|
|
--ACCURATE_TIMING notes:
|
--ACCURATE_TIMING notes:
|
--The VHDL compiler's timing calculation isn't able to realize that
|
--The VHDL compiler's timing calculation isn't able to realize that
|
--memory reads take two clock cycles. It notices that reg_bank:reg_dest
|
--memory reads take two clock cycles. It notices that reg_bank:reg_dest
|
--is dependent on mem_ctrl:mem_data_r which is dependent on
|
--is dependent on mem_ctrl:mem_data_r which is dependent on
|
--mem_ctrl:mem_address which is dependent on alu:c_alu. However,
|
--mem_ctrl:mem_address which is dependent on alu:c_alu. However,
|
--this dependency is only true for memory read or write cycles
|
--this dependency is only true for memory read or write cycles
|
--which are multiple clock cycles. Enabling ACCURATE_TIMING
|
--which are multiple clock cycles. Enabling ACCURATE_TIMING
|
--creates an additional 32-bit register that does nothing other
|
--creates an additional 32-bit register that does nothing other
|
--than letting the VHDL compiler accurately predict the maximum
|
--than letting the VHDL compiler accurately predict the maximum
|
--clock speed.
|
--clock speed.
|
signal address_reg : std_logic_vector(31 downto 0);
|
signal address_reg : std_logic_vector(31 downto 0);
|
signal write_reg : std_logic;
|
signal write_reg : std_logic;
|
signal byte_sel_reg : std_logic_vector(3 downto 0);
|
signal byte_sel_reg : std_logic_vector(3 downto 0);
|
signal mem_state_next_sig : mem_state_type;
|
signal mem_state_next_sig : mem_state_type;
|
signal opcode_next_sig : std_logic_vector(31 downto 0);
|
signal opcode_next_sig : std_logic_vector(31 downto 0);
|
signal write_next_sig : std_logic;
|
signal write_next_sig : std_logic;
|
signal byte_sel_next_sig : std_logic_vector(3 downto 0);
|
signal byte_sel_next_sig : std_logic_vector(3 downto 0);
|
|
|
begin
|
begin
|
|
|
GEN_REGS: process(clk, reset_in)
|
GEN_REGS: process(clk, reset_in)
|
begin
|
begin
|
if reset_in = '1' then
|
if reset_in = '1' then
|
mem_state_reg <= STATE_FETCH;
|
mem_state_reg <= STATE_FETCH;
|
opcode_reg <= ZERO;
|
opcode_reg <= ZERO;
|
next_opcode_reg <= ZERO;
|
next_opcode_reg <= ZERO;
|
elsif rising_edge(clk) then
|
elsif rising_edge(clk) then
|
mem_state_reg <= mem_state_next_sig;
|
mem_state_reg <= mem_state_next_sig;
|
opcode_reg <= opcode_next_sig;
|
opcode_reg <= opcode_next_sig;
|
if mem_state_reg = STATE_FETCH then
|
if mem_state_reg = STATE_FETCH then
|
next_opcode_reg <= mem_data_r;
|
next_opcode_reg <= mem_data_r;
|
end if;
|
end if;
|
end if;
|
end if;
|
end process;
|
end process;
|
|
|
GEN_REGS2: process(clk, address_data, write_next_sig, byte_sel_next_sig)
|
GEN_REGS2: process(clk, address_data, write_next_sig, byte_sel_next_sig)
|
begin
|
begin
|
if rising_edge(clk) then
|
if reset_in = '1' then
|
|
if ACCURATE_TIMING then
|
|
address_reg <= ZERO;
|
|
write_reg <= '0';
|
|
byte_sel_reg <= "0000";
|
|
end if;
|
|
elsif rising_edge(clk) then
|
if ACCURATE_TIMING then
|
if ACCURATE_TIMING then
|
address_reg <= address_data;
|
address_reg <= address_data;
|
write_reg <= write_next_sig;
|
write_reg <= write_next_sig;
|
byte_sel_reg <= byte_sel_next_sig;
|
byte_sel_reg <= byte_sel_next_sig;
|
end if;
|
end if;
|
end if;
|
end if;
|
if not ACCURATE_TIMING then
|
if not ACCURATE_TIMING then
|
address_reg <= address_data;
|
address_reg <= address_data;
|
write_reg <= write_next_sig;
|
write_reg <= write_next_sig;
|
byte_sel_reg <= byte_sel_next_sig;
|
byte_sel_reg <= byte_sel_next_sig;
|
end if;
|
end if;
|
end process;
|
end process;
|
|
|
mem_proc: process(clk, reset_in, pause_in, nullify_op,
|
mem_proc: process(clk, reset_in, pause_in, nullify_op,
|
address_pc, address_data, mem_source, data_write,
|
address_pc, address_data, mem_source, data_write,
|
mem_data_r,
|
mem_data_r,
|
opcode_reg, next_opcode_reg, mem_state_reg,
|
opcode_reg, next_opcode_reg, mem_state_reg,
|
address_reg, write_reg, byte_sel_reg)
|
address_reg, write_reg, byte_sel_reg)
|
variable data : std_logic_vector(31 downto 0);
|
variable data : std_logic_vector(31 downto 0);
|
variable opcode_next : std_logic_vector(31 downto 0);
|
variable opcode_next : std_logic_vector(31 downto 0);
|
variable byte_sel_next : std_logic_vector(3 downto 0);
|
variable byte_sel_next : std_logic_vector(3 downto 0);
|
variable byte_sel : std_logic_vector(3 downto 0);
|
variable byte_sel : std_logic_vector(3 downto 0);
|
variable write_next : std_logic;
|
variable write_next : std_logic;
|
variable write_line : std_logic;
|
variable write_line : std_logic;
|
variable mem_state_next : mem_state_type;
|
variable mem_state_next : mem_state_type;
|
variable pause : std_logic;
|
variable pause : std_logic;
|
variable address : std_logic_vector(31 downto 0);
|
variable address : std_logic_vector(31 downto 0);
|
variable bits : std_logic_vector(1 downto 0);
|
variable bits : std_logic_vector(1 downto 0);
|
variable mem_data_w_v : std_logic_vector(31 downto 0);
|
variable mem_data_w_v : std_logic_vector(31 downto 0);
|
begin
|
begin
|
byte_sel_next := "0000";
|
byte_sel_next := "0000";
|
write_next := '0';
|
write_next := '0';
|
pause := '0';
|
pause := '0';
|
mem_state_next := mem_state_reg;
|
mem_state_next := mem_state_reg;
|
|
|
data := ZERO;
|
data := ZERO;
|
mem_data_w_v := ZERO;
|
mem_data_w_v := ZERO;
|
|
|
case mem_source is
|
case mem_source is
|
when mem_read32 =>
|
when MEM_READ32 =>
|
data := mem_data_r;
|
data := mem_data_r;
|
when mem_read16 | mem_read16s =>
|
|
if address_reg(1) = little_endian(1) then
|
when MEM_READ16 | MEM_READ16S =>
|
|
if address_reg(1) = ENDIAN_MODE(1) then
|
data(15 downto 0) := mem_data_r(31 downto 16);
|
data(15 downto 0) := mem_data_r(31 downto 16);
|
else
|
else
|
data(15 downto 0) := mem_data_r(15 downto 0);
|
data(15 downto 0) := mem_data_r(15 downto 0);
|
end if;
|
end if;
|
if mem_source = mem_read16 or data(15) = '0' then
|
if mem_source = mem_read16 or data(15) = '0' then
|
data(31 downto 16) := ZERO(31 downto 16);
|
data(31 downto 16) := ZERO(31 downto 16);
|
else
|
else
|
data(31 downto 16) := ONES(31 downto 16);
|
data(31 downto 16) := ONES(31 downto 16);
|
end if;
|
end if;
|
when mem_read8 | mem_read8s =>
|
|
bits := address_reg(1 downto 0) xor little_endian;
|
when MEM_READ8 | MEM_READ8s =>
|
|
bits := address_reg(1 downto 0) xor ENDIAN_MODE;
|
case bits is
|
case bits is
|
when "00" => data(7 downto 0) := mem_data_r(31 downto 24);
|
when "00" => data(7 downto 0) := mem_data_r(31 downto 24);
|
when "01" => data(7 downto 0) := mem_data_r(23 downto 16);
|
when "01" => data(7 downto 0) := mem_data_r(23 downto 16);
|
when "10" => data(7 downto 0) := mem_data_r(15 downto 8);
|
when "10" => data(7 downto 0) := mem_data_r(15 downto 8);
|
when others => data(7 downto 0) := mem_data_r(7 downto 0);
|
when others => data(7 downto 0) := mem_data_r(7 downto 0);
|
end case;
|
end case;
|
if mem_source = mem_read8 or data(7) = '0' then
|
if mem_source = MEM_READ8 or data(7) = '0' then
|
data(31 downto 8) := ZERO(31 downto 8);
|
data(31 downto 8) := ZERO(31 downto 8);
|
else
|
else
|
data(31 downto 8) := ONES(31 downto 8);
|
data(31 downto 8) := ONES(31 downto 8);
|
end if;
|
end if;
|
when mem_write32 =>
|
|
|
when MEM_WRITE32 =>
|
write_next := '1';
|
write_next := '1';
|
mem_data_w_v := data_write;
|
mem_data_w_v := data_write;
|
byte_sel_next := "1111";
|
byte_sel_next := "1111";
|
when mem_write16 =>
|
|
|
when MEM_WRITE16 =>
|
write_next := '1';
|
write_next := '1';
|
mem_data_w_v := data_write(15 downto 0) & data_write(15 downto 0);
|
mem_data_w_v := data_write(15 downto 0) & data_write(15 downto 0);
|
if address_data(1) = little_endian(1) then
|
if address_data(1) = ENDIAN_MODE(1) then
|
byte_sel_next := "1100";
|
byte_sel_next := "1100";
|
else
|
else
|
byte_sel_next := "0011";
|
byte_sel_next := "0011";
|
end if;
|
end if;
|
when mem_write8 =>
|
|
|
when MEM_WRITE8 =>
|
write_next := '1';
|
write_next := '1';
|
mem_data_w_v := data_write(7 downto 0) & data_write(7 downto 0) &
|
mem_data_w_v := data_write(7 downto 0) & data_write(7 downto 0) &
|
data_write(7 downto 0) & data_write(7 downto 0);
|
data_write(7 downto 0) & data_write(7 downto 0);
|
bits := address_data(1 downto 0) xor little_endian;
|
bits := address_data(1 downto 0) xor ENDIAN_MODE;
|
case bits is
|
case bits is
|
when "00" =>
|
when "00" =>
|
byte_sel_next := "1000";
|
byte_sel_next := "1000";
|
when "01" =>
|
when "01" =>
|
byte_sel_next := "0100";
|
byte_sel_next := "0100";
|
when "10" =>
|
when "10" =>
|
byte_sel_next := "0010";
|
byte_sel_next := "0010";
|
when others =>
|
when others =>
|
byte_sel_next := "0001";
|
byte_sel_next := "0001";
|
end case;
|
end case;
|
|
|
when others =>
|
when others =>
|
end case;
|
end case;
|
|
|
byte_sel_next_sig <= byte_sel_next;
|
byte_sel_next_sig <= byte_sel_next;
|
write_next_sig <= write_next;
|
write_next_sig <= write_next;
|
|
|
opcode_next := opcode_reg;
|
opcode_next := opcode_reg;
|
case mem_state_reg is --State Machine
|
case mem_state_reg is --State Machine
|
when STATE_FETCH =>
|
when STATE_FETCH =>
|
address := address_pc;
|
address := address_pc;
|
write_line := '0';
|
write_line := '0';
|
byte_sel := "0000";
|
byte_sel := "0000";
|
if mem_source = mem_fetch then --opcode fetch
|
if mem_source = mem_fetch then --opcode fetch
|
mem_state_next := STATE_FETCH;
|
mem_state_next := STATE_FETCH;
|
if pause_in = '0' then
|
if pause_in = '0' then
|
opcode_next := mem_data_r;
|
opcode_next := mem_data_r;
|
end if;
|
end if;
|
else --memory read or write
|
else --memory read or write
|
pause := '1';
|
pause := '1';
|
if pause_in = '0' then
|
if pause_in = '0' then
|
mem_state_next := STATE_ADDR;
|
mem_state_next := STATE_ADDR;
|
end if;
|
end if;
|
end if;
|
end if;
|
|
|
when STATE_ADDR => --address lines pre-hold
|
when STATE_ADDR => --address lines pre-hold
|
address := address_reg;
|
address := address_reg;
|
write_line := write_reg;
|
write_line := write_reg;
|
if write_reg = '1' and address_reg(31) = '1' then
|
if write_reg = '1' and address_reg(31) = '1' then
|
pause := '1';
|
pause := '1';
|
byte_sel := "0000";
|
byte_sel := "0000";
|
if pause_in = '0' then
|
if pause_in = '0' then
|
mem_state_next := STATE_WRITE; --4 cycle access
|
mem_state_next := STATE_WRITE; --4 cycle access
|
end if;
|
end if;
|
else
|
else
|
byte_sel := byte_sel_reg;
|
byte_sel := byte_sel_reg;
|
if pause_in = '0' then
|
if pause_in = '0' then
|
opcode_next := next_opcode_reg;
|
opcode_next := next_opcode_reg;
|
mem_state_next := STATE_FETCH; --2 cycle access
|
mem_state_next := STATE_FETCH; --2 cycle access
|
end if;
|
end if;
|
end if;
|
end if;
|
|
|
when STATE_WRITE =>
|
when STATE_WRITE =>
|
pause := '1';
|
pause := '1';
|
address := address_reg;
|
address := address_reg;
|
write_line := write_reg;
|
write_line := write_reg;
|
byte_sel := byte_sel_reg;
|
byte_sel := byte_sel_reg;
|
if pause_in = '0' then
|
if pause_in = '0' then
|
mem_state_next := STATE_PAUSE;
|
mem_state_next := STATE_PAUSE;
|
end if;
|
end if;
|
|
|
when OTHERS => --STATE_PAUSE address lines post-hold
|
when OTHERS => --STATE_PAUSE address lines post-hold
|
address := address_reg;
|
address := address_reg;
|
write_line := write_reg;
|
write_line := write_reg;
|
byte_sel := "0000";
|
byte_sel := "0000";
|
if pause_in = '0' then
|
if pause_in = '0' then
|
opcode_next := next_opcode_reg;
|
opcode_next := next_opcode_reg;
|
mem_state_next := STATE_FETCH;
|
mem_state_next := STATE_FETCH;
|
end if;
|
end if;
|
end case;
|
end case;
|
|
|
if nullify_op = '1' and pause_in = '0' then
|
if nullify_op = '1' and pause_in = '0' then
|
opcode_next := ZERO; --NOP after beql
|
opcode_next := ZERO; --NOP after beql
|
end if;
|
end if;
|
|
|
mem_state_next_sig <= mem_state_next;
|
mem_state_next_sig <= mem_state_next;
|
opcode_next_sig <= opcode_next;
|
opcode_next_sig <= opcode_next;
|
|
|
if reset_in = '1' then
|
if reset_in = '1' then
|
write_line := '0';
|
write_line := '0';
|
end if;
|
end if;
|
|
|
opcode_out <= opcode_reg;
|
opcode_out <= opcode_reg;
|
data_read <= data;
|
data_read <= data;
|
pause_out <= pause;
|
pause_out <= pause;
|
mem_byte_sel <= byte_sel;
|
mem_byte_sel <= byte_sel;
|
mem_address <= address;
|
mem_address <= address;
|
mem_write <= write_line;
|
mem_write <= write_line;
|
|
|
if write_line = '1' then
|
if write_line = '1' then
|
mem_data_w <= mem_data_w_v;
|
mem_data_w <= mem_data_w_v;
|
else
|
else
|
mem_data_w <= HIGH_Z; --ZERO;
|
mem_data_w <= HIGH_Z; --ZERO;
|
end if;
|
end if;
|
|
|
end process; --data_proc
|
end process; --data_proc
|
|
|
end; --architecture logic
|
end; --architecture logic
|
|
|
|
|