gem5  v22.1.0.0
Public Member Functions | Protected Attributes | List of all members
gem5::DramGen Class Reference

DRAM specific generator is for issuing request with variable page hit length and bank utilization. More...

#include <dram_gen.hh>

Inheritance diagram for gem5::DramGen:
gem5::RandomGen gem5::StochasticGen gem5::BaseGen gem5::DramRotGen

Public Member Functions

 DramGen (SimObject &obj, RequestorID requestor_id, Tick _duration, Addr start_addr, Addr end_addr, Addr _blocksize, Addr cacheline_size, Tick min_period, Tick max_period, uint8_t read_percent, Addr data_limit, unsigned int num_seq_pkts, unsigned int page_size, unsigned int nbr_of_banks_DRAM, unsigned int nbr_of_banks_util, enums::AddrMap addr_mapping, unsigned int nbr_of_ranks)
 Create a DRAM address sequence generator. More...
 
PacketPtr getNextPacket ()
 Get the next generated packet. More...
 
void genStartAddr (unsigned int new_bank, unsigned int new_rank)
 Insert bank, rank, and column bits into packed address to create address for 1st command in a series. More...
 
- Public Member Functions inherited from gem5::RandomGen
 RandomGen (SimObject &obj, RequestorID requestor_id, Tick _duration, Addr start_addr, Addr end_addr, Addr _blocksize, Addr cacheline_size, Tick min_period, Tick max_period, uint8_t read_percent, Addr data_limit)
 Create a random address sequence generator. More...
 
void enter ()
 Enter this generator state. More...
 
PacketPtr getNextPacket ()
 Get the next generated packet. More...
 
Tick nextPacketTick (bool elastic, Tick delay) const
 Determine the tick when the next packet is available. More...
 
- Public Member Functions inherited from gem5::StochasticGen
 StochasticGen (SimObject &obj, RequestorID requestor_id, Tick _duration, Addr start_addr, Addr end_addr, Addr _blocksize, Addr cacheline_size, Tick min_period, Tick max_period, uint8_t read_percent, Addr data_limit)
 
- Public Member Functions inherited from gem5::BaseGen
 BaseGen (SimObject &obj, RequestorID requestor_id, Tick _duration)
 Create a base generator. More...
 
virtual ~BaseGen ()
 
std::string name () const
 Get the name, useful for DPRINTFs. More...
 
virtual void exit ()
 Exit this generator state. More...
 

Protected Attributes

const unsigned int numSeqPkts
 Number of sequential DRAM packets to be generated per cpu request. More...
 
unsigned int countNumSeqPkts
 Track number of sequential packets generated for a request
More...
 
Addr addr
 Address of request. More...
 
bool isRead
 Remember type of requests to be generated in series. More...
 
const unsigned int pageSize
 Page size of DRAM. More...
 
const unsigned int pageBits
 Number of page bits in DRAM address. More...
 
const unsigned int bankBits
 Number of bank bits in DRAM address. More...
 
const unsigned int blockBits
 Number of block bits in DRAM address. More...
 
const unsigned int nbrOfBanksDRAM
 Number of banks in DRAM. More...
 
const unsigned int nbrOfBanksUtil
 Number of banks to be utilized for a given configuration. More...
 
enums::AddrMap addrMapping
 Address mapping to be used. More...
 
const unsigned int rankBits
 Number of rank bits in DRAM address. More...
 
const unsigned int nbrOfRanks
 Number of ranks to be utilized for a given configuration. More...
 
- Protected Attributes inherited from gem5::RandomGen
Addr dataManipulated
 Counter to determine the amount of data manipulated. More...
 
- Protected Attributes inherited from gem5::StochasticGen
const Addr startAddr
 Start of address range. More...
 
const Addr endAddr
 End of address range. More...
 
const Addr blocksize
 Blocksize and address increment. More...
 
const Addr cacheLineSize
 Cache line size in the simulated system. More...
 
const Tick minPeriod
 Request generation period. More...
 
const Tick maxPeriod
 
const uint8_t readPercent
 Percent of generated transactions that should be reads. More...
 
const Addr dataLimit
 Maximum amount of data to manipulate. More...
 
- Protected Attributes inherited from gem5::BaseGen
const std::string _name
 Name to use for status and debug printing. More...
 
const RequestorID requestorId
 The RequestorID used for generating requests. More...
 

Additional Inherited Members

- Public Attributes inherited from gem5::BaseGen
const Tick duration
 Time to spend in this state. More...
 
- Protected Member Functions inherited from gem5::BaseGen
PacketPtr getPacket (Addr addr, unsigned size, const MemCmd &cmd, Request::FlagsType flags=0)
 Generate a new request and associated packet. More...
 

Detailed Description

DRAM specific generator is for issuing request with variable page hit length and bank utilization.

Currently assumes a single channel configuration.

Definition at line 61 of file dram_gen.hh.

Constructor & Destructor Documentation

◆ DramGen()

gem5::DramGen::DramGen ( SimObject obj,
RequestorID  requestor_id,
Tick  _duration,
Addr  start_addr,
Addr  end_addr,
Addr  _blocksize,
Addr  cacheline_size,
Tick  min_period,
Tick  max_period,
uint8_t  read_percent,
Addr  data_limit,
unsigned int  num_seq_pkts,
unsigned int  page_size,
unsigned int  nbr_of_banks_DRAM,
unsigned int  nbr_of_banks_util,
enums::AddrMap  addr_mapping,
unsigned int  nbr_of_ranks 
)

