86 lines
2.7 KiB
Scala
86 lines
2.7 KiB
Scala
// See LICENSE.SiFive for license details.
|
|
|
|
package freechips.rocketchip.coreplex
|
|
|
|
import Chisel._
|
|
import freechips.rocketchip.config.{Field, Parameters}
|
|
import freechips.rocketchip.diplomacy._
|
|
import freechips.rocketchip.tilelink._
|
|
|
|
/** Collects interrupts from internal and external devices and feeds them into the PLIC */
|
|
class InterruptBusWrapper(implicit p: Parameters) {
|
|
|
|
val int_bus = LazyModule(new IntXbar) // Interrupt crossbar
|
|
|
|
private def synchronize(sync: Int): IntInwardNode = {
|
|
val asyncXing = LazyModule(new IntXing(sync))
|
|
int_bus.intnode := asyncXing.intnode
|
|
asyncXing.intnode
|
|
}
|
|
|
|
def fromAsync: IntInwardNode = synchronize(3)
|
|
def fromRational: IntInwardNode = synchronize(1)
|
|
def fromSync: IntInwardNode = int_bus.intnode
|
|
def toPLIC: IntOutwardNode = int_bus.intnode
|
|
}
|
|
|
|
trait HasInterruptBus {
|
|
implicit val p: Parameters
|
|
val ibus = new InterruptBusWrapper
|
|
}
|
|
|
|
/** Specifies the number of external interrupts */
|
|
case object NExtTopInterrupts extends Field[Int](0)
|
|
|
|
/** This trait adds externally driven interrupts to the system.
|
|
* However, it should not be used directly; instead one of the below
|
|
* synchronization wiring child traits should be used.
|
|
*/
|
|
abstract trait HasExtInterrupts extends HasInterruptBus {
|
|
private val device = new Device with DeviceInterrupts {
|
|
def describe(resources: ResourceBindings): Description = {
|
|
Description("soc/external-interrupts", describeInterrupts(resources))
|
|
}
|
|
}
|
|
|
|
val nExtInterrupts = p(NExtTopInterrupts)
|
|
val extInterrupts = IntSourceNode(IntSourcePortSimple(num = nExtInterrupts, resources = device.int))
|
|
}
|
|
|
|
/** This trait should be used if the External Interrupts have NOT
|
|
* already been synchronized to the Periphery (PLIC) Clock.
|
|
*/
|
|
trait HasAsyncExtInterrupts extends HasExtInterrupts {
|
|
if (nExtInterrupts > 0) {
|
|
ibus.fromAsync := extInterrupts
|
|
}
|
|
}
|
|
|
|
/** This trait can be used if the External Interrupts have already been synchronized
|
|
* to the Periphery (PLIC) Clock.
|
|
*/
|
|
trait HasSyncExtInterrupts extends HasExtInterrupts {
|
|
if (nExtInterrupts > 0) {
|
|
ibus.fromSync := extInterrupts
|
|
}
|
|
}
|
|
|
|
/** Common io name and methods for propagating or tying off the port bundle */
|
|
trait HasExtInterruptsBundle {
|
|
val interrupts: UInt
|
|
|
|
def tieOffInterrupts(dummy: Int = 1) {
|
|
interrupts := UInt(0)
|
|
}
|
|
}
|
|
|
|
/** This trait performs the translation from a UInt IO into Diplomatic Interrupts.
|
|
* The wiring must be done in the concrete LazyModuleImp.
|
|
*/
|
|
trait HasExtInterruptsModuleImp extends LazyModuleImp with HasExtInterruptsBundle {
|
|
val outer: HasExtInterrupts
|
|
val interrupts = IO(UInt(INPUT, width = outer.nExtInterrupts))
|
|
|
|
outer.extInterrupts.in.map(_._1).flatten.zipWithIndex.foreach { case(o, i) => o := interrupts(i) }
|
|
}
|