2017-08-25 01:47:15 +02:00
|
|
|
// See LICENSE.SiFive for license details.
|
|
|
|
|
|
|
|
package freechips.rocketchip.util
|
|
|
|
|
|
|
|
import Chisel._
|
|
|
|
|
|
|
|
/** These wrap behavioral
|
|
|
|
* shift registers into specific
|
|
|
|
* modules to allow for
|
|
|
|
* backend flows to replace or constrain
|
|
|
|
* them properly when used for CDC synchronization,
|
|
|
|
* rather than buffering.
|
|
|
|
*
|
|
|
|
* The 3 different types vary in their reset behavior:
|
2017-08-30 21:59:16 +02:00
|
|
|
* AsyncResetShiftReg -- This is identical to the AsyncResetSynchronizerShiftReg,
|
|
|
|
* it is just named differently
|
|
|
|
* to distinguish its use case. This is a ShiftRegister meant for timing,
|
|
|
|
* not for synchronization.
|
2017-08-25 01:47:15 +02:00
|
|
|
* AsyncResetSynchronizerShiftReg -- asynchronously reset to 0
|
|
|
|
* SynchronizerShiftReg -- no reset, pipeline only.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-08-30 21:59:16 +02:00
|
|
|
abstract class AbstractPipelineReg(w: Int = 1) extends Module {
|
2017-08-25 01:47:15 +02:00
|
|
|
|
|
|
|
val io = new Bundle {
|
|
|
|
val d = UInt(INPUT, width = w)
|
|
|
|
val q = UInt(OUTPUT, width = w)
|
|
|
|
}
|
|
|
|
|
2017-08-25 02:18:04 +02:00
|
|
|
}
|
|
|
|
|
2017-08-30 21:59:16 +02:00
|
|
|
object AbstractPipelineReg {
|
2017-08-25 02:18:04 +02:00
|
|
|
|
2017-08-30 21:59:16 +02:00
|
|
|
def apply [T <: Chisel.Data](gen: => AbstractPipelineReg, in: T, name: Option[String] = None): T = {
|
|
|
|
val chain = Module(gen)
|
|
|
|
name.foreach{ chain.suggestName(_) }
|
|
|
|
chain.io.d := in.asUInt
|
2017-08-25 02:34:07 +02:00
|
|
|
|
2017-08-30 21:59:16 +02:00
|
|
|
chain.io.q.asTypeOf(in)
|
2017-08-25 02:18:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-30 21:59:16 +02:00
|
|
|
class AsyncResetShiftReg(w: Int = 1, depth: Int = 1, init: Int = 0, name: String = "pipe") extends AbstractPipelineReg(w) {
|
|
|
|
require(depth > 0, "Depth must be greater than 0.")
|
2017-08-25 02:18:04 +02:00
|
|
|
|
2017-08-30 21:59:16 +02:00
|
|
|
override def desiredName = s"AsyncResetShiftReg_w${w}_d${depth}_i${init}"
|
2017-08-25 02:18:04 +02:00
|
|
|
|
2017-08-30 21:59:16 +02:00
|
|
|
val chain = List.tabulate(depth) { i =>
|
|
|
|
Module (new AsyncResetRegVec(w, init)).suggestName(s"${name}_${i}")
|
2017-08-25 01:47:15 +02:00
|
|
|
}
|
|
|
|
|
2017-08-30 21:59:16 +02:00
|
|
|
chain.last.io.d := io.d
|
|
|
|
chain.last.io.en := Bool(true)
|
2017-08-25 01:47:15 +02:00
|
|
|
|
2017-08-30 21:59:16 +02:00
|
|
|
(chain.init zip chain.tail).foreach { case (sink, source) =>
|
2017-08-25 01:47:15 +02:00
|
|
|
sink.io.d := source.io.q
|
|
|
|
sink.io.en := Bool(true)
|
|
|
|
}
|
2017-08-30 21:59:16 +02:00
|
|
|
io.q := chain.head.io.q
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
object AsyncResetShiftReg {
|
|
|
|
|
|
|
|
def apply [T <: Chisel.Data](in: T, depth: Int = 1, init: Int = 0, name: Option[String] = None ): T =
|
|
|
|
AbstractPipelineReg(gen = {new AsyncResetShiftReg(in.getWidth, depth, init)}, in, name)
|
|
|
|
}
|
|
|
|
|
|
|
|
//Note that it is important to ovveride "name" in order to ensure that the Chisel dedup does
|
|
|
|
// not try to merge instances of this with instances of the superclass.
|
|
|
|
class AsyncResetSynchronizerShiftReg(w: Int = 1, sync: Int = 3) extends AsyncResetShiftReg(w, depth = sync, name = "sync") {
|
|
|
|
require(sync > 0, "Sync must be greater than 0.")
|
|
|
|
override def desiredName = s"AsyncResetSynchronizerShiftReg_w${w}_d${sync}"
|
2017-08-25 01:47:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
object AsyncResetSynchronizerShiftReg {
|
|
|
|
|
2017-08-25 02:18:04 +02:00
|
|
|
def apply [T <: Chisel.Data](in: T, sync: Int = 3, name: Option[String] = None): T =
|
2017-08-30 21:59:16 +02:00
|
|
|
AbstractPipelineReg(gen = {new AsyncResetSynchronizerShiftReg(in.getWidth, sync)}, in, name)
|
2017-08-25 01:47:15 +02:00
|
|
|
}
|
|
|
|
|
2017-08-30 21:59:16 +02:00
|
|
|
class SynchronizerShiftReg(w: Int = 1, sync: Int = 3) extends AbstractPipelineReg(w) {
|
2017-08-30 21:33:03 +02:00
|
|
|
require(sync > 0, "Sync must be greater than 0.")
|
2017-08-25 01:47:15 +02:00
|
|
|
|
|
|
|
override def desiredName = s"SynchronizerShiftReg_w${w}_d${sync}"
|
|
|
|
|
|
|
|
val syncv = List.tabulate(sync) { i =>
|
|
|
|
val r = Reg(UInt(width = w))
|
|
|
|
r.suggestName(s"sync_${i}")
|
|
|
|
}
|
|
|
|
|
|
|
|
syncv.last := io.d
|
|
|
|
|
|
|
|
(syncv.init zip syncv.tail).foreach { case (sink, source) =>
|
|
|
|
sink := source
|
|
|
|
}
|
|
|
|
io.q := syncv.head
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
object SynchronizerShiftReg {
|
|
|
|
|
2017-08-25 02:18:04 +02:00
|
|
|
def apply [T <: Chisel.Data](in: T, sync: Int = 3, name: Option[String] = None): T =
|
2017-08-30 21:59:16 +02:00
|
|
|
AbstractPipelineReg(gen = { new SynchronizerShiftReg(in.getWidth, sync)}, in, name)
|
2017-08-25 01:47:15 +02:00
|
|
|
}
|