新主站发送逻辑

This commit is contained in:
RuigeLee
2024-10-09 17:37:15 +08:00
parent 58aecc043f
commit a6068fbda0
6 changed files with 207 additions and 4 deletions

View File

@@ -0,0 +1,29 @@
package BACK
import chisel3._
import chisel3.util._
class Axis8toNIO_Bundle(dw: Int) extends Bundle{
val enq = Flipped(Decoupled(new AxisNto8IO_Bundle(8)))
val deq = Decoupled(new AxisNto8IO_Bundle(dw))
}
class Axis8toN(dw: Int) extends Module{
require( dw == 16 | dw == 32 | dw == 64 )
assert( io.deq.ready === true.B )
val io: Axis8toNIO_Bundle = IO(new Axis8toNIO_Bundle(dw))
val cnt = RegInit( 0.U( log2Ceil(dw/8).W ) )
val fifo = Reg( new AxisNto8IO_Bundle(dw) )
}

View File

@@ -0,0 +1,48 @@
package BACK
import chisel3._
import chisel3.util._
class AxisNto8IO_Bundle(dw: Int) extends Bundle{
val enq = Flipped(Decoupled(new AxisNto8IO_Bundle(dw)))
val deq = Decoupled(new AxisNto8IO_Bundle(8))
}
class AxisNto8(dw: Int) extends Module{
require( dw == 16 | dw == 32 | dw == 64 )
val io: AxisNto8IO_Bundle = IO(new AxisNto8IO_Bundle(dw))
val cnt = RegInit( 0.U( log2Ceil(dw/8).W ) )
val isBusy = RegInit(false.B)
val fifo = RegEnable( io.enq.bits, io.enq.fire )
io.enq.ready := ~isBusy | (io.deq.fire & cnt.andR)
when( io.deq.fire ){
cnt := cnt + 1.U
}
when( io.enq.fire ){
isBusy := true.B
} .elsewhen( io.deq.fire & cnt.andR ){
isBusy := false.B
}
io.deq.valid := isBusy
io.deq.bits.tdata := fifo.tdata >> (cnt << 3)
io.deq.bits.tlast := fifo.tlast & cnt.andR
io.deq.bits.tuser := fifo.tuser & cnt.andR
}

View File

@@ -6,7 +6,7 @@ import chisel3.util._
//work in 100MHZ //work in 100MHZ
class CDRInIO extends Bundle{ class CDRInIO extends Bundle{
val axis = Decoupled(new AXIS_Bundle) val axis = Decoupled(new AXIS_Bundle(8))
val serDat = Input(Bool()) val serDat = Input(Bool())
val overCLK = Input(Bool()) val overCLK = Input(Bool())
} }

View File

@@ -3,15 +3,15 @@ package BACK
import chisel3._ import chisel3._
import chisel3.util._ import chisel3.util._
class AXIS_Bundle extends Bundle{ class AXIS_Bundle(dw: Int) extends Bundle{
val tdata = UInt(8.W) val tdata = UInt(dw.W)
val tlast = Bool() val tlast = Bool()
val tuser = Bool() val tuser = Bool()
} }
//work in 100MHZ //work in 100MHZ
class CDROutIO extends Bundle{ class CDROutIO extends Bundle{
val axis = Flipped(Decoupled(new AXIS_Bundle)) val axis = Flipped(Decoupled(new AXIS_Bundle(8)))
val serDat = Output(Bool()) val serDat = Output(Bool())
} }

View File

@@ -0,0 +1,120 @@
package BACK
import chisel3._
import chisel3.util._
class Header_Info_Bundle extends Bundle{
val operator = UInt(8.W)
val length = UInt(8.W)
val param = Vec(3, UInt(16.W))
def init = operator === 0.U
def sync = operator === 1.U
def boardCast = operator === 2.U
def uniCast = operator === 3.U
}
abstract class ShinMstPhyBase extends Module{
val mirrorDown = Module(new MirrorSRAMDP())
val mirrorUp = Module(new MirrorSRAMDP())
val cdrOut = Module(new CDROut)
}
trait ShinMstSend{ this: ShinMstPhyBase =>
def isSendTrig: Bool
def isRecvEnd: Bool
def isTimeout: Bool
val sendStateNext = Wire( UInt(3.W) )
val sendStateCurr = RegNext( sendStateNext, 0.U )
val sendHeader = Wire( new Header_Info_Bundle )
val sendCnt = Reg(UInt(10.W))
sendStateNext := Mux1H(Seq(
(sendStateCurr === 0.U) -> Mux( isSendTrig, 1.U, 0.U ),
(sendStateCurr === 1.U) -> Mux( cdrOut.io.axis.fire & sendCnt === ((sendHeader.getWidth()/8)*2-1).U, 2.U, 1.U ),
(sendStateCurr === 2.U) -> Mux( cdrOut.io.axis.fire & sendCnt === (sendHeader.length << 1) - 1.U, 3.U, 2.U ),
(sendStateCurr === 3.U) -> Mux( isRecvEnd | isTimeout, 0.U, 3.U ),
))
when( sendStateCurr === 0.U ){
when( sendStateNext === 1.U ) {
sendCnt := 0.U
}
} .elsewhen( sendStateCurr === 1.U ){
when( cdrOut.io.axis.fire ){
sendCnt := Mux( sendStateNext =/= 2.U, sendCnt + 1.U, 0.U )
}
} .elsewhen( sendStateCurr === 2.U ){
when( cdrOut.io.axis.fire ){
sendCnt := Mux( sendStateNext =/= 3.U, sendCnt + 1.U, 0.U )
}
}
cdrOut.io.axis.valid := sendStateCurr === 1.U | sendStateCurr === 2.U
cdrOut.io.axis.bits.tdata :=
Mux1H(Seq(
( sendStateCurr === 1.U ) -> sendHeader.asUInt >> (sendCnt << 3),
( sendStateCurr === 2.U ) -> Mux( sendCnt.extract(0), mirrorDown(7,0), mirrorDown(15,8) ),
))
cdrOut.io.axis.bits.tlast := sendStateCurr === 2.U & sendCnt === (sendHeader.length << 1) - 1.U
cdrOut.io.axis.bits.tuser := false.B
}
trait ShinMstRecv{ this: ShinMstPhyBase =>
}
abstract class ShinMstLinkBase extends ShinMstPhyBase
with ShinMstSend
with ShinMstRecv
trait ShinMstInit{ this: ShinMstLinkBase =>
}
trait ShinMstSync{ this: ShinMstLinkBase =>
}
trait ShinMstTrans{ this: ShinMstLinkBase =>
}
trait ShinMstError{ this: ShinMstLinkBase =>
}
trait ShinMstInterface{ this: ShinMstLinkBase =>
}
class ShinMst extends ShinMstLinkBase
with ShinMstInit
with ShinMstSync
with ShinMstTrans
with ShinMstError
with ShinMstInterface

View File

@@ -0,0 +1,6 @@
package BACK
import chisel3._
import chisel3.util._