1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-03-10 12:28:45 +00:00

wb_arbiter: Forward stall signals

They are set to '1' for non-selected devices

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
Benjamin Herrenschmidt
2019-10-19 10:27:02 +11:00
parent b1424e859e
commit 7a4a9b6377

View File

@@ -43,6 +43,9 @@ begin
wb1_out.ack <= wb_in.ack when state = WB1_BUSY else '0';
wb2_out.ack <= wb_in.ack when state = WB2_BUSY else '0';
wb3_out.ack <= wb_in.ack when state = WB3_BUSY else '0';
wb1_out.stall <= wb_in.stall when state = WB1_BUSY else '1';
wb2_out.stall <= wb_in.stall when state = WB2_BUSY else '1';
wb3_out.stall <= wb_in.stall when state = WB3_BUSY else '1';
end process;
wishbone_arbiter_process: process(clk)