Skip to content

Commit 361a4a0

Browse files
committed
Fix: read completion channel if OR=1 didn't responsed correctly if
ALEN>0
1 parent 287a92f commit 361a4a0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/architecture.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ to 0 the input signals of an interface, and leave unconnected the outputs.
172172

173173
The core supports outstanding requests, and so manages traffic queues per master,
174174
this traffic can be:
175-
- in-order if a set of transactions use the same ID
176-
- out-of-order if a set of transactions use different IDs
175+
- in-order if a set of transactions uses the same ID
176+
- out-of-order if a set of transactions uses different IDs
177177

178178
The core doesn't manipulate IDs to enhance the quality-of-service or perform any optimization, so
179179
the user can be sure the read or write requests will be issued to the master interface(s) in the

rtl/axicb_slv_ooo.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ module axicb_slv_ooo
276276
.i_ready (pipe_aready),
277277
.i_data (pipe_in),
278278
.o_valid (pipe_valid),
279-
.o_ready (c_ready),
279+
.o_ready (c_end),
280280
.o_data (pipe_out)
281281
);
282282

0 commit comments

Comments
 (0)