rename l2FrontendBus as fsb, expose bsb
This commit is contained in:
committed by
Wesley W. Terpstra
parent
996a31364a
commit
5bbb75e078
@ -26,6 +26,7 @@ trait CoreplexNetwork extends HasCoreplexParameters {
|
||||
val mmio = TLOutputNode()
|
||||
val mmioInt = IntInputNode()
|
||||
val l2in = TLInputNode()
|
||||
val l2out = TLOutputNode()
|
||||
|
||||
intBar.intnode := mmioInt
|
||||
|
||||
@ -42,6 +43,8 @@ trait CoreplexNetwork extends HasCoreplexParameters {
|
||||
TLWidthWidget(l1tol2_beatBytes)(
|
||||
l1tol2.node)
|
||||
|
||||
l2out :*= l1tol2.node
|
||||
|
||||
val root = new Device {
|
||||
def describe(resources: ResourceBindings): Description = {
|
||||
val width = resources("width").map(_.value)
|
||||
@ -96,6 +99,7 @@ trait CoreplexNetworkBundle extends HasCoreplexParameters {
|
||||
val mmio = outer.mmio.bundleOut
|
||||
val interrupts = outer.mmioInt.bundleIn
|
||||
val l2in = outer.l2in.bundleIn
|
||||
val l2out = outer.l2out.bundleOut
|
||||
}
|
||||
|
||||
trait CoreplexNetworkModule extends HasCoreplexParameters {
|
||||
|
Reference in New Issue
Block a user