gem5 v24.0.0.0
|
Public Member Functions | |
DescCache (IGbE *i, const std::string n, int s) | |
virtual | ~DescCache () |
std::string | name () |
void | areaChanged () |
If the address/len/head change when we've got descriptors that are dirty that is very bad. | |
void | writeback (Addr aMask) |
void | writeback1 () |
void | fetchDescriptors () |
Fetch a chunk of descriptors into the descriptor cache. | |
void | fetchDescriptors1 () |
void | fetchComplete () |
Called by event when dma to read descriptors is completed. | |
void | wbComplete () |
Called by event when dma to writeback descriptors is completed. | |
unsigned | descLeft () const |
unsigned | descUsed () const |
unsigned | descUnused () const |
void | reset () |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. | |
virtual bool | hasOutstandingEvents () |
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. | |
void | serializeSection (CheckpointOut &cp, const std::string &name) const |
void | unserializeSection (CheckpointIn &cp, const char *name) |
Unserialize an a child object. | |
void | unserializeSection (CheckpointIn &cp, const std::string &name) |
Public Attributes | |
std::string | annSmFetch |
Annotate sm. | |
std::string | annSmWb |
std::string | annUnusedDescQ |
std::string | annUsedCacheQ |
std::string | annUsedDescQ |
std::string | annUnusedCacheQ |
std::string | annDescQ |
EventFunctionWrapper | wbDelayEvent |
EventFunctionWrapper | fetchDelayEvent |
EventFunctionWrapper | fetchEvent |
EventFunctionWrapper | wbEvent |
Protected Types | |
typedef std::deque< T * > | CacheType |
Protected Member Functions | |
virtual Addr | descBase () const =0 |
virtual long | descHead () const =0 |
virtual long | descTail () const =0 |
virtual long | descLen () const =0 |
virtual void | updateHead (long h)=0 |
virtual void | enableSm ()=0 |
virtual void | actionAfterWb () |
virtual void | fetchAfterWb ()=0 |
Addr | pciToDma (Addr a) |
Shortcut for DMA address translation. | |
Protected Attributes | |
CacheType | usedCache |
CacheType | unusedCache |
T * | fetchBuf |
T * | wbBuf |
IGbE * | igbe |
std::string | _name |
int | cachePnt |
int | size |
int | curFetching |
int | wbOut |
bool | moreToWb |
Addr | wbAlignment |
EthPacketPtr | pktPtr |
The packet that is currently being dmad to memory if any. | |
Additional Inherited Members | |
Static Public Member Functions inherited from gem5::Serializable | |
static const std::string & | currentSection () |
Gets the fully-qualified name of the active section. | |
static void | generateCheckpointOut (const std::string &cpt_dir, std::ofstream &outstream) |
Generate a checkpoint file so that the serialization can be routed to it. | |
Definition at line 181 of file i8254xGBe.hh.
|
protected |
Definition at line 193 of file i8254xGBe.hh.
gem5::IGbE::DescCache< T >::DescCache | ( | IGbE * | i, |
const std::string | n, | ||
int | s ) |
Definition at line 827 of file i8254xGBe.cc.
References gem5::IGbE::DescCache< T >::writeback1().
|
virtual |
Definition at line 840 of file i8254xGBe.cc.
References gem5::statistics::reset().
|
inlineprotectedvirtual |
Reimplemented in gem5::IGbE::TxDescCache.
Definition at line 190 of file i8254xGBe.hh.
void gem5::IGbE::DescCache< T >::areaChanged | ( | ) |
If the address/len/head change when we've got descriptors that are dirty that is very bad.
This function checks that we don't and if we do panics.
Definition at line 849 of file i8254xGBe.cc.
References panic, and gem5::statistics::reset().
Referenced by gem5::IGbE::write().
|
protectedpure virtual |
Implemented in gem5::IGbE::RxDescCache, and gem5::IGbE::TxDescCache.
|
protectedpure virtual |
Implemented in gem5::IGbE::RxDescCache, and gem5::IGbE::TxDescCache.
|
inline |
Definition at line 272 of file i8254xGBe.hh.
References gem5::IGbE::DescCache< T >::cachePnt, gem5::IGbE::DescCache< T >::descLen(), gem5::IGbE::DescCache< T >::descTail(), and gem5::IGbE::DescCache< T >::unusedCache.
Referenced by gem5::IGbE::ethTxDone(), gem5::IGbE::rxStateMachine(), and gem5::IGbE::txStateMachine().
|
protectedpure virtual |
Implemented in gem5::IGbE::RxDescCache, and gem5::IGbE::TxDescCache.
Referenced by gem5::IGbE::DescCache< T >::descLeft().
|
protectedpure virtual |
Implemented in gem5::IGbE::RxDescCache, and gem5::IGbE::TxDescCache.
Referenced by gem5::IGbE::DescCache< T >::descLeft().
|
inline |
Definition at line 288 of file i8254xGBe.hh.
References gem5::IGbE::DescCache< T >::unusedCache.
Referenced by gem5::IGbE::rxStateMachine(), and gem5::IGbE::txStateMachine().
|
inline |
Definition at line 285 of file i8254xGBe.hh.
References gem5::IGbE::DescCache< T >::usedCache.
Referenced by gem5::IGbE::rxStateMachine().
|
protectedpure virtual |
Implemented in gem5::IGbE::RxDescCache, and gem5::IGbE::TxDescCache.
|
protectedpure virtual |
Implemented in gem5::IGbE::RxDescCache, and gem5::IGbE::TxDescCache.
void gem5::IGbE::DescCache< T >::fetchComplete | ( | ) |
Called by event when dma to read descriptors is completed.
Definition at line 990 of file i8254xGBe.cc.
References DPRINTF, and gem5::RiscvISA::x.
void gem5::IGbE::DescCache< T >::fetchDescriptors | ( | ) |
Fetch a chunk of descriptors into the descriptor cache.
Calls fetchComplete when the memory system returns the data
Definition at line 931 of file i8254xGBe.cc.
References gem5::curTick(), and DPRINTF.
Referenced by gem5::IGbE::rxStateMachine(), gem5::IGbE::txStateMachine(), and gem5::IGbE::write().
void gem5::IGbE::DescCache< T >::fetchDescriptors1 | ( | ) |
Definition at line 970 of file i8254xGBe.cc.
References gem5::curTick(), DPRINTF, gem5::PciDevice::pciToDma(), and gem5::Running.
|
inlinevirtual |
Reimplemented in gem5::IGbE::RxDescCache, and gem5::IGbE::TxDescCache.
Definition at line 298 of file i8254xGBe.hh.
References gem5::IGbE::DescCache< T >::fetchEvent, gem5::Event::scheduled(), and gem5::IGbE::DescCache< T >::wbEvent.
|
inline |
Definition at line 239 of file i8254xGBe.hh.
References gem5::IGbE::DescCache< T >::_name.
|
inlineprotected |
Shortcut for DMA address translation.
Definition at line 229 of file i8254xGBe.hh.
References gem5::ArmISA::a, gem5::IGbE::DescCache< T >::igbe, and gem5::PciDevice::pciToDma().
void gem5::IGbE::DescCache< T >::reset | ( | ) |
Definition at line 1057 of file i8254xGBe.cc.
References DPRINTF, and gem5::RiscvISA::x.
Referenced by gem5::IGbE::write().
|
overridevirtual |
Serialize an object.
Output an object's state into the current checkpoint section.
cp | Checkpoint state |
Implements gem5::Serializable.
Reimplemented in gem5::IGbE::RxDescCache, and gem5::IGbE::TxDescCache.
Definition at line 1074 of file i8254xGBe.cc.
References gem5::arrayParamOut(), gem5::csprintf(), SERIALIZE_SCALAR, and gem5::RiscvISA::x.
Referenced by gem5::IGbE::RxDescCache::serialize(), and gem5::IGbE::TxDescCache::serialize().
|
overridevirtual |
Unserialize an object.
Read an object's state from the current checkpoint section.
cp | Checkpoint state |
Implements gem5::Serializable.
Reimplemented in gem5::IGbE::RxDescCache, and gem5::IGbE::TxDescCache.
Definition at line 1109 of file i8254xGBe.cc.
References gem5::arrayParamIn(), gem5::csprintf(), UNSERIALIZE_SCALAR, and gem5::RiscvISA::x.
Referenced by gem5::IGbE::RxDescCache::unserialize(), and gem5::IGbE::TxDescCache::unserialize().
|
protectedpure virtual |
Implemented in gem5::IGbE::RxDescCache, and gem5::IGbE::TxDescCache.
void gem5::IGbE::DescCache< T >::wbComplete | ( | ) |
Called by event when dma to writeback descriptors is completed.
Definition at line 1018 of file i8254xGBe.cc.
References DPRINTF, gem5::ArmISA::writeback, and gem5::RiscvISA::x.
void gem5::IGbE::DescCache< T >::writeback | ( | Addr | aMask | ) |
Definition at line 859 of file i8254xGBe.cc.
References gem5::curTick(), and DPRINTF.
Referenced by gem5::IGbE::radvProcess(), gem5::IGbE::rdtrProcess(), gem5::IGbE::rxStateMachine(), gem5::IGbE::tadvProcess(), gem5::IGbE::tidvProcess(), gem5::IGbE::txStateMachine(), and gem5::IGbE::DescCache< igbreg::RxDesc >::wbComplete().
void gem5::IGbE::DescCache< T >::writeback1 | ( | ) |
Definition at line 907 of file i8254xGBe.cc.
References gem5::curTick(), DPRINTF, gem5::PciDevice::pciToDma(), gem5::Running, and gem5::RiscvISA::x.
Referenced by gem5::IGbE::DescCache< T >::DescCache().
|
protected |
Definition at line 204 of file i8254xGBe.hh.
Referenced by gem5::IGbE::DescCache< T >::name().
std::string gem5::IGbE::DescCache< T >::annDescQ |
Definition at line 234 of file i8254xGBe.hh.
std::string gem5::IGbE::DescCache< T >::annSmFetch |
Annotate sm.
Definition at line 233 of file i8254xGBe.hh.
std::string gem5::IGbE::DescCache< T >::annSmWb |
Definition at line 233 of file i8254xGBe.hh.
std::string gem5::IGbE::DescCache< T >::annUnusedCacheQ |
Definition at line 234 of file i8254xGBe.hh.
std::string gem5::IGbE::DescCache< T >::annUnusedDescQ |
Definition at line 233 of file i8254xGBe.hh.
std::string gem5::IGbE::DescCache< T >::annUsedCacheQ |
Definition at line 233 of file i8254xGBe.hh.
std::string gem5::IGbE::DescCache< T >::annUsedDescQ |
Definition at line 234 of file i8254xGBe.hh.
|
protected |
Definition at line 207 of file i8254xGBe.hh.
Referenced by gem5::IGbE::DescCache< T >::descLeft().
|
protected |
Definition at line 213 of file i8254xGBe.hh.
|
protected |
Definition at line 197 of file i8254xGBe.hh.
EventFunctionWrapper gem5::IGbE::DescCache< T >::fetchDelayEvent |
Definition at line 256 of file i8254xGBe.hh.
EventFunctionWrapper gem5::IGbE::DescCache< T >::fetchEvent |
Definition at line 261 of file i8254xGBe.hh.
Referenced by gem5::IGbE::DescCache< T >::hasOutstandingEvents().
|
protected |
Definition at line 201 of file i8254xGBe.hh.
Referenced by gem5::IGbE::DescCache< T >::pciToDma().
|
protected |
Definition at line 220 of file i8254xGBe.hh.
|
protected |
The packet that is currently being dmad to memory if any.
Definition at line 226 of file i8254xGBe.hh.
|
protected |
Definition at line 210 of file i8254xGBe.hh.
|
protected |
Definition at line 195 of file i8254xGBe.hh.
Referenced by gem5::IGbE::DescCache< T >::descLeft(), and gem5::IGbE::DescCache< T >::descUnused().
|
protected |
Definition at line 194 of file i8254xGBe.hh.
Referenced by gem5::IGbE::DescCache< T >::descUsed().
|
protected |
Definition at line 223 of file i8254xGBe.hh.
|
protected |
Definition at line 198 of file i8254xGBe.hh.
EventFunctionWrapper gem5::IGbE::DescCache< T >::wbDelayEvent |
Definition at line 249 of file i8254xGBe.hh.
EventFunctionWrapper gem5::IGbE::DescCache< T >::wbEvent |
Definition at line 266 of file i8254xGBe.hh.
Referenced by gem5::IGbE::DescCache< T >::hasOutstandingEvents().
|
protected |
Definition at line 216 of file i8254xGBe.hh.