mirror of
https://github.com/antonblanchard/microwatt.git
synced 2026-01-11 23:43:15 +00:00
Merge pull request #376 from antonblanchard/loadstore-init
loadstore1: reduce U state being output
This commit is contained in:
commit
b983d5080e
@ -275,10 +275,27 @@ begin
|
||||
if rising_edge(clk) then
|
||||
if rst = '1' then
|
||||
r1.req.valid <= '0';
|
||||
r1.req.tlbie <= '0';
|
||||
r1.req.is_slbia <= '0';
|
||||
r1.req.instr_fault <= '0';
|
||||
r1.req.load <= '0';
|
||||
r1.req.priv_mode <= '0';
|
||||
r1.req.sprn <= (others => '0');
|
||||
r1.req.xerc <= xerc_init;
|
||||
|
||||
r2.req.valid <= '0';
|
||||
r2.req.tlbie <= '0';
|
||||
r2.req.is_slbia <= '0';
|
||||
r2.req.instr_fault <= '0';
|
||||
r2.req.load <= '0';
|
||||
r2.req.priv_mode <= '0';
|
||||
r2.req.sprn <= (others => '0');
|
||||
r2.req.xerc <= xerc_init;
|
||||
|
||||
r2.wait_dc <= '0';
|
||||
r2.wait_mmu <= '0';
|
||||
r2.one_cycle <= '0';
|
||||
|
||||
r3.dar <= (others => '0');
|
||||
r3.dsisr <= (others => '0');
|
||||
r3.state <= IDLE;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user