1
0
Fork 0

tilelink2: edge parameters on the same link had better match

This commit is contained in:
Wesley W. Terpstra 2016-09-01 11:13:36 -07:00
parent c411a3e77f
commit e652cd155b
1 changed files with 1 additions and 0 deletions

View File

@ -20,6 +20,7 @@ object TLImp extends NodeImp[TLClientPortParameters, TLManagerPortParameters, TL
}
def connect(bo: TLBundle, eo: TLEdgeOut, bi: TLBundle, ei: TLEdgeIn)(implicit sourceInfo: SourceInfo): Unit = {
require (eo.asInstanceOf[TLEdgeParameters] == ei.asInstanceOf[TLEdgeParameters])
TLMonitor.legalize(bo, eo, bi, ei, sourceInfo)
bi <> bo
val mask = ~UInt(ei.manager.beatBytes - 1)