Merge remote-tracking branch 'origin/master' into typed_pad_ctrl
This commit is contained in:
commit
0a80d1987d
@ -3,19 +3,18 @@ package sifive.blocks.devices.gpio
|
||||
|
||||
import Chisel._
|
||||
import freechips.rocketchip.config.Field
|
||||
import freechips.rocketchip.coreplex.{HasPeripheryBus, HasInterruptBus}
|
||||
import freechips.rocketchip.diplomacy.{LazyModule,LazyMultiIOModuleImp}
|
||||
import freechips.rocketchip.chip.HasSystemNetworks
|
||||
import freechips.rocketchip.tilelink.TLFragmenter
|
||||
import freechips.rocketchip.util.HeterogeneousBag
|
||||
|
||||
case object PeripheryGPIOKey extends Field[Seq[GPIOParams]]
|
||||
|
||||
trait HasPeripheryGPIO extends HasSystemNetworks {
|
||||
trait HasPeripheryGPIO extends HasPeripheryBus with HasInterruptBus {
|
||||
val gpioParams = p(PeripheryGPIOKey)
|
||||
val gpios = gpioParams map { params =>
|
||||
val gpio = LazyModule(new TLGPIO(peripheryBusBytes, params))
|
||||
gpio.node := TLFragmenter(peripheryBusBytes, cacheBlockBytes)(peripheryBus.node)
|
||||
intBus.intnode := gpio.intnode
|
||||
val gpio = LazyModule(new TLGPIO(pbus.beatBytes, params))
|
||||
gpio.node := pbus.toVariableWidthSlaves
|
||||
ibus.fromSync := gpio.intnode
|
||||
gpio
|
||||
}
|
||||
}
|
||||
|
@ -3,18 +3,17 @@ package sifive.blocks.devices.i2c
|
||||
|
||||
import Chisel._
|
||||
import freechips.rocketchip.config.Field
|
||||
import freechips.rocketchip.coreplex.{HasPeripheryBus, HasInterruptBus}
|
||||
import freechips.rocketchip.diplomacy.{LazyModule, LazyMultiIOModuleImp}
|
||||
import freechips.rocketchip.chip.{HasSystemNetworks}
|
||||
import freechips.rocketchip.tilelink.TLFragmenter
|
||||
|
||||
case object PeripheryI2CKey extends Field[Seq[I2CParams]]
|
||||
|
||||
trait HasPeripheryI2C extends HasSystemNetworks {
|
||||
trait HasPeripheryI2C extends HasPeripheryBus {
|
||||
val i2cParams = p(PeripheryI2CKey)
|
||||
val i2c = i2cParams map { params =>
|
||||
val i2c = LazyModule(new TLI2C(peripheryBusBytes, params))
|
||||
i2c.node := TLFragmenter(peripheryBusBytes, cacheBlockBytes)(peripheryBus.node)
|
||||
intBus.intnode := i2c.intnode
|
||||
val i2c = LazyModule(new TLI2C(pbus.beatBytes, params))
|
||||
i2c.node := pbus.toVariableWidthSlaves
|
||||
ibus.fromSync := i2c.intnode
|
||||
i2c
|
||||
}
|
||||
}
|
||||
|
@ -3,22 +3,25 @@ package sifive.blocks.devices.mockaon
|
||||
|
||||
import Chisel._
|
||||
import freechips.rocketchip.config.Field
|
||||
import freechips.rocketchip.coreplex.{HasPeripheryBus, HasInterruptBus}
|
||||
import freechips.rocketchip.devices.debug.HasPeripheryDebug
|
||||
import freechips.rocketchip.devices.tilelink.HasPeripheryClint
|
||||
import freechips.rocketchip.diplomacy.{LazyModule, LazyMultiIOModuleImp}
|
||||
import freechips.rocketchip.chip.{HasSystemNetworks, HasCoreplexRISCVPlatform}
|
||||
import freechips.rocketchip.tilelink.{IntXing, TLAsyncCrossingSource, TLFragmenter}
|
||||
import freechips.rocketchip.tilelink.{IntXing, TLAsyncCrossingSource}
|
||||
import freechips.rocketchip.util.ResetCatchAndSync
|
||||
|
||||
case object PeripheryMockAONKey extends Field[MockAONParams]
|
||||
|
||||
trait HasPeripheryMockAON extends HasSystemNetworks with HasCoreplexRISCVPlatform {
|
||||
trait HasPeripheryMockAON extends HasPeripheryBus
|
||||
with HasInterruptBus
|
||||
with HasPeripheryClint
|
||||
with HasPeripheryDebug {
|
||||
// We override the clock & Reset here so that all synchronizers, etc
|
||||
// are in the proper clock domain.
|
||||
val mockAONParams= p(PeripheryMockAONKey)
|
||||
val aon = LazyModule(new MockAONWrapper(peripheryBusBytes, mockAONParams))
|
||||
val aon_int = LazyModule(new IntXing)
|
||||
aon.node := TLAsyncCrossingSource()(TLFragmenter(peripheryBusBytes, cacheBlockBytes)(peripheryBus.node))
|
||||
aon_int.intnode := aon.intnode
|
||||
intBus.intnode := aon_int.intnode
|
||||
val aon = LazyModule(new MockAONWrapper(pbus.beatBytes, mockAONParams))
|
||||
aon.node := pbus.toAsyncVariableWidthSlaves(sync = 3)
|
||||
ibus.fromAsync := aon.intnode
|
||||
}
|
||||
|
||||
trait HasPeripheryMockAONBundle {
|
||||
@ -39,7 +42,7 @@ trait HasPeripheryMockAONModuleImp extends LazyMultiIOModuleImp with HasPeripher
|
||||
outer.aon.module.clock := Bool(false).asClock
|
||||
outer.aon.module.reset := Bool(true)
|
||||
|
||||
outer.coreplex.module.io.rtcToggle := outer.aon.module.io.rtc.asUInt.toBool
|
||||
outer.clint.module.io.rtcTick := outer.aon.module.io.rtc.asUInt.toBool
|
||||
|
||||
outer.aon.module.io.ndreset := outer.coreplex.module.io.ndreset
|
||||
outer.aon.module.io.ndreset := outer.debug.module.io.ctrl.ndreset
|
||||
}
|
||||
|
@ -3,11 +3,10 @@ package sifive.blocks.devices.pwm
|
||||
|
||||
import Chisel._
|
||||
import freechips.rocketchip.config.Field
|
||||
import freechips.rocketchip.coreplex.{HasPeripheryBus, HasInterruptBus}
|
||||
import freechips.rocketchip.diplomacy.{LazyModule, LazyMultiIOModuleImp}
|
||||
import freechips.rocketchip.chip.HasSystemNetworks
|
||||
import freechips.rocketchip.tilelink.TLFragmenter
|
||||
import freechips.rocketchip.util.HeterogeneousBag
|
||||
import sifive.blocks.devices.pinctrl.{PinCtrl, Pin}
|
||||
import sifive.blocks.devices.pinctrl.{Pin}
|
||||
|
||||
class PWMPortIO(val c: PWMParams) extends Bundle {
|
||||
val port = Vec(c.ncmp, Bool()).asOutput
|
||||
@ -30,12 +29,12 @@ class PWMPins[T <: Pin] (pingen: ()=> T, val c: PWMParams) extends Bundle {
|
||||
|
||||
case object PeripheryPWMKey extends Field[Seq[PWMParams]]
|
||||
|
||||
trait HasPeripheryPWM extends HasSystemNetworks {
|
||||
trait HasPeripheryPWM extends HasPeripheryBus with HasInterruptBus {
|
||||
val pwmParams = p(PeripheryPWMKey)
|
||||
val pwms = pwmParams map { params =>
|
||||
val pwm = LazyModule(new TLPWM(peripheryBusBytes, params))
|
||||
pwm.node := TLFragmenter(peripheryBusBytes, cacheBlockBytes)(peripheryBus.node)
|
||||
intBus.intnode := pwm.intnode
|
||||
val pwm = LazyModule(new TLPWM(pbus.beatBytes, params))
|
||||
pwm.node := pbus.toVariableWidthSlaves
|
||||
ibus.fromSync := pwm.intnode
|
||||
pwm
|
||||
}
|
||||
}
|
||||
|
@ -3,19 +3,19 @@ package sifive.blocks.devices.spi
|
||||
|
||||
import Chisel._
|
||||
import freechips.rocketchip.config.Field
|
||||
import freechips.rocketchip.coreplex.{HasPeripheryBus, HasInterruptBus}
|
||||
import freechips.rocketchip.diplomacy.{LazyModule,LazyMultiIOModuleImp}
|
||||
import freechips.rocketchip.chip.HasSystemNetworks
|
||||
import freechips.rocketchip.tilelink.{TLFragmenter,TLWidthWidget}
|
||||
import freechips.rocketchip.tilelink.{TLFragmenter}
|
||||
import freechips.rocketchip.util.HeterogeneousBag
|
||||
|
||||
case object PeripherySPIKey extends Field[Seq[SPIParams]]
|
||||
|
||||
trait HasPeripherySPI extends HasSystemNetworks {
|
||||
trait HasPeripherySPI extends HasPeripheryBus with HasInterruptBus {
|
||||
val spiParams = p(PeripherySPIKey)
|
||||
val spis = spiParams map { params =>
|
||||
val spi = LazyModule(new TLSPI(peripheryBusBytes, params))
|
||||
spi.rnode := TLFragmenter(peripheryBusBytes, cacheBlockBytes)(peripheryBus.node)
|
||||
intBus.intnode := spi.intnode
|
||||
val spi = LazyModule(new TLSPI(pbus.beatBytes, params))
|
||||
spi.rnode := pbus.toVariableWidthSlaves
|
||||
ibus.fromSync := spi.intnode
|
||||
spi
|
||||
}
|
||||
}
|
||||
@ -36,13 +36,13 @@ trait HasPeripherySPIModuleImp extends LazyMultiIOModuleImp with HasPeripherySPI
|
||||
|
||||
case object PeripherySPIFlashKey extends Field[Seq[SPIFlashParams]]
|
||||
|
||||
trait HasPeripherySPIFlash extends HasSystemNetworks {
|
||||
trait HasPeripherySPIFlash extends HasPeripheryBus with HasInterruptBus {
|
||||
val spiFlashParams = p(PeripherySPIFlashKey)
|
||||
val qspis = spiFlashParams map { params =>
|
||||
val qspi = LazyModule(new TLSPIFlash(peripheryBusBytes, params))
|
||||
qspi.rnode := TLFragmenter(peripheryBusBytes, cacheBlockBytes)(peripheryBus.node)
|
||||
qspi.fnode := TLFragmenter(1, cacheBlockBytes)(TLWidthWidget(peripheryBusBytes)(peripheryBus.node))
|
||||
intBus.intnode := qspi.intnode
|
||||
val qspi = LazyModule(new TLSPIFlash(pbus.beatBytes, params))
|
||||
qspi.rnode := pbus.toVariableWidthSlaves
|
||||
qspi.fnode := TLFragmenter(1, pbus.blockBytes)(pbus.toFixedWidthSlaves)
|
||||
ibus.fromSync := qspi.intnode
|
||||
qspi
|
||||
}
|
||||
}
|
||||
@ -60,4 +60,3 @@ trait HasPeripherySPIFlashModuleImp extends LazyMultiIOModuleImp with HasPeriphe
|
||||
io <> device.module.io.port
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2,8 +2,8 @@
|
||||
package sifive.blocks.devices.uart
|
||||
|
||||
import Chisel._
|
||||
import freechips.rocketchip.chip.RTCPeriod
|
||||
import freechips.rocketchip.config.Parameters
|
||||
import freechips.rocketchip.coreplex.RTCPeriod
|
||||
import freechips.rocketchip.diplomacy.DTSTimebase
|
||||
import freechips.rocketchip.regmapper._
|
||||
import freechips.rocketchip.tilelink._
|
||||
@ -205,7 +205,7 @@ trait HasUARTTopModuleContents extends Module with HasUARTParameters with HasReg
|
||||
val rxm = Module(new UARTRx(params))
|
||||
val rxq = Module(new Queue(rxm.io.out.bits, uartNRxEntries))
|
||||
|
||||
val divinit = p(DTSTimebase) * p(RTCPeriod) / 115200
|
||||
val divinit = p(DTSTimebase) * BigInt(p(RTCPeriod).getOrElse(1)) / 115200
|
||||
val div = Reg(init = UInt(divinit, uartDivisorBits))
|
||||
|
||||
private val stopCountBits = log2Up(uartStopBits)
|
||||
|
@ -4,20 +4,19 @@ package sifive.blocks.devices.uart
|
||||
import Chisel._
|
||||
import chisel3.experimental.{withClockAndReset}
|
||||
import freechips.rocketchip.config.Field
|
||||
import freechips.rocketchip.coreplex.{HasPeripheryBus, HasInterruptBus}
|
||||
import freechips.rocketchip.diplomacy.{LazyModule, LazyMultiIOModuleImp}
|
||||
import freechips.rocketchip.chip.HasSystemNetworks
|
||||
import freechips.rocketchip.tilelink.TLFragmenter
|
||||
import sifive.blocks.devices.pinctrl.{Pin, PinCtrl}
|
||||
import sifive.blocks.devices.pinctrl.{Pin}
|
||||
import sifive.blocks.util.ShiftRegisterInit
|
||||
|
||||
case object PeripheryUARTKey extends Field[Seq[UARTParams]]
|
||||
|
||||
trait HasPeripheryUART extends HasSystemNetworks {
|
||||
trait HasPeripheryUART extends HasPeripheryBus with HasInterruptBus {
|
||||
val uartParams = p(PeripheryUARTKey)
|
||||
val uarts = uartParams map { params =>
|
||||
val uart = LazyModule(new TLUART(peripheryBusBytes, params))
|
||||
uart.node := TLFragmenter(peripheryBusBytes, cacheBlockBytes)(peripheryBus.node)
|
||||
intBus.intnode := uart.intnode
|
||||
val uart = LazyModule(new TLUART(pbus.beatBytes, params))
|
||||
uart.node := pbus.toVariableWidthSlaves
|
||||
ibus.fromSync := uart.intnode
|
||||
uart
|
||||
}
|
||||
}
|
||||
|
@ -4,9 +4,8 @@ package sifive.blocks.devices.xilinxvc707mig
|
||||
import Chisel._
|
||||
import chisel3.experimental.{Analog,attach}
|
||||
import freechips.rocketchip.amba.axi4._
|
||||
import freechips.rocketchip.chip._
|
||||
import freechips.rocketchip.config.Parameters
|
||||
import freechips.rocketchip.coreplex.CacheBlockBytes
|
||||
import freechips.rocketchip.coreplex._
|
||||
import freechips.rocketchip.diplomacy._
|
||||
import freechips.rocketchip.tilelink._
|
||||
import sifive.blocks.ip.xilinx.vc707mig.{VC707MIGIOClocksReset, VC707MIGIODDR, vc707mig}
|
||||
|
@ -2,27 +2,28 @@
|
||||
package sifive.blocks.devices.xilinxvc707mig
|
||||
|
||||
import Chisel._
|
||||
import freechips.rocketchip.coreplex.HasMemoryBus
|
||||
import freechips.rocketchip.diplomacy.{LazyModule, LazyMultiIOModuleImp}
|
||||
import freechips.rocketchip.chip.HasSystemNetworks
|
||||
|
||||
trait HasPeripheryXilinxVC707MIG extends HasSystemNetworks {
|
||||
val module: HasPeripheryXilinxVC707MIGModuleImp
|
||||
trait HasMemoryXilinxVC707MIG extends HasMemoryBus {
|
||||
val module: HasMemoryXilinxVC707MIGModuleImp
|
||||
|
||||
val xilinxvc707mig = LazyModule(new XilinxVC707MIG)
|
||||
|
||||
require(nMemoryChannels == 1, "Coreplex must have 1 master memory port")
|
||||
xilinxvc707mig.node := mem(0).node
|
||||
xilinxvc707mig.node := memBuses.head.toDRAMController
|
||||
}
|
||||
|
||||
trait HasPeripheryXilinxVC707MIGBundle {
|
||||
trait HasMemoryXilinxVC707MIGBundle {
|
||||
val xilinxvc707mig: XilinxVC707MIGIO
|
||||
def connectXilinxVC707MIGToPads(pads: XilinxVC707MIGPads) {
|
||||
pads <> xilinxvc707mig
|
||||
}
|
||||
}
|
||||
|
||||
trait HasPeripheryXilinxVC707MIGModuleImp extends LazyMultiIOModuleImp
|
||||
with HasPeripheryXilinxVC707MIGBundle {
|
||||
val outer: HasPeripheryXilinxVC707MIG
|
||||
trait HasMemoryXilinxVC707MIGModuleImp extends LazyMultiIOModuleImp
|
||||
with HasMemoryXilinxVC707MIGBundle {
|
||||
val outer: HasMemoryXilinxVC707MIG
|
||||
val xilinxvc707mig = IO(new XilinxVC707MIGIO)
|
||||
|
||||
xilinxvc707mig <> outer.xilinxvc707mig.module.io.port
|
||||
|
@ -2,31 +2,28 @@
|
||||
package sifive.blocks.devices.xilinxvc707pciex1
|
||||
|
||||
import Chisel._
|
||||
import freechips.rocketchip.coreplex.{HasInterruptBus, HasSystemBus}
|
||||
import freechips.rocketchip.diplomacy.{LazyModule, LazyMultiIOModuleImp}
|
||||
import freechips.rocketchip.chip.HasSystemNetworks
|
||||
import freechips.rocketchip.tilelink._
|
||||
|
||||
trait HasPeripheryXilinxVC707PCIeX1 extends HasSystemNetworks {
|
||||
trait HasSystemXilinxVC707PCIeX1 extends HasSystemBus with HasInterruptBus {
|
||||
val xilinxvc707pcie = LazyModule(new XilinxVC707PCIeX1)
|
||||
private val intXing = LazyModule(new IntXing)
|
||||
|
||||
fsb.node := TLAsyncCrossingSink()(xilinxvc707pcie.master)
|
||||
xilinxvc707pcie.slave := TLAsyncCrossingSource()(TLWidthWidget(socBusConfig.beatBytes)(socBus.node))
|
||||
xilinxvc707pcie.control := TLAsyncCrossingSource()(TLWidthWidget(socBusConfig.beatBytes)(socBus.node))
|
||||
intBus.intnode := intXing.intnode
|
||||
intXing.intnode := xilinxvc707pcie.intnode
|
||||
sbus.fromAsyncFIFOMaster() := xilinxvc707pcie.master
|
||||
xilinxvc707pcie.slave := sbus.toAsyncFixedWidthSlaves()
|
||||
xilinxvc707pcie.control := sbus.toAsyncFixedWidthSlaves()
|
||||
ibus.fromAsync := xilinxvc707pcie.intnode
|
||||
}
|
||||
|
||||
trait HasPeripheryXilinxVC707PCIeX1Bundle {
|
||||
trait HasSystemXilinxVC707PCIeX1Bundle {
|
||||
val xilinxvc707pcie: XilinxVC707PCIeX1IO
|
||||
def connectXilinxVC707PCIeX1ToPads(pads: XilinxVC707PCIeX1Pads) {
|
||||
pads <> xilinxvc707pcie
|
||||
}
|
||||
}
|
||||
|
||||
trait HasPeripheryXilinxVC707PCIeX1ModuleImp extends LazyMultiIOModuleImp
|
||||
with HasPeripheryXilinxVC707PCIeX1Bundle {
|
||||
val outer: HasPeripheryXilinxVC707PCIeX1
|
||||
trait HasSystemXilinxVC707PCIeX1ModuleImp extends LazyMultiIOModuleImp
|
||||
with HasSystemXilinxVC707PCIeX1Bundle {
|
||||
val outer: HasSystemXilinxVC707PCIeX1
|
||||
val xilinxvc707pcie = IO(new XilinxVC707PCIeX1IO)
|
||||
|
||||
xilinxvc707pcie <> outer.xilinxvc707pcie.module.io.port
|
||||
|
Loading…
Reference in New Issue
Block a user