buses: Name all the things.
This commit is contained in:
parent
32cb358c81
commit
c99afe4c66
@ -17,15 +17,14 @@ case class FrontBusParams(
|
|||||||
|
|
||||||
case object FrontBusParams extends Field[FrontBusParams]
|
case object FrontBusParams extends Field[FrontBusParams]
|
||||||
|
|
||||||
class FrontBus(params: FrontBusParams)(implicit p: Parameters) extends TLBusWrapper(params) {
|
class FrontBus(params: FrontBusParams)(implicit p: Parameters) extends TLBusWrapper(params, "FrontBus") {
|
||||||
xbar.suggestName("FrontBus")
|
|
||||||
|
|
||||||
def fromSyncMasters(params: BufferParams = BufferParams.default, buffers: Int = 1, name: Option[String] = None): TLInwardNode =
|
def fromSyncMasters(params: BufferParams = BufferParams.default, buffers: Int = 1, name: Option[String] = None): TLInwardNode =
|
||||||
fromSyncPorts(params, buffers, name)
|
fromSyncPorts(params, buffers, name)
|
||||||
|
|
||||||
def fromSyncPorts(params: BufferParams = BufferParams.default, buffers: Int = 1, name: Option[String] = None): TLInwardNode = {
|
def fromSyncPorts(params: BufferParams = BufferParams.default, buffers: Int = 1, name: Option[String] = None): TLInwardNode = {
|
||||||
val buf = List.fill(buffers)(LazyModule(new TLBuffer(params)))
|
val buf = List.fill(buffers)(LazyModule(new TLBuffer(params)))
|
||||||
name.foreach { n => buf.zipWithIndex foreach {case (b, i) => b.suggestName(s"FrontBus_${n}_${i}_TLBuffer")}}
|
name.foreach { n => buf.zipWithIndex foreach {case (b, i) => b.suggestName(s"${busName}_${n}_${i}_TLBuffer")}}
|
||||||
for(i<-1 until buffers) {
|
for(i<-1 until buffers) {
|
||||||
buf(i).node :=* buf(i-1).node
|
buf(i).node :=* buf(i-1).node
|
||||||
}
|
}
|
||||||
|
@ -43,8 +43,7 @@ case class MemoryBusParams(
|
|||||||
case object MemoryBusParams extends Field[MemoryBusParams]
|
case object MemoryBusParams extends Field[MemoryBusParams]
|
||||||
|
|
||||||
/** Wrapper for creating TL nodes from a bus connected to the back of each mem channel */
|
/** Wrapper for creating TL nodes from a bus connected to the back of each mem channel */
|
||||||
class MemoryBus(params: MemoryBusParams)(implicit p: Parameters) extends TLBusWrapper(params)(p) {
|
class MemoryBus(params: MemoryBusParams)(implicit p: Parameters) extends TLBusWrapper(params, "MemoryBus")(p) {
|
||||||
xbar.suggestName("MemoryBus")
|
|
||||||
|
|
||||||
def fromCoherenceManager: TLInwardNode = inwardBufNode
|
def fromCoherenceManager: TLInwardNode = inwardBufNode
|
||||||
def toDRAMController: TLOutwardNode = outwardBufNode
|
def toDRAMController: TLOutwardNode = outwardBufNode
|
||||||
|
@ -21,8 +21,7 @@ case class PeripheryBusParams(
|
|||||||
|
|
||||||
case object PeripheryBusParams extends Field[PeripheryBusParams]
|
case object PeripheryBusParams extends Field[PeripheryBusParams]
|
||||||
|
|
||||||
class PeripheryBus(params: PeripheryBusParams)(implicit p: Parameters) extends TLBusWrapper(params) {
|
class PeripheryBus(params: PeripheryBusParams)(implicit p: Parameters) extends TLBusWrapper(params, "PeripheryBus") {
|
||||||
xbar.suggestName("PeripheryBus")
|
|
||||||
|
|
||||||
def toFixedWidthSingleBeatSlave(widthBytes: Int) = {
|
def toFixedWidthSingleBeatSlave(widthBytes: Int) = {
|
||||||
TLFragmenter(widthBytes, params.blockBytes)(outwardWWNode)
|
TLFragmenter(widthBytes, params.blockBytes)(outwardWWNode)
|
||||||
|
@ -52,7 +52,7 @@ trait HasRocketTiles extends HasSystemBus
|
|||||||
case AsynchronousCrossing(depth, sync) => {
|
case AsynchronousCrossing(depth, sync) => {
|
||||||
val wrapper = LazyModule(new AsyncRocketTile(c, i)(pWithExtra))
|
val wrapper = LazyModule(new AsyncRocketTile(c, i)(pWithExtra))
|
||||||
sbus.fromAsyncTiles(depth, sync) :=* wrapper.masterNode
|
sbus.fromAsyncTiles(depth, sync) :=* wrapper.masterNode
|
||||||
wrapper.slaveNode :*= pbus.toAsyncSlaves(sync)(c.name)
|
wrapper.slaveNode :*= pbus.toAsyncSlaves(sync, c.name)
|
||||||
wrapper
|
wrapper
|
||||||
}
|
}
|
||||||
case RationalCrossing(direction) => {
|
case RationalCrossing(direction) => {
|
||||||
|
@ -17,10 +17,10 @@ case class SystemBusParams(
|
|||||||
|
|
||||||
case object SystemBusParams extends Field[SystemBusParams]
|
case object SystemBusParams extends Field[SystemBusParams]
|
||||||
|
|
||||||
class SystemBus(params: SystemBusParams)(implicit p: Parameters) extends TLBusWrapper(params) {
|
class SystemBus(params: SystemBusParams)(implicit p: Parameters) extends TLBusWrapper(params, "SystemBus") {
|
||||||
xbar.suggestName("SystemBus")
|
|
||||||
|
|
||||||
private val master_splitter = LazyModule(new TLSplitter) // Allows cycle-free connection to external networks
|
private val master_splitter = LazyModule(new TLSplitter) // Allows cycle-free connection to external networks
|
||||||
|
master_splitter.suggestName(s"${busName}_master_TLSplitter"}
|
||||||
inwardNode :=* master_splitter.node
|
inwardNode :=* master_splitter.node
|
||||||
def busView = master_splitter.node.edgesIn.head
|
def busView = master_splitter.node.edgesIn.head
|
||||||
|
|
||||||
@ -28,8 +28,12 @@ class SystemBus(params: SystemBusParams)(implicit p: Parameters) extends TLBusWr
|
|||||||
protected def outwardSplitNode: TLOutwardNode = master_splitter.node
|
protected def outwardSplitNode: TLOutwardNode = master_splitter.node
|
||||||
|
|
||||||
private val tile_fixer = LazyModule(new TLFIFOFixer(TLFIFOFixer.allUncacheable))
|
private val tile_fixer = LazyModule(new TLFIFOFixer(TLFIFOFixer.allUncacheable))
|
||||||
|
tile_fixer.suggestName(s"${busName}_tile_TLFIFOFixer")
|
||||||
private val port_fixer = LazyModule(new TLFIFOFixer(TLFIFOFixer.all))
|
private val port_fixer = LazyModule(new TLFIFOFixer(TLFIFOFixer.all))
|
||||||
|
port_fixer.suggestName(s"${busName}_port_TLFIFOFixer")
|
||||||
private val pbus_fixer = LazyModule(new TLFIFOFixer(TLFIFOFixer.all))
|
private val pbus_fixer = LazyModule(new TLFIFOFixer(TLFIFOFixer.all))
|
||||||
|
pbus_fixer.suggestName(s"${busName}_pbus_TLFIFOFixer")
|
||||||
|
|
||||||
master_splitter.node :=* tile_fixer.node
|
master_splitter.node :=* tile_fixer.node
|
||||||
master_splitter.node :=* port_fixer.node
|
master_splitter.node :=* port_fixer.node
|
||||||
pbus_fixer.node :*= outwardWWNode
|
pbus_fixer.node :*= outwardWWNode
|
||||||
@ -54,28 +58,28 @@ class SystemBus(params: SystemBusParams)(implicit p: Parameters) extends TLBusWr
|
|||||||
|
|
||||||
def fromSyncTiles(params: BufferParams, name: Option[String] = None): TLInwardNode = {
|
def fromSyncTiles(params: BufferParams, name: Option[String] = None): TLInwardNode = {
|
||||||
val buf = LazyModule(new TLBuffer(params))
|
val buf = LazyModule(new TLBuffer(params))
|
||||||
name.foreach{n => buf.suggestName(s"SystemBus_${n}_TLBuffer")}
|
name.foreach{n => buf.suggestName(s"${busName}_${n}_TLBuffer")}
|
||||||
tile_fixer.node :=* buf.node
|
tile_fixer.node :=* buf.node
|
||||||
buf.node
|
buf.node
|
||||||
}
|
}
|
||||||
|
|
||||||
def fromRationalTiles(dir: RationalDirection, name: Option[String] = None): TLRationalInwardNode = {
|
def fromRationalTiles(dir: RationalDirection, name: Option[String] = None): TLRationalInwardNode = {
|
||||||
val sink = LazyModule(new TLRationalCrossingSink(direction = dir))
|
val sink = LazyModule(new TLRationalCrossingSink(direction = dir))
|
||||||
name.foreach{n => sink.suggestName(s"SystemBus_${n}_TLRationalCrossingSink")}
|
name.foreach{n => sink.suggestName(s"${busName}_${n}_TLRationalCrossingSink")}
|
||||||
tile_fixer.node :=* sink.node
|
tile_fixer.node :=* sink.node
|
||||||
sink.node
|
sink.node
|
||||||
}
|
}
|
||||||
|
|
||||||
def fromAsyncTiles(depth: Int, sync: Int, name: Option[String] = None): TLAsyncInwardNode = {
|
def fromAsyncTiles(depth: Int, sync: Int, name: Option[String] = None): TLAsyncInwardNode = {
|
||||||
val sink = LazyModule(new TLAsyncCrossingSink(depth, sync))
|
val sink = LazyModule(new TLAsyncCrossingSink(depth, sync))
|
||||||
name.foreach{n => sink.suggestName(s"SystemBus_${n}_TLAsyncCrossingSink")}
|
name.foreach{n => sink.suggestName(s"${busName}_${n}_TLAsyncCrossignSink")}
|
||||||
tile_fixer.node :=* sink.node
|
tile_fixer.node :=* sink.node
|
||||||
sink.node
|
sink.node
|
||||||
}
|
}
|
||||||
|
|
||||||
def fromSyncPorts(params: BufferParams = BufferParams.default, name: Option[String] = None): TLInwardNode = {
|
def fromSyncPorts(params: BufferParams = BufferParams.default, name: Option[String] = None): TLInwardNode = {
|
||||||
val buffer = LazyModule(new TLBuffer(params))
|
val buffer = LazyModule(new TLBuffer(params))
|
||||||
name.foreach{ n => buffer.suggestName(s"SystemBus_${n}_TLBuffer") }
|
name.foreach{ n => buffer.suggestName(s"${busName}_${n}_TLBuffer") }
|
||||||
port_fixer.node :=* buffer.node
|
port_fixer.node :=* buffer.node
|
||||||
buffer.node
|
buffer.node
|
||||||
}
|
}
|
||||||
@ -86,7 +90,7 @@ class SystemBus(params: SystemBusParams)(implicit p: Parameters) extends TLBusWr
|
|||||||
|
|
||||||
def fromAsyncPorts(depth: Int = 8, sync: Int = 3, name : Option[String] = None): TLAsyncInwardNode = {
|
def fromAsyncPorts(depth: Int = 8, sync: Int = 3, name : Option[String] = None): TLAsyncInwardNode = {
|
||||||
val sink = LazyModule(new TLAsyncCrossingSink(depth, sync))
|
val sink = LazyModule(new TLAsyncCrossingSink(depth, sync))
|
||||||
name.foreach{ n => sink.suggestName(s"SystemBus_${n}_TLAsyncCrossingSink") }
|
name.foreach{ n => sink.suggestName(s"${busName}_${n}_TLAsyncCrossingSink") }
|
||||||
port_fixer.node :=* sink.node
|
port_fixer.node :=* sink.node
|
||||||
sink.node
|
sink.node
|
||||||
}
|
}
|
||||||
@ -95,7 +99,7 @@ class SystemBus(params: SystemBusParams)(implicit p: Parameters) extends TLBusWr
|
|||||||
|
|
||||||
def fromRationalPorts(dir: RationalDirection, name: Option[String] = None): TLRationalInwardNode = {
|
def fromRationalPorts(dir: RationalDirection, name: Option[String] = None): TLRationalInwardNode = {
|
||||||
val sink = LazyModule(new TLRationalCrossingSink(dir))
|
val sink = LazyModule(new TLRationalCrossingSink(dir))
|
||||||
name.foreach{ n => sink.suggestName(s"SystemBus_${n}_TLRationalCrossingSink") }
|
name.foreach{ n => sink.suggestName(s"${busName}_${n}_TLRationalCrossingSink") }
|
||||||
port_fixer.node :=* sink.node
|
port_fixer.node :=* sink.node
|
||||||
sink.node
|
sink.node
|
||||||
}
|
}
|
||||||
|
@ -21,7 +21,8 @@ trait TLBusParams {
|
|||||||
def blockOffset: Int = log2Up(blockBytes)
|
def blockOffset: Int = log2Up(blockBytes)
|
||||||
}
|
}
|
||||||
|
|
||||||
abstract class TLBusWrapper(params: TLBusParams)(implicit p: Parameters) extends TLBusParams {
|
abstract class TLBusWrapper(params: TLBusParams, val busName: String)(implicit p: Parameters) extends TLBusParams {
|
||||||
|
|
||||||
val beatBytes = params.beatBytes
|
val beatBytes = params.beatBytes
|
||||||
val blockBytes = params.blockBytes
|
val blockBytes = params.blockBytes
|
||||||
val masterBuffering = params.masterBuffering
|
val masterBuffering = params.masterBuffering
|
||||||
@ -30,10 +31,16 @@ abstract class TLBusWrapper(params: TLBusParams)(implicit p: Parameters) extends
|
|||||||
private val delayProb = p(TLBusDelayProbability)
|
private val delayProb = p(TLBusDelayProbability)
|
||||||
|
|
||||||
protected val xbar = LazyModule(new TLXbar)
|
protected val xbar = LazyModule(new TLXbar)
|
||||||
|
xbar.suggestName(busName)
|
||||||
private val master_buffer = LazyModule(new TLBuffer(masterBuffering))
|
private val master_buffer = LazyModule(new TLBuffer(masterBuffering))
|
||||||
|
master_buffer.suggestName(s"${busName}_master_TLBuffer")
|
||||||
private val slave_buffer = LazyModule(new TLBuffer(slaveBuffering))
|
private val slave_buffer = LazyModule(new TLBuffer(slaveBuffering))
|
||||||
|
slave_buffer.suggestName(s"${busName}_slave_TLBuffer")
|
||||||
private val slave_frag = LazyModule(new TLFragmenter(beatBytes, blockBytes))
|
private val slave_frag = LazyModule(new TLFragmenter(beatBytes, blockBytes))
|
||||||
|
slave_frag.suggestName(s"${busName}_slave_TLFragmenter")
|
||||||
|
|
||||||
private val slave_ww = LazyModule(new TLWidthWidget(beatBytes))
|
private val slave_ww = LazyModule(new TLWidthWidget(beatBytes))
|
||||||
|
slave_ww.suggestName(s"${busName}_slave_TLWidthWidget")
|
||||||
|
|
||||||
private val delayedNode = if (delayProb > 0.0) {
|
private val delayedNode = if (delayProb > 0.0) {
|
||||||
val firstDelay = LazyModule(new TLDelayer(delayProb))
|
val firstDelay = LazyModule(new TLDelayer(delayProb))
|
||||||
@ -63,44 +70,48 @@ abstract class TLBusWrapper(params: TLBusParams)(implicit p: Parameters) extends
|
|||||||
|
|
||||||
def bufferToSlaves: TLOutwardNode = outwardBufNode
|
def bufferToSlaves: TLOutwardNode = outwardBufNode
|
||||||
|
|
||||||
def toAsyncSlaves(sync: Int = 3)(name: Option[String] = None): TLAsyncOutwardNode = {
|
def toAsyncSlaves(sync: Int = 3, name: Option[String] = None): TLAsyncOutwardNode = {
|
||||||
val source = LazyModule(new TLAsyncCrossingSource(sync))
|
val source = LazyModule(new TLAsyncCrossingSource(sync))
|
||||||
name.foreach(source.suggestName)
|
name.foreach{ n => source.suggestName(s"${busName}_${n}_TLAsyncCrossingSource")}
|
||||||
source.node :*= outwardNode
|
source.node :*= outwardNode
|
||||||
source.node
|
source.node
|
||||||
}
|
}
|
||||||
|
|
||||||
def toRationalSlaves(name: Option[String] = None): TLRationalOutwardNode = {
|
def toRationalSlaves(name: Option[String] = None): TLRationalOutwardNode = {
|
||||||
val source = LazyModule(new TLRationalCrossingSource())
|
val source = LazyModule(new TLRationalCrossingSource())
|
||||||
name.foreach(source.suggestName)
|
name.foreach{ n => source.suggestName(s"${busName}_${n}_TLRationalCrossingSource")}
|
||||||
source.node :*= outwardNode
|
source.node :*= outwardNode
|
||||||
source.node
|
source.node
|
||||||
}
|
}
|
||||||
|
|
||||||
def toVariableWidthSlaves: TLOutwardNode = outwardFragNode
|
def toVariableWidthSlaves: TLOutwardNode = outwardFragNode
|
||||||
|
|
||||||
def toAsyncVariableWidthSlaves(sync: Int = 3): TLAsyncOutwardNode = {
|
def toAsyncVariableWidthSlaves(sync: Int = 3, name: Option[String] = None): TLAsyncOutwardNode = {
|
||||||
val source = LazyModule(new TLAsyncCrossingSource(sync))
|
val source = LazyModule(new TLAsyncCrossingSource(sync))
|
||||||
|
name.foreach {n => source.suggestName(s"${busName}_${name}_TLAsyncCrossingSource")}
|
||||||
source.node :*= outwardFragNode
|
source.node :*= outwardFragNode
|
||||||
source.node
|
source.node
|
||||||
}
|
}
|
||||||
|
|
||||||
def toRationalVariableWidthSlaves: TLRationalOutwardNode = {
|
def toRationalVariableWidthSlaves(name: Option[String] = None): TLRationalOutwardNode = {
|
||||||
val source = LazyModule(new TLRationalCrossingSource())
|
val source = LazyModule(new TLRationalCrossingSource())
|
||||||
|
name.foreach {n => source.suggestName(s"${busName}_${name}_TLRationalCrossingSource")}
|
||||||
source.node :*= outwardFragNode
|
source.node :*= outwardFragNode
|
||||||
source.node
|
source.node
|
||||||
}
|
}
|
||||||
|
|
||||||
def toFixedWidthSlaves: TLOutwardNode = outwardWWNode
|
def toFixedWidthSlaves: TLOutwardNode = outwardWWNode
|
||||||
|
|
||||||
def toAsyncFixedWidthSlaves(sync: Int = 3): TLAsyncOutwardNode = {
|
def toAsyncFixedWidthSlaves(sync: Int = 3, name: Option[String] = None): TLAsyncOutwardNode = {
|
||||||
val source = LazyModule(new TLAsyncCrossingSource(sync))
|
val source = LazyModule(new TLAsyncCrossingSource(sync))
|
||||||
|
name.foreach { n => source.suggestName(s"${busName}_${name}_TLAsyncCrossingSource")}
|
||||||
source.node := outwardWWNode
|
source.node := outwardWWNode
|
||||||
source.node
|
source.node
|
||||||
}
|
}
|
||||||
|
|
||||||
def toRationalFixedWidthSlaves: TLRationalOutwardNode = {
|
def toRationalFixedWidthSlaves(name: Option[String] = None): TLRationalOutwardNode = {
|
||||||
val source = LazyModule(new TLRationalCrossingSource())
|
val source = LazyModule(new TLRationalCrossingSource())
|
||||||
|
name.foreach {n => source.suggestName(s"${busName}_${name}_TLRationalCrossingSource")}
|
||||||
source.node :*= outwardWWNode
|
source.node :*= outwardWWNode
|
||||||
source.node
|
source.node
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user