case class WishboneConfig(addressWidth: Int, dataWidth: Int, selWidth: Int = 0, useSTALL: Boolean = false, useLOCK: Boolean = false, useERR: Boolean = false, useRTY: Boolean = false, useCTI: Boolean = false, tgaWidth: Int = 0, tgcWidth: Int = 0, tgdWidth: Int = 0, useBTE: Boolean = false) extends Product with Serializable
This class is used for configuring the Wishbone class
- addressWidth
size in bits of the address line
- dataWidth
size in bits of the data line
- selWidth
size in bits of the selection line, deafult to 0 (disabled)
- useSTALL
activate the stall line, default to false (disabled)
- useLOCK
activate the lock line, default to false (disabled)
- useERR
activate the error line, default to false (disabled)
- useRTY
activate the retry line, default to false (disabled)
- useCTI
activate the CTI line, deafult to 0 (disabled)
- tgaWidth
size in bits of the tag address linie, deafult to 0 (disabled)
- tgcWidth
size in bits of the tag cycle line, deafult to 0 (disabled)
- tgdWidth
size in bits of the tag data line, deafult to 0 (disabled)
- useBTE
activate the Burst Type Extension, default to false (disabled)
val wishboneBusConf = new WishboneConfig(32,8).withCycleTag(8).withDataTag(8) val wishboneBus = new Wishbone(wishboneBusConf)
- Alphabetic
- By Inheritance
- WishboneConfig
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new WishboneConfig(addressWidth: Int, dataWidth: Int, selWidth: Int = 0, useSTALL: Boolean = false, useLOCK: Boolean = false, useERR: Boolean = false, useRTY: Boolean = false, useCTI: Boolean = false, tgaWidth: Int = 0, tgcWidth: Int = 0, tgdWidth: Int = 0, useBTE: Boolean = false)
- addressWidth
size in bits of the address line
- dataWidth
size in bits of the data line
- selWidth
size in bits of the selection line, deafult to 0 (disabled)
- useSTALL
activate the stall line, default to false (disabled)
- useLOCK
activate the lock line, default to false (disabled)
- useERR
activate the error line, default to false (disabled)
- useRTY
activate the retry line, default to false (disabled)
- useCTI
activate the CTI line, deafult to 0 (disabled)
- tgaWidth
size in bits of the tag address linie, deafult to 0 (disabled)
- tgcWidth
size in bits of the tag cycle line, deafult to 0 (disabled)
- tgdWidth
size in bits of the tag data line, deafult to 0 (disabled)
- useBTE
activate the Burst Type Extension, default to false (disabled)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val addressWidth: Int
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- val dataWidth: Int
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isPipelined: Boolean
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def pipelined: WishboneConfig
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val selWidth: Int
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val tgaWidth: Int
- val tgcWidth: Int
- val tgdWidth: Int
- val useBTE: Boolean
- val useCTI: Boolean
- val useERR: Boolean
- val useLOCK: Boolean
- val useRTY: Boolean
- def useSEL: Boolean
- val useSTALL: Boolean
- def useTGA: Boolean
- def useTGC: Boolean
- def useTGD: Boolean
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def withAddressTag(size: Int): WishboneConfig
- def withBurstType: WishboneConfig
- def withCycleTag(size: Int): WishboneConfig
- def withCycleTypeIdentifier: WishboneConfig
- def withDataTag(size: Int): WishboneConfig
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated