subsystem: add a fragmenter to tile slave port bus blocker control (#1801)

This commit is contained in:
Henry Cook 2019-01-24 19:19:23 -08:00 committed by GitHub
parent 1d947b6653
commit b4f732fc9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ trait HasTiles extends HasCoreMonitorBundles { this: BaseSubsystem =>
.map { BasicBusBlockerParams(_, pbus.beatBytes, sbus.beatBytes) }
.map { bbbp => LazyModule(new BasicBusBlocker(bbbp)) }
.map { bbb =>
cbus.coupleTo("bus_blocker") { bbb.controlNode := _ }
cbus.coupleTo("bus_blocker") { bbb.controlNode := TLFragmenter(cbus) := _ }
tile.crossSlavePort() :*= bbb.node
} .getOrElse { tile.crossSlavePort() }
}