Go to the documentation of this file.
46 #ifndef __MEM_CTRL_HH__
47 #define __MEM_CTRL_HH__
51 #include <unordered_set>
57 #include "enums/MemSched.hh"
60 #include "params/MemCtrl.hh"
203 uint8_t _bank, uint32_t _row, uint16_t bank_id,
Addr _addr,
400 Tick extra_col_delay);
411 Tick extra_col_delay);
661 Tick max_multi_cmd_split = 0);
705 virtual void init()
override;
706 virtual void startup()
override;
721 #endif //__MEM_CTRL_HH__
This is a simple scalar statistic, like a counter.
const uint32_t readBufferSize
The following are basic design parameters of the memory controller, and are initialized based on para...
Tick curTick()
The universal simulation clock.
statistics::Formula requestorReadRate
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Interface to NVM devices with media specific parameters, statistics, and functions.
const Tick backendLatency
Pipeline latency of the backend and PHY.
DRAMInterface *const dram
Create pointer to interface of the actual dram media when connected.
statistics::Scalar bytesReadWrQ
const std::string name() const
Return port name (for DPRINTF).
EventFunctionWrapper nextReqEvent
bool recvTimingReq(PacketPtr) override
Receive a timing request from the peer.
BurstHelper * burstHelper
A pointer to the BurstHelper if this MemPacket is a split packet If not a split packet (common case),...
Tick readyTime
When will request leave the controller.
unsigned int size
The size of this dram packet in bytes It is always equal or smaller than the burst size.
bool isWrite() const
Return true if its a write packet (interface compatibility with Packet)
std::unordered_set< Addr > isInWriteQueue
To avoid iterating over the write queue to check for overlapping transactions, maintain a set of burs...
Tick recvAtomicBackdoor(PacketPtr pkt, MemBackdoorPtr &backdoor)
statistics::Vector requestorWriteAccesses
MemoryPort(const std::string &name, MemCtrl &_ctrl)
void addToWriteQueue(PacketPtr pkt, unsigned int pkt_count, bool is_dram)
Decode the incoming pkt, create a mem_pkt and push to the back of the write queue.
void restartScheduler(Tick tick)
restart the controller This can be used by interfaces to restart the scheduler after maintainence com...
void processRespondEvent()
Tick verifySingleCmd(Tick cmd_tick, Tick max_cmds_per_burst)
Check for command bus contention for single cycle command.
statistics::Vector requestorReadTotalLat
const PacketPtr pkt
This comes from the outside world.
The memory controller is a single-channel memory controller capturing the most important timing const...
A stat that calculates the per tick average of a value.
const uint32_t writeBufferSize
A vector of scalar stats.
EventFunctionWrapper respondEvent
virtual void startup() override
startup() is the final initialization call before simulation.
statistics::Vector requestorWriteTotalLat
std::vector< MemPacketQueue > & selQueue(bool is_read)
Select either the read or write queue.
enums::MemSched memSchedPolicy
Memory controller configuration initialized based on parameter values.
bool packetReady(MemPacket *pkt)
Determine if there is a packet that can issue.
const PortID InvalidPortID
statistics::Vector readPktSize
MemCtrl(const MemCtrlParams &p)
statistics::Formula avgGap
statistics::Scalar bytesReadSys
bool inReadBusState(bool next_state) const
Check the current direction of the memory channel.
bool retryRdReq
Remember if we have to retry a request when available.
statistics::Vector requestorReadAccesses
Interface to DRAM devices with media specific parameters, statistics, and functions.
const Tick entryTime
When did request enter the controller.
NVMInterface *const nvm
Create pointer to interface of the actual nvm media when connected.
statistics::Average avgWrQLen
Tick recvAtomic(PacketPtr pkt)
statistics::Vector writePktSize
std::vector< MemPacketQueue > writeQueue
const uint32_t writeHighThreshold
bool respondEventScheduled() const
Is there a respondEvent scheduled?
DrainState
Object drain/handover states.
bool inWriteBusState(bool next_state) const
Check the current direction of the memory channel.
uint8_t schedule(RequestorID id, uint64_t data)
void accessAndRespond(PacketPtr pkt, Tick static_latency)
When a packet reaches its "readyTime" in the response Q, use the "access()" method in AbstractMemory ...
Addr addr
The starting address of the packet.
statistics::Scalar neitherReadNorWriteReqs
Tick minWriteToReadDataGap()
Calculate the minimum delay used when scheduling a write-to-read transision.
MemoryPort port
Our incoming port, for a multi-ported controller add a crossbar in front of it.
Tick nextBurstAt
Till when must we wait before issuing next RD/WR burst?
void processNextReqEvent()
Bunch of things requires to setup "events" in gem5 When event "respondEvent" occurs for example,...
statistics::Vector requestorReadBytes
statistics::Scalar numWrRetry
A queued port is a port that has an infinite queue for outgoing packets and thus decouples the module...
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
statistics::Formula requestorReadAvgLat
bool readQueueFull(unsigned int pkt_count) const
Check if the read queue has room for more entries.
uint64_t Tick
Tick count type.
bool isDram() const
Return true if its a DRAM access.
void recvFunctional(PacketPtr pkt)
bool recvTimingReq(PacketPtr pkt)
A memory packet stores packets along with the timestamp of when the packet entered the queue,...
DrainState drain() override
Draining is the process of clearing out the states of SimObjects.These are the SimObjects that are pa...
virtual void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
void qosValue(const uint8_t qv)
Set the packet QoS value (interface compatibility with Packet)
void pruneBurstTick()
Remove commands that have already issued from burstTicks.
std::unique_ptr< Packet > pendingDelete
Upstream caches need this packet until true is returned, so hold it for deletion until a subsequent c...
uint8_t _qosValue
QoS value of the encapsulated packet read at queuing time.
bool allIntfDrained() const
Ensure that all interfaced have drained commands.
statistics::Vector rdQLenPdf
MemPacketQueue::iterator chooseNextFRFCFS(MemPacketQueue &queue, Tick extra_col_delay)
For FR-FCFS policy reorder the read/write queue depending on row buffer hits and earliest bursts avai...
statistics::Scalar bytesWrittenSys
void recvFunctional(PacketPtr pkt) override
Receive a functional request packet from the peer.
statistics::Scalar writeReqs
unsigned int burstsServiced
Number of bursts serviced so far for a system packet.
void regStats() override
Callback to set stat parameters.
RequestorID requestorId() const
Get the packet RequestorID (interface compatibility with Packet)
bool isTimingMode
Remember if the memory system is in timing mode.
uint8_t qosValue() const
Get the packet QoS value (interface compatibility with Packet)
statistics::Scalar numRdRetry
statistics::Formula avgRdBWSys
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
std::deque< MemPacket * > respQueue
Response queue where read packets wait after we're done working with them, but it's not time to send ...
const Tick frontendLatency
Pipeline latency of the controller frontend.
BurstHelper(unsigned int _burstCount)
statistics::Vector wrQLenPdf
Tick recvAtomicBackdoor(PacketPtr pkt, MemBackdoorPtr &backdoor) override
Receive an atomic request packet from the peer, and optionally provide a backdoor to the data being a...
statistics::Scalar servicedByWrQ
statistics::Scalar totGap
std::vector< MemPacketQueue > readQueue
The controller's main read and write queues, with support for QoS reordering.
statistics::Scalar readBursts
Addr getAddr() const
Get the packet address (interface compatibility with Packet)
bool requestEventScheduled() const
Is there a read/write burst Event scheduled?
std::unordered_multiset< Tick > burstTicks
Holds count of commands issued in burst window starting at defined Tick.
statistics::Formula requestorWriteRate
statistics::Scalar readReqs
void doBurstAccess(MemPacket *mem_pkt)
Actually do the burst based on media specific access function.
Tick minReadToWriteDataGap()
Calculate the minimum delay used when scheduling a read-to-write transision.
const uint32_t writeLowThreshold
const RequestorID _requestorId
RequestorID associated with the packet.
AddrRangeList getAddrRanges() const override
Get a list of the non-overlapping address ranges the owner is responsible for.
Tick verifyMultiCmd(Tick cmd_tick, Tick max_cmds_per_burst, Tick max_multi_cmd_split=0)
Check for command bus contention for multi-cycle (2 currently) command.
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Tick recvAtomic(PacketPtr pkt) override
Receive an atomic request packet from the peer.
Ports are used to interface objects to each other.
const uint8_t rank
Will be populated by address decoder.
const bool dram
Does this packet access DRAM?
Addr burstAlign(Addr addr, bool is_dram) const
Burst-align an address.
bool writeQueueFull(unsigned int pkt_count) const
Check if the write queue has room for more entries.
unsigned int getSize() const
Get the packet size (interface compatibility with Packet)
statistics::Scalar writeBursts
statistics::Histogram rdPerTurnAround
statistics::Formula requestorWriteAvgLat
A burst helper helps organize and manage a packet that is larger than the memory burst size.
Tick getBurstWindow(Tick cmd_tick)
Calculate burst window aligned tick.
The qos::MemCtrl is a base class for Memory objects which support QoS - it provides access to a set o...
MemPacketQueue::iterator chooseNext(MemPacketQueue &queue, Tick extra_col_delay)
The memory schduler/arbiter - picks which request needs to go next, based on the specified policy suc...
statistics::Formula avgWrBWSys
std::deque< MemPacket * > MemPacketQueue
const uint32_t minWritesPerSwitch
virtual void drainResume() override
Resume execution after a successful drain.
const Tick commandWindow
Length of a command window, used to check command bandwidth.
statistics::Scalar mergedWrBursts
void printQs() const
Used for debugging to observe the contents of the queues.
Tick nextReqTime
The soonest you have to start thinking about the next request is the longest access time that can occ...
const unsigned int burstCount
Number of bursts requred for a system packet.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
bool isRead() const
Return true if its a read packet (interface compatibility with Packet)
statistics::Average avgRdQLen
void addToReadQueue(PacketPtr pkt, unsigned int pkt_count, bool is_dram)
When a new read comes in, first check if the write q has a pending request to the same address....
statistics::Histogram wrPerTurnAround
const uint16_t bankId
Bank id is calculated considering banks in all the ranks eg: 2 ranks each with 8 banks,...
MemPacket(PacketPtr _pkt, bool is_read, bool is_dram, uint8_t _rank, uint8_t _bank, uint32_t _row, uint16_t bank_id, Addr _addr, unsigned int _size)
statistics::Vector requestorWriteBytes
bool scheduled() const
Determine if the current event is scheduled.
Generated on Tue Sep 7 2021 14:53:48 for gem5 by doxygen 1.8.17