All Downloads are FREE. Search and download functionalities are using the official Maven repository.

spinal.lib.bus.regif.BusIfAdapter.Apb3BusInterface.scala Maven / Gradle / Ivy

package spinal.lib.bus.regif

import spinal.core._
import spinal.lib.bus.amba3.apb.Apb3
import spinal.lib.bus.misc.SizeMapping

case class Apb3BusInterface(bus: Apb3, sizeMap: SizeMapping, regPre: String = "", withSecFireWall: Boolean = false)(implicit moduleName: ClassName) extends BusIf{
  val busDataWidth: Int = bus.config.dataWidth
  val busAddrWidth: Int = bus.config.addressWidth

  lazy val reg_wrerr: Bool = Reg(Bool(), init = False)
  val bus_rdata: Bits  = Bits(busDataWidth bits)
  val reg_rderr: Bool = Reg(Bool(), init = False)
  val reg_rdata: Bits = Reg(Bits(busDataWidth bits), init = defaultReadBits)

  override val withStrb: Boolean = false
  val wstrb: Bits = withStrb generate(Bits(strbWidth bit))
  val wmask: Bits = withStrb generate(Bits(busDataWidth bit))
  val wmaskn: Bits = withStrb generate(Bits(busDataWidth bit))
  initStrbMasks()

  override def getModuleName = moduleName.name

  bus.PREADY := True
  bus.PRDATA := bus_rdata

  val askWrite  = (bus.PSEL(0) && bus.PWRITE).allowPruning()
//  val askRead   = (bus.PSEL(0) && !bus.PWRITE).allowPruning()
  val askRead   = (bus.PSEL(0) && !bus.PWRITE && !bus.PENABLE).allowPruning()
  val doWrite   = (askWrite && bus.PENABLE && bus.PREADY).allowPruning()
//  val doRead    = (askRead  && bus.PENABLE && bus.PREADY).allowPruning()
  val doRead    = (bus.PSEL(0) && !bus.PWRITE && bus.PENABLE && bus.PREADY).allowPruning()
  val writeData = bus.PWDATA
  override lazy val cg_en: Bool = bus.PSEL(0) || RegNext(bus.PSEL(0), init = False) //why delay 1 cycle is used for W1P clear back after write
  override lazy val bus_nsbit: Bool = False

  if(bus.config.useSlaveError) bus.PSLVERROR := bus_slverr
  override def readAddress()  = bus.PADDR
  override def writeAddress() = bus.PADDR

  override def readHalt()  = bus.PREADY := False
  override def writeHalt() = bus.PREADY := False
}

object Apb3BusInterface{
  def apply(bus: Apb3, sizeMap: SizeMapping, selID: Int, regPre: String)(implicit moduleName: ClassName): Apb3BusInterface = new Apb3BusInterface(bus, sizeMap, regPre)
  def apply(bus: Apb3, sizeMap: SizeMapping, selID: Int)(implicit moduleName: ClassName): Apb3BusInterface = new Apb3BusInterface(bus, sizeMap, regPre = "")
  def apply(bus: Apb3, sizeMap: SizeMapping)(implicit moduleName: ClassName): Apb3BusInterface = new Apb3BusInterface(bus, sizeMap, regPre = "")
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy