tilelink2: add a rational clock crossing adapter
This commit is contained in:
		| @@ -251,3 +251,12 @@ class TLAsyncBundle(params: TLAsyncBundleParameters) extends TLAsyncBundleBase(p | |||||||
|   val d = new AsyncBundle(params.depth, new TLBundleD(params.base)).flip |   val d = new AsyncBundle(params.depth, new TLBundleD(params.base)).flip | ||||||
|   val e = new AsyncBundle(params.depth, new TLBundleE(params.base)) |   val e = new AsyncBundle(params.depth, new TLBundleE(params.base)) | ||||||
| } | } | ||||||
|  |  | ||||||
|  | class TLRationalBundle(params: TLBundleParameters) extends TLBundleBase(params) | ||||||
|  | { | ||||||
|  |   val a = RationalIO(new TLBundleA(params)) | ||||||
|  |   val b = RationalIO(new TLBundleB(params)).flip | ||||||
|  |   val c = RationalIO(new TLBundleC(params)) | ||||||
|  |   val d = RationalIO(new TLBundleD(params)).flip | ||||||
|  |   val e = RationalIO(new TLBundleE(params)) | ||||||
|  | } | ||||||
|   | |||||||
| @@ -180,3 +180,39 @@ case class TLAsyncSinkNode(depth: Int, sync: Int) extends MixedNode(TLAsyncImp, | |||||||
|   uFn = { case (1, Seq(p)) => Seq(TLAsyncManagerPortParameters(depth, p)) }, |   uFn = { case (1, Seq(p)) => Seq(TLAsyncManagerPortParameters(depth, p)) }, | ||||||
|   numPO = 1 to 1, |   numPO = 1 to 1, | ||||||
|   numPI = 1 to 1) |   numPI = 1 to 1) | ||||||
|  |  | ||||||
|  | object TLRationalImp extends NodeImp[TLClientPortParameters, TLManagerPortParameters, TLEdgeParameters, TLEdgeParameters, TLRationalBundle] | ||||||
|  | { | ||||||
|  |   def edgeO(pd: TLClientPortParameters, pu: TLManagerPortParameters): TLEdgeParameters = TLEdgeParameters(pd, pu) | ||||||
|  |   def edgeI(pd: TLClientPortParameters, pu: TLManagerPortParameters): TLEdgeParameters = TLEdgeParameters(pd, pu) | ||||||
|  |  | ||||||
|  |   def bundleO(eo: Seq[TLEdgeParameters]): Vec[TLRationalBundle] = Vec(eo.size, new TLRationalBundle(TLBundleParameters.union(eo.map(_.bundle)))) | ||||||
|  |   def bundleI(ei: Seq[TLEdgeParameters]): Vec[TLRationalBundle] = Vec(ei.size, new TLRationalBundle(TLBundleParameters.union(ei.map(_.bundle)))) | ||||||
|  |  | ||||||
|  |   def colour = "#00ff00" // green | ||||||
|  |  | ||||||
|  |   def connect(bo: => TLRationalBundle, bi: => TLRationalBundle, ei: => TLEdgeParameters)(implicit p: Parameters, sourceInfo: SourceInfo): (Option[LazyModule], () => Unit) = { | ||||||
|  |     (None, () => { bi <> bo }) | ||||||
|  |   } | ||||||
|  |  | ||||||
|  |   override def mixO(pd: TLClientPortParameters, node: OutwardNode[TLClientPortParameters, TLManagerPortParameters, TLRationalBundle]): TLClientPortParameters  = | ||||||
|  |    pd.copy(clients  = pd.clients.map  { c => c.copy (nodePath = node +: c.nodePath) }) | ||||||
|  |   override def mixI(pu: TLManagerPortParameters, node: InwardNode[TLClientPortParameters, TLManagerPortParameters, TLRationalBundle]): TLManagerPortParameters = | ||||||
|  |    pu.copy(managers = pu.managers.map { m => m.copy (nodePath = node +: m.nodePath) }) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | case class TLRationalIdentityNode() extends IdentityNode(TLRationalImp) | ||||||
|  | case class TLRationalOutputNode() extends OutputNode(TLRationalImp) | ||||||
|  | case class TLRationalInputNode() extends InputNode(TLRationalImp) | ||||||
|  |  | ||||||
|  | case class TLRationalSourceNode() extends MixedNode(TLImp, TLRationalImp)( | ||||||
|  |   dFn = { case (_, s) => s }, | ||||||
|  |   uFn = { case (_, s) => s.map(p => p.copy(minLatency = 1)) }, // discard cycles from other clock domain | ||||||
|  |   numPO = 0 to 999, | ||||||
|  |   numPI = 0 to 999) | ||||||
|  |  | ||||||
|  | case class TLRationalSinkNode() extends MixedNode(TLRationalImp, TLImp)( | ||||||
|  |   dFn = { case (_, s) => s.map(p => p.copy(minLatency = 1)) }, | ||||||
|  |   uFn = { case (_, s) => s }, | ||||||
|  |   numPO = 0 to 999, | ||||||
|  |   numPI = 0 to 999) | ||||||
|   | |||||||
							
								
								
									
										177
									
								
								src/main/scala/uncore/tilelink2/RationalCrossing.scala
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										177
									
								
								src/main/scala/uncore/tilelink2/RationalCrossing.scala
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,177 @@ | |||||||
|  | // See LICENSE.SiFive for license details. | ||||||
|  |  | ||||||
|  | package uncore.tilelink2 | ||||||
|  |  | ||||||
|  | import Chisel._ | ||||||
|  | import chisel3.internal.sourceinfo.SourceInfo | ||||||
|  | import config._ | ||||||
|  | import diplomacy._ | ||||||
|  | import util._ | ||||||
|  |  | ||||||
|  | class TLRationalCrossingSource(implicit p: Parameters) extends LazyModule | ||||||
|  | { | ||||||
|  |   val node = TLRationalSourceNode() | ||||||
|  |  | ||||||
|  |   lazy val module = new LazyModuleImp(this) { | ||||||
|  |     val io = new Bundle { | ||||||
|  |       val in  = node.bundleIn | ||||||
|  |       val out = node.bundleOut | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     ((io.in zip io.out) zip (node.edgesIn zip node.edgesOut)) foreach { case ((in, out), (edgeIn, edgeOut)) => | ||||||
|  |       val bce = edgeIn.manager.anySupportAcquireB && edgeIn.client.anySupportProbe | ||||||
|  |  | ||||||
|  |       out.a <> ToRational(in.a) | ||||||
|  |       in.d <> FromRational(out.d) | ||||||
|  |  | ||||||
|  |       if (bce) { | ||||||
|  |         in.b <> FromRational(out.b) | ||||||
|  |         out.c <> ToRational(in.c) | ||||||
|  |         out.e <> ToRational(in.e) | ||||||
|  |       } else { | ||||||
|  |         in.b.valid   := Bool(false) | ||||||
|  |         in.c.ready   := Bool(true) | ||||||
|  |         in.e.ready   := Bool(true) | ||||||
|  |         out.b.ready  := Bool(true) | ||||||
|  |         out.c.valid  := Bool(false) | ||||||
|  |         out.e.valid  := Bool(false) | ||||||
|  |         out.b.sink   := UInt(0) | ||||||
|  |         out.c.source := UInt(0) | ||||||
|  |         out.e.source := UInt(0) | ||||||
|  |       } | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
|  |  | ||||||
|  | class TLRationalCrossingSink(implicit p: Parameters) extends LazyModule | ||||||
|  | { | ||||||
|  |   val node = TLRationalSinkNode() | ||||||
|  |  | ||||||
|  |   lazy val module = new LazyModuleImp(this) { | ||||||
|  |     val io = new Bundle { | ||||||
|  |       val in  = node.bundleIn | ||||||
|  |       val out = node.bundleOut | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     ((io.in zip io.out) zip (node.edgesIn zip node.edgesOut)) foreach { case ((in, out), (edgeIn, edgeOut)) => | ||||||
|  |       val bce = edgeOut.manager.anySupportAcquireB && edgeOut.client.anySupportProbe | ||||||
|  |  | ||||||
|  |       out.a <> FromRational(in.a) | ||||||
|  |       in.d <> ToRational(out.d) | ||||||
|  |  | ||||||
|  |       if (bce) { | ||||||
|  |         in.b <> ToRational(out.b) | ||||||
|  |         out.c <> FromRational(in.c) | ||||||
|  |         out.e <> FromRational(in.e) | ||||||
|  |       } else { | ||||||
|  |         out.b.ready := Bool(true) | ||||||
|  |         out.c.valid := Bool(false) | ||||||
|  |         out.e.valid := Bool(false) | ||||||
|  |         in.b.valid  := Bool(false) | ||||||
|  |         in.c.ready  := Bool(true) | ||||||
|  |         in.e.ready  := Bool(true) | ||||||
|  |         in.b.source := UInt(0) | ||||||
|  |         in.c.sink   := UInt(0) | ||||||
|  |         in.e.sink   := UInt(0) | ||||||
|  |       } | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
|  |  | ||||||
|  | object TLRationalCrossingSource | ||||||
|  | { | ||||||
|  |   // applied to the TL source node; y.node := TLRationalCrossingSource()(x.node) | ||||||
|  |   def apply()(x: TLOutwardNode)(implicit p: Parameters, sourceInfo: SourceInfo): TLRationalOutwardNode = { | ||||||
|  |     val source = LazyModule(new TLRationalCrossingSource) | ||||||
|  |     source.node := x | ||||||
|  |     source.node | ||||||
|  |   } | ||||||
|  | } | ||||||
|  |  | ||||||
|  | object TLRationalCrossingSink | ||||||
|  | { | ||||||
|  |   // applied to the TL source node; y.node := TLRationalCrossingSink()(x.node) | ||||||
|  |   def apply()(x: TLRationalOutwardNode)(implicit p: Parameters, sourceInfo: SourceInfo): TLOutwardNode = { | ||||||
|  |     val sink = LazyModule(new TLRationalCrossingSink) | ||||||
|  |     sink.node := x | ||||||
|  |     sink.node | ||||||
|  |   } | ||||||
|  | } | ||||||
|  |  | ||||||
|  | class TLRationalCrossing(implicit p: Parameters) extends LazyModule | ||||||
|  | { | ||||||
|  |   val nodeIn = TLInputNode() | ||||||
|  |   val nodeOut = TLOutputNode() | ||||||
|  |   val node = NodeHandle(nodeIn, nodeOut) | ||||||
|  |  | ||||||
|  |   val source = LazyModule(new TLRationalCrossingSource) | ||||||
|  |   val sink = LazyModule(new TLRationalCrossingSink) | ||||||
|  |  | ||||||
|  |   val _    = (sink.node := source.node) // no monitor | ||||||
|  |   val in   = (source.node := nodeIn) | ||||||
|  |   val out  = (nodeOut := sink.node) | ||||||
|  |  | ||||||
|  |   lazy val module = new LazyModuleImp(this) { | ||||||
|  |     val io = new Bundle { | ||||||
|  |       val in        = nodeIn.bundleIn | ||||||
|  |       val in_clock  = Clock(INPUT) | ||||||
|  |       val in_reset  = Bool(INPUT) | ||||||
|  |       val out       = nodeOut.bundleOut | ||||||
|  |       val out_clock = Clock(INPUT) | ||||||
|  |       val out_reset = Bool(INPUT) | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     source.module.clock := io.in_clock | ||||||
|  |     source.module.reset := io.in_reset | ||||||
|  |     in.foreach { lm => | ||||||
|  |       lm.module.clock := io.in_clock | ||||||
|  |       lm.module.reset := io.in_reset | ||||||
|  |     } | ||||||
|  |  | ||||||
|  |     sink.module.clock := io.out_clock | ||||||
|  |     sink.module.reset := io.out_reset | ||||||
|  |     out.foreach { lm => | ||||||
|  |       lm.module.clock := io.out_clock | ||||||
|  |       lm.module.reset := io.out_reset | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /** Synthesizeable unit tests */ | ||||||
|  | import unittest._ | ||||||
|  |  | ||||||
|  | class TLRAMRationalCrossing(implicit p: Parameters) extends LazyModule { | ||||||
|  |   val fuzz  = LazyModule(new TLFuzzer(5000)) | ||||||
|  |   val model = LazyModule(new TLRAMModel) | ||||||
|  |   val cross = LazyModule(new TLRationalCrossing) | ||||||
|  |   val delay = LazyModule(new TLDelayer(0.25)) | ||||||
|  |   val ram   = LazyModule(new TLRAM(AddressSet(0x0, 0x3ff))) | ||||||
|  |  | ||||||
|  |   model.node := fuzz.node | ||||||
|  |   cross.node := TLDelayer(0.25)(TLFragmenter(4, 256)(model.node)) | ||||||
|  |   val monitor1 = (delay.node := cross.node) | ||||||
|  |   val monitor2 = (ram.node := delay.node) | ||||||
|  |   val monitors = monitor1.toList ++ monitor2.toList | ||||||
|  |  | ||||||
|  |   lazy val module = new LazyModuleImp(this) with HasUnitTestIO { | ||||||
|  |     io.finished := fuzz.module.io.finished | ||||||
|  |  | ||||||
|  |     // Shove the RAM into another clock domain | ||||||
|  |     val clocks = Module(new util.Pow2ClockDivider(2)) | ||||||
|  |     ram.module.clock := clocks.io.clock_out | ||||||
|  |     delay.module.clock := clocks.io.clock_out | ||||||
|  |  | ||||||
|  |     // ... and safely cross TL2 into it | ||||||
|  |     cross.module.io.in_clock := clock | ||||||
|  |     cross.module.io.in_reset := reset | ||||||
|  |     cross.module.io.out_clock := clocks.io.clock_out | ||||||
|  |     cross.module.io.out_reset := reset | ||||||
|  |  | ||||||
|  |     // Push the Monitors into the right clock domain | ||||||
|  |     monitors.foreach { m => m.module.clock := clocks.io.clock_out } | ||||||
|  |   } | ||||||
|  | } | ||||||
|  |  | ||||||
|  | class TLRAMRationalCrossingTest(implicit p: Parameters) extends UnitTest(timeout = 500000) { | ||||||
|  |   io.finished := Module(LazyModule(new TLRAMRationalCrossing).module).io.finished | ||||||
|  | } | ||||||
| @@ -10,6 +10,7 @@ package object tilelink2 | |||||||
|   type TLInwardNode = InwardNodeHandle[TLClientPortParameters, TLManagerPortParameters, TLBundle] |   type TLInwardNode = InwardNodeHandle[TLClientPortParameters, TLManagerPortParameters, TLBundle] | ||||||
|   type TLOutwardNode = OutwardNodeHandle[TLClientPortParameters, TLManagerPortParameters, TLBundle] |   type TLOutwardNode = OutwardNodeHandle[TLClientPortParameters, TLManagerPortParameters, TLBundle] | ||||||
|   type TLAsyncOutwardNode = OutwardNodeHandle[TLAsyncClientPortParameters, TLAsyncManagerPortParameters, TLAsyncBundle] |   type TLAsyncOutwardNode = OutwardNodeHandle[TLAsyncClientPortParameters, TLAsyncManagerPortParameters, TLAsyncBundle] | ||||||
|  |   type TLRationalOutwardNode = OutwardNodeHandle[TLClientPortParameters, TLManagerPortParameters, TLRationalBundle] | ||||||
|   type IntOutwardNode = OutwardNodeHandle[IntSourcePortParameters, IntSinkPortParameters, Vec[Bool]] |   type IntOutwardNode = OutwardNodeHandle[IntSourcePortParameters, IntSinkPortParameters, Vec[Bool]] | ||||||
|  |  | ||||||
|   def OH1ToOH(x: UInt) = (x << 1 | UInt(1)) & ~Cat(UInt(0, width=1), x) |   def OH1ToOH(x: UInt) = (x << 1 | UInt(1)) & ~Cat(UInt(0, width=1), x) | ||||||
|   | |||||||
| @@ -30,6 +30,7 @@ class WithTLSimpleUnitTests extends Config((site, here, up) => { | |||||||
|       Module(new uncore.tilelink2.TLRAMSimpleTest(16)), |       Module(new uncore.tilelink2.TLRAMSimpleTest(16)), | ||||||
|       Module(new uncore.tilelink2.TLRR0Test), |       Module(new uncore.tilelink2.TLRR0Test), | ||||||
|       Module(new uncore.tilelink2.TLRR1Test), |       Module(new uncore.tilelink2.TLRR1Test), | ||||||
|  |       Module(new uncore.tilelink2.TLRAMRationalCrossingTest), | ||||||
|       Module(new uncore.tilelink2.TLRAMAsyncCrossingTest) ) } |       Module(new uncore.tilelink2.TLRAMAsyncCrossingTest) ) } | ||||||
| }) | }) | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user