tilelink2 broadcast: make it controlled via Config
This commit is contained in:
parent
f4ca5ea1f3
commit
179c93db42
@ -19,12 +19,25 @@ case class TLBusConfig(beatBytes: Int)
|
|||||||
case object CBusConfig extends Field[TLBusConfig]
|
case object CBusConfig extends Field[TLBusConfig]
|
||||||
case object L1toL2Config extends Field[TLBusConfig]
|
case object L1toL2Config extends Field[TLBusConfig]
|
||||||
|
|
||||||
/** Number of memory channels */
|
/** L2 Broadcast Hub configuration */
|
||||||
case object NMemoryChannels extends Field[Int]
|
case class BroadcastConfig(
|
||||||
/** Number of banks per memory channel */
|
nTrackers: Int = 4,
|
||||||
case object NBanksPerMemoryChannel extends Field[Int]
|
bufferless: Boolean = false)
|
||||||
/** Number of tracker per bank */
|
case object BroadcastConfig extends Field[BroadcastConfig]
|
||||||
case object NTrackersPerBank extends Field[Int]
|
|
||||||
|
/** L2 memory subsystem configuration */
|
||||||
|
case class BankedL2Config(
|
||||||
|
nMemoryChannels: Int = 1,
|
||||||
|
nBanksPerChannel: Int = 1,
|
||||||
|
coherenceManager: (Int, Parameters) => (TLInwardNode, TLOutwardNode) = { case (lineBytes, p) =>
|
||||||
|
val BroadcastConfig(nTrackers, bufferless) = p(BroadcastConfig)
|
||||||
|
val bh = LazyModule(new TLBroadcast(lineBytes, nTrackers, bufferless))
|
||||||
|
(bh.node, bh.node)
|
||||||
|
}) {
|
||||||
|
val nBanks = nMemoryChannels*nBanksPerChannel
|
||||||
|
}
|
||||||
|
case object BankedL2Config extends Field[BankedL2Config]
|
||||||
|
|
||||||
/** The file to read the BootROM contents from */
|
/** The file to read the BootROM contents from */
|
||||||
case object BootROMFile extends Field[String]
|
case object BootROMFile extends Field[String]
|
||||||
|
|
||||||
@ -32,12 +45,10 @@ trait HasCoreplexParameters {
|
|||||||
implicit val p: Parameters
|
implicit val p: Parameters
|
||||||
lazy val cbusConfig = p(CBusConfig)
|
lazy val cbusConfig = p(CBusConfig)
|
||||||
lazy val l1tol2Config = p(L1toL2Config)
|
lazy val l1tol2Config = p(L1toL2Config)
|
||||||
lazy val nBanksPerMemChannel = p(NBanksPerMemoryChannel)
|
|
||||||
lazy val globalAddrMap = p(rocketchip.GlobalAddrMap)
|
lazy val globalAddrMap = p(rocketchip.GlobalAddrMap)
|
||||||
lazy val nTiles = p(uncore.devices.NTiles)
|
lazy val nTiles = p(uncore.devices.NTiles)
|
||||||
lazy val nMemChannels = p(NMemoryChannels)
|
|
||||||
lazy val hasSupervisor = p(rocket.UseVM)
|
lazy val hasSupervisor = p(rocket.UseVM)
|
||||||
lazy val nTrackersPerBank = p(NTrackersPerBank)
|
lazy val l2Config = p(BankedL2Config)
|
||||||
}
|
}
|
||||||
|
|
||||||
case class CoreplexParameters(implicit val p: Parameters) extends HasCoreplexParameters
|
case class CoreplexParameters(implicit val p: Parameters) extends HasCoreplexParameters
|
||||||
@ -99,19 +110,17 @@ trait CoreplexNetworkModule extends HasCoreplexParameters {
|
|||||||
trait BankedL2CoherenceManagers extends CoreplexNetwork {
|
trait BankedL2CoherenceManagers extends CoreplexNetwork {
|
||||||
val module: BankedL2CoherenceManagersModule
|
val module: BankedL2CoherenceManagersModule
|
||||||
|
|
||||||
require (isPow2(nBanksPerMemChannel))
|
require (isPow2(l2Config.nBanksPerChannel))
|
||||||
require (isPow2(l1tol2_lineBytes))
|
require (isPow2(l1tol2_lineBytes))
|
||||||
|
|
||||||
def l2ManagerFactory(): (TLInwardNode, TLOutwardNode)
|
val mem = Seq.fill(l2Config.nMemoryChannels) {
|
||||||
|
|
||||||
val mem = Seq.fill(nMemChannels) {
|
|
||||||
val bankBar = LazyModule(new TLXbar)
|
val bankBar = LazyModule(new TLXbar)
|
||||||
val output = TLOutputNode()
|
val output = TLOutputNode()
|
||||||
|
|
||||||
output := bankBar.node
|
output := bankBar.node
|
||||||
val mask = ~BigInt((nBanksPerMemChannel-1) * l1tol2_lineBytes)
|
val mask = ~BigInt((l2Config.nBanksPerChannel-1) * l1tol2_lineBytes)
|
||||||
for (i <- 0 until nBanksPerMemChannel) {
|
for (i <- 0 until l2Config.nBanksPerChannel) {
|
||||||
val (in, out) = l2ManagerFactory()
|
val (in, out) = l2Config.coherenceManager(l1tol2_lineBytes, p)
|
||||||
in := TLFilter(AddressSet(i * l1tol2_lineBytes, mask))(l1tol2.node)
|
in := TLFilter(AddressSet(i * l1tol2_lineBytes, mask))(l1tol2.node)
|
||||||
bankBar.node := out
|
bankBar.node := out
|
||||||
}
|
}
|
||||||
@ -123,7 +132,7 @@ trait BankedL2CoherenceManagers extends CoreplexNetwork {
|
|||||||
trait BankedL2CoherenceManagersBundle extends CoreplexNetworkBundle {
|
trait BankedL2CoherenceManagersBundle extends CoreplexNetworkBundle {
|
||||||
val outer: BankedL2CoherenceManagers
|
val outer: BankedL2CoherenceManagers
|
||||||
|
|
||||||
require (nMemChannels <= 1, "Seq in Chisel Bundle needed to support > 1") // !!!
|
require (l2Config.nMemoryChannels <= 1, "Seq in Chisel Bundle needed to support > 1") // !!!
|
||||||
val mem = outer.mem.map(_.bundleOut).toList.headOption // .headOption should be removed !!!
|
val mem = outer.mem.map(_.bundleOut).toList.headOption // .headOption should be removed !!!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@ import Chisel._
|
|||||||
import junctions._
|
import junctions._
|
||||||
import diplomacy._
|
import diplomacy._
|
||||||
import uncore.tilelink._
|
import uncore.tilelink._
|
||||||
|
import uncore.tilelink2._
|
||||||
import uncore.coherence._
|
import uncore.coherence._
|
||||||
import uncore.agents._
|
import uncore.agents._
|
||||||
import uncore.devices._
|
import uncore.devices._
|
||||||
@ -100,7 +101,7 @@ class BaseCoreplexConfig extends Config (
|
|||||||
coherencePolicy = (
|
coherencePolicy = (
|
||||||
if (useMEI) new MEICoherence(site(L2DirectoryRepresentation))
|
if (useMEI) new MEICoherence(site(L2DirectoryRepresentation))
|
||||||
else new MESICoherence(site(L2DirectoryRepresentation))),
|
else new MESICoherence(site(L2DirectoryRepresentation))),
|
||||||
nManagers = site(NBanksPerMemoryChannel)*site(NMemoryChannels) + 1 /* MMIO */,
|
nManagers = site(BankedL2Config).nBanks + 1 /* MMIO */,
|
||||||
nCachingClients = 1,
|
nCachingClients = 1,
|
||||||
nCachelessClients = 1,
|
nCachelessClients = 1,
|
||||||
maxClientXacts = max_int(
|
maxClientXacts = max_int(
|
||||||
@ -114,10 +115,9 @@ class BaseCoreplexConfig extends Config (
|
|||||||
dataBits = site(CacheBlockBytes)*8)
|
dataBits = site(CacheBlockBytes)*8)
|
||||||
}
|
}
|
||||||
case BootROMFile => "./bootrom/bootrom.img"
|
case BootROMFile => "./bootrom/bootrom.img"
|
||||||
case BufferlessBroadcast => false
|
|
||||||
case NTiles => 1
|
case NTiles => 1
|
||||||
case NBanksPerMemoryChannel => Knob("NBANKS_PER_MEM_CHANNEL")
|
case BroadcastConfig => BroadcastConfig()
|
||||||
case NTrackersPerBank => Knob("NTRACKERS_PER_BANK")
|
case BankedL2Config => BankedL2Config()
|
||||||
case CacheBlockBytes => Dump("CACHE_BLOCK_BYTES", 64)
|
case CacheBlockBytes => Dump("CACHE_BLOCK_BYTES", 64)
|
||||||
case CacheBlockOffsetBits => log2Up(here(CacheBlockBytes))
|
case CacheBlockOffsetBits => log2Up(here(CacheBlockBytes))
|
||||||
case EnableL2Logging => false
|
case EnableL2Logging => false
|
||||||
@ -165,11 +165,11 @@ class WithL2Cache extends Config(
|
|||||||
case "L2Bank" => {
|
case "L2Bank" => {
|
||||||
case NSets => (((here[Int]("L2_CAPACITY_IN_KB")*1024) /
|
case NSets => (((here[Int]("L2_CAPACITY_IN_KB")*1024) /
|
||||||
site(CacheBlockBytes)) /
|
site(CacheBlockBytes)) /
|
||||||
(site(NBanksPerMemoryChannel)*site(NMemoryChannels))) /
|
(site(BankedL2Config).nBanks)) /
|
||||||
site(NWays)
|
site(NWays)
|
||||||
case NWays => Knob("L2_WAYS")
|
case NWays => Knob("L2_WAYS")
|
||||||
case RowBits => site(TLKey(site(TLId))).dataBitsPerBeat
|
case RowBits => site(TLKey(site(TLId))).dataBitsPerBeat
|
||||||
case CacheIdBits => log2Ceil(site(NMemoryChannels) * site(NBanksPerMemoryChannel))
|
case CacheIdBits => log2Ceil(site(BankedL2Config).nBanks)
|
||||||
case SplitMetadata => Knob("L2_SPLIT_METADATA")
|
case SplitMetadata => Knob("L2_SPLIT_METADATA")
|
||||||
}: PartialFunction[Any,Any]
|
}: PartialFunction[Any,Any]
|
||||||
case NAcquireTransactors => 2
|
case NAcquireTransactors => 2
|
||||||
@ -183,7 +183,7 @@ class WithL2Cache extends Config(
|
|||||||
|
|
||||||
class WithBufferlessBroadcastHub extends Config(
|
class WithBufferlessBroadcastHub extends Config(
|
||||||
(pname, site, here) => pname match {
|
(pname, site, here) => pname match {
|
||||||
case BufferlessBroadcast => true
|
case BroadcastConfig => site(BroadcastConfig).copy(bufferless = true)
|
||||||
})
|
})
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -199,6 +199,13 @@ class WithBufferlessBroadcastHub extends Config(
|
|||||||
* DO NOT use this configuration.
|
* DO NOT use this configuration.
|
||||||
*/
|
*/
|
||||||
class WithStatelessBridge extends Config (
|
class WithStatelessBridge extends Config (
|
||||||
|
topDefinitions = { (pname,site,here) => pname match {
|
||||||
|
case BankedL2Config => site(BankedL2Config).copy(coherenceManager = { case (_, _) =>
|
||||||
|
val pass = LazyModule(new TLBuffer(0))
|
||||||
|
(pass.node, pass.node)
|
||||||
|
})
|
||||||
|
case _ => throw new CDEMatchError
|
||||||
|
}},
|
||||||
knobValues = {
|
knobValues = {
|
||||||
case "L1D_MSHRS" => 0
|
case "L1D_MSHRS" => 0
|
||||||
case _ => throw new CDEMatchError
|
case _ => throw new CDEMatchError
|
||||||
|
@ -10,20 +10,9 @@ import uncore.util._
|
|||||||
import util._
|
import util._
|
||||||
import rocket._
|
import rocket._
|
||||||
|
|
||||||
/** Should the broadcast hub have no buffers */
|
|
||||||
case object BufferlessBroadcast extends Field[Boolean]
|
|
||||||
|
|
||||||
trait BroadcastL2 extends BankedL2CoherenceManagers {
|
|
||||||
def l2ManagerFactory() = {
|
|
||||||
val bh = LazyModule(new TLBroadcast(l1tol2_lineBytes, nTrackersPerBank, p(BufferlessBroadcast)))
|
|
||||||
(bh.node, bh.node)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/////
|
/////
|
||||||
|
|
||||||
class DefaultCoreplex(implicit p: Parameters) extends BaseCoreplex
|
class DefaultCoreplex(implicit p: Parameters) extends BaseCoreplex
|
||||||
with BroadcastL2
|
|
||||||
with CoreplexRISCVPlatform
|
with CoreplexRISCVPlatform
|
||||||
with RocketPlex {
|
with RocketPlex {
|
||||||
override lazy val module = new DefaultCoreplexModule(this, () => new DefaultCoreplexBundle(this))
|
override lazy val module = new DefaultCoreplexModule(this, () => new DefaultCoreplexBundle(this))
|
||||||
@ -119,7 +108,6 @@ trait AsyncConnectionModule {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class MultiClockCoreplex(implicit p: Parameters) extends BaseCoreplex
|
class MultiClockCoreplex(implicit p: Parameters) extends BaseCoreplex
|
||||||
with BroadcastL2
|
|
||||||
with AsyncConnection {
|
with AsyncConnection {
|
||||||
override lazy val module = new MultiClockCoreplexModule(this, () => new MultiClockCoreplexBundle(this))
|
override lazy val module = new MultiClockCoreplexModule(this, () => new MultiClockCoreplexBundle(this))
|
||||||
}
|
}
|
||||||
|
@ -79,7 +79,7 @@ class WithGroundTest extends Config(
|
|||||||
coherencePolicy = (
|
coherencePolicy = (
|
||||||
if (useMEI) new MEICoherence(site(L2DirectoryRepresentation))
|
if (useMEI) new MEICoherence(site(L2DirectoryRepresentation))
|
||||||
else new MESICoherence(site(L2DirectoryRepresentation))),
|
else new MESICoherence(site(L2DirectoryRepresentation))),
|
||||||
nManagers = site(NBanksPerMemoryChannel)*site(NMemoryChannels) + 1,
|
nManagers = site(BankedL2Config).nBanks + 1,
|
||||||
nCachingClients = 1,
|
nCachingClients = 1,
|
||||||
nCachelessClients = 1,
|
nCachelessClients = 1,
|
||||||
maxClientXacts = ((site(DCacheKey).nMSHRs + 1) +:
|
maxClientXacts = ((site(DCacheKey).nMSHRs + 1) +:
|
||||||
@ -90,8 +90,6 @@ class WithGroundTest extends Config(
|
|||||||
dataBeats = dataBeats,
|
dataBeats = dataBeats,
|
||||||
dataBits = site(CacheBlockBytes)*8)
|
dataBits = site(CacheBlockBytes)*8)
|
||||||
}
|
}
|
||||||
case BuildExampleTop =>
|
|
||||||
(p: Parameters) => LazyModule(new ExampleTopWithTestRAM(new GroundTestCoreplex()(_))(p))
|
|
||||||
case FPUKey => None
|
case FPUKey => None
|
||||||
case UseAtomics => false
|
case UseAtomics => false
|
||||||
case UseCompressed => false
|
case UseCompressed => false
|
||||||
|
@ -9,8 +9,7 @@ import uncore.tilelink2._
|
|||||||
import rocket.TileId
|
import rocket.TileId
|
||||||
import uncore.tilelink.TLId
|
import uncore.tilelink.TLId
|
||||||
|
|
||||||
class GroundTestCoreplex(implicit p: Parameters) extends BaseCoreplex
|
class GroundTestCoreplex(implicit p: Parameters) extends BaseCoreplex {
|
||||||
with BroadcastL2 {
|
|
||||||
val tiles = List.tabulate(p(NTiles)) { i =>
|
val tiles = List.tabulate(p(NTiles)) { i =>
|
||||||
LazyModule(new GroundTestTile()(p.alterPartial({
|
LazyModule(new GroundTestTile()(p.alterPartial({
|
||||||
case TLId => "L1toL2"
|
case TLId => "L1toL2"
|
||||||
|
@ -32,7 +32,6 @@ class BasePlatformConfig extends Config(
|
|||||||
case PeripheryBusArithmetic => true
|
case PeripheryBusArithmetic => true
|
||||||
// Note that PLIC asserts that this is > 0.
|
// Note that PLIC asserts that this is > 0.
|
||||||
case IncludeJtagDTM => false
|
case IncludeJtagDTM => false
|
||||||
case NMemoryChannels => Dump("N_MEM_CHANNELS", 1)
|
|
||||||
case ExtMem => AXIMasterConfig(0x80000000L, 0x10000000L, 8, 4)
|
case ExtMem => AXIMasterConfig(0x80000000L, 0x10000000L, 8, 4)
|
||||||
case ExtBus => AXIMasterConfig(0x60000000L, 0x20000000L, 8, 4)
|
case ExtBus => AXIMasterConfig(0x60000000L, 0x20000000L, 8, 4)
|
||||||
case RTCPeriod => 100 // gives 10 MHz RTC assuming 1 GHz uncore clock
|
case RTCPeriod => 100 // gives 10 MHz RTC assuming 1 GHz uncore clock
|
||||||
@ -63,7 +62,7 @@ class PLRUL2Config extends Config(new WithPLRU ++ new DefaultL2Config)
|
|||||||
|
|
||||||
class WithNMemoryChannels(n: Int) extends Config(
|
class WithNMemoryChannels(n: Int) extends Config(
|
||||||
(pname,site,here) => pname match {
|
(pname,site,here) => pname match {
|
||||||
case NMemoryChannels => Dump("N_MEM_CHANNELS", n)
|
case BankedL2Config => site(BankedL2Config).copy(nMemoryChannels = n)
|
||||||
case _ => throw new CDEMatchError
|
case _ => throw new CDEMatchError
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
@ -36,7 +36,6 @@ case object SOCBusConfig extends Field[TLBusConfig]
|
|||||||
/** Utility trait for quick access to some relevant parameters */
|
/** Utility trait for quick access to some relevant parameters */
|
||||||
trait HasPeripheryParameters {
|
trait HasPeripheryParameters {
|
||||||
implicit val p: Parameters
|
implicit val p: Parameters
|
||||||
lazy val nMemChannels = p(NMemoryChannels)
|
|
||||||
lazy val peripheryBusConfig = p(PeripheryBusConfig)
|
lazy val peripheryBusConfig = p(PeripheryBusConfig)
|
||||||
lazy val socBusConfig = p(SOCBusConfig)
|
lazy val socBusConfig = p(SOCBusConfig)
|
||||||
lazy val cacheBlockBytes = p(CacheBlockBytes)
|
lazy val cacheBlockBytes = p(CacheBlockBytes)
|
||||||
|
@ -9,8 +9,6 @@ import diplomacy._
|
|||||||
import coreplex._
|
import coreplex._
|
||||||
import uncore.axi4._
|
import uncore.axi4._
|
||||||
|
|
||||||
case object BuildExampleTop extends Field[Parameters => ExampleTop[coreplex.BaseCoreplex]]
|
|
||||||
|
|
||||||
class TestHarness(q: Parameters) extends Module {
|
class TestHarness(q: Parameters) extends Module {
|
||||||
val io = new Bundle {
|
val io = new Bundle {
|
||||||
val success = Bool(OUTPUT)
|
val success = Bool(OUTPUT)
|
||||||
|
Loading…
Reference in New Issue
Block a user