gem5  v22.1.0.0
Classes | Public Member Functions | Private Types | Private Member Functions | Static Private Member Functions | Private Attributes | List of all members
gem5::memory::DRAMInterface Class Reference

Interface to DRAM devices with media specific parameters, statistics, and functions. More...

#include <dram_interface.hh>

Inheritance diagram for gem5::memory::DRAMInterface:
gem5::memory::MemInterface gem5::memory::AbstractMemory gem5::ClockedObject gem5::SimObject gem5::Clocked gem5::EventManager gem5::Serializable gem5::Drainable gem5::statistics::Group gem5::Named

Classes

struct  Command
 Simple structure to hold the values needed to keep track of commands for DRAMPower. More...
 
struct  DRAMStats
 
class  Rank
 Rank class includes a vector of banks. More...
 
struct  RankStats
 

Public Member Functions

void init () override
 Initialize the DRAM interface and verify parameters. More...
 
void startup () override
 Iterate through dram ranks and instantiate per rank startup routine. More...
 
void setupRank (const uint8_t rank, const bool is_read) override
 Setup the rank based on packet received. More...
 
MemPacketdecodePacket (const PacketPtr pkt, Addr pkt_addr, unsigned int size, bool is_read, uint8_t pseudo_channel=0) override
 Address decoder to figure out physical mapping onto ranks, banks, and rows. More...
 
void drainRanks () override
 Iterate through dram ranks to exit self-refresh in order to drain. More...
 
bool allRanksDrained () const override
 Return true once refresh is complete for all ranks and there are no additional commands enqueued. More...
 
void suspend () override
 Iterate through DRAM ranks and suspend them. More...
 
Tick commandOffset () const override
 
Tick accessLatency () const override
 
std::pair< MemPacketQueue::iterator, TickchooseNextFRFCFS (MemPacketQueue &queue, Tick min_col_at) const override
 For FR-FCFS policy, find first DRAM command that can issue. More...
 
std::pair< Tick, TickdoBurstAccess (MemPacket *mem_pkt, Tick next_burst_at, const std::vector< MemPacketQueue > &queue) override
 Actually do the burst - figure out the latency it will take to service the req based on bank state, channel state etc and then update those states to account for this request. More...
 
bool burstReady (MemPacket *pkt) const override
 Check if a burst operation can be issued to the DRAM. More...
 
bool isBusy (bool read_queue_empty, bool all_writes_nvm) override
 This function checks if ranks are actively refreshing and therefore busy. More...
 
void addRankToRankDelay (Tick cmd_at) override
 Add rank to rank delay to bus timing to all DRAM banks in alli ranks when access to an alternate interface is issued. More...
 
void respondEvent (uint8_t rank) override
 Complete response process for DRAM when read burst is complete This will update the counters and check if a power down state can be entered. More...
 
void checkRefreshState (uint8_t rank) override
 Check the refresh state to determine if refresh needs to be kicked back into action after a read response. More...
 
bool readsWaitingToIssue () const override
 The next three functions are NVM-specific and will be ignored by DRAM. More...
 
void chooseRead (MemPacketQueue &queue) override
 This function is NVM specific. More...
 
bool writeRespQueueFull () const override
 This function is NVM specific. More...
 
 DRAMInterface (const DRAMInterfaceParams &_p)
 
- Public Member Functions inherited from gem5::memory::MemInterface
void setCtrl (MemCtrl *_ctrl, unsigned int command_window, uint8_t pseudo_channel=0)
 Set a pointer to the controller and initialize interface based on controller parameters. More...
 
Addr getCtrlAddr (Addr addr)
 Get an address in a dense range which starts from 0. More...
 
uint32_t bytesPerBurst () const
 
Tick rankDelay () const
 Determine the required delay for an access to a different rank. More...
 
Tick minReadToWriteDataGap () const
 
Tick minWriteToReadDataGap () const
 
 MemInterface (const Params &_p)
 
- Public Member Functions inherited from gem5::memory::AbstractMemory
 PARAMS (AbstractMemory)
 
 AbstractMemory (const Params &p)
 
virtual ~AbstractMemory ()
 
void initState () override
 initState() is called on each SimObject when not restoring from a checkpoint. More...
 
bool isNull () const
 See if this is a null memory that should never store data and always return zero. More...
 
void setBackingStore (uint8_t *pmem_addr)
 Set the host memory backing store to be used by this memory controller. More...
 
void getBackdoor (MemBackdoorPtr &bd_ptr)
 
const std::list< LockedAddr > & getLockedAddrList () const
 Get the list of locked addresses to allow checkpointing. More...
 
void addLockedAddr (LockedAddr addr)
 Add a locked address to allow for checkpointing. More...
 
Systemsystem () const
 read the system pointer Implemented for completeness with the setter More...
 
void system (System *sys)
 Set the system pointer on this memory This can't be done via a python parameter because the system needs pointers to all the memories and the reverse would create a cycle in the object graph. More...
 
AddrRange getAddrRange () const
 Get the address range. More...
 
uint8_t * toHostAddr (Addr addr) const
 Transform a gem5 address space address into its physical counterpart in the host address space. More...
 
uint64_t size () const
 Get the memory size. More...
 
Addr start () const
 Get the start address. More...
 
bool isConfReported () const
 Should this memory be passed to the kernel and part of the OS physical memory layout. More...
 
