1
0

rocketchip: add WithTimebase to set RTC frequency

This commit is contained in:
Wesley W. Terpstra 2017-03-03 00:47:50 -08:00
parent 57a329408c
commit 7660be039c

View File

@ -148,6 +148,10 @@ class WithDTS(model: String, compat: Seq[String]) extends Config((site, here, up
case DTSCompat => compat
})
class WithTimebase(hertz: BigInt) extends Config((site, here, up) => {
case DTSTimebase => hertz
})
class WithScratchpad extends Config(new WithNMemoryChannels(0) ++ new WithDataScratchpad(16384))
class DefaultFPGASmallConfig extends Config(new WithNSmallCores(1) ++ new DefaultFPGAConfig)