Skip to content

Commit 2967d8d

Browse files
authored
Merge pull request #14 from pulp-platform/michaero/hci-fix
Fixes for HCI
2 parents 7d0a4f8 + 1284def commit 2967d8d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

rtl/tcdm_interconnect/tcdm_interconnect.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ end
315315
initial begin
316316
assert(AddrMemWidth+NumOutLog2 <= AddrWidth) else
317317
$fatal(1,"Address not wide enough to accomodate the requested TCDM configuration.");
318-
assert(NumOut >= NumIn) else
318+
assert(NumOut >= NumIn | Topology == tcdm_interconnect_pkg::LIC) else
319319
$fatal(1,"NumOut < NumIn is not supported.");
320320
end
321321
// pragma translate_on

rtl/tcdm_interconnect/xbar.sv

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ for (genvar k = 0; unsigned'(k) < NumOut; k++) begin : gen_outputs
9999
rr_arb_tree #(
100100
.NumIn ( NumIn ),
101101
.DataWidth ( ReqDataWidth ),
102-
.ExtPrio ( ExtPrio )
102+
.ExtPrio ( ExtPrio ),
103+
.LockIn ( 1'b1 )
103104
) i_rr_arb_tree (
104105
.clk_i ( clk_i ),
105106
.rst_ni ( rst_ni ),

0 commit comments

Comments
 (0)