169 lines
5.1 KiB
Scala
169 lines
5.1 KiB
Scala
package groundtest
|
|
|
|
import Chisel._
|
|
import uncore._
|
|
import junctions._
|
|
import cde.Parameters
|
|
|
|
abstract class NastiTest(implicit val p: Parameters) extends Module
|
|
with HasNastiParameters with HasMIFParameters with HasAddrMapParameters {
|
|
val io = new Bundle {
|
|
val finished = Bool(OUTPUT)
|
|
val mem = new NastiIO
|
|
}
|
|
val memStart = addrMap("mem").start
|
|
}
|
|
|
|
class NastiBlockTest(implicit p: Parameters) extends NastiTest()(p) {
|
|
|
|
val (s_start :: s_write_req :: s_write_resp ::
|
|
s_read_req :: s_read_resp :: s_finish :: Nil) = Enum(Bits(), 6)
|
|
val state = Reg(init = s_start)
|
|
|
|
val addr_sent = Reg(init = Bool(false))
|
|
val data_sent = Reg(init = UInt(0, mifDataBeats))
|
|
val data_beats = Vec.tabulate(mifDataBeats) { i => UInt(i * 0x20) }
|
|
|
|
val (r_count, r_done) = Counter(io.mem.r.fire(), mifDataBeats)
|
|
val (w_count, w_done) = Counter(io.mem.w.fire(), mifDataBeats)
|
|
|
|
io.mem.aw.valid := (state === s_write_req) && !addr_sent
|
|
io.mem.aw.bits := NastiWriteAddressChannel(
|
|
id = UInt(0),
|
|
addr = UInt(memStart),
|
|
len = UInt(mifDataBeats - 1),
|
|
size = UInt(log2Up(mifDataBits / 8)))
|
|
|
|
io.mem.w.valid := (state === s_write_req) && !data_sent.andR
|
|
io.mem.w.bits := NastiWriteDataChannel(
|
|
data = data_beats(w_count),
|
|
last = w_count === UInt(mifDataBeats - 1))
|
|
|
|
io.mem.b.ready := (state === s_write_resp)
|
|
|
|
io.mem.ar.valid := (state === s_read_req)
|
|
io.mem.ar.bits := NastiReadAddressChannel(
|
|
id = UInt(1),
|
|
addr = UInt(memStart),
|
|
len = UInt(mifDataBeats - 1),
|
|
size = UInt(log2Up(mifDataBits / 8)))
|
|
|
|
io.mem.r.ready := (state === s_read_resp)
|
|
|
|
when (state === s_start) { state := s_write_req }
|
|
|
|
when (io.mem.aw.fire()) { addr_sent := Bool(true) }
|
|
when (io.mem.w.fire()) { data_sent := data_sent | UIntToOH(w_count) }
|
|
when (w_done) { state := s_write_resp }
|
|
when (io.mem.b.fire()) { state := s_read_req }
|
|
|
|
when (io.mem.ar.fire()) { state := s_read_resp }
|
|
when (r_done) { state := s_finish }
|
|
|
|
io.finished := (state === s_finish)
|
|
|
|
assert(!io.mem.r.valid || io.mem.r.bits.data === data_beats(r_count),
|
|
"NASTI Block Test: results do not match")
|
|
}
|
|
|
|
class NastiSmallTest(implicit p: Parameters) extends NastiTest()(p) {
|
|
|
|
val (s_start :: s_write_addr :: s_write_data :: s_write_resp ::
|
|
s_read_req :: s_read_resp :: s_finish :: Nil) = Enum(Bits(), 7)
|
|
val state = Reg(init = s_start)
|
|
|
|
val write_acked = Reg(init = Bool(false))
|
|
val ref_data = UInt(0x35abffcd, mifDataBits)
|
|
|
|
io.mem.aw.valid := (state === s_write_addr)
|
|
io.mem.aw.bits := NastiWriteAddressChannel(
|
|
id = UInt(0),
|
|
addr = UInt(memStart + 0x20C),
|
|
len = UInt(0),
|
|
size = UInt("b010"))
|
|
|
|
io.mem.w.valid := (state === s_write_data)
|
|
io.mem.w.bits := NastiWriteDataChannel(
|
|
data = ref_data << UInt(32),
|
|
last = Bool(true))
|
|
|
|
io.mem.ar.valid := (state === s_read_req)
|
|
io.mem.ar.bits := NastiReadAddressChannel(
|
|
id = UInt(1),
|
|
addr = UInt(memStart + 0x20C),
|
|
len = UInt(0),
|
|
size = UInt("b010"))
|
|
|
|
io.mem.r.ready := (state === s_read_resp)
|
|
io.mem.b.ready := (state === s_write_resp)
|
|
|
|
when (state === s_start) { state := s_write_addr }
|
|
when (io.mem.aw.fire()) { state := s_write_data }
|
|
when (io.mem.w.fire()) { state := s_write_resp }
|
|
when (io.mem.b.fire()) { state := s_read_req }
|
|
when (io.mem.ar.fire()) { state := s_read_resp }
|
|
when (io.mem.r.fire()) { state := s_finish }
|
|
|
|
io.finished := (state === s_finish)
|
|
|
|
assert(!io.mem.r.valid || io.mem.r.bits.data(63, 32) === ref_data,
|
|
"NASTI Small Test: results do not match")
|
|
}
|
|
|
|
class NastiSequencer(n: Int)(implicit p: Parameters) extends Module {
|
|
val io = new Bundle {
|
|
val in = Vec(n, new NastiIO).flip
|
|
val out = new NastiIO()
|
|
val finished = Vec(n, Bool(INPUT))
|
|
}
|
|
|
|
val selection = Reg(init = UInt(0, log2Up(n)))
|
|
val all_finished = io.finished.reduce(_ && _)
|
|
|
|
when (!all_finished && io.finished(selection)) {
|
|
selection := selection + UInt(1)
|
|
}
|
|
|
|
io.out.ar.valid := io.in(selection).ar.valid
|
|
io.out.ar.bits := io.in(selection).ar.bits
|
|
|
|
io.out.aw.valid := io.in(selection).aw.valid
|
|
io.out.aw.bits := io.in(selection).aw.bits
|
|
|
|
io.out.w.valid := io.in(selection).w.valid
|
|
io.out.w.bits := io.in(selection).w.bits
|
|
|
|
io.out.b.ready := io.in(selection).b.ready
|
|
|
|
io.out.r.ready := io.in(selection).r.ready
|
|
|
|
for ((in, i) <- io.in.zipWithIndex) {
|
|
val me = selection === UInt(i)
|
|
in.ar.ready := io.out.ar.ready && me
|
|
in.aw.ready := io.out.aw.ready && me
|
|
in.w.ready := io.out.w.ready && me
|
|
in.b.valid := io.out.b.valid && me
|
|
in.b.bits := io.out.b.bits
|
|
in.r.valid := io.out.r.valid && me
|
|
in.r.bits := io.out.r.bits
|
|
}
|
|
}
|
|
|
|
class NastiConverterTest(implicit p: Parameters) extends GroundTest()(p)
|
|
with HasNastiParameters {
|
|
disablePorts(mem = false)
|
|
|
|
val tests = Seq(Module(new NastiBlockTest), Module(new NastiSmallTest))
|
|
|
|
val sequencer = Module(new NastiSequencer(tests.size))
|
|
val converter = Module(new TileLinkIONastiIOConverter()(
|
|
p.alterPartial { case TLId => "Outermost" }))
|
|
|
|
sequencer.io.in <> tests.map(_.io.mem)
|
|
sequencer.io.finished := tests.map(_.io.finished)
|
|
converter.io.nasti <> sequencer.io.out
|
|
TileLinkWidthAdapter(converter.io.tl, io.mem)
|
|
|
|
io.finished := tests.map(_.io.finished).reduce(_ && _)
|
|
}
|