2016-08-31 00:52:04 +02:00
|
|
|
// See LICENSE for license details.
|
|
|
|
|
|
|
|
package uncore.tilelink2
|
|
|
|
|
|
|
|
import Chisel._
|
2016-09-05 02:03:10 +02:00
|
|
|
import chisel3.internal.sourceinfo.SourceInfo
|
2016-08-31 00:52:04 +02:00
|
|
|
|
|
|
|
// Acks Hints for managers that don't support them or Acks all Hints if !passthrough
|
2016-08-31 19:25:46 +02:00
|
|
|
class TLHintHandler(supportManagers: Boolean = true, supportClients: Boolean = false, passthrough: Boolean = true) extends LazyModule
|
2016-08-31 00:52:04 +02:00
|
|
|
{
|
|
|
|
val node = TLAdapterNode(
|
2016-09-13 02:15:28 +02:00
|
|
|
clientFn = { case Seq(c) => if (!supportClients) c else c.copy(clients = c.clients .map(_.copy(supportsHint = TransferSizes(1, c.maxTransfer)))) },
|
|
|
|
managerFn = { case Seq(m) => if (!supportManagers) m else m.copy(managers = m.managers.map(_.copy(supportsHint = TransferSizes(1, m.maxTransfer)))) })
|
2016-08-31 00:52:04 +02:00
|
|
|
|
2016-09-02 20:13:43 +02:00
|
|
|
lazy val module = new LazyModuleImp(this) {
|
2016-08-31 00:52:04 +02:00
|
|
|
val io = new Bundle {
|
|
|
|
val in = node.bundleIn
|
|
|
|
val out = node.bundleOut
|
|
|
|
}
|
|
|
|
|
|
|
|
val in = io.in(0)
|
|
|
|
val out = io.out(0)
|
|
|
|
val edgeIn = node.edgesIn(0)
|
|
|
|
val edgeOut = node.edgesOut(0)
|
|
|
|
|
2016-09-01 02:44:48 +02:00
|
|
|
// Don't add support for clients if there is no BCE channel
|
|
|
|
val bce = edgeOut.manager.anySupportAcquire && edgeIn.client.anySupportProbe
|
|
|
|
require (!supportClients || bce)
|
|
|
|
|
2016-09-13 02:31:16 +02:00
|
|
|
// Does it even make sense to add the HintHandler?
|
|
|
|
val smartClients = edgeIn.client.clients.map(_.supportsHint.max == edgeIn.client.maxTransfer).reduce(_&&_)
|
|
|
|
val smartManagers = edgeOut.manager.managers.map(_.supportsHint.max == edgeOut.manager.maxTransfer).reduce(_&&_)
|
|
|
|
|
|
|
|
if (supportManagers && !smartManagers) {
|
2016-09-16 06:27:49 +02:00
|
|
|
// State of the Hint bypass
|
|
|
|
val counter = RegInit(UInt(0, width = log2Up(edgeOut.manager.maxTransfer/edgeOut.manager.beatBytes)))
|
|
|
|
val hintHoldsD = RegInit(Bool(false))
|
|
|
|
val outerHoldsD = counter =/= UInt(0)
|
|
|
|
// Only one of them can hold it
|
|
|
|
assert (!hintHoldsD || !outerHoldsD)
|
|
|
|
|
|
|
|
// Count outer D beats
|
|
|
|
val beats1 = edgeOut.numBeats1(out.d.bits)
|
|
|
|
when (out.d.fire()) { counter := Mux(outerHoldsD, counter - UInt(1), beats1) }
|
|
|
|
|
|
|
|
// Who wants what?
|
2016-09-13 02:26:40 +02:00
|
|
|
val address = edgeIn.address(in.a.bits)
|
2016-09-18 02:04:18 +02:00
|
|
|
val handleA = if (passthrough) !edgeOut.manager.supportsHintFast(address, edgeIn.size(in.a.bits)) else Bool(true)
|
2016-09-16 06:27:49 +02:00
|
|
|
val hintBitsAtA = handleA && in.a.bits.opcode === TLMessages.Hint
|
|
|
|
val hintWantsD = in.a.valid && hintBitsAtA
|
|
|
|
val outerWantsD = out.d.valid
|
2016-08-31 01:16:45 +02:00
|
|
|
|
2016-09-13 04:06:35 +02:00
|
|
|
// Prioritize existing D traffic over HintAck (and finish multibeat xfers)
|
2016-09-16 06:27:49 +02:00
|
|
|
val hintWinsD = hintHoldsD || (!outerHoldsD && !outerWantsD)
|
|
|
|
hintHoldsD := hintWantsD && hintWinsD && !in.d.ready
|
|
|
|
// Hint can only hold D b/c it still wants it from last cycle
|
|
|
|
assert (!hintHoldsD || hintWantsD)
|
2016-09-13 04:06:35 +02:00
|
|
|
|
2016-09-16 06:27:49 +02:00
|
|
|
in.d.valid := Mux(hintWinsD, hintWantsD, outerWantsD)
|
2016-09-18 02:04:18 +02:00
|
|
|
in.d.bits := Mux(hintWinsD, edgeIn.HintAck(in.a.bits, edgeOut.manager.findIdStartFast(address)), out.d.bits)
|
2016-09-16 06:27:49 +02:00
|
|
|
out.d.ready := in.d.ready && !hintHoldsD
|
2016-08-31 01:16:45 +02:00
|
|
|
|
2016-09-16 06:27:49 +02:00
|
|
|
in.a.ready := Mux(hintBitsAtA, hintWinsD && in.d.ready, out.a.ready)
|
|
|
|
out.a.valid := in.a.valid && !hintBitsAtA
|
2016-08-31 01:16:45 +02:00
|
|
|
out.a.bits := in.a.bits
|
|
|
|
} else {
|
|
|
|
out.a.valid := in.a.valid
|
|
|
|
in.a.ready := out.a.ready
|
|
|
|
out.a.bits := in.a.bits
|
|
|
|
|
|
|
|
in.d.valid := out.d.valid
|
|
|
|
out.d.ready := in.d.ready
|
|
|
|
in.d.bits := out.d.bits
|
|
|
|
}
|
|
|
|
|
2016-09-13 02:31:16 +02:00
|
|
|
if (supportClients && !smartClients) {
|
2016-09-16 06:27:49 +02:00
|
|
|
// State of the Hint bypass
|
|
|
|
val counter = RegInit(UInt(0, width = log2Up(edgeIn.client.maxTransfer/edgeIn.manager.beatBytes)))
|
|
|
|
val hintHoldsC = RegInit(Bool(false))
|
|
|
|
val innerHoldsC = counter =/= UInt(0)
|
|
|
|
// Only one of them can hold it
|
|
|
|
assert (!hintHoldsC || !innerHoldsC)
|
|
|
|
|
|
|
|
// Count inner C beats
|
|
|
|
val beats1 = edgeIn.numBeats1(in.c.bits)
|
|
|
|
when (in.c.fire()) { counter := Mux(innerHoldsC, counter - UInt(1), beats1) }
|
|
|
|
|
|
|
|
// Who wants what?
|
2016-09-13 02:15:28 +02:00
|
|
|
val handleB = if (passthrough) !edgeIn.client.supportsHint(out.b.bits.source, edgeOut.size(out.b.bits)) else Bool(true)
|
2016-09-16 06:27:49 +02:00
|
|
|
val hintBitsAtB = handleB && out.b.bits.opcode === TLMessages.Hint
|
|
|
|
val hintWantsC = out.b.valid && hintBitsAtB
|
|
|
|
val innerWantsC = in.c.valid
|
2016-08-31 01:16:45 +02:00
|
|
|
|
2016-09-13 04:06:35 +02:00
|
|
|
// Prioritize existing C traffic over HintAck (and finish multibeat xfers)
|
2016-09-16 06:27:49 +02:00
|
|
|
val hintWinsC = hintHoldsC || (!innerHoldsC && !innerWantsC)
|
|
|
|
hintHoldsC := hintWantsC && hintWinsC && !out.c.ready
|
|
|
|
// Hint can only hold C b/c it still wants it from last cycle
|
|
|
|
assert (!hintHoldsC || hintWantsC)
|
2016-09-13 04:06:35 +02:00
|
|
|
|
2016-09-16 06:27:49 +02:00
|
|
|
out.c.valid := Mux(hintWinsC, hintWantsC, innerWantsC)
|
|
|
|
out.c.bits := Mux(hintWinsC, edgeOut.HintAck(out.b.bits), in.c.bits)
|
|
|
|
in.c.ready := out.c.ready && !hintHoldsC
|
2016-08-31 01:16:45 +02:00
|
|
|
|
2016-09-16 06:27:49 +02:00
|
|
|
out.b.ready := Mux(hintBitsAtB, hintWinsC && out.c.ready, in.b.ready)
|
|
|
|
in.b.valid := out.b.valid && !hintBitsAtB
|
2016-08-31 01:16:45 +02:00
|
|
|
in.b.bits := out.b.bits
|
2016-09-01 02:44:48 +02:00
|
|
|
} else if (bce) {
|
2016-08-31 01:16:45 +02:00
|
|
|
in.b.valid := out.b.valid
|
|
|
|
out.b.ready := in.b.ready
|
|
|
|
in.b.bits := out.b.bits
|
|
|
|
|
|
|
|
out.c.valid := in.c.valid
|
|
|
|
in.c.ready := out.c.ready
|
|
|
|
out.c.bits := in.c.bits
|
2016-09-05 01:47:18 +02:00
|
|
|
} else {
|
|
|
|
in.b.valid := Bool(false)
|
|
|
|
in.c.ready := Bool(true)
|
|
|
|
out.b.ready := Bool(true)
|
|
|
|
out.c.valid := Bool(false)
|
2016-08-31 01:16:45 +02:00
|
|
|
}
|
2016-08-31 01:10:42 +02:00
|
|
|
|
2016-09-01 02:44:48 +02:00
|
|
|
if (bce) {
|
|
|
|
// Pass E through unchanged
|
|
|
|
out.e.valid := in.e.valid
|
|
|
|
in.e.ready := out.e.ready
|
|
|
|
out.e.bits := in.e.bits
|
2016-09-05 01:47:18 +02:00
|
|
|
} else {
|
|
|
|
in.e.ready := Bool(true)
|
|
|
|
out.e.valid := Bool(false)
|
2016-09-01 02:44:48 +02:00
|
|
|
}
|
2016-09-02 20:13:43 +02:00
|
|
|
}
|
2016-08-31 00:52:04 +02:00
|
|
|
}
|
2016-09-01 01:45:18 +02:00
|
|
|
|
|
|
|
object TLHintHandler
|
|
|
|
{
|
2016-09-09 08:06:59 +02:00
|
|
|
// applied to the TL source node; y.node := TLHintHandler(x.node)
|
|
|
|
def apply(x: TLBaseNode, supportManagers: Boolean = true, supportClients: Boolean = false, passthrough: Boolean = true)(implicit sourceInfo: SourceInfo): TLBaseNode = {
|
2016-09-02 20:13:43 +02:00
|
|
|
val hints = LazyModule(new TLHintHandler(supportManagers, supportClients, passthrough))
|
2016-09-09 08:06:59 +02:00
|
|
|
hints.node := x
|
2016-09-01 01:45:18 +02:00
|
|
|
hints.node
|
|
|
|
}
|
|
|
|
}
|