harness builds with gpio tied off

This commit is contained in:
abejgonzalez 2019-04-21 16:07:30 -07:00
parent 668047e3fd
commit 180a2ab4a8
1 changed files with 11 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class WithBootROM extends Config((site, here, up) => {
*/
class WithGPIO extends Config((site, here, up) => {
case PeripheryGPIOKey => List(
GPIOParams(address = 0x10012000, width = 4, includeIOF = true))
GPIOParams(address = 0x10012000, width = 4, includeIOF = false))
})
// -------------------------------
@ -94,6 +94,11 @@ class WithSimBlockDeviceRocketTop extends Config((site, here, up) => {
class WithGPIORocketTop extends Config((site, here, up) => {
case BuildRocketTop => (clock: Clock, reset: Bool, p: Parameters) => {
val top = Module(LazyModule(new RocketTopWithGPIO()(p)).module)
for (gpio <- top.gpio) {
for (pin <- gpio.pins) {
pin.i.ival := false.B
}
}
top
}
})
@ -202,6 +207,11 @@ class WithSimBlockDeviceBoomTop extends Config((site, here, up) => {
class WithGPIOBoomTop extends Config((site, here, up) => {
case BuildBoomTop => (clock: Clock, reset: Bool, p: Parameters) => {
val top = Module(LazyModule(new BoomTopWithGPIO()(p)).module)
for (gpio <- top.gpio) {
for (pin <- gpio.pins) {
pin.i.ival := false.B
}
}
top
}
})