Go to the documentation of this file.
46 #include "debug/Checkpoint.hh"
47 #include "debug/GIC.hh"
48 #include "debug/IPI.hh"
49 #include "debug/Interrupt.hh"
69 gicdPIDR(
p.gicd_pidr),
70 gicdIIDR(
p.gicd_iidr),
71 giccIIDR(
p.gicc_iidr),
75 distPioDelay(
p.dist_pio_delay),
76 cpuPioDelay(
p.cpu_pio_delay), intLatency(
p.int_latency),
77 enabled(
false), haveGem5Extensions(
p.gem5_extensions),
79 intEnabled {}, pendingInt {}, activeInt {},
80 intPriority {}, intConfig {}, cpuTarget {},
81 cpuSgiPending {}, cpuSgiActive {},
82 cpuSgiPendingExt {}, cpuSgiActiveExt {},
83 cpuPpiPending {}, cpuPpiActive {},
84 pendingDelayedInterrupts(0)
86 for (
int x = 0;
x < CPU_MAX;
x++) {
89 cpuPriority[
x] = 0xff;
90 cpuBpr[
x] = GICC_BPR_MINIMUM;
92 cpuHighestInt[
x] = SPURIOUS_INT;
94 new EventFunctionWrapper([
this,
x]{ postDelayedInt(
x); },
95 "Post Interrupt to CPU");
97 new EventFunctionWrapper([
this,
x]{ postDelayedFiq(
x); },
100 DPRINTF(Interrupt,
"cpuEnabled[0]=%d cpuEnabled[1]=%d\n", cpuEnabled(0),
103 gem5ExtensionsEnabled =
false;
119 if (distRange.contains(
addr))
133 if (distRange.contains(
addr))
138 panic(
"Write to unknown address %#x\n", pkt->
getAddr());
144 const Addr daddr = pkt->
getAddr() - distRange.start();
147 DPRINTF(GIC,
"gic distributor read register %#x\n", daddr);
153 pkt->
setLE<uint8_t>(resp);
156 pkt->
setLE<uint16_t>(resp);
159 pkt->
setLE<uint32_t>(resp);
162 panic(
"Invalid size while reading Distributor regs in GIC: %d\n",
240 DPRINTF(GIC,
"Reading processor target register for int# %#x \n",
247 assert(resp_sz == 4);
248 int_num =
mbits(int_num, 31, 2);
284 panic(
"Tried to read Gic distributor at offset %#x\n", daddr);
294 assert(pkt->
req->hasContextId());
296 assert(ctx < sys->threads.numRunning());
298 DPRINTF(GIC,
"gic cpu read register %#x cpu context: %d\n", daddr, ctx);
322 iar.ack_id = active_int;
328 "Interrupt %d active but no CPU generated it?\n",
334 if (cpugen & (1 << ctx)) {
339 uint64_t sgi_num = 1ULL << (ctx + 8 * iar.cpu_id);
343 uint64_t sgi_num = 1ULL << iar.ack_id;
366 "CPU %d reading IAR.id=%d IAR.cpu=%d, iar=0x%x\n",
367 ctx, iar.ack_id, iar.cpu_id, iar);
380 panic(
"Need to implement HPIR");
383 panic(
"Tried to read Gic cpu at offset %#x\n", daddr);
391 const Addr daddr = pkt->
getAddr() - distRange.start();
393 assert(pkt->
req->hasContextId());
395 const size_t data_sz = pkt->
getSize();
397 GEM5_VAR_USED uint32_t pkt_data;
401 pkt_data = pkt->
getLE<uint8_t>();
404 pkt_data = pkt->
getLE<uint16_t>();
407 pkt_data = pkt->
getLE<uint32_t>();
410 panic(
"Invalid size when writing to priority regs in Gic: %d\n",
414 DPRINTF(GIC,
"gic distributor write register %#x size %#x value %#x \n",
415 daddr, data_sz, pkt_data);
497 panic(
"Invalid size when writing to priority regs in Gic: %d\n",
511 unsigned ix = int_num -
offset;
515 assert (data_sz == 4);
533 warn(
"GIC N:N mode selected and not supported at this time\n");
547 DPRINTF(GIC,
"gem5 extensions %s\n",
554 panic(
"Tried to write Gic distributor at offset %#x\n", daddr);
564 assert(pkt->
req->hasContextId());
566 const uint32_t
data = pkt->
getLE<uint32_t>();
568 DPRINTF(GIC,
"gic cpu write register cpu:%d %#x val: %#x\n",
588 auto bpr =
data & 0x7;
595 const IAR iar =
data;
598 uint64_t clr_int = 1ULL << (ctx + 8 * iar.cpu_id);
601 panic(
"Done handling a SGI that isn't active?\n");
607 uint32_t int_num = 1 << (iar.ack_id -
SGI_MAX);
609 warn(
"CPU %d Done handling a PPI interrupt "
610 "that isn't active?\n", ctx);
615 warn(
"Done handling interrupt that isn't active: %d\n",
621 ctx, iar.ack_id, iar.cpu_id);
628 warn(
"GIC APRn write ignored because not implemented: %#x\n", daddr);
631 warn(
"GIC DIR write ignored because not implemented: %#x\n", daddr);
634 panic(
"Tried to write Gic cpu at offset %#x\n", daddr);
654 switch (swi.list_type) {
657 int dest = swi.cpu_list;
658 DPRINTF(IPI,
"Generating softIRQ from CPU %d for CPU %d\n",
662 DPRINTF(IPI,
"SGI[%d]=%#x\n", dest,
669 DPRINTF(IPI,
"Processing CPU %d\n",
i);
673 DPRINTF(IPI,
"SGI[%d]=%#x\n", swi.sgi_id,
679 DPRINTF(IPI,
"Generating softIRQ from CPU %d for CPU %d\n",
683 DPRINTF(IPI,
"SGI[%d]=%#x\n", ctx,
689 switch (swi.list_type) {
700 swi.cpu_list = 1 << ctx;
705 DPRINTF(IPI,
"Generating softIRQ from CPU %d for %#x\n", ctx,
708 DPRINTF(IPI,
"Processing CPU %d\n",
i);
711 if (swi.cpu_list & (1 <<
i))
713 DPRINTF(IPI,
"SGI[%d]=%#x\n", swi.sgi_id,
724 return 0x0101010101010101ULL << cpu;
751 for (
int swi = 0; swi <
SGI_MAX; swi++) {
764 for (
int ppi_idx = 0, int_num =
SGI_MAX;
766 ppi_idx++, int_num++) {
770 const bool higher_priority =
773 if (ppi_pending && ppi_enabled && higher_priority) {
775 highest_int = int_num;
786 DPRINTF(GIC,
"Checking for interrupt# %d \n",int_nm);
799 highest_int = int_nm;
827 if (
isFiq(cpu, highest_int)) {
842 uint8_t maxPriority = 0xff;
861 iccrpr[cpu] = maxPriority;
872 panic(
"Multiple targets for peripheral interrupts is not supported\n");
874 "sentInt() must only be used for interrupts 32 and higher");
895 "Received Clear interrupt number %d, cpuTarget %#x:\n",
926 if (
isFiq(ctx, int_num)) {
1000 DPRINTF(Checkpoint,
"Serializing Arm GIC\n");
1045 DPRINTF(Checkpoint,
"Unserializing Arm GIC\n");
1074 for (uint32_t cpu = 0; cpu <
CPU_MAX; cpu++) {
1075 if (interrupt_time[cpu])
void clearInt(ContextID ctx, uint32_t int_num)
Clears a cpu IRQ or FIQ signal.
uint32_t activeInt
GICD_I{S,C}ACTIVER0 interrupt active bits for first 32 interrupts, 1b per interrupt.
Tick curTick()
The universal simulation clock.
uint32_t iccrpr[CPU_MAX]
read only running priority register, 1 per cpu
void serialize(CheckpointOut &cp) const override
Serialize an object.
Addr start() const
Get the start address of the range.
static const AddrRange GICD_IPRIORITYR
const Tick intLatency
Latency for a interrupt to get to CPU.
Tick writeDistributor(PacketPtr pkt)
Handle a write to the distributor portion of the GIC.
uint32_t cpuPpiPending[CPU_MAX]
One bit per private peripheral interrupt.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
uint32_t activeInt[INT_BITS_MAX-1]
GICD_I{S,C}ACTIVER{1..31} interrupt active bits for global interrupts 1b per interrupt,...
#define UNSERIALIZE_SCALAR(scalar)
void softInt(ContextID ctx, SWI swi)
software generated interrupt
uint32_t & getActiveInt(ContextID ctx, uint32_t ix)
AddrRange RangeSize(Addr start, Addr size)
uint32_t & getIntGroup(ContextID ctx, uint32_t ix)
uint32_t pendingInt[INT_BITS_MAX-1]
GICD_I{S,C}PENDR{1..31} interrupt pending bits for global interrupts 1b per interrupt,...
void drainResume() override
Resume execution after a successful drain.
uint32_t cpuPpiActive[CPU_MAX]
static const int INT_LINES_MAX
RequestPtr req
A pointer to the original request.
static const AddrRange GICD_ISPENDR
bool contains(const Addr &a) const
Determine if the range contains an address.
void postDelayedInt(uint32_t cpu)
Deliver a delayed interrupt to the target CPU.
static const AddrRange GICD_ICPENDR
void schedule(Event &event, Tick when)
std::string csprintf(const char *format, const Args &...args)
void makeAtomicResponse()
uint32_t cpuSgiPendingExt[CPU_MAX]
SGI pending arrays for gem5 GIC extension mode, which instead keeps 16 SGI pending bits for each of t...
constexpr T mbits(T val, unsigned first, unsigned last)
Mask off the given bits in place like bits() but without shifting.
static const int SPURIOUS_INT
void updateRunPri()
Update the register that records priority of the highest priority active interrupt.
BankedRegs & getBankedRegs(ContextID)
const Tick cpuPioDelay
Latency for a cpu operation.
std::vector< BankedRegs * > bankedRegs
int pendingDelayedInterrupts
void postDelayedFiq(uint32_t cpu)
uint64_t cpuSgiActive[SGI_MAX]
constexpr uint64_t mask(unsigned nbits)
Generate a 64-bit mask of 'nbits' 1s, right justified.
Tick readCpu(PacketPtr pkt)
Handle a read to the cpu portion of the GIC.
uint32_t pendingInt
GICD_I{S,C}PENDR0 interrupt pending bits for first 32 interrupts, 1b per interrupt.
uint32_t intEnabled[INT_BITS_MAX-1]
GICD_I{S,C}ENABLER{1..31} interrupt enable bits for global interrupts 1b per interrupt,...
bool cpuEnabled(ContextID ctx) const
CPU enabled: Checks if GICC_CTLR.EnableGrp0 or EnableGrp1 are set.
static const AddrRange GICD_IGROUPR
uint32_t intConfig[INT_BITS_MAX *2 - 2]
GICD_ICFGR{2...63} 2 bit per interrupt signaling if it's level or edge sensitive and if it is 1:N or ...
void sendInt(uint32_t number) override
Post an interrupt from a device that is connected to the GIC.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
DrainState
Object drain/handover states.
bool isLevelSensitive(ContextID ctx, uint32_t int_num)
uint64_t genSwiMask(int cpu)
generate a bit mask to check cpuSgi for an interrupt.
int intNumToBit(int num) const
Bitfield< 23, 16 > cpu_list
uint8_t & getIntPriority(ContextID ctx, uint32_t ix)
uint32_t cpuSgiActiveExt[CPU_MAX]
EventFunctionWrapper * postFiqEvent[CPU_MAX]
static const int GLOBAL_INT_LINES
bool isFiq(ContextID ctx, uint32_t int_num)
This method checks if an interrupt ID must be signaled or has been signaled as a FIQ to the cpu.
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
CTLR cpuControl[CPU_MAX]
GICC_CTLR: CPU interface control register.
const bool haveGem5Extensions
Are gem5 extensions available?
const Tick distPioDelay
Latency for a distributor operation.
uint64_t Tick
Tick count type.
uint32_t intEnabled
GICD_I{S,C}ENABLER0 interrupt enable bits for first 32 interrupts, 1b per interrupt.
void serialize(CheckpointOut &cp) const override
Serialize an object.
static const AddrRange GICD_ISENABLER
EventQueue * eventq
A pointer to this object's event queue.
uint32_t intGroup[INT_BITS_MAX-1]
GICD_IGROUPR{1..31} interrupt group bits for global interrupts 1b per interrupt, 32 bits per word,...
#define UNSERIALIZE_OPT_SCALAR(scalar)
static const int INT_BITS_MAX
virtual void updateIntState(int hint)
See if some processor interrupt flags need to be enabled/disabled.
uint32_t & getIntEnabled(ContextID ctx, uint32_t ix)
void postFiq(uint32_t cpu, Tick when)
Tick write(PacketPtr pkt) override
A PIO read to the device, immediately split up into writeDistributor() or writeCpu()
Registers "banked for each connected processor" per ARM IHI0048B.
uint32_t intGroup
GICD_IGROUPR0 interrupt group bits for first 32 interrupts, 1b per interrupt.
static const AddrRange GICD_ICFGR
Tick writeCpu(PacketPtr pkt)
Handle a write to the cpu portion of the GIC.
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
static const AddrRange GICD_ICENABLER
static const AddrRange GICD_ISACTIVER
Tick read(PacketPtr pkt) override
A PIO read to the device, immediately split up into readDistributor() or readCpu()
#define SERIALIZE_ARRAY(member, size)
@ Drained
Buffers drained, ready for serialization/handover.
bool gem5ExtensionsEnabled
gem5 many-core extension enabled by driver
uint8_t cpuPriority[CPU_MAX]
CPU priority.
uint8_t getCpuPriority(unsigned cpu)
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Tick readDistributor(PacketPtr pkt)
Handle a read to the distributor portion of the GIC.
uint64_t cpuSgiPending[SGI_MAX]
One bit per cpu per software interrupt that is pending for each possible sgi source.
#define SERIALIZE_SCALAR(scalar)
uint32_t & getIntConfig(ContextID ctx, uint32_t ix)
Reads the GICD_ICFGRn register.
static const std::string & currentSection()
Gets the fully-qualified name of the active section.
void clearPPInt(uint32_t num, uint32_t cpu) override
bool supportsVersion(GicVersion version) override
Check if version supported.
void signalDrainDone() const
Signal that an object is drained.
uint8_t cpuTarget[GLOBAL_INT_LINES]
GICD_ITARGETSR{8..255} an 8 bit cpu target id for each global interrupt.
uint32_t itLines
Number of itLines enabled.
static const AddrRange GICD_ITARGETSR
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
uint8_t intPriority[SGI_MAX+PPI_MAX]
GICD_IPRIORITYR{0..7} interrupt priority for SGIs and PPIs.
bool sectionExists(const std::string §ion)
uint32_t & getPendingInt(ContextID ctx, uint32_t ix)
#define UNSERIALIZE_ARRAY(member, size)
void postInt(uint32_t cpu, Tick when)
Post an interrupt to a CPU with a delay.
static const AddrRange GICD_ICACTIVER
uint8_t getCpuTarget(ContextID ctx, uint32_t ix) const
uint32_t intConfig[2]
GICD_ICFGR0, GICD_ICFGR1 interrupt config bits for first 32 interrupts, 2b per interrupt.
int ContextID
Globally unique thread context ID.
uint8_t intPriority[GLOBAL_INT_LINES]
GICD_IPRIORITYR{8..255} an 8 bit priority (lower is higher priority) for each of the global (not repl...
T getLE() const
Get the data in the packet byte swapped from little endian to host endian.
void schedule(Event *event, Tick when, bool global=false)
Schedule the given event on this queue.
std::ostream CheckpointOut
EventFunctionWrapper * postIntEvent[CPU_MAX]
static const int GICC_BPR_MINIMUM
minimum value for Binary Point Register ("IMPLEMENTATION DEFINED"); chosen for consistency with Linux...
uint8_t cpuBpr[CPU_MAX]
Binary point registers.
void setLE(T v)
Set the value in the data pointer to v as little endian.
bool entryExists(const std::string §ion, const std::string &entry)
const EndBitUnion(CTLR) protected AddrRange cpuRange
Address range for the distributor interface.
int intNumToWord(int num) const
static const int SGI_MASK
Mask off SGI's when setting/clearing pending bits.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
DrainState drain() override
Draining is the process of clearing out the states of SimObjects.These are the SimObjects that are pa...
void sendPPInt(uint32_t num, uint32_t cpu) override
Interface call for private peripheral interrupts.
static const int NN_CONFIG_MASK
Mask for bits that config N:N mode in GICD_ICFGR's.
uint32_t cpuHighestInt[CPU_MAX]
highest interrupt that is interrupting CPU
@ Draining
Draining buffers pending serialization/handover.
#define panic(...)
This implements a cprintf based panic() function.
Generated on Tue Sep 7 2021 14:53:45 for gem5 by doxygen 1.8.17