package lsu
- Alphabetic
- Public
- All
Type Members
-
class
AguFrontend extends Api with Area
The AguFrontend provide an Area which define all RISC-V memory load/store/atomic instruction/microops aswell as a set of decodings (see AguPlugin object above) It can be used by various LSU implementations as a base.
-
trait
CmoService extends AnyRef
Allows a plugin to specifies to others that CMO are implemented This is used by the IntAluPlugin to avoid overlaping the ORI instruction with the CMO's prefetch instructions
- case class LockPort() extends Bundle with IMasterSlave with Product with Serializable
- case class LsuCachelessBus(p: LsuCachelessBusParam) extends Bundle with IMasterSlave with Product with Serializable
- case class LsuCachelessBusParam(addressWidth: Int, dataWidth: Int, hartIdWidth: Int, uopIdWidth: Int, withAmo: Boolean, pendingMax: Int) extends Product with Serializable
-
trait
LsuCachelessBusProvider extends AnyRef
Implemented by the LsuPlugins to provide the MmuPlugin's hardware page walker a way to access the memory
-
class
LsuCachelessBusToTilelink extends Area
Simple bridge to tilelink which avoid ordering issues by keeping track of all inflight memory transactions and halt new request if a conflict is detected.
-
case class
LsuCachelessCmd(p: LsuCachelessBusParam) extends Bundle with Product with Serializable
VexiiRiscv native memory bus used for uncached and IO memory accesses.
VexiiRiscv native memory bus used for uncached and IO memory accesses. It it meant to be easily bridged to other memory busses. Responses are out of order and can be reordered via the id field. It also supports AMO/LR/SC atomics
-
class
LsuCachelessPlugin extends FiberPlugin with DBusAccessService with LsuCachelessBusProvider
Implements an LSU without any cache.
Implements an LSU without any cache. The tricky thing about this implementation, is the withSpeculativeLoadFlush parameter, which allows the plugin to speculatively emit non-io memory load to the memory system, even if the load result may be trashed away.
The plugin does support MMU aswell as atomic instruction. This allows to run linux without data cache :D. This is usefull from a verification perspective.
To get good timings on FPGA in a SoC, consider setting : - forkAt = 1 - joinAt = 2
This allows the memory bus CMD to have very relaxed timings by avoiding the XLEN bits adder aswell as the PMA data path. The down side is that the memory bus respons data path timings are stressed, but as this only impact the data path (no control path), it seems to be generaly better.
- case class LsuCachelessRsp(p: LsuCachelessBusParam, withId: Boolean = true) extends Bundle with Product with Serializable
-
class
LsuCachelessTileLinkPlugin extends FiberPlugin
Bridge the LsuCachelessPlugin to a tilelink Node using LsuCachelessBusToTilelink
- case class LsuCommitProbe() extends Bundle with Product with Serializable
- case class LsuL1Cmd() extends Bundle with Product with Serializable
- case class LsuL1InvalidationBus() extends Bundle with Product with Serializable
-
case class
LsuL1InvalidationCmd() extends Bundle with Product with Serializable
Used by the TrapPlugin to flush the L1 data cache durring a fence.i instruction
- class LsuL1Plugin extends FiberPlugin with InitService with LsuL1Service
- trait LsuL1Service extends AnyRef
-
class
LsuL1TileLinkPlugin extends FiberPlugin
Bridge the LsuL1Plugin to a Tilelink node
- class LsuL1TlPlugin extends FiberPlugin
-
class
LsuPlugin extends FiberPlugin with DBusAccessService with LsuCachelessBusProvider with LsuService with CmoService
The LsuPlugin does many things : - Handle the AGU (Address Generation Unit) - Interface with the L1 cache - Handle the MMU integration - Implement the PMA checks(Physical Memory Access) - Implement the IO accesses - Implement the AMO/LR/SC instructino - Impplement a store buffer - Implement the prefetching request - Implement RISC-V debug triggers related to memory load/store
The LsuPlugin does many things : - Handle the AGU (Address Generation Unit) - Interface with the L1 cache - Handle the MMU integration - Implement the PMA checks(Physical Memory Access) - Implement the IO accesses - Implement the AMO/LR/SC instructino - Impplement a store buffer - Implement the prefetching request - Implement RISC-V debug triggers related to memory load/store
So, it has a lot of different functionalities which sometimes are thigtly coupled together in order to reduce area and increase FMax which can make it challenging to read.
- trait LsuService extends AnyRef
-
class
LsuTileLinkPlugin extends FiberPlugin
Bridge the LsuPlugin io bus to tilelink node
- case class PrefetchCmd() extends Bundle with Product with Serializable
- class PrefetcherNextLinePlugin extends PrefetcherPlugin
- abstract class PrefetcherPlugin extends FiberPlugin
-
class
PrefetcherRptPlugin extends PrefetcherPlugin with InitService
Implements load/store predictor for the LSU.
Implements load/store predictor for the LSU. See https://spinalhdl.github.io/VexiiRiscv-RTD/master/VexiiRiscv/Memory/index.html#prefetchrptplugin for more details
- case class StoreBufferOp() extends Bundle with Product with Serializable
Value Members
- object AguPlugin extends AreaObject
- object LsuCachelessBusAmo
- object LsuL1 extends AreaObject
- object LsuL1CmdOpcode extends SpinalEnum