2016-09-15 03:10:21 +02:00
|
|
|
// See LICENSE for license details.
|
|
|
|
|
2016-09-15 22:04:01 +02:00
|
|
|
package unittest
|
2016-09-15 03:10:21 +02:00
|
|
|
|
|
|
|
import Chisel._
|
2016-09-15 23:25:47 +02:00
|
|
|
import cde.{Parameters, Config, CDEMatchError}
|
2016-09-22 23:31:45 +02:00
|
|
|
import rocketchip.{BaseConfig, BasePlatformConfig}
|
2016-09-15 03:10:21 +02:00
|
|
|
|
2016-09-20 23:14:30 +02:00
|
|
|
class WithJunctionsUnitTests extends Config(
|
2016-09-15 03:10:21 +02:00
|
|
|
(pname, site, here) => pname match {
|
2016-09-22 23:31:45 +02:00
|
|
|
case junctions.PAddrBits => 32
|
|
|
|
case rocket.XLen => 64
|
|
|
|
case UnitTests => (p: Parameters) => Seq(
|
|
|
|
Module(new junctions.MultiWidthFifoTest),
|
|
|
|
Module(new junctions.HastiTest()(p)))
|
2016-09-20 23:14:30 +02:00
|
|
|
case _ => throw new CDEMatchError
|
|
|
|
})
|
|
|
|
|
2016-09-22 23:31:45 +02:00
|
|
|
class JunctionsUnitTestConfig extends Config(new WithJunctionsUnitTests ++ new BasePlatformConfig)
|
|
|
|
|
2016-09-20 23:14:30 +02:00
|
|
|
class WithUncoreUnitTests extends Config(
|
|
|
|
(pname, site, here) => pname match {
|
2016-09-22 02:40:39 +02:00
|
|
|
case rocketchip.NCoreplexExtClients => 0
|
2016-09-20 23:14:30 +02:00
|
|
|
case uncore.tilelink.TLId => "L1toL2"
|
2016-09-22 23:31:45 +02:00
|
|
|
case UnitTests => (p: Parameters) => Seq(
|
|
|
|
Module(new uncore.devices.ROMSlaveTest()(p)),
|
|
|
|
Module(new uncore.devices.TileLinkRAMTest()(p)),
|
|
|
|
Module(new uncore.tilelink2.TLFuzzRAMTest))
|
2016-09-15 03:10:21 +02:00
|
|
|
case _ => throw new CDEMatchError
|
2016-09-22 02:11:57 +02:00
|
|
|
}
|
|
|
|
)
|
2016-09-15 03:10:21 +02:00
|
|
|
|
2016-09-22 23:31:45 +02:00
|
|
|
class UncoreUnitTestConfig extends Config(new WithUncoreUnitTests ++ new BaseConfig)
|