RegMapFIFO: amoor.w can do thread-safe TX
This commit is contained in:
parent
b8ecb7853b
commit
ca7555bd4d
@ -8,18 +8,24 @@ import regmapper._
|
|||||||
object NonBlockingEnqueue {
|
object NonBlockingEnqueue {
|
||||||
def apply(enq: DecoupledIO[UInt], regWidth: Int = 32): Seq[RegField] = {
|
def apply(enq: DecoupledIO[UInt], regWidth: Int = 32): Seq[RegField] = {
|
||||||
val enqWidth = enq.bits.getWidth
|
val enqWidth = enq.bits.getWidth
|
||||||
|
val quash = Wire(Bool())
|
||||||
require(enqWidth > 0)
|
require(enqWidth > 0)
|
||||||
require(regWidth > enqWidth)
|
require(regWidth > enqWidth)
|
||||||
Seq(
|
Seq(
|
||||||
RegField(enqWidth,
|
RegField(enqWidth,
|
||||||
RegReadFn(UInt(0)),
|
RegReadFn(UInt(0)),
|
||||||
RegWriteFn((valid, data) => {
|
RegWriteFn((valid, data) => {
|
||||||
enq.valid := valid
|
enq.valid := valid && !quash
|
||||||
enq.bits := data
|
enq.bits := data
|
||||||
Bool(true)
|
Bool(true)
|
||||||
})),
|
})),
|
||||||
RegField(regWidth - enqWidth - 1),
|
RegField(regWidth - enqWidth - 1),
|
||||||
RegField.r(1, !enq.ready))
|
RegField(1,
|
||||||
|
!enq.ready,
|
||||||
|
RegWriteFn((valid, data) => {
|
||||||
|
quash := valid && data(0)
|
||||||
|
Bool(true)
|
||||||
|
})))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user