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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user