2 use ieee.std_logic_1164.all;
9 PIPELINE_DEPTH : natural := 2
15 complete_in : in std_ulogic;
16 valid_in : in std_ulogic;
17 flush_in : in std_ulogic;
18 stall_in : in std_ulogic;
19 sgl_pipe_in : in std_ulogic;
20 stop_mark_in : in std_ulogic;
22 gpr_write_valid_in : in std_ulogic;
23 gpr_write_in : in gspr_index_t;
24 gpr_bypassable : in std_ulogic;
26 gpr_a_read_valid_in : in std_ulogic;
27 gpr_a_read_in : in gspr_index_t;
29 gpr_b_read_valid_in : in std_ulogic;
30 gpr_b_read_in : in gspr_index_t;
32 gpr_c_read_valid_in : in std_ulogic;
33 gpr_c_read_in : in gpr_index_t;
35 cr_read_in : in std_ulogic;
36 cr_write_in : in std_ulogic;
38 valid_out : out std_ulogic;
39 stall_out : out std_ulogic;
40 stopped_out : out std_ulogic;
42 gpr_bypass_a : out std_ulogic;
43 gpr_bypass_b : out std_ulogic;
44 gpr_bypass_c : out std_ulogic
48 architecture rtl of control is
49 type state_type is (IDLE, WAIT_FOR_PREV_TO_COMPLETE, WAIT_FOR_CURR_TO_COMPLETE);
51 type reg_internal_type is record
53 outstanding : integer range -1 to PIPELINE_DEPTH+2;
55 constant reg_internal_init : reg_internal_type := (state => IDLE, outstanding => 0);
57 signal r_int, rin_int : reg_internal_type := reg_internal_init;
59 signal stall_a_out : std_ulogic;
60 signal stall_b_out : std_ulogic;
61 signal stall_c_out : std_ulogic;
62 signal cr_stall_out : std_ulogic;
64 signal gpr_write_valid : std_ulogic := '0';
65 signal cr_write_valid : std_ulogic := '0';
67 signal gpr_c_read_in_fmt : std_ulogic_vector(5 downto 0);
69 gpr_hazard0: entity work.gpr_hazard
71 PIPELINE_DEPTH => PIPELINE_DEPTH
77 gpr_write_valid_in => gpr_write_valid,
78 gpr_write_in => gpr_write_in,
79 bypass_avail => gpr_bypassable,
80 gpr_read_valid_in => gpr_a_read_valid_in,
81 gpr_read_in => gpr_a_read_in,
83 stall_out => stall_a_out,
84 use_bypass => gpr_bypass_a
87 gpr_hazard1: entity work.gpr_hazard
89 PIPELINE_DEPTH => PIPELINE_DEPTH
95 gpr_write_valid_in => gpr_write_valid,
96 gpr_write_in => gpr_write_in,
97 bypass_avail => gpr_bypassable,
98 gpr_read_valid_in => gpr_b_read_valid_in,
99 gpr_read_in => gpr_b_read_in,
101 stall_out => stall_b_out,
102 use_bypass => gpr_bypass_b
105 gpr_c_read_in_fmt <= "0" & gpr_c_read_in;
107 gpr_hazard2: entity work.gpr_hazard
109 PIPELINE_DEPTH => PIPELINE_DEPTH
113 stall_in => stall_in,
115 gpr_write_valid_in => gpr_write_valid,
116 gpr_write_in => gpr_write_in,
117 bypass_avail => gpr_bypassable,
118 gpr_read_valid_in => gpr_c_read_valid_in,
119 gpr_read_in => gpr_c_read_in_fmt,
121 stall_out => stall_c_out,
122 use_bypass => gpr_bypass_c
125 cr_hazard0: entity work.cr_hazard
127 PIPELINE_DEPTH => PIPELINE_DEPTH
131 stall_in => stall_in,
133 cr_read_in => cr_read_in,
134 cr_write_in => cr_write_valid,
136 stall_out => cr_stall_out
139 control0: process(clk)
141 if rising_edge(clk) then
142 assert r_int.outstanding >= 0 and r_int.outstanding <= (PIPELINE_DEPTH+1) report "Outstanding bad " & integer'image(r_int.outstanding) severity failure;
147 control1 : process(all)
148 variable v_int : reg_internal_type;
149 variable valid_tmp : std_ulogic;
150 variable stall_tmp : std_ulogic;
155 valid_tmp := valid_in and not flush_in and not stall_in;
156 stall_tmp := stall_in;
158 if complete_in = '1' then
159 v_int.outstanding := r_int.outstanding - 1;
164 v_int.outstanding := 0;
169 -- Handle debugger stop
171 if stop_mark_in = '1' and v_int.outstanding = 0 then
175 -- state machine to handle instructions that must be single
176 -- through the pipeline.
179 if valid_tmp = '1' then
180 if (sgl_pipe_in = '1') then
181 if v_int.outstanding /= 0 then
182 v_int.state := WAIT_FOR_PREV_TO_COMPLETE;
185 -- send insn out and wait on it to complete
186 v_int.state := WAIT_FOR_CURR_TO_COMPLETE;
189 -- let it go out if there are no GPR hazards
190 stall_tmp := stall_a_out or stall_b_out or stall_c_out or cr_stall_out;
194 when WAIT_FOR_PREV_TO_COMPLETE =>
195 if v_int.outstanding = 0 then
196 -- send insn out and wait on it to complete
197 v_int.state := WAIT_FOR_CURR_TO_COMPLETE;
202 when WAIT_FOR_CURR_TO_COMPLETE =>
203 if v_int.outstanding = 0 then
205 -- XXX Don't replicate this
206 if valid_tmp = '1' then
207 if (sgl_pipe_in = '1') then
208 if v_int.outstanding /= 0 then
209 v_int.state := WAIT_FOR_PREV_TO_COMPLETE;
212 -- send insn out and wait on it to complete
213 v_int.state := WAIT_FOR_CURR_TO_COMPLETE;
216 -- let it go out if there are no GPR hazards
217 stall_tmp := stall_a_out or stall_b_out or stall_c_out or cr_stall_out;
225 if stall_tmp = '1' then
229 if valid_tmp = '1' then
230 v_int.outstanding := v_int.outstanding + 1;
231 gpr_write_valid <= gpr_write_valid_in;
232 cr_write_valid <= cr_write_in;
234 gpr_write_valid <= '0';
235 cr_write_valid <= '0';
239 valid_out <= valid_tmp;
240 stall_out <= stall_tmp;