Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/axi_burst_unwrap.sv
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ module axi_burst_unwrap #(
// ATOPs are not supported.
if (atop != '0) return 1'b0;
// The AXI Spec (A3.4.1) only allows splitting non-modifiable transactions ..
if (!axi_pkg::modifiable(cache)) begin
// .. if they are INCR bursts and longer than 16 beats.
return (burst == axi_pkg::BURST_INCR) & (len > 16);
// ... but this module only splits WRAP bursts, so ignore all others
if (!axi_pkg::modifiable(cache) && (burst == axi_pkg::BURST_WRAP)) begin
return 1'b0;
end
// All other transactions are supported.
return 1'b1;
Expand Down