2016-11-29 13:08:44 +01:00
|
|
|
// See LICENSE for license details.
|
|
|
|
package sifive.blocks.devices.uart
|
|
|
|
|
|
|
|
import Chisel._
|
2017-07-07 19:48:57 +02:00
|
|
|
import freechips.rocketchip.config.Field
|
|
|
|
import freechips.rocketchip.diplomacy.{LazyModule, LazyMultiIOModuleImp}
|
|
|
|
import freechips.rocketchip.chip.HasSystemNetworks
|
|
|
|
import freechips.rocketchip.tilelink.TLFragmenter
|
2016-11-29 13:08:44 +01:00
|
|
|
import sifive.blocks.devices.gpio.{GPIOPin, GPIOOutputPinCtrl, GPIOInputPinCtrl}
|
|
|
|
import sifive.blocks.util.ShiftRegisterInit
|
|
|
|
|
2017-02-23 03:42:47 +01:00
|
|
|
case object PeripheryUARTKey extends Field[Seq[UARTParams]]
|
|
|
|
|
2017-06-05 23:33:53 +02:00
|
|
|
trait HasPeripheryUART extends HasSystemNetworks {
|
2017-02-23 03:42:47 +01:00
|
|
|
val uartParams = p(PeripheryUARTKey)
|
|
|
|
val uarts = uartParams map { params =>
|
|
|
|
val uart = LazyModule(new TLUART(peripheryBusBytes, params))
|
|
|
|
uart.node := TLFragmenter(peripheryBusBytes, cacheBlockBytes)(peripheryBus.node)
|
2016-11-29 13:08:44 +01:00
|
|
|
intBus.intnode := uart.intnode
|
|
|
|
uart
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-05 23:33:53 +02:00
|
|
|
trait HasPeripheryUARTBundle {
|
|
|
|
val uarts: Vec[UARTPortIO]
|
|
|
|
|
|
|
|
def tieoffUARTs(dummy: Int = 1) {
|
|
|
|
uarts.foreach { _.rxd := UInt(1) }
|
|
|
|
}
|
|
|
|
|
2017-06-13 03:08:35 +02:00
|
|
|
def UARTtoGPIOPins(syncStages: Int = 0): Seq[UARTPinsIO] = uarts.map { u =>
|
2017-06-13 20:00:29 +02:00
|
|
|
val pins = Module(new UARTGPIOPort(syncStages))
|
|
|
|
pins.io.uart <> u
|
|
|
|
pins.io.pins
|
2017-06-05 23:33:53 +02:00
|
|
|
}
|
2016-11-29 13:08:44 +01:00
|
|
|
}
|
|
|
|
|
2017-06-05 23:33:53 +02:00
|
|
|
trait HasPeripheryUARTModuleImp extends LazyMultiIOModuleImp with HasPeripheryUARTBundle {
|
2017-02-23 03:42:47 +01:00
|
|
|
val outer: HasPeripheryUART
|
2017-06-05 23:33:53 +02:00
|
|
|
val uarts = IO(Vec(outer.uartParams.size, new UARTPortIO))
|
|
|
|
|
|
|
|
(uarts zip outer.uarts).foreach { case (io, device) =>
|
2016-11-29 13:08:44 +01:00
|
|
|
io <> device.module.io.port
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class UARTPinsIO extends Bundle {
|
|
|
|
val rxd = new GPIOPin
|
|
|
|
val txd = new GPIOPin
|
|
|
|
}
|
|
|
|
|
|
|
|
class UARTGPIOPort(syncStages: Int = 0) extends Module {
|
|
|
|
val io = new Bundle{
|
|
|
|
val uart = new UARTPortIO().flip()
|
|
|
|
val pins = new UARTPinsIO
|
|
|
|
}
|
|
|
|
|
|
|
|
GPIOOutputPinCtrl(io.pins.txd, io.uart.txd)
|
|
|
|
val rxd = GPIOInputPinCtrl(io.pins.rxd)
|
|
|
|
io.uart.rxd := ShiftRegisterInit(rxd, syncStages, Bool(true))
|
|
|
|
}
|