Files
eb001/src/main/scala/Switch/SwitchMux.scala

155 lines
3.6 KiB
Scala
Raw Normal View History

2023-10-19 18:31:26 +08:00
package Switch
import chisel3._
import chisel3.util._
2023-10-20 14:42:15 +08:00
import org.chipsalliance.cde.config._
import freechips.rocketchip.diplomacy._
import freechips.rocketchip.tilelink._
2023-10-19 18:31:26 +08:00
class SwitchMux(edgeOut: TLEdgeOut)(implicit p: Parameters) extends SwitchModule{
class MacTileLinkMasterIO extends Bundle{
val A = Decoupled(new TLBundleA(edgeOut.bundle))
val D = Flipped(Decoupled(new TLBundleD(edgeOut.bundle)))
}
class SwitchMuxIO(implicit p: Parameters) extends SwitchBundle{
val dmaMst = new MacTileLinkMasterIO
val triTx = Input(Bool())
2023-10-20 14:42:15 +08:00
val rxEnq = Vec(chn, Flipped(new Receive_Enq_Bundle))
val txDeq = Vec(chn, new Transmit_Bundle)
2023-10-19 18:31:26 +08:00
}
val io: SwitchMuxIO = IO(new SwitchMuxIO)
2023-10-20 14:42:15 +08:00
val (_, _, isLastD, transDCnt) = edgeOut.count(io.dmaMst.D)
val rxBuff = Module(new RxBuff)
rxBuff.io.enq <> io.rxEnq(0)
2023-10-19 18:31:26 +08:00
2023-10-20 14:42:15 +08:00
val txBuff = Module(new TxBuff)
txBuff.io.deq <> io.txDeq(0)
2023-10-19 18:31:26 +08:00
def stateIdle = 0.U
def stateRx = 1.U
def stateTx = 2.U
val stateNxt = Wire(UInt(2.W))
val stateCur = RegNext(stateNxt, stateIdle)
stateNxt :=
Mux1H(Seq(
( stateCur === stateIdle ) -> Mux( rxBuff.io.deq.header.fire, stateRx, Mux( txBuff.io.enq.req.fire, stateTx, stateIdle ) ),
( stateCur === stateRx ) -> Mux( rxBuff.io.deq.ctrl.fire, stateIdle, stateRx ),
( stateCur === stateTx ) -> Mux( txBuff.io.enq.resp.fire, stateIdle, stateTx ),
))
def ptr = 0x8002000
2023-10-20 14:42:15 +08:00
def txLength = 8.U
2023-10-19 18:31:26 +08:00
def PerPacketCrcEn = true.B
def PerPacketPad = true.B
rxBuff.io.deq.ctrl.ready := stateCur === stateRx
val txReqValid = RegInit(false.B)
when( txBuff.io.enq.req.fire ){
txReqValid := false.B
} .elsewhen( io.triTx ){
txReqValid := true.B
}
txBuff.io.enq.req.valid := txReqValid && stateCur === stateIdle
2023-10-20 14:42:15 +08:00
txBuff.io.enq.req.bits.txLength := txLength
txBuff.io.enq.req.bits.PerPacketCrcEn := PerPacketCrcEn
txBuff.io.enq.req.bits.PerPacketPad := PerPacketPad
2023-10-19 18:31:26 +08:00
txBuff.io.enq.resp.ready := true.B
val dmaTxAValid = RegInit(false.B)
val dmaTxABits = Reg(new TLBundleA(edgeOut.bundle))
val dmaAddress = Reg( UInt(32.W) )
when( stateCur === stateIdle && stateNxt =/= stateIdle ){
dmaAddress := ptr.U
2023-10-20 14:42:15 +08:00
} .elsewhen( io.dmaMst.A.fire ){
2023-10-19 18:31:26 +08:00
dmaAddress := dmaAddress + 4.U
}
2023-10-20 14:42:15 +08:00
rxBuff.io.deq.data.ready := io.dmaMst.A.ready & stateCur === stateRx
rxBuff.io.deq.header.ready := ~io.triTx && ~txReqValid
2023-10-19 18:31:26 +08:00
2023-10-20 14:42:15 +08:00
when( io.dmaMst.A.fire & stateCur === stateTx ){
2023-10-19 18:31:26 +08:00
dmaTxAValid := false.B
2023-10-20 14:42:15 +08:00
} .elsewhen( txBuff.io.enq.req.fire | (io.dmaMst.D.fire & isLastD & stateCur === stateTx & dmaAddress >= (ptr.U + txLength)) ){
2023-10-19 18:31:26 +08:00
dmaTxAValid := true.B
dmaTxABits :=
edgeOut.Get(
fromSource = 0.U,
toAddress = dmaAddress >> 2 << 2,
2023-10-20 14:42:15 +08:00
lgSize = log2Ceil(32/8).U,
2023-10-19 18:31:26 +08:00
)._2
}
2023-10-20 14:42:15 +08:00
io.dmaMst.A.valid :=
2023-10-19 18:31:26 +08:00
Mux1H(Seq(
2023-10-20 14:42:15 +08:00
( stateCur === stateRx ) -> rxBuff.io.deq.data.valid,
( stateCur === stateTx ) -> dmaTxAValid,
2023-10-19 18:31:26 +08:00
))
when( stateCur === stateRx ){
2023-10-20 14:42:15 +08:00
io.dmaMst.A.bits :=
2023-10-19 18:31:26 +08:00
edgeOut.Put(
fromSource = 0.U,
toAddress = dmaAddress >> 2 << 2,
lgSize = log2Ceil(32/8).U,
data = rxBuff.io.deq.data.bits,
mask = "b1111".U,
)._2
} .elsewhen( stateCur === stateTx ){
2023-10-20 14:42:15 +08:00
io.dmaMst.A.bits := dmaTxABits
2023-10-19 18:31:26 +08:00
} .otherwise{
2023-10-20 14:42:15 +08:00
io.dmaMst.A.bits := DontCare
2023-10-19 18:31:26 +08:00
}
2023-10-20 14:42:15 +08:00
txBuff.io.enq.data.valid := io.dmaMst.D.valid & stateCur === stateTx
txBuff.io.enq.data.bits := io.dmaMst.D.bits.data
2023-10-19 18:31:26 +08:00
2023-10-20 14:42:15 +08:00
io.dmaMst.D.ready :=
2023-10-19 18:31:26 +08:00
Mux1H(Seq(
2023-10-20 14:42:15 +08:00
( stateCur === stateRx ) -> true.B,
( stateCur === stateTx ) -> txBuff.io.enq.data.ready,
2023-10-19 18:31:26 +08:00
))
}