rename MemoryTestDriver to NastiDriver
This commit is contained in:
parent
c906e6edde
commit
c92732dcaa
@ -17,84 +17,6 @@ abstract class UnitTest extends Module {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class MemoryTestDriver(name: String, dataWidth: Int, burstLen: Int, nBursts: Int)
|
|
||||||
(implicit p: Parameters) extends NastiModule {
|
|
||||||
val io = new Bundle {
|
|
||||||
val nasti = new NastiIO
|
|
||||||
val finished = Bool(OUTPUT)
|
|
||||||
val start = Bool(INPUT)
|
|
||||||
}
|
|
||||||
|
|
||||||
val dataBytes = dataWidth / 8
|
|
||||||
val nastiDataBytes = nastiXDataBits / 8
|
|
||||||
|
|
||||||
val (write_cnt, write_done) = Counter(io.nasti.w.fire(), burstLen)
|
|
||||||
val (read_cnt, read_done) = Counter(io.nasti.r.fire(), burstLen)
|
|
||||||
val (req_cnt, reqs_done) = Counter(read_done, nBursts)
|
|
||||||
|
|
||||||
val req_addr = Cat(req_cnt, UInt(0, log2Up(burstLen * dataBytes)))
|
|
||||||
|
|
||||||
val write_data = UInt(0x10000000L, dataWidth) | Cat(req_cnt, write_cnt)
|
|
||||||
val expected_data = UInt(0x10000000L, dataWidth) | Cat(req_cnt, read_cnt)
|
|
||||||
|
|
||||||
val (s_idle :: s_write_addr :: s_write_data :: s_write_stall :: s_write_resp ::
|
|
||||||
s_read_addr :: s_read_data :: s_read_stall :: s_done :: Nil) = Enum(Bits(), 9)
|
|
||||||
val state = Reg(init = s_idle)
|
|
||||||
|
|
||||||
val (stall_cnt, stall_done) = Counter(state === s_read_stall, 2)
|
|
||||||
|
|
||||||
io.nasti.aw.valid := (state === s_write_addr)
|
|
||||||
io.nasti.aw.bits := NastiWriteAddressChannel(
|
|
||||||
id = UInt(0),
|
|
||||||
addr = req_addr,
|
|
||||||
size = UInt(log2Up(dataBytes)),
|
|
||||||
len = UInt(burstLen - 1))
|
|
||||||
|
|
||||||
io.nasti.w.valid := (state === s_write_data)
|
|
||||||
io.nasti.w.bits := NastiWriteDataChannel(
|
|
||||||
data = Cat(write_data, write_data),
|
|
||||||
last = (write_cnt === UInt(burstLen - 1)))
|
|
||||||
|
|
||||||
io.nasti.b.ready := (state === s_write_resp)
|
|
||||||
|
|
||||||
io.nasti.ar.valid := (state === s_read_addr)
|
|
||||||
io.nasti.ar.bits := NastiReadAddressChannel(
|
|
||||||
id = UInt(0),
|
|
||||||
addr = req_addr,
|
|
||||||
size = UInt(log2Up(dataBytes)),
|
|
||||||
len = UInt(burstLen - 1))
|
|
||||||
|
|
||||||
io.nasti.r.ready := (state === s_read_data)
|
|
||||||
|
|
||||||
io.finished := (state === s_done)
|
|
||||||
|
|
||||||
when (state === s_idle && io.start) { state := s_write_addr }
|
|
||||||
when (io.nasti.aw.fire()) { state := s_write_data }
|
|
||||||
when (io.nasti.w.fire()) { state := s_write_stall }
|
|
||||||
when (state === s_write_stall) { state := s_write_data }
|
|
||||||
when (write_done) { state := s_write_resp }
|
|
||||||
when (io.nasti.b.fire()) { state := s_read_addr }
|
|
||||||
when (io.nasti.ar.fire()) { state := s_read_data }
|
|
||||||
when (io.nasti.r.fire()) { state := s_read_stall }
|
|
||||||
when (stall_done) { state := s_read_data }
|
|
||||||
when (read_done) { state := s_write_addr }
|
|
||||||
when (reqs_done) { state := s_done }
|
|
||||||
|
|
||||||
val full_addr = req_addr + (read_cnt << UInt(log2Up(dataBytes)))
|
|
||||||
val byteshift = full_addr(log2Up(nastiDataBytes) - 1, 0)
|
|
||||||
val bitshift = Cat(byteshift, UInt(0, 3))
|
|
||||||
val read_data = (io.nasti.r.bits.data >> bitshift) & Fill(dataWidth, UInt(1, 1))
|
|
||||||
|
|
||||||
assert(!io.nasti.r.valid || read_data === expected_data,
|
|
||||||
s"MemoryTestDriver for $name got wrong data")
|
|
||||||
|
|
||||||
val ar_timeout = Timer(1024, io.nasti.ar.fire(), io.nasti.r.fire())
|
|
||||||
val aw_timeout = Timer(1024, io.nasti.aw.fire(), io.nasti.b.fire())
|
|
||||||
|
|
||||||
assert(!ar_timeout && !aw_timeout,
|
|
||||||
s"MemoryTestDriver for $name timed out")
|
|
||||||
}
|
|
||||||
|
|
||||||
case object UnitTests extends Field[Parameters => Seq[UnitTest]]
|
case object UnitTests extends Field[Parameters => Seq[UnitTest]]
|
||||||
|
|
||||||
class UnitTestSuite(implicit p: Parameters) extends GroundTest()(p) {
|
class UnitTestSuite(implicit p: Parameters) extends GroundTest()(p) {
|
||||||
|
@ -2,13 +2,94 @@ package groundtest.unittests
|
|||||||
|
|
||||||
import Chisel._
|
import Chisel._
|
||||||
import junctions._
|
import junctions._
|
||||||
|
import uncore.devices._
|
||||||
|
import uncore.tilelink._
|
||||||
|
import groundtest.common._
|
||||||
import cde.Parameters
|
import cde.Parameters
|
||||||
|
|
||||||
|
class NastiDriver(dataWidth: Int, burstLen: Int, nBursts: Int)
|
||||||
|
(implicit p: Parameters) extends NastiModule {
|
||||||
|
val io = new Bundle {
|
||||||
|
val nasti = new NastiIO
|
||||||
|
val finished = Bool(OUTPUT)
|
||||||
|
val start = Bool(INPUT)
|
||||||
|
}
|
||||||
|
|
||||||
|
val dataBytes = dataWidth / 8
|
||||||
|
val nastiDataBytes = nastiXDataBits / 8
|
||||||
|
|
||||||
|
val (write_cnt, write_done) = Counter(io.nasti.w.fire(), burstLen)
|
||||||
|
val (read_cnt, read_done) = Counter(io.nasti.r.fire(), burstLen)
|
||||||
|
val (req_cnt, reqs_done) = Counter(read_done, nBursts)
|
||||||
|
|
||||||
|
val req_addr = Cat(req_cnt, UInt(0, log2Up(burstLen * dataBytes)))
|
||||||
|
|
||||||
|
val write_data = UInt(0x10000000L, dataWidth) | Cat(req_cnt, write_cnt)
|
||||||
|
val expected_data = UInt(0x10000000L, dataWidth) | Cat(req_cnt, read_cnt)
|
||||||
|
|
||||||
|
val (s_idle :: s_write_addr :: s_write_data :: s_write_stall :: s_write_resp ::
|
||||||
|
s_read_addr :: s_read_data :: s_read_stall :: s_done :: Nil) = Enum(Bits(), 9)
|
||||||
|
val state = Reg(init = s_idle)
|
||||||
|
|
||||||
|
val (stall_cnt, stall_done) = Counter(state === s_read_stall, 2)
|
||||||
|
|
||||||
|
io.nasti.aw.valid := (state === s_write_addr)
|
||||||
|
io.nasti.aw.bits := NastiWriteAddressChannel(
|
||||||
|
id = UInt(0),
|
||||||
|
addr = req_addr,
|
||||||
|
size = UInt(log2Up(dataBytes)),
|
||||||
|
len = UInt(burstLen - 1))
|
||||||
|
|
||||||
|
io.nasti.w.valid := (state === s_write_data)
|
||||||
|
io.nasti.w.bits := NastiWriteDataChannel(
|
||||||
|
data = Cat(write_data, write_data),
|
||||||
|
last = (write_cnt === UInt(burstLen - 1)))
|
||||||
|
|
||||||
|
io.nasti.b.ready := (state === s_write_resp)
|
||||||
|
|
||||||
|
io.nasti.ar.valid := (state === s_read_addr)
|
||||||
|
io.nasti.ar.bits := NastiReadAddressChannel(
|
||||||
|
id = UInt(0),
|
||||||
|
addr = req_addr,
|
||||||
|
size = UInt(log2Up(dataBytes)),
|
||||||
|
len = UInt(burstLen - 1))
|
||||||
|
|
||||||
|
io.nasti.r.ready := (state === s_read_data)
|
||||||
|
|
||||||
|
io.finished := (state === s_done)
|
||||||
|
|
||||||
|
when (state === s_idle && io.start) { state := s_write_addr }
|
||||||
|
when (io.nasti.aw.fire()) { state := s_write_data }
|
||||||
|
when (io.nasti.w.fire()) { state := s_write_stall }
|
||||||
|
when (state === s_write_stall) { state := s_write_data }
|
||||||
|
when (write_done) { state := s_write_resp }
|
||||||
|
when (io.nasti.b.fire()) { state := s_read_addr }
|
||||||
|
when (io.nasti.ar.fire()) { state := s_read_data }
|
||||||
|
when (io.nasti.r.fire()) { state := s_read_stall }
|
||||||
|
when (stall_done) { state := s_read_data }
|
||||||
|
when (read_done) { state := s_write_addr }
|
||||||
|
when (reqs_done) { state := s_done }
|
||||||
|
|
||||||
|
val full_addr = req_addr + (read_cnt << UInt(log2Up(dataBytes)))
|
||||||
|
val byteshift = full_addr(log2Up(nastiDataBytes) - 1, 0)
|
||||||
|
val bitshift = Cat(byteshift, UInt(0, 3))
|
||||||
|
val read_data = (io.nasti.r.bits.data >> bitshift) & Fill(dataWidth, UInt(1, 1))
|
||||||
|
|
||||||
|
assert(!io.nasti.r.valid || read_data === expected_data,
|
||||||
|
s"NastiDriver got wrong data")
|
||||||
|
|
||||||
|
val ar_timeout = Timer(1024, io.nasti.ar.fire(), io.nasti.r.fire())
|
||||||
|
val aw_timeout = Timer(1024, io.nasti.aw.fire(), io.nasti.b.fire())
|
||||||
|
|
||||||
|
assert(!ar_timeout && !aw_timeout,
|
||||||
|
s"NastiDriver for $name timed out")
|
||||||
|
}
|
||||||
|
|
||||||
class HastiTest(implicit p: Parameters) extends UnitTest {
|
class HastiTest(implicit p: Parameters) extends UnitTest {
|
||||||
val sram = Module(new HastiTestSRAM(8))
|
val sram = Module(new HastiTestSRAM(8))
|
||||||
val bus = Module(new HastiBus(Seq(a => Bool(true))))
|
val bus = Module(new HastiBus(Seq(a => Bool(true))))
|
||||||
val conv = Module(new HastiMasterIONastiIOConverter)
|
val conv = Module(new HastiMasterIONastiIOConverter)
|
||||||
val driver = Module(new MemoryTestDriver("HastiTest", 32, 8, 2))
|
val driver = Module(new NastiDriver(32, 8, 2))
|
||||||
|
|
||||||
bus.io.slaves(0) <> sram.io
|
bus.io.slaves(0) <> sram.io
|
||||||
bus.io.master <> conv.io.hasti
|
bus.io.master <> conv.io.hasti
|
||||||
@ -17,4 +98,39 @@ class HastiTest(implicit p: Parameters) extends UnitTest {
|
|||||||
driver.io.start := io.start
|
driver.io.start := io.start
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class ROMSlaveTest(implicit p: Parameters) extends UnitTest {
|
||||||
|
val romdata = Seq(
|
||||||
|
BigInt("01234567deadbeef", 16),
|
||||||
|
BigInt("ab32fee8d00dfeed", 16))
|
||||||
|
val rombytes = romdata.map(_.toByteArray.reverse).flatten
|
||||||
|
val rom = Module(new ROMSlave(rombytes))
|
||||||
|
val driver = Module(new DriverSet(
|
||||||
|
(driverParams: Parameters) => {
|
||||||
|
implicit val p = driverParams
|
||||||
|
Seq(
|
||||||
|
Module(new GetMultiWidthDriver),
|
||||||
|
Module(new GetSweepDriver(romdata)),
|
||||||
|
Module(new GetBlockSweepDriver(romdata)))
|
||||||
|
}))
|
||||||
|
rom.io <> driver.io.mem
|
||||||
|
driver.io.start := io.start
|
||||||
|
io.finished := driver.io.finished
|
||||||
|
}
|
||||||
|
|
||||||
|
class TileLinkRAMTest(implicit val p: Parameters)
|
||||||
|
extends UnitTest with HasTileLinkParameters {
|
||||||
|
|
||||||
|
val depth = 2 * tlDataBeats
|
||||||
|
val ram = Module(new TileLinkTestRAM(depth))
|
||||||
|
val driver = Module(new DriverSet(
|
||||||
|
(driverParams: Parameters) => {
|
||||||
|
implicit val p = driverParams
|
||||||
|
Seq(
|
||||||
|
Module(new PutSweepDriver(depth)),
|
||||||
|
Module(new PutMaskDriver),
|
||||||
|
Module(new PutBlockSweepDriver(depth / tlDataBeats)))
|
||||||
|
}))
|
||||||
|
ram.io <> driver.io.mem
|
||||||
|
driver.io.start := io.start
|
||||||
|
io.finished := driver.io.finished
|
||||||
|
}
|
||||||
|
@ -2,7 +2,6 @@ package groundtest.unittests
|
|||||||
|
|
||||||
import Chisel._
|
import Chisel._
|
||||||
import junctions._
|
import junctions._
|
||||||
import junctions.NastiConstants._
|
|
||||||
import uncore.tilelink._
|
import uncore.tilelink._
|
||||||
import uncore.converters._
|
import uncore.converters._
|
||||||
import uncore.constants._
|
import uncore.constants._
|
||||||
|
Loading…
Reference in New Issue
Block a user