Trait

spinal.lib.bus.misc

BusSlaveFactoryDelayed

Related Doc: package misc

Permalink

trait BusSlaveFactoryDelayed extends BusSlaveFactory

BusSlaveFactoryDelayed captures each primitives (BusSlaveFactoryElement) into a data-model

Example:
  1. class Apb3SlaveFactory(bus : Apb3) extends BusSlaveFactoryDelayed{
        override def build(): Unit = { ... }
        override def busDataWidth: Int = bus.config.dataWidth
     }
Linear Supertypes
BusSlaveFactory, Area, OverridedEqualsHashCode, ValCallbackRec, ValCallback, NameableByComponent, Nameable, ContextUser, ScalaLocated, GlobalDataUser, OwnableRef, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BusSlaveFactoryDelayed
  2. BusSlaveFactory
  3. Area
  4. OverridedEqualsHashCode
  5. ValCallbackRec
  6. ValCallback
  7. NameableByComponent
  8. Nameable
  9. ContextUser
  10. ScalaLocated
  11. GlobalDataUser
  12. OwnableRef
  13. AnyRef
  14. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. abstract type RefOwnerType

    Permalink
    Definition Classes
    OwnableRef

Abstract Value Members

  1. abstract def build(): Unit

    Permalink

    In this function you have to define the read/write logic thanks to element, elementsPerAddress and elementsPerRangeAddress This is the only thing with def busDataWidth that should be implement by class that extends BusSlaveFactoryDelay

  2. abstract def busDataWidth: Int

    Permalink

    Return the data width of the bus

    Return the data width of the bus

    Definition Classes
    BusSlaveFactory
  3. abstract def readAddress(): UInt

    Permalink
    Definition Classes
    BusSlaveFactory
  4. abstract def readHalt(): Unit

    Permalink
    Definition Classes
    BusSlaveFactory
  5. abstract def writeAddress(): UInt

    Permalink
    Definition Classes
    BusSlaveFactory
  6. abstract def writeHalt(): Unit

    Permalink
    Definition Classes
    BusSlaveFactory

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. var _config: BusSlaveFactoryConfig

    Permalink

    Configuration of the BusSlaveFactory

    Configuration of the BusSlaveFactory

    Attributes
    protected
    Definition Classes
    BusSlaveFactory
  5. val _context: Capture

    Permalink
    Definition Classes
    Area
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def childNamePriority: Byte

    Permalink
    Definition Classes
    Area
  8. def clearOnClear[T <: Data](that: T, address: BigInt, bitOffset: Int = 0): T

    Permalink
    Definition Classes
    BusSlaveFactory
  9. def clearOnSet[T <: Data](that: T, address: BigInt, bitOffset: Int = 0): T

    Permalink
    Definition Classes
    BusSlaveFactory
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  11. def component: Component

    Permalink
    Definition Classes
    ContextUser
  12. def createAndDriveFlow[T <: Data](dataType: T, address: BigInt, bitOffset: Int = 0, checkByteEnable: Boolean = false, documentation: String = null): Flow[T]

    Permalink

    Create a writable Flow register of type dataType at address and placed at bitOffset in the word

    Create a writable Flow register of type dataType at address and placed at bitOffset in the word

    checkByteEnable

    do not trigger flow if byte enable is all zero. See https://github.com/SpinalHDL/SpinalHDL/issues/1265 for the discussion about this behaviour.

    Definition Classes
    BusSlaveFactory
  13. def createReadAndClearOnSet[T <: Data](dataType: T, address: BigInt, bitOffset: Int = 0): T

    Permalink
    Definition Classes
    BusSlaveFactory
  14. def createReadAndSetOnSet[T <: Data](dataType: T, address: BigInt, bitOffset: Int = 0): T

    Permalink
    Definition Classes
    BusSlaveFactory
  15. def createReadAndWrite[T <: Data](dataType: T, address: BigInt, bitOffset: Int = 0, documentation: String = null): T

    Permalink

    Create a read-write register of type dataType at address and placed at bitOffset in the word

    Create a read-write register of type dataType at address and placed at bitOffset in the word

    Definition Classes
    BusSlaveFactory
  16. def createReadMultiWord[T <: Data](that: T, address: BigInt, documentation: String = null): T

    Permalink

    Create multi-words read register of type dataType

    Create multi-words read register of type dataType

    Definition Classes
    BusSlaveFactory
  17. def createReadOnly[T <: Data](dataType: T, address: BigInt, bitOffset: Int = 0, documentation: String = null): T

    Permalink

    Create a read-only register of type dataType at address and placed at bitOffset in the word

    Create a read-only register of type dataType at address and placed at bitOffset in the word

    Definition Classes
    BusSlaveFactory
  18. def createWriteAndReadMultiWord[T <: Data](that: T, address: BigInt, documentation: String = null): T

    Permalink

    Create multi-words write and read register of type dataType

    Create multi-words write and read register of type dataType

    Definition Classes
    BusSlaveFactory
  19. def createWriteMultiWord[T <: Data](that: T, address: BigInt, documentation: String = null): T

    Permalink

    Create multi-words write register of type dataType

    Create multi-words write register of type dataType

    Definition Classes
    BusSlaveFactory
  20. def createWriteOnly[T <: Data](dataType: T, address: BigInt, bitOffset: Int = 0, documentation: String = null): T

    Permalink

    Create a write-only register of type dataType at address and placed at bitOffset in the word

    Create a write-only register of type dataType at address and placed at bitOffset in the word

    Definition Classes
    BusSlaveFactory
  21. def dataModelString(): String

    Permalink
  22. def doBitsAccumulationAndClearOnRead(that: Bits, address: BigInt, bitOffset: Int = 0): Unit

    Permalink

    Instantiate an internal register which at each cycle do : reg := reg | that Then when a read occur, the register is cleared.

    Instantiate an internal register which at each cycle do : reg := reg | that Then when a read occur, the register is cleared. This register is readable at address and placed at bitOffset in the word

    Definition Classes
    BusSlaveFactory
  23. def doMappedElements(jobs: Seq[BusSlaveFactoryElement], askWrite: Bool, askRead: Bool, doWrite: Bool, doRead: Bool, writeData: Bits, readData: Bits): Unit

    Permalink
  24. def doMappedReadElements(jobs: Seq[BusSlaveFactoryElement], askRead: Bool, doRead: Bool, readData: Bits): Unit

    Permalink
  25. def doMappedWriteElements(jobs: Seq[BusSlaveFactoryElement], askWrite: Bool, doWrite: Bool, writeData: Bits): Unit

    Permalink
  26. def doNonStopWrite(writeData: Bits): Unit

    Permalink
  27. def drive[T <: Data](address: BigInt, bitMapping: (Int, Data)*): Unit

    Permalink
    Definition Classes
    BusSlaveFactory
  28. def drive[T <: Data](that: T, address: BigInt, bitOffset: Int = 0, documentation: String = null): T

    Permalink

    Drive that with a register writable at address placed at bitOffset in the word

    Drive that with a register writable at address placed at bitOffset in the word

    Definition Classes
    BusSlaveFactory
  29. def driveAndRead[T <: Data](that: T, address: BigInt, bitOffset: Int = 0, documentation: String = null): T

    Permalink

    Drive that with a register writable and readable at address placed at bitOffset in the word

    Drive that with a register writable and readable at address placed at bitOffset in the word

    Definition Classes
    BusSlaveFactory
  30. def driveAndReadMultiWord[T <: Data](that: T, address: BigInt, documentation: String = null): T

    Permalink

    Drive and read that on multi-word

    Drive and read that on multi-word

    Definition Classes
    BusSlaveFactory
  31. def driveFlow[T <: Data](that: Flow[T], address: BigInt, bitOffset: Int = 0, checkByteEnable: Boolean = false, documentation: String = null): Unit

    Permalink

    Emit on that a transaction when a write happen at address by using data placed at bitOffset in the word

    Emit on that a transaction when a write happen at address by using data placed at bitOffset in the word

    checkByteEnable

    do not trigger flow if byte enable is all zero. See https://github.com/SpinalHDL/SpinalHDL/issues/1265 for the discussion about this behaviour.

    Definition Classes
    BusSlaveFactory
  32. def driveMultiWord[T <: Data](that: T, address: BigInt, documentation: String = null): T

    Permalink

    Drive that on multi-words

    Drive that on multi-words

    Definition Classes
    BusSlaveFactory
  33. def driveStream[T <: Data](that: Stream[T], address: BigInt, bitOffset: Int = 0): Unit

    Permalink

    Emit on that a transaction when a write happen at address, by using data placed at bitOffset in the word.

    Emit on that a transaction when a write happen at address, by using data placed at bitOffset in the word. Block the write transaction until the transaction succeeds (stream becomes ready).

    Definition Classes
    BusSlaveFactory
  34. val elements: ArrayBuffer[BusSlaveFactoryElement]

    Permalink

    Contains all elements created

  35. val elementsOk: HashSet[BusSlaveFactoryElement]

    Permalink
  36. val elementsPerAddress: LinkedHashMap[AddressMapping, ArrayBuffer[BusSlaveFactoryElement]]

    Permalink

    Contains all elements related to an address

  37. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  38. def equals(obj: Any): Boolean

    Permalink
    Definition Classes
    OverridedEqualsHashCode → AnyRef → Any
  39. def foreachReflectableNameables(doThat: (Any) ⇒ Unit): Unit

    Permalink
    Definition Classes
    Nameable
  40. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  41. def getConfig: BusSlaveFactoryConfig

    Permalink
    Definition Classes
    BusSlaveFactory
  42. def getDisplayName(): String

    Permalink
    Definition Classes
    Nameable
  43. def getInstanceCounter: Int

    Permalink
    Definition Classes
    ContextUser
  44. def getMode: Byte

    Permalink
    Attributes
    protected
    Definition Classes
    Nameable
  45. def getName(default: String): String

    Permalink
    Definition Classes
    NameableByComponent → Nameable
  46. def getName(): String

    Permalink
    Definition Classes
    NameableByComponent → Nameable
  47. def getPartialName(): String

    Permalink
    Definition Classes
    Nameable
  48. def getPath(from: Component, to: Component): Seq[Component]

    Permalink
    Definition Classes
    NameableByComponent
  49. def getRefOwnersChain(): List[Any]

    Permalink
    Definition Classes
    OwnableRef
  50. def getScalaLocationLong: String

    Permalink
    Definition Classes
    ScalaLocated
  51. def getScalaLocationShort: String

    Permalink
    Definition Classes
    ScalaLocated
  52. def getScalaTrace(): Throwable

    Permalink
    Definition Classes
    ScalaLocated
  53. var globalData: GlobalData

    Permalink
    Definition Classes
    GlobalDataUser
  54. def hashCode(): Int

    Permalink
    Definition Classes
    OverridedEqualsHashCode → AnyRef → Any
  55. def isCompletelyUnnamed: Boolean

    Permalink
    Definition Classes
    Nameable
  56. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  57. final def isNamed: Boolean

    Permalink
    Definition Classes
    Nameable
  58. def isPriorityApplicable(namePriority: Byte): Boolean

    Permalink
    Definition Classes
    Nameable
  59. def isReading(address: BigInt): Bool

    Permalink

    Return true if the bus is reading

    Return true if the bus is reading

    Definition Classes
    BusSlaveFactory
  60. def isUnnamed: Boolean

    Permalink
    Definition Classes
    NameableByComponent → Nameable
  61. def isWriting(address: BigInt): Bool

    Permalink

    Return true if the bus is writing

    Return true if the bus is writing

    Definition Classes
    BusSlaveFactory
  62. def multiCycleRead(address: AddressMapping, cycles: BigInt): Unit

    Permalink
    Definition Classes
    BusSlaveFactory
  63. var name: String

    Permalink
    Definition Classes
    Nameable
  64. var nameableRef: Nameable

    Permalink
    Attributes
    protected
    Definition Classes
    Nameable
  65. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  66. def nonStopWrite[T <: Data](that: T, bitOffset: Int = 0, documentation: String = null): T

    Permalink

    Permanently assign that by the bus write data from bitOffset

    Permanently assign that by the bus write data from bitOffset

    Definition Classes
    BusSlaveFactoryDelayedBusSlaveFactory
  67. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  68. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  69. def onRead(address: BigInt, documentation: String = null)(doThat: ⇒ Unit): Unit

    Permalink

    Call doThat when a read transaction occurs on address

    Call doThat when a read transaction occurs on address

    Definition Classes
    BusSlaveFactory
  70. def onReadPrimitive(address: AddressMapping, haltSensitive: Boolean, documentation: String)(doThat: ⇒ Unit): Unit

    Permalink
  71. def onWrite(address: BigInt, documentation: String = null)(doThat: ⇒ Unit): Unit

    Permalink

    Call doThat when a write transaction occurs on address

    Call doThat when a write transaction occurs on address

    Definition Classes
    BusSlaveFactory
  72. def onWritePrimitive(address: AddressMapping, haltSensitive: Boolean, documentation: String)(doThat: ⇒ Unit): Unit

    Permalink
  73. def overrideLocalName(name: String): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  74. var parentScope: ScopeStatement

    Permalink
    Definition Classes
    ContextUser
  75. def printDataModel(): Unit

    Permalink
  76. def read[T <: Data](address: BigInt, bitMapping: (Int, Data)*): Unit

    Permalink
    Definition Classes
    BusSlaveFactory
  77. def read[T <: Data](that: T, address: BigInt, bitOffset: Int = 0, documentation: String = null): T

    Permalink

    When the bus read the address, fill the response with that at bitOffset

    When the bus read the address, fill the response with that at bitOffset

    Definition Classes
    BusSlaveFactory
  78. def readAddress(address: AddressMapping): UInt

    Permalink
    Definition Classes
    BusSlaveFactory
  79. def readAndClearOnSet[T <: Data](that: T, address: BigInt, bitOffset: Int = 0): T

    Permalink
    Definition Classes
    BusSlaveFactory
  80. def readAndSetOnSet[T <: Data](that: T, address: BigInt, bitOffset: Int = 0): T

    Permalink
    Definition Classes
    BusSlaveFactory
  81. def readAndWrite(that: Data, address: BigInt, bitOffset: Int = 0, documentation: String = null): Unit

    Permalink

    Make that readable and writable at address and placed at bitOffset in the word

    Make that readable and writable at address and placed at bitOffset in the word

    Definition Classes
    BusSlaveFactory
  82. def readAndWriteMultiWord(that: Data, address: BigInt, documentation: String = null): Unit

    Permalink

    Create the memory mapping to write/read that from address

    Create the memory mapping to write/read that from address

    Definition Classes
    BusSlaveFactory
  83. def readError(): Unit

    Permalink
    Definition Classes
    BusSlaveFactory
  84. val readErrorFlag: Bool

    Permalink
    Definition Classes
    BusSlaveFactory
  85. def readFire(): Bool

    Permalink
    Definition Classes
    BusSlaveFactory
  86. def readMultiWord(that: Data, address: BigInt, documentation: String = null): Unit

    Permalink

    Create the memory mapping to read that from address If that is bigger than one word it extends the register on following addresses.

    Create the memory mapping to read that from address If that is bigger than one word it extends the register on following addresses.

    Definition Classes
    BusSlaveFactory
  87. def readPrimitive[T <: Data](that: T, address: AddressMapping, bitOffset: Int, documentation: String): Unit

    Permalink
  88. def readStreamBlockCycles[T <: Data](that: Stream[T], address: BigInt, blockCycles: UInt, timeout: Bool = null): Unit

    Permalink

    Same as readStreamNonBlocking, but block the bus for at most blockCycles before returning the NACK.

    Same as readStreamNonBlocking, but block the bus for at most blockCycles before returning the NACK.

    T

    type of stream payload

    that

    data to read over bus

    address

    address to map at

    blockCycles

    cycles to block read transaction before returning NACK

    timeout

    whether the read transaction timed out (returned NACK)

    Definition Classes
    BusSlaveFactory
  89. def readStreamNonBlocking[T <: Data](that: Stream[T], address: BigInt, validBitOffset: Int, payloadBitOffset: Int, validInverted: Boolean = false): Unit

    Permalink

    Read that and consume the transaction when a read happen at address.

    Read that and consume the transaction when a read happen at address.

    Definition Classes
    BusSlaveFactory
  90. def readStreamNonBlocking[T <: Data](that: Stream[T], address: BigInt): Unit

    Permalink

    Read that (that is bigger than the busWidth) and consume the transaction when a read happen at address.

    Read that (that is bigger than the busWidth) and consume the transaction when a read happen at address.

    Definition Classes
    BusSlaveFactory
    Note

    in order to avoid to read wrong data read first the address which contains the valid signal. Little : payload - valid at address 0x00 Big : valid - payload at address 0x00 Once the valid signal is true you can read all registers

  91. def readSyncMemMultiWord[T <: Data](mem: Mem[T], addressOffset: BigInt, memOffset: UInt = U(0).resized): Mem[T]

    Permalink

    Memory map a Mem to bus for reading.

    Memory map a Mem to bus for reading. Elements can be larger than bus data width in bits.

    Definition Classes
    BusSlaveFactory
  92. def readSyncMemWordAligned[T <: Data](mem: Mem[T], addressOffset: BigInt, bitOffset: Int = 0, memOffset: UInt = U(0).resized): Mem[T]

    Permalink
    Definition Classes
    BusSlaveFactory
  93. var refOwner: RefOwnerType

    Permalink
    Definition Classes
    OwnableRef
  94. def reflectNames(): Unit

    Permalink
    Definition Classes
    Nameable
  95. def rework[T](body: ⇒ T): T

    Permalink
    Definition Classes
    Area
  96. var scalaTrace: Throwable

    Permalink
    Definition Classes
    ScalaLocated
  97. def setCompositeName(nameable: Nameable, postfix: String, namePriority: Byte): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  98. def setCompositeName(nameable: Nameable, postfix: String, weak: Boolean): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  99. def setCompositeName(nameable: Nameable, postfix: String): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  100. def setCompositeName(nameable: Nameable, namePriority: Byte): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  101. def setCompositeName(nameable: Nameable, weak: Boolean): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  102. def setCompositeName(nameable: Nameable): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  103. def setConfig(value: BusSlaveFactoryConfig): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    BusSlaveFactory
  104. def setLambdaName(isNameBody: ⇒ Boolean)(nameGen: ⇒ String): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  105. def setName(name: String, namePriority: Byte): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  106. def setName(name: String, weak: Boolean): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  107. def setName(name: String): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  108. def setNameAsWeak(): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  109. def setOnClear[T <: Data](that: T, address: BigInt, bitOffset: Int = 0): T

    Permalink
    Definition Classes
    BusSlaveFactory
  110. def setOnSet[T <: Data](that: T, address: BigInt, bitOffset: Int = 0): T

    Permalink
    Definition Classes
    BusSlaveFactory
  111. def setPartialName(name: String, namePriority: Byte, owner: Any): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  112. def setPartialName(name: String, namePriority: Byte): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  113. def setPartialName(name: String, weak: Boolean): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  114. def setPartialName(owner: Nameable, name: String, namePriority: Byte): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  115. def setPartialName(owner: Nameable, name: String, weak: Boolean): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  116. def setPartialName(name: String): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  117. def setPartialName(owner: Nameable, name: String): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  118. def setPartialName(owner: Nameable): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  119. def setRefOwner(that: Any): Unit

    Permalink
    Definition Classes
    OwnableRef
  120. def setScalaLocated(source: ScalaLocated): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    ScalaLocated
  121. def setWeakName(name: String): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  122. def setWordEndianness(value: Endianness): BusSlaveFactory

    Permalink

    Set the endianness during write/read multiword

    Set the endianness during write/read multiword

    Definition Classes
    BusSlaveFactory
  123. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  124. def toString(): String

    Permalink
    Definition Classes
    Area → Nameable → AnyRef → Any
  125. def unsetName(): BusSlaveFactoryDelayed.this.type

    Permalink
    Definition Classes
    Nameable
  126. def valCallback[T](ref: T, name: String): T

    Permalink
    Definition Classes
    ValCallbackRec → ValCallback
  127. def valCallbackOn(ref: Any, name: String, refs: Set[Any]): Unit

    Permalink
    Definition Classes
    ValCallbackRec
  128. def valCallbackRec(obj: Any, name: String): Unit

    Permalink
    Definition Classes
    Area → ValCallbackRec
  129. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  130. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  131. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  132. def withOffset(offset: BigInt): BusSlaveFactoryAddressWrapper

    Permalink
    Definition Classes
    BusSlaveFactory
  133. def wordAddressInc: Int

    Permalink

    Address incrementation used by the read and write multi words registers

    Address incrementation used by the read and write multi words registers

    Definition Classes
    BusSlaveFactory
  134. def write[T <: Data](address: BigInt, bitMapping: (Int, Data)*): Unit

    Permalink
    Definition Classes
    BusSlaveFactory
  135. def write[T <: Data](that: T, address: BigInt, bitOffset: Int = 0, documentation: String = null): T

    Permalink

    When the bus write the address, assign that with bus’s data from bitOffset

    When the bus write the address, assign that with bus’s data from bitOffset

    Definition Classes
    BusSlaveFactory
  136. def writeAddress(address: AddressMapping): UInt

    Permalink
    Definition Classes
    BusSlaveFactory
  137. def writeByteEnable(): Bits

    Permalink

    Byte enable bits, defaulting to all ones

    Byte enable bits, defaulting to all ones

    Definition Classes
    BusSlaveFactory
  138. def writeError(): Unit

    Permalink
    Definition Classes
    BusSlaveFactory
  139. val writeErrorFlag: Bool

    Permalink
    Definition Classes
    BusSlaveFactory
  140. def writeFire(): Bool

    Permalink
    Definition Classes
    BusSlaveFactory
  141. def writeMemMultiWord[T <: Data](mem: Mem[T], addressOffset: BigInt): Mem[T]

    Permalink

    Memory map a Mem to bus for writing.

    Memory map a Mem to bus for writing. Elements can be larger than bus data width in bits.

    Definition Classes
    BusSlaveFactory
  142. def writeMemWordAligned[T <: Data](mem: Mem[T], addressOffset: BigInt, bitOffset: Int = 0, memOffset: UInt = U(0).resized): Mem[T]

    Permalink
    Definition Classes
    BusSlaveFactory
  143. def writeMultiWord(that: Data, address: BigInt, documentation: String = null): Unit

    Permalink

    Create the memory mapping to write that at address.

    Create the memory mapping to write that at address. If that is bigger than one word it extends the register on following addresses.

    Definition Classes
    BusSlaveFactory
  144. def writePrimitive[T <: Data](that: T, address: AddressMapping, bitOffset: Int, documentation: String): Unit

    Permalink

Deprecated Value Members

  1. def createReadWrite[T <: Data](dataType: T, address: BigInt, bitOffset: Int = 0): T

    Permalink
    Definition Classes
    BusSlaveFactory
    Annotations
    @deprecated
    Deprecated

    (Since version ???) Use createReadAndWrite instead

  2. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from BusSlaveFactory

Inherited from Area

Inherited from OverridedEqualsHashCode

Inherited from ValCallbackRec

Inherited from ValCallback

Inherited from NameableByComponent

Inherited from Nameable

Inherited from ContextUser

Inherited from ScalaLocated

Inherited from GlobalDataUser

Inherited from OwnableRef

Inherited from AnyRef

Inherited from Any

Ungrouped