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
axi_demux: Eliminate unnecessary stalls of AW channel when the AR channel has reached its
maximum number of transactions. Prior to this fix, axi_demux would always stall AWs while read
transactions were at their maximum (that is, while MaxTrans read transactions were outstanding).
However, this stall is only required when the AW that is being handled by axi_demux is an atomic
operation (ATOP) that entails an R response. This fix therefore removes unnecessary stalls as
well as an unnecessary dependency between reads and writes. The integrity of data or transactions
was not affected by this problem.