You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This makes the module unusable with AXI buses that have a large ID width, since the logic on axi_demux_simple
(instantiated by axi_demux) explodes due to this parameter:
localparam int unsigned NoCounters = 2**AxiIdBits;
(AxiIdBits is set to AxiLookBits)
Could you expose AxiLookBits as a parameter of axi_burst_splitter? (and other modules that depend on it, e.g. axi_to_axi_lite)
The text was updated successfully, but these errors were encountered:
The module
axi_burst_splitter
instantiates anaxi_demux
and sets itsAxiLookBits
to the full ID width of the bus:This makes the module unusable with AXI buses that have a large ID width, since the logic on
axi_demux_simple
(instantiated by
axi_demux
) explodes due to this parameter:(
AxiIdBits
is set toAxiLookBits
)Could you expose
AxiLookBits
as a parameter ofaxi_burst_splitter
? (and other modules that depend on it, e.g.axi_to_axi_lite
)The text was updated successfully, but these errors were encountered: