gem5
v20.0.0.0
|
Generic representation of an Arm interrupt pin. More...
#include <base_gic.hh>
Public Member Functions | |
void | setThreadContext (ThreadContext *tc) |
Set the thread context owning this interrupt. More... | |
uint32_t | num () const |
Get interrupt number. More... | |
virtual void | raise ()=0 |
Signal an interrupt. More... | |
virtual void | clear ()=0 |
Clear a signalled interrupt. More... | |
Protected Member Functions | |
ArmInterruptPin (Platform *platform, ThreadContext *tc, uint32_t int_num) | |
ContextID | targetContext () const |
Get the target context ID of this interrupt. More... | |
Protected Attributes | |
const ThreadContext * | threadContext |
Pointer to the thread context that owns this interrupt in case it is a thread-/CPU-private interrupt. More... | |
RealView *const | platform |
Arm platform to use for interrupt generation. More... | |
const uint32_t | intNum |
Interrupt number to generate. More... | |
Friends | |
class | ArmInterruptPinGen |
Generic representation of an Arm interrupt pin.
Definition at line 176 of file base_gic.hh.
|
protected |
Definition at line 121 of file base_gic.cc.
|
pure virtual |
Clear a signalled interrupt.
Implemented in ArmPPI, and ArmSPI.
Referenced by ArmISA::PMU::clearInterrupt(), and MmioVirtIO::setInterrupts().
|
inline |
Get interrupt number.
Definition at line 194 of file base_gic.hh.
|
pure virtual |
Signal an interrupt.
Implemented in ArmPPI, and ArmSPI.
Referenced by ArchTimer::counterLimitReached(), ArmISA::PMU::raiseInterrupt(), MmioVirtIO::setInterrupts(), CpuLocalTimer::Timer::timerAtZero(), Gicv3CPUInterface::virtualUpdate(), and CpuLocalTimer::Timer::watchdogAtZero().
void ArmInterruptPin::setThreadContext | ( | ThreadContext * | tc | ) |
Set the thread context owning this interrupt.
This method is used to set the thread context for interrupts that are thread/CPU-specific. Only devices that are used in such a context are expected to call this method.
Definition at line 130 of file base_gic.cc.
References panic_if, and threadContext.
|
protected |
Get the target context ID of this interrupt.
Definition at line 139 of file base_gic.cc.
References ThreadContext::contextId(), panic_if, and threadContext.
Referenced by ArmPPI::clear(), and ArmPPI::raise().
|
friend |
Definition at line 178 of file base_gic.hh.
|
protected |
Interrupt number to generate.
Definition at line 220 of file base_gic.hh.
Referenced by ArmSPI::clear(), ArmPPI::clear(), ArmSPI::raise(), and ArmPPI::raise().
|
protected |
Arm platform to use for interrupt generation.
Definition at line 217 of file base_gic.hh.
Referenced by ArmInterruptPin(), ArmSPI::clear(), ArmPPI::clear(), ArmSPI::raise(), and ArmPPI::raise().
|
protected |
Pointer to the thread context that owns this interrupt in case it is a thread-/CPU-private interrupt.
Definition at line 214 of file base_gic.hh.
Referenced by setThreadContext(), and targetContext().