bool isInAddrMap () const
 Some memories are used as shadow memories or should for other reasons not be part of the global address map. More...
 
bool isKvmMap () const
 When shadow memories are in use, KVM may want to make one or the other, but cannot map both into the guest address space. More...
 
void access (PacketPtr pkt)
 Perform an untimed memory access and update all the state (e.g. More...
 
void functionalAccess (PacketPtr pkt)
 Perform an untimed memory read or write without changing anything but the memory itself. More...
 
- Public Member Functions inherited from gem5::ClockedObject
 ClockedObject (const ClockedObjectParams &p)
 
void serialize (CheckpointOut &cp) const override
 Serialize an object. More...
 
void unserialize (CheckpointIn &cp) override
 Unserialize an object. More...
 
- Public Member Functions inherited from gem5::SimObject
const Paramsparams () const
 
 SimObject (const Params &p)
 
virtual ~SimObject ()
 
virtual void loadState (CheckpointIn &cp)
 loadState() is called on each SimObject when restoring from a checkpoint. More...
 
virtual void regProbePoints ()
 Register probe points for this object. More...
 
virtual void regProbeListeners ()
 Register probe listeners for this object. More...
 
ProbeManagergetProbeManager ()
 Get the probe manager for this object. More...
 
virtual PortgetPort (const std::string &if_name, PortID idx=InvalidPortID)
 Get a port with a given name and index. More...
 
DrainState drain () override
 Provide a default implementation of the drain interface for objects that don't need draining. More...
 
virtual void memWriteback ()
 Write back dirty buffers to memory using functional writes. More...
 
virtual void memInvalidate ()
 Invalidate the contents of memory buffers. More...
 
void serialize (CheckpointOut &cp) const override
 Serialize an object. More...
 
void unserialize (CheckpointIn &cp) override
 Unserialize an object. More...
 
- Public Member Functions inherited from gem5::EventManager
EventQueueeventQueue () const
 
void schedule (Event &event, Tick when)
 
void deschedule (Event &event)
 
void reschedule (Event &event, Tick when, bool always=false)
 
void schedule (Event *event, Tick when)
 
void deschedule (Event *event)
 
void reschedule (Event *event, Tick when, bool always=false)
 
void wakeupEventQueue (Tick when=(Tick) -1)
 This function is not needed by the usual gem5 event loop but may be necessary in derived EventQueues which host gem5 on other schedulers. More...
 
void setCurTick (Tick newVal)
 
 EventManager (EventManager &em)
 Event manger manages events in the event queue. More...
 
 EventManager (EventManager *em)
 
 EventManager (EventQueue *eq)
 
- Public Member Functions inherited from gem5::Serializable
 Serializable ()
 
virtual ~Serializable ()
 
void serializeSection (CheckpointOut &cp, const char *name) const
 Serialize an object into a new section. More...
 
void serializeSection (CheckpointOut &cp, const std::string &name) const
 
void unserializeSection (CheckpointIn &cp, const char *name)
 Unserialize an a child object. More...
 
void unserializeSection (CheckpointIn &cp, const std::string &name)
 
- Public Member Functions inherited from gem5::Drainable
DrainState drainState () const
 Return the current drain state of an object. More...
 
virtual void notifyFork ()
 Notify a child process of a fork. More...
 
- Public Member Functions inherited from gem5::statistics::Group
 Group (Group *parent, const char *name=nullptr)
 Construct a new statistics group. More...
 
virtual ~Group ()
 
virtual void regStats ()
 Callback to set stat parameters. More...
 
virtual void resetStats ()
 Callback to reset stats. More...
 
virtual void preDumpStats ()
 Callback before stats are dumped. More...
 
void addStat (statistics::Info *info)
 Register a stat with this group. More...
 
const std::map< std::string, Group * > & getStatGroups () const
 Get all child groups associated with this object. More...
 
const std::vector< Info * > & getStats () const
 Get all stats associated with this object. More...
 
void addStatGroup (const char *name, Group *block)
 Add a stat block as a child of this block. More...
 
const InforesolveStat (std::string name) const
 Resolve a stat by its name within this group. More...
 
void mergeStatGroup (Group *block)
 Merge the contents (stats & children) of a block to this block. More...
 
 Group ()=delete
 
 Group (const Group &)=delete
 
Groupoperator= (const Group &)=delete
 
- Public Member Functions inherited from gem5::Named
 Named (const std::string &name_)
 
virtual ~Named ()=default
 
virtual std::string name () const
 
- Public Member Functions inherited from gem5::Clocked
void updateClockPeriod ()
 Update the tick to the current tick. More...
 
Tick clockEdge (Cycles cycles=Cycles(0)) const
 Determine the tick when a cycle begins, by default the current one, but the argument also enables the caller to determine a future cycle. More...
 
Cycles curCycle () const
 Determine the current cycle, corresponding to a tick aligned to a clock edge. More...
 
Tick nextCycle () const
 Based on the clock of the object, determine the start tick of the first cycle that is at least one cycle in the future. More...
 
uint64_t frequency () const
 
Tick clockPeriod () const
 
double voltage () const
 
Cycles ticksToCycles (Tick t) const
 
Tick cyclesToTicks (Cycles c) const
 

Private Types

enum  PowerState {
  PWR_IDLE = 0 , PWR_REF , PWR_SREF , PWR_PRE_PDN ,
  PWR_ACT , PWR_ACT_PDN
}
 The power state captures the different operational states of the DRAM and interacts with the bus read/write state machine, and the refresh state machine. More...
 
enum  RefreshState {
  REF_IDLE = 0 , REF_DRAIN , REF_PD_EXIT , REF_SREF_EXIT ,
  REF_PRE , REF_START , REF_RUN
}
 The refresh state is used to control the progress of the refresh scheduling. More...
 

Private Member Functions

void activateBank (Rank &rank_ref, Bank &bank_ref, Tick act_tick, uint32_t row)
 Keep track of when row activations happen, in order to enforce the maximum number of activations in the activation window. More...
 
void prechargeBank (Rank &rank_ref, Bank &bank_ref, Tick pre_tick, bool auto_or_preall=false, bool trace=true)
 Precharge a given bank and also update when the precharge is done. More...
 
Tick writeToReadDelay () const override
 
std::pair< std::vector< uint32_t >, bool > minBankPrep (const MemPacketQueue &queue, Tick min_col_at) const
 Find which are the earliest banks ready to issue an activate for the enqueued requests. More...
 
Tick burstDelay () const
 

Static Private Member Functions

static bool sortTime (const Command &cmd, const Command &cmd_next)
 Function for sorting Command structures based on timeStamp. More...
 

Private Attributes

const uint32_t bankGroupsPerRank
 DRAM specific device characteristics. More...
 
const bool bankGroupArch
 
const Tick tRL
 DRAM specific timing requirements. More...
 
const Tick tWL
 
const Tick tBURST_MIN
 
const Tick tBURST_MAX
 
const Tick tCCD_L_WR
 
const Tick tCCD_L
 
const Tick tRCD_RD
 
const Tick tRCD_WR
 
const Tick tRP
 
const Tick tRAS
 
const Tick tWR
 
const Tick tRTP
 
const Tick tRFC
 
const Tick tREFI
 
const Tick tRRD
 
const Tick tRRD_L
 
const Tick tPPD
 
const Tick tAAD
 
const Tick tXAW
 
const Tick tXP
 
const Tick tXS
 
const Tick clkResyncDelay
 
const bool dataClockSync
 
const bool burstInterleave
 
const uint8_t twoCycleActivate
 
const uint32_t activationLimit
 
const Tick wrToRdDlySameBG
 
const Tick rdToWrDlySameBG
 
enums::PageManage pageMgmt
 
const uint32_t maxAccessesPerRow
 Max column accesses (read and write) per row, before forefully closing it. More...
 
uint64_t timeStampOffset
 
uint8_t activeRank
 
bool enableDRAMPowerdown
 Enable or disable DRAM powerdown states. More...
 
Tick lastStatsResetTick
 The time when stats were last reset used to calculate average power. More...
 
DRAMStats stats
 
std::vector< Rank * > ranks
 Vector of dram ranks. More...
 

Additional Inherited Members

- Public Types inherited from gem5::memory::MemInterface
typedef MemInterfaceParams Params
 
- Public Types inherited from gem5::ClockedObject
using Params = ClockedObjectParams
 Parameters of ClockedObject. More...
 
- Public Types inherited from gem5::SimObject
typedef SimObjectParams Params
 
- Static Public Member Functions inherited from gem5::SimObject
static void serializeAll (const std::string &cpt_dir)
 Create a checkpoint by serializing all SimObjects in the system. More...
 
static SimObjectfind (const char *name)
 Find the SimObject with the given name and return a pointer to it. More...
 
static void setSimObjectResolver (SimObjectResolver *resolver)
 There is a single object name resolver, and it is only set when simulation is restoring from checkpoints. More...
 
static SimObjectResolvergetSimObjectResolver ()
 There is a single object name resolver, and it is only set when simulation is restoring from checkpoints. More...
 
- Static Public Member Functions inherited from gem5::Serializable
static const std::string & currentSection ()
 Gets the fully-qualified name of the active section. More...
 
static void generateCheckpointOut (const std::string &cpt_dir, std::ofstream &outstream)
 Generate a checkpoint file so that the serialization can be routed to it. More...
 
- Public Attributes inherited from gem5::memory::MemInterface
const uint32_t readBufferSize
 Buffer sizes for read and write queues in the controller These are passed to the controller on instantiation Defining them here allows for buffers to be resized based on memory type / configuration. More...
 
const uint32_t writeBufferSize
 
uint32_t numWritesQueued
 NVM specific variable, but declaring it here allows treating different interfaces in a more genral way at the memory controller's end. More...
 
Tick nextBurstAt = 0
 Till when the controller must wait before issuing next RD/WR burst? More...
 
Tick nextReqTime = 0
 
uint8_t pseudoChannel
 pseudo channel number used for HBM modeling More...
 
- Public Attributes inherited from gem5::ClockedObject
PowerStatepowerState
 
- Protected Member Functions inherited from gem5::memory::MemInterface
Tick readToWriteDelay () const
 
Tick rankToRankDelay () const
 
- Protected Member Functions inherited from gem5::memory::AbstractMemory
bool checkLockedAddrList (PacketPtr pkt)
 
void trackLoadLocked (PacketPtr pkt)
 
bool writeOK (PacketPtr pkt)
 
- Protected Member Functions inherited from gem5::Drainable
 Drainable ()
 
virtual ~Drainable ()
 
virtual void drainResume ()
 Resume execution after a successful drain. More...
 
void signalDrainDone () const
 Signal that an object is drained. More...
 
- Protected Member Functions inherited from gem5::Clocked
 Clocked (ClockDomain &clk_domain)
 Create a clocked object and set the clock domain based on the parameters. More...
 
 Clocked (Clocked &)=delete
 
Clockedoperator= (Clocked &)=delete
 
virtual ~Clocked ()
 Virtual destructor due to inheritance. More...
 
void resetClock () const
 Reset the object's clock using the current global tick value. More...
 
virtual void clockPeriodUpdated ()
 A hook subclasses can implement so they can do any extra work that's needed when the clock rate is changed. More...
 
- Protected Attributes inherited from gem5::memory::MemInterface
MemCtrlctrl
 A pointer to the parent memory controller instance. More...
 
unsigned int maxCommandsPerWindow
 Number of commands that can issue in the defined controller command window, used to verify command bandwidth. More...
 
enums::AddrMap addrMapping
 Memory controller configuration initialized based on parameter values. More...
 
const uint32_t burstSize
 General device and channel characteristics The rowsPerBank is determined based on the capacity, number of ranks and banks, the burst size, and the row buffer size. More...
 
const uint32_t deviceSize
 
const uint32_t deviceRowBufferSize
 
const uint32_t devicesPerRank
 
const uint32_t rowBufferSize
 
const uint32_t burstsPerRowBuffer
 
const uint32_t burstsPerStripe
 
const uint32_t ranksPerChannel
 
const uint32_t banksPerRank
 
uint32_t rowsPerBank
 
GEM5_CLASS_VAR_USED const Tick tCK
 General timing requirements. More...
 
const Tick tCS
 
const Tick tBURST
 
const Tick tRTW
 
const Tick tWTR
 
- Protected Attributes inherited from gem5::memory::AbstractMemory
AddrRange range
 
uint8_t * pmemAddr
 
MemBackdoor backdoor
 
const bool confTableReported
 
const bool inAddrMap
 
const bool kvmMap
 
std::list< LockedAddrlockedAddrList
 
System_system
 Pointer to the System object. More...
 
gem5::memory::AbstractMemory::MemStats stats
 
- Protected Attributes inherited from gem5::SimObject
const SimObjectParams & _params
 Cached copy of the object parameters. More...
 
- Protected Attributes inherited from gem5::EventManager
EventQueueeventq
 A pointer to this object's event queue. More...
 

Detailed Description

Interface to DRAM devices with media specific parameters, statistics, and functions.

The DRAMInterface includes a class for individual ranks and per rank functions.

Definition at line 65 of file dram_interface.hh.

Member Enumeration Documentation

◆ PowerState

The power state captures the different operational states of the DRAM and interacts with the bus read/write state machine, and the refresh state machine.

PWR_IDLE : The idle state in which all banks are closed From here can transition to: PWR_REF, PWR_ACT, PWR_PRE_PDN

PWR_REF : Auto-refresh state. Will transition when refresh is complete based on power state prior to PWR_REF From here can transition to: PWR_IDLE, PWR_PRE_PDN, PWR_SREF

PWR_SREF : Self-refresh state. Entered after refresh if previous state was PWR_PRE_PDN From here can transition to: PWR_IDLE

PWR_PRE_PDN : Precharge power down state From here can transition to: PWR_REF, PWR_IDLE

PWR_ACT : Activate state in which one or more banks are open From here can transition to: PWR_IDLE, PWR_ACT_PDN

PWR_ACT_PDN : Activate power down state From here can transition to: PWR_ACT

Enumerator
PWR_IDLE 
PWR_REF 
PWR_SREF 
PWR_PRE_PDN 
PWR_ACT 
PWR_ACT_PDN 

Definition at line 111 of file dram_interface.hh.

◆ RefreshState

The refresh state is used to control the progress of the refresh scheduling.

When normal operation is in progress the refresh state is idle. Once tREFI has elasped, a refresh event is triggered to start the following STM transitions which are used to issue a refresh and return back to normal operation

REF_IDLE : IDLE state used during normal operation From here can transition to: REF_DRAIN

REF_SREF_EXIT : Exiting a self-refresh; refresh event scheduled after self-refresh exit completes From here can transition to: REF_DRAIN

REF_DRAIN : Drain state in which on going accesses complete. From here can transition to: REF_PD_EXIT

REF_PD_EXIT : Evaluate pwrState and issue wakeup if needed Next state dependent on whether banks are open From here can transition to: REF_PRE, REF_START

REF_PRE : Close (precharge) all open banks From here can transition to: REF_START

REF_START : Issue refresh command and update DRAMPower stats From here can transition to: REF_RUN

REF_RUN : Refresh running, waiting for tRFC to expire From here can transition to: REF_IDLE, REF_SREF_EXIT

Enumerator
REF_IDLE 
REF_DRAIN 
REF_PD_EXIT 
REF_SREF_EXIT 
REF_PRE 
REF_START 
REF_RUN 

Definition at line 151 of file dram_interface.hh.

Constructor & Destructor Documentation

◆ DRAMInterface()

gem5::memory::DRAMInterface::DRAMInterface ( const DRAMInterfaceParams &  _p)

Member Function Documentation

◆ accessLatency()

Tick gem5::memory::DRAMInterface::accessLatency ( ) const
inlineoverridevirtual

Implements gem5::memory::MemInterface.

Definition at line 705 of file dram_interface.hh.

References tRCD_RD, tRL, and tRP.

◆ activateBank()

void gem5::memory::DRAMInterface::activateBank ( Rank rank_ref,
Bank bank_ref,
Tick  act_tick,
uint32_t  row 
)
private

◆ addRankToRankDelay()

void gem5::memory::DRAMInterface::addRankToRankDelay ( Tick  cmd_at)
overridevirtual

Add rank to rank delay to bus timing to all DRAM banks in alli ranks when access to an alternate interface is issued.

param cmd_at Time of current command used as starting point for addition of rank-to-rank delay

Implements gem5::memory::MemInterface.

Definition at line 620 of file dram_interface.cc.

References gem5::ArmISA::i, and gem5::ArmISA::n.

◆ allRanksDrained()

bool gem5::memory::DRAMInterface::allRanksDrained ( ) const
overridevirtual

Return true once refresh is complete for all ranks and there are no additional commands enqueued.

(only evaluated when draining) This will ensure that all banks are closed, power state is IDLE, and power stats have been updated

Returns
true if all ranks have refreshed, with no commands enqueued

Implements gem5::memory::MemInterface.

Definition at line 1005 of file dram_interface.cc.

References gem5::VegaISA::r, and ranks.

◆ burstDelay()

Tick gem5::memory::DRAMInterface::burstDelay ( ) const
inlineprivate

◆ burstReady()

bool gem5::memory::DRAMInterface::burstReady ( MemPacket pkt) const
inlineoverridevirtual

Check if a burst operation can be issued to the DRAM.

Parameters
Returntrue if RD/WR can issue This requires the DRAM to be in the REF IDLE state

Implements gem5::memory::MemInterface.

Definition at line 744 of file dram_interface.hh.

References gem5::memory::MemPacket::rank, and ranks.

◆ checkRefreshState()

void gem5::memory::DRAMInterface::checkRefreshState ( uint8_t  rank)
overridevirtual

Check the refresh state to determine if refresh needs to be kicked back into action after a read response.

Parameters
rankSpecifies rank associated with read burst

Reimplemented from gem5::memory::MemInterface.

Definition at line 978 of file dram_interface.cc.

References gem5::curTick(), gem5::memory::DRAMInterface::Rank::prechargeEvent, ranks, REF_PRE, gem5::memory::DRAMInterface::Rank::refreshEvent, gem5::memory::DRAMInterface::Rank::refreshState, gem5::EventManager::schedule(), and gem5::Event::scheduled().

◆ chooseNextFRFCFS()

std::pair< MemPacketQueue::iterator, Tick > gem5::memory::DRAMInterface::chooseNextFRFCFS ( MemPacketQueue queue,
Tick  min_col_at 
) const
overridevirtual

For FR-FCFS policy, find first DRAM command that can issue.

Parameters
queueQueued requests to consider
min_col_atMinimum tick for 'seamless' issue
Returns
an iterator to the selected packet, else queue.end()
the tick when the packet selected will issue

Implements gem5::memory::MemInterface.

Definition at line 60 of file dram_interface.cc.

References gem5::memory::MemPacket::bank, gem5::bits(), DPRINTF, gem5::ArmISA::i, gem5::memory::MemPacket::isDram(), gem5::memory::MemPacket::isRead(), gem5::MaxTick, gem5::memory::MemInterface::Bank::openRow, gem5::memory::MemPacket::pseudoChannel, gem5::memory::MemPacket::rank, gem5::memory::MemInterface::Bank::rdAllowedAt, gem5::memory::MemPacket::row, and gem5::memory::MemInterface::Bank::wrAllowedAt.

◆ chooseRead()

void gem5::memory::DRAMInterface::chooseRead ( MemPacketQueue queue)
inlineoverridevirtual

This function is NVM specific.

Reimplemented from gem5::memory::MemInterface.

Definition at line 789 of file dram_interface.hh.

◆ commandOffset()

Tick gem5::memory::DRAMInterface::commandOffset ( ) const
inlineoverridevirtual

Implements gem5::memory::MemInterface.

Definition at line 697 of file dram_interface.hh.

References tRCD_RD, tRCD_WR, and tRP.

Referenced by gem5::memory::HBMCtrl::startup().

◆ decodePacket()

MemPacket * gem5::memory::DRAMInterface::decodePacket ( const PacketPtr  pkt,
Addr  pkt_addr,
unsigned int  size,
bool  is_read,
uint8_t  pseudo_channel = 0 
)
overridevirtual

Address decoder to figure out physical mapping onto ranks, banks, and rows.

This function is called multiple times on the same system packet if the pakcet is larger than burst of the memory. The pkt_addr is used for the offset within the packet.

Parameters
pktThe packet from the outside world
pkt_addrThe starting address of the packet
sizeThe size of the packet in bytes
is_readIs the request for a read or a write to memory
pseudo_channelpseudo channel number of the packet
Returns
A MemPacket pointer with the decoded information

Reimplemented from gem5::memory::MemInterface.

Definition at line 835 of file dram_interface.cc.

References gem5::X86ISA::addr, gem5::memory::MemInterface::addrMapping, gem5::memory::MemInterface::banksPerRank, gem5::memory::MemInterface::burstSize, gem5::memory::MemInterface::burstsPerRowBuffer, gem5::memory::MemInterface::burstsPerStripe, DPRINTF, gem5::memory::MemInterface::getCtrlAddr(), gem5::memory::MemInterface::Bank::NO_ROW, panic, gem5::memory::MemInterface::ranksPerChannel, gem5::memory::MemInterface::rowsPerBank, and gem5::memory::AbstractMemory::size().

◆ doBurstAccess()

std::pair< Tick, Tick > gem5::memory::DRAMInterface::doBurstAccess ( MemPacket mem_pkt,
Tick  next_burst_at,
const std::vector< MemPacketQueue > &  queue 
)
overridevirtual

Actually do the burst - figure out the latency it will take to service the req based on bank state, channel state etc and then update those states to account for this request.

Based on this, update the packet's "readyTime" and move it to the response q from where it will eventually go back to the outside world.

Parameters
mem_pktThe packet created from the outside world pkt
next_burst_atMinimum bus timing requirement from controller
queueReference to the read or write queue with the packet
Returns
pair, tick when current burst is issued and tick when next burst can issue

Implements gem5::memory::MemInterface.

Definition at line 347 of file dram_interface.cc.

References gem5::memory::MemInterface::Bank::actAllowedAt, gem5::memory::MemPacket::addr, gem5::memory::MemPacket::bank, gem5::memory::MemInterface::Bank::bankgr, gem5::memory::MemPacket::bankId, gem5::memory::DRAMInterface::Rank::banks, gem5::memory::MemInterface::Bank::bytesAccessed, gem5::memory::DRAMInterface::Rank::cmdList, gem5::curTick(), gem5::divCeil(), DPRINTF, gem5::memory::MemPacket::entryTime, gem5::ArmISA::i, gem5::memory::DRAMInterface::Rank::inLowPowerState, gem5::memory::DRAMInterface::Rank::inRefIdleState(), gem5::memory::MemPacket::isRead(), gem5::ArmISA::j, gem5::memory::DRAMInterface::Rank::lastBurstTick, gem5::memory::MemInterface::Bank::openRow, gem5::memory::DRAMInterface::Rank::outstandingEvents, gem5::VegaISA::p, gem5::memory::MemInterface::Bank::preAllowedAt, gem5::memory::DRAMInterface::Rank::pwrState, gem5::memory::MemPacket::rank, RD, gem5::memory::MemInterface::Bank::rdAllowedAt, gem5::memory::MemPacket::readyTime, gem5::memory::MemPacket::row, gem5::memory::MemInterface::Bank::rowAccesses, gem5::Event::scheduled(), gem5::memory::DRAMInterface::Rank::scheduleWakeUpEvent(), gem5::Event::when(), gem5::memory::MemInterface::Bank::wrAllowedAt, gem5::memory::DRAMInterface::Rank::writeDoneEvent, and gem5::memory::DRAMInterface::Rank::writeEntries.

◆ drainRanks()

void gem5::memory::DRAMInterface::drainRanks ( )
overridevirtual

Iterate through dram ranks to exit self-refresh in order to drain.

Reimplemented from gem5::memory::MemInterface.

Definition at line 991 of file dram_interface.cc.

References DPRINTF, PWR_SREF, gem5::VegaISA::r, ranks, and tXS.

Referenced by gem5::memory::HBMCtrl::drainResume().

◆ init()

void gem5::memory::DRAMInterface::init ( )
overridevirtual

◆ isBusy()

bool gem5::memory::DRAMInterface::isBusy ( bool  read_queue_empty,
bool  all_writes_nvm 
)
overridevirtual

This function checks if ranks are actively refreshing and therefore busy.

The function also checks if ranks are in the self-refresh state, in which case, a self-refresh exit is initiated. The arguments are NVM-specific and will be ignored by DRAM. return boolean if all ranks are in refresh and therefore busy

Implements gem5::memory::MemInterface.

Definition at line 797 of file dram_interface.cc.

References DPRINTF, PWR_SREF, gem5::VegaISA::r, ranks, gem5::memory::MemInterface::ranksPerChannel, and tXS.

◆ minBankPrep()

std::pair< std::vector< uint32_t >, bool > gem5::memory::DRAMInterface::minBankPrep ( const MemPacketQueue queue,
Tick  min_col_at 
) const
private

Find which are the earliest banks ready to issue an activate for the enqueued requests.

Assumes maximum of 32 banks per rank Also checks if the bank is already prepped.

Parameters
queueQueued requests to consider
min_col_attime of seamless burst command
Returns
One-hot encoded mask of bank indices
boolean indicating burst can issue seamlessly, with no gaps

Definition at line 1028 of file dram_interface.cc.

References gem5::memory::MemInterface::banksPerRank, gem5::memory::MemInterface::ctrl, gem5::curTick(), gem5::MipsISA::fill, gem5::ArmISA::i, gem5::memory::MemCtrl::inReadBusState(), gem5::ArmISA::j, gem5::MaxTick, gem5::memory::MemInterface::Bank::NO_ROW, gem5::VegaISA::p, gem5::memory::MemInterface::pseudoChannel, ranks, gem5::memory::MemInterface::ranksPerChannel, gem5::replaceBits(), tRCD_RD, tRCD_WR, and tRP.

◆ prechargeBank()

void gem5::memory::DRAMInterface::prechargeBank ( Rank rank_ref,
Bank bank_ref,
Tick  pre_tick,
bool  auto_or_preall = false,
bool  trace = true 
)
private

Precharge a given bank and also update when the precharge is done.

This will also deal with any stats related to the accesses to the open page.

Parameters
rank_refThe rank to precharge
bank_refThe bank to precharge
pre_tickTime when the precharge takes place
auto_or_preallIs this an auto-precharge or precharge all command
traceIs this an auto precharge then do not add to trace

Definition at line 284 of file dram_interface.cc.

References gem5::memory::MemInterface::Bank::actAllowedAt, gem5::memory::MemInterface::Bank::bank, gem5::memory::DRAMInterface::Rank::banks, gem5::memory::MemInterface::Bank::bytesAccessed, gem5::memory::DRAMInterface::Rank::cmdList, gem5::divCeil(), DPRINTF, gem5::ArmISA::i, gem5::memory::DRAMInterface::Rank::numBanksActive, gem5::memory::MemInterface::Bank::openRow, gem5::memory::DRAMInterface::Rank::outstandingEvents, gem5::memory::MemInterface::Bank::preAllowedAt, gem5::memory::DRAMInterface::Rank::prechargeEvent, gem5::memory::DRAMInterface::Rank::rank, gem5::Event::scheduled(), and gem5::Event::when().

◆ readsWaitingToIssue()

bool gem5::memory::DRAMInterface::readsWaitingToIssue ( ) const
inlineoverridevirtual

The next three functions are NVM-specific and will be ignored by DRAM.

Reimplemented from gem5::memory::MemInterface.

Definition at line 788 of file dram_interface.hh.

◆ respondEvent()

void gem5::memory::DRAMInterface::respondEvent ( uint8_t  rank)
overridevirtual

◆ setupRank()

void gem5::memory::DRAMInterface::setupRank ( const uint8_t  rank,
const bool  is_read 
)
overridevirtual

Setup the rank based on packet received.

Parameters
integervalue of rank to be setup. used to index ranks vector
arewe setting up rank for read or write packet?

Implements gem5::memory::MemInterface.

Definition at line 920 of file dram_interface.cc.

References ranks.

◆ sortTime()

static bool gem5::memory::DRAMInterface::sortTime ( const Command cmd,
const Command cmd_next 
)
inlinestaticprivate

Function for sorting Command structures based on timeStamp.

Parameters
aMemory Command
nextMemory Command
Returns
true if timeStamp of Command 1 < timeStamp of Command 2

Definition at line 476 of file dram_interface.hh.

References gem5::memory::DRAMInterface::Command::timeStamp.

Referenced by gem5::memory::DRAMInterface::Rank::flushCmdList().

◆ startup()

void gem5::memory::DRAMInterface::startup ( )
overridevirtual

Iterate through dram ranks and instantiate per rank startup routine.

Reimplemented from gem5::SimObject.

Definition at line 784 of file dram_interface.cc.

References gem5::curTick(), gem5::divCeil(), gem5::VegaISA::r, ranks, gem5::memory::AbstractMemory::system(), gem5::memory::MemInterface::tCK, timeStampOffset, tREFI, and tRP.

Referenced by gem5::memory::HBMCtrl::drainResume().

◆ suspend()

void gem5::memory::DRAMInterface::suspend ( )
overridevirtual

Iterate through DRAM ranks and suspend them.

Reimplemented from gem5::memory::MemInterface.

Definition at line 1020 of file dram_interface.cc.

References gem5::VegaISA::r, and ranks.

◆ writeRespQueueFull()

bool gem5::memory::DRAMInterface::writeRespQueueFull ( ) const
inlineoverridevirtual

This function is NVM specific.

Reimplemented from gem5::memory::MemInterface.

Definition at line 790 of file dram_interface.hh.

◆ writeToReadDelay()

Tick gem5::memory::DRAMInterface::writeToReadDelay ( ) const
inlineoverrideprivatevirtual

Member Data Documentation

◆ activationLimit

const uint32_t gem5::memory::DRAMInterface::activationLimit
private

Definition at line 515 of file dram_interface.hh.

◆ activeRank

uint8_t gem5::memory::DRAMInterface::activeRank
private

Definition at line 531 of file dram_interface.hh.

◆ bankGroupArch

const bool gem5::memory::DRAMInterface::bankGroupArch
private

Definition at line 485 of file dram_interface.hh.

Referenced by DRAMInterface().

◆ bankGroupsPerRank

const uint32_t gem5::memory::DRAMInterface::bankGroupsPerRank
private

DRAM specific device characteristics.

Definition at line 484 of file dram_interface.hh.

Referenced by DRAMInterface().

◆ burstInterleave

const bool gem5::memory::DRAMInterface::burstInterleave
private

Definition at line 513 of file dram_interface.hh.

Referenced by burstDelay().

◆ clkResyncDelay

const Tick gem5::memory::DRAMInterface::clkResyncDelay
private

Definition at line 511 of file dram_interface.hh.

◆ dataClockSync

const bool gem5::memory::DRAMInterface::dataClockSync
private

Definition at line 512 of file dram_interface.hh.

◆ enableDRAMPowerdown

bool gem5::memory::DRAMInterface::enableDRAMPowerdown
private

Enable or disable DRAM powerdown states.

Definition at line 534 of file dram_interface.hh.

Referenced by respondEvent().

◆ lastStatsResetTick

Tick gem5::memory::DRAMInterface::lastStatsResetTick
private

The time when stats were last reset used to calculate average power.

Definition at line 537 of file dram_interface.hh.

◆ maxAccessesPerRow

const uint32_t gem5::memory::DRAMInterface::maxAccessesPerRow
private

Max column accesses (read and write) per row, before forefully closing it.

Definition at line 525 of file dram_interface.hh.

◆ pageMgmt

enums::PageManage gem5::memory::DRAMInterface::pageMgmt
private

Definition at line 520 of file dram_interface.hh.

◆ ranks

std::vector<Rank*> gem5::memory::DRAMInterface::ranks
private

◆ rdToWrDlySameBG

const Tick gem5::memory::DRAMInterface::rdToWrDlySameBG
private

Definition at line 517 of file dram_interface.hh.

◆ stats

DRAMStats gem5::memory::DRAMInterface::stats
private

◆ tAAD

const Tick gem5::memory::DRAMInterface::tAAD
private

Definition at line 507 of file dram_interface.hh.

◆ tBURST_MAX

const Tick gem5::memory::DRAMInterface::tBURST_MAX
private

Definition at line 493 of file dram_interface.hh.

Referenced by burstDelay().

◆ tBURST_MIN

const Tick gem5::memory::DRAMInterface::tBURST_MIN
private

Definition at line 492 of file dram_interface.hh.

◆ tCCD_L

const Tick gem5::memory::DRAMInterface::tCCD_L
private

Definition at line 495 of file dram_interface.hh.

Referenced by DRAMInterface().

◆ tCCD_L_WR

const Tick gem5::memory::DRAMInterface::tCCD_L_WR
private

Definition at line 494 of file dram_interface.hh.

Referenced by DRAMInterface().

◆ timeStampOffset

uint64_t gem5::memory::DRAMInterface::timeStampOffset
private

Definition at line 528 of file dram_interface.hh.

Referenced by startup().

◆ tPPD

const Tick gem5::memory::DRAMInterface::tPPD
private

Definition at line 506 of file dram_interface.hh.

◆ tRAS

const Tick gem5::memory::DRAMInterface::tRAS
private

Definition at line 499 of file dram_interface.hh.

◆ tRCD_RD

const Tick gem5::memory::DRAMInterface::tRCD_RD
private

Definition at line 496 of file dram_interface.hh.

Referenced by accessLatency(), commandOffset(), and minBankPrep().

◆ tRCD_WR

const Tick gem5::memory::DRAMInterface::tRCD_WR
private

Definition at line 497 of file dram_interface.hh.

Referenced by commandOffset(), and minBankPrep().

◆ tREFI

const Tick gem5::memory::DRAMInterface::tREFI
private

Definition at line 503 of file dram_interface.hh.

Referenced by DRAMInterface(), and startup().

◆ tRFC

const Tick gem5::memory::DRAMInterface::tRFC
private

Definition at line 502 of file dram_interface.hh.

Referenced by DRAMInterface().

◆ tRL

const Tick gem5::memory::DRAMInterface::tRL
private

DRAM specific timing requirements.

Definition at line 490 of file dram_interface.hh.

Referenced by accessLatency().

◆ tRP

const Tick gem5::memory::DRAMInterface::tRP
private

Definition at line 498 of file dram_interface.hh.

Referenced by accessLatency(), commandOffset(), DRAMInterface(), minBankPrep(), and startup().

◆ tRRD

const Tick gem5::memory::DRAMInterface::tRRD
private

Definition at line 504 of file dram_interface.hh.

Referenced by DRAMInterface().

◆ tRRD_L

const Tick gem5::memory::DRAMInterface::tRRD_L
private

Definition at line 505 of file dram_interface.hh.

Referenced by DRAMInterface().

◆ tRTP

const Tick gem5::memory::DRAMInterface::tRTP
private

Definition at line 501 of file dram_interface.hh.

◆ tWL

const Tick gem5::memory::DRAMInterface::tWL
private

Definition at line 491 of file dram_interface.hh.

Referenced by writeToReadDelay().

◆ twoCycleActivate

const uint8_t gem5::memory::DRAMInterface::twoCycleActivate
private

Definition at line 514 of file dram_interface.hh.

◆ tWR

const Tick gem5::memory::DRAMInterface::tWR
private

Definition at line 500 of file dram_interface.hh.

◆ tXAW

const Tick gem5::memory::DRAMInterface::tXAW
private

Definition at line 508 of file dram_interface.hh.

◆ tXP

const Tick gem5::memory::DRAMInterface::tXP
private

Definition at line 509 of file dram_interface.hh.

◆ tXS

const Tick gem5::memory::DRAMInterface::tXS
private

Definition at line 510 of file dram_interface.hh.

Referenced by drainRanks(), and isBusy().

◆ wrToRdDlySameBG

const Tick gem5::memory::DRAMInterface::wrToRdDlySameBG
private

Definition at line 516 of file dram_interface.hh.


The documentation for this class was generated from the following files:

Generated on Wed Dec 21 2022 10:24:15 for gem5 by doxygen 1.9.1