gem5 v24.0.0.0
|
Counter element for PIT. More...
#include <intel_8254_timer.hh>
Classes | |
class | CounterEvent |
Event for counter interrupt. More... | |
Public Member Functions | |
Counter (Intel8254Timer *p, const std::string &name, unsigned int num) | |
unsigned int | index () const |
void | latchCount () |
Latch the current count (if one is not already latched) | |
int | currentCount () |
Get the current count for this counter. | |
void | setRW (int rw_val) |
Set the read/write mode. | |
void | setMode (int mode_val) |
Set operational mode. | |
void | setBCD (int bcd_val) |
Set count encoding. | |
uint8_t | read () |
Read a count byte. | |
void | write (const uint8_t data) |
Write a count byte. | |
bool | outputHigh () |
Is the output high? | |
void | serialize (const std::string &base, CheckpointOut &cp) const |
Serialize this object to the given output stream. | |
void | unserialize (const std::string &base, CheckpointIn &cp) |
Reconstruct the state of this object from a checkpoint. | |
void | startup () |
Start ticking. | |
Private Types | |
enum | { LSB , MSB } |
Set of values for read_byte and write_byte. More... | |
Private Member Functions | |
const std::string & | name () const |
Private Attributes | |
std::string | _name |
unsigned int | num |
CounterEvent | event |
bool | running |
True after startup is called. | |
uint16_t | initial_count |
Initial count value. | |
uint16_t | latched_count |
Latched count. | |
uint16_t | period |
Interrupt period. | |
Tick | offset |
When to start ticking. | |
uint8_t | mode |
Current mode of operation. | |
bool | output_high |
Output goes high when the counter reaches zero. | |
bool | latch_on |
State of the count latch. | |
uint8_t | read_byte |
Determine which byte of a 16-bit count value to read/write. | |
uint8_t | write_byte |
Intel8254Timer * | parent |
Pointer to container. | |
Counter element for PIT.
Definition at line 94 of file intel_8254_timer.hh.
|
private |
Set of values for read_byte and write_byte.
Enumerator | |
---|---|
LSB | |
MSB |
Definition at line 155 of file intel_8254_timer.hh.
gem5::Intel8254Timer::Counter::Counter | ( | Intel8254Timer * | p, |
const std::string & | name, | ||
unsigned int | num ) |
Definition at line 102 of file intel_8254_timer.cc.
References gem5::MipsISA::event, gem5::ArmISA::mode, offset, and period.
int gem5::Intel8254Timer::Counter::currentCount | ( | ) |
Get the current count for this counter.
Definition at line 124 of file intel_8254_timer.cc.
References gem5::Intel8254Timer::mode, gem5::Intel8254Timer::RateGen, gem5::Intel8254Timer::SquareWave, and warn_once.
|
inline |
Definition at line 166 of file intel_8254_timer.hh.
References num.
void gem5::Intel8254Timer::Counter::latchCount | ( | ) |
Latch the current count (if one is not already latched)
Definition at line 113 of file intel_8254_timer.cc.
|
inlineprivate |
Definition at line 124 of file intel_8254_timer.hh.
References _name.
bool gem5::Intel8254Timer::Counter::outputHigh | ( | ) |
Is the output high?
Definition at line 228 of file intel_8254_timer.cc.
uint8_t gem5::Intel8254Timer::Counter::read | ( | ) |
Read a count byte.
Definition at line 138 of file intel_8254_timer.cc.
References gem5::Intel8254Timer::count, and panic.
void gem5::Intel8254Timer::Counter::serialize | ( | const std::string & | base, |
CheckpointOut & | cp ) const |
Serialize this object to the given output stream.
base | The base name of the counter object. |
os | The stream to serialize to. |
Definition at line 234 of file intel_8254_timer.cc.
References gem5::X86ISA::base, gem5::curTick(), gem5::MipsISA::event, gem5::Intel8254Timer::mode, and gem5::paramOut().
void gem5::Intel8254Timer::Counter::setBCD | ( | int | bcd_val | ) |
void gem5::Intel8254Timer::Counter::setMode | ( | int | mode_val | ) |
Set operational mode.
Definition at line 211 of file intel_8254_timer.cc.
References gem5::Intel8254Timer::InitTc, gem5::Intel8254Timer::mode, panic, gem5::Intel8254Timer::RateGen, and gem5::Intel8254Timer::SquareWave.
void gem5::Intel8254Timer::Counter::setRW | ( | int | rw_val | ) |
Set the read/write mode.
Definition at line 204 of file intel_8254_timer.cc.
References panic, and gem5::Intel8254Timer::TwoPhase.
void gem5::Intel8254Timer::Counter::startup | ( | ) |
Start ticking.
Definition at line 271 of file intel_8254_timer.cc.
References gem5::curTick(), gem5::MipsISA::event, and gem5::ArmISA::offset.
void gem5::Intel8254Timer::Counter::unserialize | ( | const std::string & | base, |
CheckpointIn & | cp ) |
Reconstruct the state of this object from a checkpoint.
base | The base name of the counter object. |
cp | The checkpoint use. |
section | The section name of this object |
Definition at line 253 of file intel_8254_timer.cc.
References gem5::X86ISA::base, gem5::MipsISA::event, gem5::Intel8254Timer::mode, gem5::ArmISA::offset, and gem5::paramIn().
void gem5::Intel8254Timer::Counter::write | ( | const uint8_t | data | ) |
Write a count byte.
Definition at line 172 of file intel_8254_timer.cc.
References data, gem5::MipsISA::event, gem5::Intel8254Timer::mode, gem5::ArmISA::offset, gem5::Intel8254Timer::RateGen, and gem5::Intel8254Timer::SquareWave.
|
private |
Definition at line 123 of file intel_8254_timer.hh.
Referenced by name().
|
private |
Definition at line 128 of file intel_8254_timer.hh.
|
private |
Initial count value.
Definition at line 134 of file intel_8254_timer.hh.
|
private |
State of the count latch.
Definition at line 152 of file intel_8254_timer.hh.
|
private |
Latched count.
Definition at line 137 of file intel_8254_timer.hh.
|
private |
Current mode of operation.
Definition at line 146 of file intel_8254_timer.hh.
|
private |
Definition at line 126 of file intel_8254_timer.hh.
Referenced by index().
|
private |
|
private |
Output goes high when the counter reaches zero.
Definition at line 149 of file intel_8254_timer.hh.
Referenced by gem5::Intel8254Timer::Counter::CounterEvent::process().
|
private |
Pointer to container.
Definition at line 161 of file intel_8254_timer.hh.
|
private |
|
private |
Determine which byte of a 16-bit count value to read/write.
Definition at line 158 of file intel_8254_timer.hh.
|
private |
True after startup is called.
Definition at line 131 of file intel_8254_timer.hh.
|
private |
Definition at line 158 of file intel_8254_timer.hh.