42 #include "params/ArmInterruptPin.hh" 43 #include "params/ArmPPI.hh" 44 #include "params/ArmSPI.hh" 45 #include "params/BaseGic.hh" 51 RealView *
const rv(dynamic_cast<RealView*>(p->platform));
57 fatal_if(!rv,
"GIC model can't register with platform code");
102 panic_if(!tc,
"Invalid Thread Context\n");
105 auto pin_it =
pins.find(cid);
107 if (pin_it !=
pins.end()) {
109 return pin_it->second;
112 auto p =
static_cast<const ArmPPIParams *
>(
_params);
115 pins.insert({cid, pin});
123 : threadContext(tc), platform(dynamic_cast<
RealView*>(_platform)),
133 "InterruptLine::setThreadContext called twice\n");
142 "call to InterruptLine::setThreadContext.\n");
147 Platform *_platform, uint32_t int_num)
183 ArmSPIParams::create()
189 ArmPPIParams::create()
const uint32_t intNum
Interrupt number to generate.
ArmInterruptPinGen(const ArmInterruptPinParams *p)
void raise() override
Signal an interrupt.
RealView *const platform
Arm platform to use for interrupt generation.
virtual void clearInt(uint32_t num)=0
Clear an interrupt from a device that is connected to the GIC.
ArmSPIGen(const ArmSPIParams *p)
void clear() override
Clear a signalled interrupt.
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
ArmPPIGen(const ArmPPIParams *p)
Shared Peripheral Interrupt Generator It is capable of generating one interrupt only: it maintains a ...
Declaration of top level class for the RealView platform chips.
ArmSPI(Platform *platform, uint32_t int_num)
ThreadContext is the external interface to all thread state for anything outside of the CPU...
ContextID targetContext() const
Get the target context ID of this interrupt.
virtual void sendPPInt(uint32_t num, uint32_t cpu)=0
Interface call for private peripheral interrupts.
virtual void sendInt(uint32_t num)=0
Post an interrupt from a device that is connected to the GIC.
ArmInterruptPin * get(ThreadContext *tc=nullptr) override
void setThreadContext(ThreadContext *tc)
Set the thread context owning this interrupt.
ArmPPI(Platform *platform, ThreadContext *tc, uint32_t int_num)
void raise() override
Signal an interrupt.
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
void clear() override
Clear a signalled interrupt.
This device is the base class which all devices senstive to an address range inherit from...
ArmInterruptPin(Platform *platform, ThreadContext *tc, uint32_t int_num)
ArmInterruptPin * get(ThreadContext *tc=nullptr) override
const ThreadContext * threadContext
Pointer to the thread context that owns this interrupt in case it is a thread-/CPU-private interrupt...
void setGIC(BaseGic *gic)
Sets the pointer to the GIC.
Base class for ARM GIC implementations.
void setGic(BaseGic *_gic)
Give platform a pointer to interrupt controller.
std::unordered_map< ContextID, ArmPPI * > pins
const SimObjectParams * _params
Cached copy of the object parameters.
This SimObject is instantiated in the python world and serves as an ArmInterruptPin generator...
virtual ContextID contextId() const =0
Private Peripheral Interrupt Generator Since PPIs are banked in the GIC, this class is capable of gen...
ArmSystem * getSystem() const
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Generic representation of an Arm interrupt pin.
Abstract superclass for simulation objects.
int ContextID
Globally unique thread context ID.
virtual void clearPPInt(uint32_t num, uint32_t cpu)=0
const Params * params() const