| 1 |
69 |
rhoads |
---------------------------------------------------------------------
|
| 2 |
|
|
-- TITLE: Pipeline
|
| 3 |
|
|
-- AUTHOR: Steve Rhoads (rhoadss@yahoo.com)
|
| 4 |
|
|
-- DATE CREATED: 6/24/02
|
| 5 |
|
|
-- FILENAME: pipeline.vhd
|
| 6 |
|
|
-- PROJECT: Plasma CPU core
|
| 7 |
|
|
-- COPYRIGHT: Software placed into the public domain by the author.
|
| 8 |
|
|
-- Software 'as is' without warranty. Author liable for nothing.
|
| 9 |
|
|
-- DESCRIPTION:
|
| 10 |
|
|
-- Controls the three stage pipeline by delaying the signals:
|
| 11 |
|
|
-- a_bus, b_bus, alu/shift/mult_func, c_source, and rs_index.
|
| 12 |
|
|
---------------------------------------------------------------------
|
| 13 |
|
|
library ieee;
|
| 14 |
|
|
use ieee.std_logic_1164.all;
|
| 15 |
|
|
use work.mlite_pack.all;
|
| 16 |
|
|
|
| 17 |
|
|
--Note: sigD <= sig after rising_edge(clk)
|
| 18 |
|
|
entity pipeline is
|
| 19 |
|
|
port(clk : in std_logic;
|
| 20 |
|
|
reset : in std_logic;
|
| 21 |
|
|
a_bus : in std_logic_vector(31 downto 0);
|
| 22 |
|
|
a_busD : out std_logic_vector(31 downto 0);
|
| 23 |
|
|
b_bus : in std_logic_vector(31 downto 0);
|
| 24 |
|
|
b_busD : out std_logic_vector(31 downto 0);
|
| 25 |
|
|
alu_func : in alu_function_type;
|
| 26 |
|
|
alu_funcD : out alu_function_type;
|
| 27 |
|
|
shift_func : in shift_function_type;
|
| 28 |
|
|
shift_funcD : out shift_function_type;
|
| 29 |
|
|
mult_func : in mult_function_type;
|
| 30 |
|
|
mult_funcD : out mult_function_type;
|
| 31 |
|
|
reg_dest : in std_logic_vector(31 downto 0);
|
| 32 |
|
|
reg_destD : out std_logic_vector(31 downto 0);
|
| 33 |
|
|
rd_index : in std_logic_vector(5 downto 0);
|
| 34 |
|
|
rd_indexD : out std_logic_vector(5 downto 0);
|
| 35 |
|
|
|
| 36 |
|
|
rs_index : in std_logic_vector(5 downto 0);
|
| 37 |
|
|
rt_index : in std_logic_vector(5 downto 0);
|
| 38 |
|
|
pc_source : in pc_source_type;
|
| 39 |
|
|
mem_source : in mem_source_type;
|
| 40 |
|
|
a_source : in a_source_type;
|
| 41 |
|
|
b_source : in b_source_type;
|
| 42 |
|
|
c_source : in c_source_type;
|
| 43 |
|
|
c_bus : in std_logic_vector(31 downto 0);
|
| 44 |
|
|
pause_any : in std_logic;
|
| 45 |
|
|
pause_pipeline : out std_logic);
|
| 46 |
|
|
end; --entity pipeline
|
| 47 |
|
|
|
| 48 |
|
|
architecture logic of pipeline is
|
| 49 |
107 |
rhoads |
signal rd_index_reg : std_logic_vector(5 downto 0);
|
| 50 |
|
|
signal reg_dest_reg : std_logic_vector(31 downto 0);
|
| 51 |
122 |
rhoads |
signal reg_dest_delay : std_logic_vector(31 downto 0);
|
| 52 |
107 |
rhoads |
signal c_source_reg : c_source_type;
|
| 53 |
|
|
signal pause_enable_reg : std_logic;
|
| 54 |
69 |
rhoads |
begin
|
| 55 |
|
|
|
| 56 |
|
|
--When operating in three stage pipeline mode, the following signals
|
| 57 |
|
|
--are delayed by one clock cycle: a_bus, b_bus, alu/shift/mult_func,
|
| 58 |
|
|
--c_source, and rd_index.
|
| 59 |
|
|
pipeline3: process(clk, reset, a_bus, b_bus, alu_func, shift_func, mult_func,
|
| 60 |
107 |
rhoads |
rd_index, rd_index_reg, pause_any, pause_enable_reg,
|
| 61 |
96 |
rhoads |
rs_index, rt_index,
|
| 62 |
82 |
rhoads |
pc_source, mem_source, a_source, b_source, c_source, c_source_reg,
|
| 63 |
122 |
rhoads |
reg_dest, reg_dest_reg, reg_dest_delay, c_bus)
|
| 64 |
69 |
rhoads |
variable pause_mult_clock : std_logic;
|
| 65 |
107 |
rhoads |
variable freeze_pipeline : std_logic;
|
| 66 |
69 |
rhoads |
begin
|
| 67 |
|
|
if (pc_source /= from_inc4 and pc_source /= from_opcode25_0) or
|
| 68 |
107 |
rhoads |
mem_source /= mem_fetch or
|
| 69 |
|
|
(mult_func = mult_read_lo or mult_func = mult_read_hi) then
|
| 70 |
69 |
rhoads |
pause_mult_clock := '1';
|
| 71 |
|
|
else
|
| 72 |
|
|
pause_mult_clock := '0';
|
| 73 |
|
|
end if;
|
| 74 |
|
|
|
| 75 |
107 |
rhoads |
freeze_pipeline := not (pause_mult_clock and pause_enable_reg) and pause_any;
|
| 76 |
|
|
pause_pipeline <= pause_mult_clock and pause_enable_reg;
|
| 77 |
69 |
rhoads |
rd_indexD <= rd_index_reg;
|
| 78 |
|
|
|
| 79 |
|
|
if c_source_reg = c_from_alu then
|
| 80 |
122 |
rhoads |
reg_dest_delay <= c_bus; --delayed by 1 clock cycle via a_busD & b_busD
|
| 81 |
69 |
rhoads |
else
|
| 82 |
122 |
rhoads |
reg_dest_delay <= reg_dest_reg; --need to delay 1 clock cycle from reg_dest
|
| 83 |
69 |
rhoads |
end if;
|
| 84 |
122 |
rhoads |
reg_destD <= reg_dest_delay;
|
| 85 |
69 |
rhoads |
|
| 86 |
|
|
if reset = '1' then
|
| 87 |
107 |
rhoads |
pause_enable_reg <= '1';
|
| 88 |
69 |
rhoads |
rd_index_reg <= "000000";
|
| 89 |
|
|
elsif rising_edge(clk) then
|
| 90 |
101 |
rhoads |
if freeze_pipeline = '0' then
|
| 91 |
107 |
rhoads |
if (rs_index = "000000" or rs_index /= rd_index_reg) or
|
| 92 |
|
|
(a_source /= a_from_reg_source or pause_enable_reg = '0') then
|
| 93 |
|
|
a_busD <= a_bus;
|
| 94 |
|
|
else
|
| 95 |
122 |
rhoads |
a_busD <= reg_dest_delay; --rs from previous operation (bypass stage)
|
| 96 |
107 |
rhoads |
end if;
|
| 97 |
|
|
|
| 98 |
|
|
if (rt_index = "000000" or rt_index /= rd_index_reg) or
|
| 99 |
|
|
(b_source /= b_from_reg_target or pause_enable_reg = '0') then
|
| 100 |
|
|
b_busD <= b_bus;
|
| 101 |
|
|
else
|
| 102 |
122 |
rhoads |
b_busD <= reg_dest_delay; --rt from previous operation
|
| 103 |
107 |
rhoads |
end if;
|
| 104 |
|
|
|
| 105 |
|
|
alu_funcD <= alu_func;
|
| 106 |
|
|
shift_funcD <= shift_func;
|
| 107 |
|
|
mult_funcD <= mult_func;
|
| 108 |
|
|
reg_dest_reg <= reg_dest;
|
| 109 |
|
|
c_source_reg <= c_source;
|
| 110 |
101 |
rhoads |
rd_index_reg <= rd_index;
|
| 111 |
|
|
end if;
|
| 112 |
107 |
rhoads |
|
| 113 |
|
|
if pause_enable_reg = '0' and pause_any = '0' then
|
| 114 |
|
|
pause_enable_reg <= '1'; --enable pause_pipeline
|
| 115 |
|
|
elsif pause_mult_clock = '1' then
|
| 116 |
|
|
pause_enable_reg <= '0'; --disable pause_pipeline
|
| 117 |
|
|
end if;
|
| 118 |
69 |
rhoads |
end if;
|
| 119 |
|
|
|
| 120 |
|
|
end process; --pipeline3
|
| 121 |
|
|
|
| 122 |
|
|
end; --logic
|
| 123 |
101 |
rhoads |
|