Package

spinal.lib.bus

misc

Permalink

package misc

Visibility
  1. Public
  2. All

Type Members

  1. trait AddressMapping extends AnyRef

    Permalink
  2. trait BusSlaveFactory extends Area

    Permalink

    Bus slave factory is a tool that provide an abstract and smooth way to define register bank

  3. class BusSlaveFactoryAddressWrapper extends BusSlaveFactory

    Permalink
  4. case class BusSlaveFactoryConfig(wordEndianness: Endianness = LITTLE) extends Product with Serializable

    Permalink

    Configuration of the bus Slave Factory

    Configuration of the bus Slave Factory

    wordEndianness

    Endianness for the multiWrite or multiRead operations

  5. trait BusSlaveFactoryDelayed extends BusSlaveFactory

    Permalink

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

    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
       }
  6. trait BusSlaveFactoryElement extends AnyRef

    Permalink

    Base element

  7. case class BusSlaveFactoryNonStopWrite(that: Data, bitOffset: Int, documentation: String) extends BusSlaveFactoryElement with Product with Serializable

    Permalink

    Ask to constantly drive that with the data bus bitOffset specify where that get bits from the request

  8. case class BusSlaveFactoryOnReadAtAddress(address: AddressMapping, haltSensitive: Boolean, documentation: String, doThat: () ⇒ Unit) extends BusSlaveFactoryElement with Product with Serializable

    Permalink

    Ask to execute doThat when a read access is done on address

  9. case class BusSlaveFactoryOnWriteAtAddress(address: AddressMapping, haltSensitive: Boolean, documentation: String, doThat: () ⇒ Unit) extends BusSlaveFactoryElement with Product with Serializable

    Permalink

    Ask to execute doThat when a write access is done on address

  10. case class BusSlaveFactoryRead(that: Data, address: AddressMapping, bitOffset: Int, documentation: String) extends BusSlaveFactoryElement with Product with Serializable

    Permalink

    Ask to make that readable when an access is done on address bitOffset specify where that is placed on the answer

  11. case class BusSlaveFactoryWrite(that: Data, address: AddressMapping, bitOffset: Int, documentation: String) extends BusSlaveFactoryElement with Product with Serializable

    Permalink

    Ask to make that writable when a access is done on address.

    Ask to make that writable when a access is done on address. bitOffset specify where that get bits from the request

  12. case class MaskMapping(base: BigInt, mask: BigInt) extends AddressMapping with Product with Serializable

    Permalink
  13. case class SingleMapping(address: BigInt) extends AddressMapping with Product with Serializable

    Permalink
  14. case class SizeMapping(base: BigInt, size: BigInt) extends AddressMapping with Product with Serializable

    Permalink

Value Members

  1. object DefaultMapping extends AddressMapping

    Permalink
  2. object SizeMapping extends Serializable

    Permalink

Ungrouped