2014-09-13 00:31:38 +02:00
|
|
|
// See LICENSE for license details.
|
|
|
|
|
2012-09-27 21:59:45 +02:00
|
|
|
package uncore
|
2012-04-03 21:03:05 +02:00
|
|
|
import Chisel._
|
|
|
|
|
2014-08-08 21:21:57 +02:00
|
|
|
case object NReleaseTransactors extends Field[Int]
|
2014-12-16 04:23:13 +01:00
|
|
|
case object NProbeTransactors extends Field[Int]
|
2014-08-08 21:21:57 +02:00
|
|
|
case object NAcquireTransactors extends Field[Int]
|
2015-07-06 01:19:39 +02:00
|
|
|
case object RTCPeriod extends Field[Int]
|
2014-04-27 04:11:36 +02:00
|
|
|
|
2015-03-01 02:02:13 +01:00
|
|
|
trait CoherenceAgentParameters extends UsesParameters {
|
2014-11-12 21:55:07 +01:00
|
|
|
val nReleaseTransactors = 1
|
2014-08-12 03:35:49 +02:00
|
|
|
val nAcquireTransactors = params(NAcquireTransactors)
|
|
|
|
val nTransactors = nReleaseTransactors + nAcquireTransactors
|
2015-08-10 23:35:08 +02:00
|
|
|
val outerTLParams = params.alterPartial({ case TLId => params(OuterTLId)})
|
2015-03-01 02:02:13 +01:00
|
|
|
val outerDataBeats = outerTLParams(TLDataBeats)
|
|
|
|
val outerDataBits = outerTLParams(TLDataBits)
|
2015-03-11 23:43:41 +01:00
|
|
|
val outerBeatAddrBits = log2Up(outerDataBeats)
|
|
|
|
val outerByteAddrBits = log2Up(outerDataBits/8)
|
2015-08-10 23:35:08 +02:00
|
|
|
val innerTLParams = params.alterPartial({case TLId => params(InnerTLId)})
|
2015-03-01 02:02:13 +01:00
|
|
|
val innerDataBeats = innerTLParams(TLDataBeats)
|
|
|
|
val innerDataBits = innerTLParams(TLDataBits)
|
|
|
|
val innerBeatAddrBits = log2Up(innerDataBeats)
|
|
|
|
val innerByteAddrBits = log2Up(innerDataBits/8)
|
|
|
|
require(outerDataBeats == innerDataBeats) //TODO: must fix all xact_data Vecs to remove this requirement
|
2014-08-12 03:35:49 +02:00
|
|
|
}
|
2015-04-20 07:06:44 +02:00
|
|
|
|
2015-03-01 02:02:13 +01:00
|
|
|
abstract class CoherenceAgentBundle extends Bundle with CoherenceAgentParameters
|
|
|
|
abstract class CoherenceAgentModule extends Module with CoherenceAgentParameters
|
|
|
|
|
|
|
|
trait HasCoherenceAgentWiringHelpers {
|
2015-04-18 01:55:20 +02:00
|
|
|
def doOutputArbitration[T <: TileLinkChannel](
|
|
|
|
out: DecoupledIO[T],
|
|
|
|
ins: Seq[DecoupledIO[T]]) {
|
|
|
|
def lock(o: T) = o.hasMultibeatData()
|
2015-07-16 03:06:27 +02:00
|
|
|
val arb = Module(new LockingRRArbiter(out.bits, ins.size, out.bits.tlDataBeats, lock _))
|
2015-03-01 02:02:13 +01:00
|
|
|
out <> arb.io.out
|
2015-04-18 01:55:20 +02:00
|
|
|
arb.io.in <> ins
|
2014-12-12 10:11:08 +01:00
|
|
|
}
|
2013-01-17 08:57:35 +01:00
|
|
|
|
2015-03-01 02:02:13 +01:00
|
|
|
def doInputRouting[T <: HasManagerTransactionId](
|
2015-04-18 01:55:20 +02:00
|
|
|
in: DecoupledIO[T],
|
|
|
|
outs: Seq[DecoupledIO[T]]) {
|
|
|
|
val idx = in.bits.manager_xact_id
|
2015-03-01 02:02:13 +01:00
|
|
|
outs.map(_.bits := in.bits)
|
|
|
|
outs.zipWithIndex.map { case (o,i) => o.valid := in.valid && idx === UInt(i) }
|
|
|
|
in.ready := Vec(outs.map(_.ready)).read(idx)
|
2014-11-12 21:55:07 +01:00
|
|
|
}
|
2013-01-17 08:57:35 +01:00
|
|
|
}
|
|
|
|
|
2015-03-01 02:02:13 +01:00
|
|
|
trait HasInnerTLIO extends CoherenceAgentBundle {
|
2015-04-18 01:55:20 +02:00
|
|
|
val inner = Bundle(new ManagerTileLinkIO)(innerTLParams)
|
2015-08-27 18:47:02 +02:00
|
|
|
val incoherent = Vec(Bool(), inner.tlNCachingClients).asInput
|
2015-04-18 01:55:20 +02:00
|
|
|
def iacq(dummy: Int = 0) = inner.acquire.bits
|
|
|
|
def iprb(dummy: Int = 0) = inner.probe.bits
|
|
|
|
def irel(dummy: Int = 0) = inner.release.bits
|
|
|
|
def ignt(dummy: Int = 0) = inner.grant.bits
|
|
|
|
def ifin(dummy: Int = 0) = inner.finish.bits
|
2013-01-29 01:39:45 +01:00
|
|
|
}
|
|
|
|
|
2015-03-01 02:02:13 +01:00
|
|
|
trait HasUncachedOuterTLIO extends CoherenceAgentBundle {
|
2015-04-18 01:55:20 +02:00
|
|
|
val outer = Bundle(new ClientUncachedTileLinkIO)(outerTLParams)
|
2015-03-24 10:06:53 +01:00
|
|
|
def oacq(dummy: Int = 0) = outer.acquire.bits
|
|
|
|
def ognt(dummy: Int = 0) = outer.grant.bits
|
2013-01-29 01:39:45 +01:00
|
|
|
}
|
2013-01-17 08:57:35 +01:00
|
|
|
|
2015-03-01 02:02:13 +01:00
|
|
|
trait HasCachedOuterTLIO extends CoherenceAgentBundle {
|
2015-04-18 01:55:20 +02:00
|
|
|
val outer = Bundle(new ClientTileLinkIO)(outerTLParams)
|
2015-03-24 10:06:53 +01:00
|
|
|
def oacq(dummy: Int = 0) = outer.acquire.bits
|
|
|
|
def oprb(dummy: Int = 0) = outer.probe.bits
|
|
|
|
def orel(dummy: Int = 0) = outer.release.bits
|
|
|
|
def ognt(dummy: Int = 0) = outer.grant.bits
|
2015-03-01 02:02:13 +01:00
|
|
|
}
|
2014-03-29 18:53:49 +01:00
|
|
|
|
2015-03-01 02:02:13 +01:00
|
|
|
class ManagerTLIO extends HasInnerTLIO with HasUncachedOuterTLIO
|
2013-01-17 08:57:35 +01:00
|
|
|
|
2015-03-01 02:02:13 +01:00
|
|
|
abstract class CoherenceAgent extends CoherenceAgentModule {
|
2015-04-18 01:55:20 +02:00
|
|
|
def innerTL: ManagerTileLinkIO
|
|
|
|
def outerTL: ClientTileLinkIO
|
2015-03-01 02:02:13 +01:00
|
|
|
def incoherent: Vec[Bool]
|
|
|
|
}
|
2014-12-12 10:11:08 +01:00
|
|
|
|
2015-03-01 02:02:13 +01:00
|
|
|
abstract class ManagerCoherenceAgent extends CoherenceAgent
|
|
|
|
with HasCoherenceAgentWiringHelpers {
|
|
|
|
val io = new ManagerTLIO
|
|
|
|
def innerTL = io.inner
|
|
|
|
def outerTL = TileLinkIOWrapper(io.outer, outerTLParams)
|
|
|
|
def incoherent = io.incoherent
|
|
|
|
}
|
2014-03-29 18:53:49 +01:00
|
|
|
|
2015-03-01 02:02:13 +01:00
|
|
|
class HierarchicalTLIO extends HasInnerTLIO with HasCachedOuterTLIO
|
2014-03-29 18:53:49 +01:00
|
|
|
|
2015-03-01 02:02:13 +01:00
|
|
|
abstract class HierarchicalCoherenceAgent extends CoherenceAgent {
|
|
|
|
val io = new HierarchicalTLIO
|
|
|
|
def innerTL = io.inner
|
|
|
|
def outerTL = io.outer
|
|
|
|
def incoherent = io.incoherent
|
|
|
|
}
|
2014-03-29 18:53:49 +01:00
|
|
|
|
2015-03-01 02:02:13 +01:00
|
|
|
trait HasTrackerConflictIO extends Bundle {
|
|
|
|
val has_acquire_conflict = Bool(OUTPUT)
|
|
|
|
val has_acquire_match = Bool(OUTPUT)
|
|
|
|
val has_release_match = Bool(OUTPUT)
|
|
|
|
}
|
2014-03-29 18:53:49 +01:00
|
|
|
|
2015-03-01 02:02:13 +01:00
|
|
|
class ManagerXactTrackerIO extends ManagerTLIO with HasTrackerConflictIO
|
|
|
|
class HierarchicalXactTrackerIO extends HierarchicalTLIO with HasTrackerConflictIO
|
2013-01-17 08:57:35 +01:00
|
|
|
|
2015-04-18 01:55:20 +02:00
|
|
|
abstract class XactTracker extends CoherenceAgentModule with HasDataBeatCounters {
|
2015-04-04 02:24:44 +02:00
|
|
|
def addPendingBitWhenBeat[T <: HasBeat](inc: Bool, in: T): UInt =
|
|
|
|
Fill(in.tlDataBeats, inc) & UIntToOH(in.addr_beat)
|
|
|
|
def dropPendingBitWhenBeat[T <: HasBeat](dec: Bool, in: T): UInt =
|
|
|
|
~Fill(in.tlDataBeats, dec) | ~UIntToOH(in.addr_beat)
|
2015-03-24 10:06:53 +01:00
|
|
|
|
2015-04-18 01:55:20 +02:00
|
|
|
def addPendingBitWhenBeatHasData[T <: HasBeat](in: DecoupledIO[T]): UInt =
|
|
|
|
addPendingBitWhenBeat(in.fire() && in.bits.hasData(), in.bits)
|
2015-03-18 01:51:00 +01:00
|
|
|
|
2015-05-13 02:14:06 +02:00
|
|
|
def addPendingBitWhenBeatHasDataAndAllocs(in: DecoupledIO[AcquireFromSrc]): UInt =
|
|
|
|
addPendingBitWhenBeat(in.fire() && in.bits.hasData() && in.bits.allocate(), in.bits)
|
|
|
|
|
2015-04-18 01:55:20 +02:00
|
|
|
def addPendingBitWhenBeatIsGetOrAtomic(in: DecoupledIO[AcquireFromSrc]): UInt = {
|
|
|
|
val a = in.bits
|
2015-03-24 10:06:53 +01:00
|
|
|
val isGetOrAtomic = a.isBuiltInType() &&
|
2015-04-18 01:55:20 +02:00
|
|
|
(Vec(Acquire.getType, Acquire.getBlockType, Acquire.putAtomicType).contains(a.a_type))
|
|
|
|
addPendingBitWhenBeat(in.fire() && isGetOrAtomic, a)
|
2015-03-18 01:51:00 +01:00
|
|
|
}
|
2015-03-18 04:28:06 +01:00
|
|
|
|
2015-04-18 01:55:20 +02:00
|
|
|
def dropPendingBitWhenBeatHasData[T <: HasBeat](in: DecoupledIO[T]): UInt =
|
|
|
|
dropPendingBitWhenBeat(in.fire() && in.bits.hasData(), in.bits)
|
2015-03-19 01:55:05 +01:00
|
|
|
|
2015-04-18 01:55:20 +02:00
|
|
|
def dropPendingBitAtDest(in: DecoupledIO[ProbeToDst]): UInt =
|
2015-04-20 07:06:44 +02:00
|
|
|
~Fill(in.bits.tlNCachingClients, in.fire()) | ~UIntToOH(in.bits.client_id)
|
2013-01-17 08:57:35 +01:00
|
|
|
}
|