Create a DRAM address sequence generator.

Parameters
objSimObject owning this sequence generator
requestor_idRequestorID related to the memory requests
_durationduration of this state before transitioning
start_addrStart address
end_addrEnd address
_blocksizeSize used for transactions injected
cacheline_sizecache line size in the system
min_periodLower limit of random inter-transaction time
max_periodUpper limit of random inter-transaction time
read_percentPercent of transactions that are reads
data_limitUpper limit on how much data to read/write
num_seq_pktsNumber of packets per stride, each of _blocksize
page_sizePage size (bytes) used in the DRAM
nbr_of_banks_DRAMTotal number of banks in DRAM
nbr_of_banks_utilNumber of banks to utilized, for N banks, we will use banks: 0->(N-1)
addr_mappingAddress mapping to be used, assumes single channel system

Definition at line 50 of file dram_gen.cc.

References fatal.

Member Function Documentation

◆ genStartAddr()

void gem5::DramGen::genStartAddr ( unsigned int  new_bank,
unsigned int  new_rank 
)

Insert bank, rank, and column bits into packed address to create address for 1st command in a series.

Parameters
new_bankBank number of next packet series
new_rankRank value of next packet series

Definition at line 146 of file dram_gen.cc.

References addr, addrMapping, bankBits, blockBits, gem5::StochasticGen::blocksize, gem5::StochasticGen::endAddr, numSeqPkts, pageBits, pageSize, gem5::Random::random(), gem5::random_mt, rankBits, gem5::replaceBits(), and gem5::StochasticGen::startAddr.

Referenced by getNextPacket(), and gem5::DramRotGen::getNextPacket().

◆ getNextPacket()

PacketPtr gem5::DramGen::getNextPacket ( )
virtual

Member Data Documentation

◆ addr

Addr gem5::DramGen::addr
protected

Address of request.

Definition at line 118 of file dram_gen.hh.

Referenced by genStartAddr(), getNextPacket(), and gem5::DramRotGen::getNextPacket().

◆ addrMapping

enums::AddrMap gem5::DramGen::addrMapping
protected

Address mapping to be used.

Definition at line 142 of file dram_gen.hh.

Referenced by genStartAddr(), getNextPacket(), and gem5::DramRotGen::getNextPacket().

◆ bankBits

const unsigned int gem5::DramGen::bankBits
protected

Number of bank bits in DRAM address.

Definition at line 130 of file dram_gen.hh.

Referenced by genStartAddr(), getNextPacket(), and gem5::DramRotGen::getNextPacket().

◆ blockBits

const unsigned int gem5::DramGen::blockBits
protected

Number of block bits in DRAM address.

Definition at line 133 of file dram_gen.hh.

Referenced by genStartAddr(), getNextPacket(), and gem5::DramRotGen::getNextPacket().

◆ countNumSeqPkts

unsigned int gem5::DramGen::countNumSeqPkts
protected

Track number of sequential packets generated for a request

Definition at line 115 of file dram_gen.hh.

Referenced by getNextPacket(), and gem5::DramRotGen::getNextPacket().

◆ isRead

bool gem5::DramGen::isRead
protected

Remember type of requests to be generated in series.

Definition at line 121 of file dram_gen.hh.

Referenced by getNextPacket(), and gem5::DramRotGen::getNextPacket().

◆ nbrOfBanksDRAM

const unsigned int gem5::DramGen::nbrOfBanksDRAM
protected

Number of banks in DRAM.

Definition at line 136 of file dram_gen.hh.

Referenced by getNextPacket(), and gem5::DramRotGen::getNextPacket().

◆ nbrOfBanksUtil

const unsigned int gem5::DramGen::nbrOfBanksUtil
protected

Number of banks to be utilized for a given configuration.

Definition at line 139 of file dram_gen.hh.

Referenced by getNextPacket(), and gem5::DramRotGen::getNextPacket().

◆ nbrOfRanks

const unsigned int gem5::DramGen::nbrOfRanks
protected

Number of ranks to be utilized for a given configuration.

Definition at line 148 of file dram_gen.hh.

Referenced by getNextPacket(), and gem5::DramRotGen::getNextPacket().

◆ numSeqPkts

const unsigned int gem5::DramGen::numSeqPkts
protected

Number of sequential DRAM packets to be generated per cpu request.

Definition at line 112 of file dram_gen.hh.

Referenced by genStartAddr(), getNextPacket(), and gem5::DramRotGen::getNextPacket().

◆ pageBits

const unsigned int gem5::DramGen::pageBits
protected

Number of page bits in DRAM address.

Definition at line 127 of file dram_gen.hh.

Referenced by genStartAddr(), getNextPacket(), and gem5::DramRotGen::getNextPacket().

◆ pageSize

const unsigned int gem5::DramGen::pageSize
protected

Page size of DRAM.

Definition at line 124 of file dram_gen.hh.

Referenced by genStartAddr(), getNextPacket(), and gem5::DramRotGen::getNextPacket().

◆ rankBits

const unsigned int gem5::DramGen::rankBits
protected

Number of rank bits in DRAM address.

Definition at line 145 of file dram_gen.hh.

Referenced by genStartAddr(), getNextPacket(), and gem5::DramRotGen::getNextPacket().


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

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