gem5  v20.0.0.3
gic_v2.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010, 2013, 2015-2019 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2005 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 
46 #ifndef __DEV_ARM_GICV2_H__
47 #define __DEV_ARM_GICV2_H__
48 
49 #include <vector>
50 
51 #include "base/addr_range.hh"
52 #include "base/bitunion.hh"
53 #include "cpu/intr_control.hh"
54 #include "dev/arm/base_gic.hh"
55 #include "dev/io_device.hh"
56 #include "dev/platform.hh"
57 #include "params/GicV2.hh"
58 
59 class GicV2 : public BaseGic, public BaseGicRegisters
60 {
61  protected:
62  // distributor memory addresses
63  enum {
64  GICD_CTLR = 0x000, // control register
65  GICD_TYPER = 0x004, // controller type
66  GICD_IIDR = 0x008, // implementer id
67  GICD_SGIR = 0xf00, // software generated interrupt
68  GICD_PIDR0 = 0xfe0, // distributor peripheral ID0
69  GICD_PIDR1 = 0xfe4, // distributor peripheral ID1
70  GICD_PIDR2 = 0xfe8, // distributor peripheral ID2
71  GICD_PIDR3 = 0xfec, // distributor peripheral ID3
72 
73  DIST_SIZE = 0x1000,
74  };
75 
76  const uint32_t gicdPIDR;
77  const uint32_t gicdIIDR;
78  const uint32_t giccIIDR;
79 
80  static const AddrRange GICD_IGROUPR; // interrupt group (unimplemented)
81  static const AddrRange GICD_ISENABLER; // interrupt set enable
82  static const AddrRange GICD_ICENABLER; // interrupt clear enable
83  static const AddrRange GICD_ISPENDR; // set pending interrupt
84  static const AddrRange GICD_ICPENDR; // clear pending interrupt
85  static const AddrRange GICD_ISACTIVER; // active bit registers
86  static const AddrRange GICD_ICACTIVER; // clear bit registers
87  static const AddrRange GICD_IPRIORITYR; // interrupt priority registers
88  static const AddrRange GICD_ITARGETSR; // processor target registers
89  static const AddrRange GICD_ICFGR; // interrupt config registers
90 
91  // cpu memory addresses
92  enum {
93  GICC_CTLR = 0x00, // CPU control register
94  GICC_PMR = 0x04, // Interrupt priority mask
95  GICC_BPR = 0x08, // binary point register
96  GICC_IAR = 0x0C, // interrupt ack register
97  GICC_EOIR = 0x10, // end of interrupt
98  GICC_RPR = 0x14, // running priority
99  GICC_HPPIR = 0x18, // highest pending interrupt
100  GICC_ABPR = 0x1c, // aliased binary point
101  GICC_APR0 = 0xd0, // active priority register 0
102  GICC_APR1 = 0xd4, // active priority register 1
103  GICC_APR2 = 0xd8, // active priority register 2
104  GICC_APR3 = 0xdc, // active priority register 3
105  GICC_IIDR = 0xfc, // cpu interface id register
106  GICC_DIR = 0x1000, // deactive interrupt register
107  };
108 
109  static const int SGI_MAX = 16; // Number of Software Gen Interrupts
110  static const int PPI_MAX = 16; // Number of Private Peripheral Interrupts
111 
113  static const int SGI_MASK = 0xFFFF0000;
114 
116  static const int NN_CONFIG_MASK = 0x55555555;
117 
118  static const int CPU_MAX = 256; // Max number of supported CPU interfaces
119  static const int SPURIOUS_INT = 1023;
120  static const int INT_BITS_MAX = 32;
121  static const int INT_LINES_MAX = 1020;
122  static const int GLOBAL_INT_LINES = INT_LINES_MAX - SGI_MAX - PPI_MAX;
123 
126  static const int GICC_BPR_MINIMUM = 2;
127 
128  BitUnion32(SWI)
129  Bitfield<3,0> sgi_id;
130  Bitfield<23,16> cpu_list;
131  Bitfield<25,24> list_type;
132  EndBitUnion(SWI)
133 
134  BitUnion32(IAR)
135  Bitfield<9,0> ack_id;
136  Bitfield<12,10> cpu_id;
137  EndBitUnion(IAR)
138 
139  BitUnion32(CTLR)
140  Bitfield<3> fiqEn;
141  Bitfield<1> enableGrp1;
142  Bitfield<0> enableGrp0;
144 
145  protected: /* Params */
147  const AddrRange distRange;
148 
150  const AddrRange cpuRange;
151 
154 
157 
160 
163 
164  protected:
166  bool enabled;
167 
169  const bool haveGem5Extensions;
170 
173 
175  uint32_t itLines;
176 
178  struct BankedRegs : public Serializable {
181  uint32_t intEnabled;
182 
185  uint32_t pendingInt;
186 
189  uint32_t activeInt;
190 
193  uint32_t intGroup;
194 
197  uint8_t intPriority[SGI_MAX + PPI_MAX];
198 
199  void serialize(CheckpointOut &cp) const override;
200  void unserialize(CheckpointIn &cp) override;
201 
203  intEnabled(0), pendingInt(0), activeInt(0),
204  intGroup(0), intPriority {0}
205  {}
206  };
208 
210 
214  uint32_t intEnabled[INT_BITS_MAX-1];
215 
216  uint32_t& getIntEnabled(ContextID ctx, uint32_t ix) {
217  if (ix == 0) {
218  return getBankedRegs(ctx).intEnabled;
219  } else {
220  return intEnabled[ix - 1];
221  }
222  }
223 
227  uint32_t pendingInt[INT_BITS_MAX-1];
228 
229  uint32_t& getPendingInt(ContextID ctx, uint32_t ix) {
230  assert(ix < INT_BITS_MAX);
231  if (ix == 0) {
232  return getBankedRegs(ctx).pendingInt;
233  } else {
234  return pendingInt[ix - 1];
235  }
236  }
237 
241  uint32_t activeInt[INT_BITS_MAX-1];
242 
243  uint32_t& getActiveInt(ContextID ctx, uint32_t ix) {
244  assert(ix < INT_BITS_MAX);
245  if (ix == 0) {
246  return getBankedRegs(ctx).activeInt;
247  } else {
248  return activeInt[ix - 1];
249  }
250  }
251 
255  uint32_t intGroup[INT_BITS_MAX-1];
256 
257  uint32_t& getIntGroup(ContextID ctx, uint32_t ix) {
258  assert(ix < INT_BITS_MAX);
259  if (ix == 0) {
260  return getBankedRegs(ctx).intGroup;
261  } else {
262  return intGroup[ix - 1];
263  }
264  }
265 
267  uint32_t iccrpr[CPU_MAX];
268 
274 
275  uint8_t& getIntPriority(ContextID ctx, uint32_t ix) {
276  assert(ix < INT_LINES_MAX);
277  if (ix < SGI_MAX + PPI_MAX) {
278  return getBankedRegs(ctx).intPriority[ix];
279  } else {
280  return intPriority[ix - (SGI_MAX + PPI_MAX)];
281  }
282  }
283 
287  uint8_t getIntConfig(ContextID ctx, uint32_t ix) {
288  assert(ix < INT_LINES_MAX);
289  const uint8_t cfg_low = intNumToBit(ix * 2);
290  const uint8_t cfg_hi = cfg_low + 1;
291  return bits(intConfig[intNumToWord(ix * 2)], cfg_hi, cfg_low);
292  }
293 
298 
299  uint8_t getCpuTarget(ContextID ctx, uint32_t ix) {
300  assert(ctx < sys->numRunningContexts());
301  assert(ix < INT_LINES_MAX);
302  if (ix < SGI_MAX + PPI_MAX) {
303  // "GICD_ITARGETSR0 to GICD_ITARGETSR7 are read-only, and each
304  // field returns a value that corresponds only to the processor
305  // reading the register."
306  uint32_t ctx_mask;
307  if (gem5ExtensionsEnabled) {
308  ctx_mask = ctx;
309  } else {
310  fatal_if(ctx >= 8,
311  "%s requires the gem5_extensions parameter to support "
312  "more than 8 cores\n", name());
313  // convert the CPU id number into a bit mask
314  ctx_mask = 1 << ctx;
315  }
316  return ctx_mask;
317  } else {
318  return cpuTarget[ix - 32];
319  }
320  }
321 
324  uint32_t intConfig[INT_BITS_MAX*2];
325 
326  bool isLevelSensitive(ContextID ctx, uint32_t ix) {
327  if (ix == SPURIOUS_INT) {
328  return false;
329  } else {
330  return bits(getIntConfig(ctx, ix), 1) == 0;
331  }
332  }
333 
334  bool isGroup0(ContextID ctx, uint32_t int_num) {
335  const uint32_t group_reg = getIntGroup(ctx, intNumToWord(int_num));
336  return !bits(group_reg, intNumToBit(int_num));
337  }
338 
349  bool isFiq(ContextID ctx, uint32_t int_num) {
350  const bool is_group0 = isGroup0(ctx, int_num);
351  const bool use_fiq = cpuControl[ctx].fiqEn;
352 
353  if (is_group0 && use_fiq) {
354  return true;
355  } else {
356  return false;
357  }
358  }
359 
363  bool cpuEnabled(ContextID ctx) const {
364  return cpuControl[ctx].enableGrp0 ||
365  cpuControl[ctx].enableGrp1;
366  }
367 
372 
375  uint8_t getCpuPriority(unsigned cpu); // BPR-adjusted priority value
376 
378  uint8_t cpuBpr[CPU_MAX];
379 
382 
389 
395 
400 
404  void softInt(ContextID ctx, SWI swi);
405 
409  virtual void updateIntState(int hint);
410 
413  void updateRunPri();
414 
416  uint64_t genSwiMask(int cpu);
417 
418  int intNumToWord(int num) const { return num >> 5; }
419  int intNumToBit(int num) const { return num % 32; }
420 
422  void clearInt(ContextID ctx, uint32_t int_num);
423 
427  void postInt(uint32_t cpu, Tick when);
428  void postFiq(uint32_t cpu, Tick when);
429 
433  void postDelayedInt(uint32_t cpu);
434  void postDelayedFiq(uint32_t cpu);
435 
439 
440  public:
441  typedef GicV2Params Params;
442  const Params *
443  params() const
444  {
445  return dynamic_cast<const Params *>(_params);
446  }
447  GicV2(const Params *p);
448  ~GicV2();
449 
450  DrainState drain() override;
451  void drainResume() override;
452 
453  void serialize(CheckpointOut &cp) const override;
454  void unserialize(CheckpointIn &cp) override;
455 
456  public: /* PioDevice */
457  AddrRangeList getAddrRanges() const override { return addrRanges; }
458 
462  Tick read(PacketPtr pkt) override;
463 
467  Tick write(PacketPtr pkt) override;
468 
469  public: /* BaseGic */
470  void sendInt(uint32_t number) override;
471  void clearInt(uint32_t number) override;
472 
473  void sendPPInt(uint32_t num, uint32_t cpu) override;
474  void clearPPInt(uint32_t num, uint32_t cpu) override;
475 
476  bool supportsVersion(GicVersion version) override;
477 
478  protected:
483  uint32_t readDistributor(ContextID ctx, Addr daddr,
484  size_t resp_sz);
485  uint32_t readDistributor(ContextID ctx, Addr daddr) override {
486  return readDistributor(ctx, daddr, 4);
487  }
488 
492  Tick readCpu(PacketPtr pkt);
493  uint32_t readCpu(ContextID ctx, Addr daddr) override;
494 
499  void writeDistributor(ContextID ctx, Addr daddr,
500  uint32_t data, size_t data_sz);
501  void writeDistributor(ContextID ctx, Addr daddr,
502  uint32_t data) override {
503  return writeDistributor(ctx, daddr, data, 4);
504  }
505 
509  Tick writeCpu(PacketPtr pkt);
510  void writeCpu(ContextID ctx, Addr daddr, uint32_t data) override;
511 };
512 
513 #endif //__DEV_ARM_GIC_H__
uint32_t cpuSgiActiveExt[CPU_MAX]
Definition: gic_v2.hh:394
void clearInt(ContextID ctx, uint32_t int_num)
Clears a cpu IRQ or FIQ signal.
Definition: gic_v2.cc:913
static const int GLOBAL_INT_LINES
Definition: gic_v2.hh:122
Bitfield< 23, 16 > cpu_list
Definition: gic_v2.hh:130
static const AddrRange GICD_IGROUPR
Definition: gic_v2.hh:80
EndBitUnion(CTLR) protected const AddrRange cpuRange
Address range for the distributor interface.
Definition: gic_v2.hh:143
Registers "banked for each connected processor" per ARM IHI0048B.
Definition: gic_v2.hh:178
const uint32_t gicdIIDR
Definition: gic_v2.hh:77
uint32_t intEnabled[INT_BITS_MAX-1]
GICD_I{S,C}ENABLER{1..31} interrupt enable bits for global interrupts 1b per interrupt, 32 bits per word, 31 words.
Definition: gic_v2.hh:214
ack_id
Definition: gic_v2.hh:135
uint32_t iccrpr[CPU_MAX]
read only running priority register, 1 per cpu
Definition: gic_v2.hh:267
sgi_id
Definition: gic_v2.hh:129
static const int PPI_MAX
Definition: gic_v2.hh:110
uint32_t readDistributor(ContextID ctx, Addr daddr) override
Definition: gic_v2.hh:485
static const AddrRange GICD_ISENABLER
Definition: gic_v2.hh:81
CTLR cpuControl[CPU_MAX]
GICC_CTLR: CPU interface control register.
Definition: gic_v2.hh:371
GicV2(const Params *p)
Definition: gic_v2.cc:62
uint32_t activeInt
GICD_I{S,C}ACTIVER0 interrupt active bits for first 32 interrupts, 1b per interrupt.
Definition: gic_v2.hh:189
static const AddrRange GICD_ICENABLER
Definition: gic_v2.hh:82
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...
Definition: gic_v2.hh:273
void softInt(ContextID ctx, SWI swi)
software generated interrupt
Definition: gic_v2.cc:646
uint32_t & getActiveInt(ContextID ctx, uint32_t ix)
Definition: gic_v2.hh:243
uint32_t pendingInt[INT_BITS_MAX-1]
GICD_I{S,C}PENDR{1..31} interrupt pending bits for global interrupts 1b per interrupt, 32 bits per word, 31 words.
Definition: gic_v2.hh:227
EndBitUnion(SWI) BitUnion32(IAR) Bitfield< 9
Tick readCpu(PacketPtr pkt)
Handle a read to the cpu portion of the GIC.
Definition: gic_v2.cc:288
uint8_t cpuBpr[CPU_MAX]
Binary point registers.
Definition: gic_v2.hh:378
static const int SGI_MASK
Mask off SGI&#39;s when setting/clearing pending bits.
Definition: gic_v2.hh:113
Tick write(PacketPtr pkt) override
A PIO read to the device, immediately split up into writeDistributor() or writeCpu() ...
Definition: gic_v2.cc:124
uint32_t pendingInt
GICD_I{S,C}PENDR0 interrupt pending bits for first 32 interrupts, 1b per interrupt.
Definition: gic_v2.hh:185
EventFunctionWrapper * postFiqEvent[CPU_MAX]
Definition: gic_v2.hh:437
static const int INT_LINES_MAX
Definition: gic_v2.hh:121
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: gic_v2.cc:1029
Definition: cprintf.cc:40
const Tick intLatency
Latency for a interrupt to get to CPU.
Definition: gic_v2.hh:162
bool isGroup0(ContextID ctx, uint32_t int_num)
Definition: gic_v2.hh:334
virtual void updateIntState(int hint)
See if some processor interrupt flags need to be enabled/disabled.
Definition: gic_v2.cc:735
static const AddrRange GICD_ISACTIVER
Definition: gic_v2.hh:85
static const AddrRange GICD_IPRIORITYR
Definition: gic_v2.hh:87
bool isLevelSensitive(ContextID ctx, uint32_t ix)
Definition: gic_v2.hh:326
DrainState
Object drain/handover states.
Definition: drain.hh:71
const Tick distPioDelay
Latency for a distributor operation.
Definition: gic_v2.hh:156
STL vector class.
Definition: stl.hh:37
bool gem5ExtensionsEnabled
gem5 many-core extension enabled by driver
Definition: gic_v2.hh:172
uint8_t intPriority[SGI_MAX+PPI_MAX]
GICD_IPRIORITYR{0..7} interrupt priority for SGIs and PPIs.
Definition: gic_v2.hh:197
uint8_t & getIntPriority(ContextID ctx, uint32_t ix)
Definition: gic_v2.hh:275
Tick read(PacketPtr pkt) override
A PIO read to the device, immediately split up into readDistributor() or readCpu() ...
Definition: gic_v2.cc:110
uint32_t cpuPpiActive[CPU_MAX]
Definition: gic_v2.hh:399
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
Definition: addr_range.hh:68
static const int SPURIOUS_INT
Definition: gic_v2.hh:119
static const int NN_CONFIG_MASK
Mask for bits that config N:N mode in GICD_ICFGR&#39;s.
Definition: gic_v2.hh:116
uint32_t intEnabled
GICD_I{S,C}ENABLER0 interrupt enable bits for first 32 interrupts, 1b per interrupt.
Definition: gic_v2.hh:181
const uint32_t gicdPIDR
Definition: gic_v2.hh:76
Tick readDistributor(PacketPtr pkt)
Handle a read to the distributor portion of the GIC.
Definition: gic_v2.cc:137
static const int CPU_MAX
Definition: gic_v2.hh:118
AddrRangeList getAddrRanges() const override
Every PIO device is obliged to provide an implementation that returns the address ranges the device r...
Definition: gic_v2.hh:457
uint64_t cpuSgiPending[SGI_MAX]
One bit per cpu per software interrupt that is pending for each possible sgi source.
Definition: gic_v2.hh:387
uint32_t intGroup[INT_BITS_MAX-1]
GICD_IGROUPR{1..31} interrupt group bits for global interrupts 1b per interrupt, 32 bits per word...
Definition: gic_v2.hh:255
uint64_t Tick
Tick count type.
Definition: types.hh:61
uint64_t genSwiMask(int cpu)
generate a bit mask to check cpuSgi for an interrupt.
Definition: gic_v2.cc:716
int intNumToWord(int num) const
Definition: gic_v2.hh:418
static const int SGI_MAX
Definition: gic_v2.hh:109
const AddrRangeList addrRanges
All address ranges used by this GIC.
Definition: gic_v2.hh:153
Bitfield< 25, 24 > list_type
Definition: gic_v2.hh:131
bool supportsVersion(GicVersion version) override
Check if version supported.
Definition: gic_v2.cc:951
uint64_t cpuSgiActive[SGI_MAX]
Definition: gic_v2.hh:388
bool cpuEnabled(ContextID ctx) const
CPU enabled: Checks if GICC_CTLR.EnableGrp0 or EnableGrp1 are set.
Definition: gic_v2.hh:363
uint8_t cpuPriority[CPU_MAX]
CPU priority.
Definition: gic_v2.hh:374
Bitfield< 0 > enableGrp0
Definition: gic_v2.hh:142
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
Definition: logging.hh:199
DrainState drain() override
Notify an object that it needs to drain its state.
Definition: gic_v2.cc:967
static const int INT_BITS_MAX
Definition: gic_v2.hh:120
static const AddrRange GICD_ICACTIVER
Definition: gic_v2.hh:86
GicVersion
Definition: base_gic.hh:66
uint32_t activeInt[INT_BITS_MAX-1]
GICD_I{S,C}ACTIVER{1..31} interrupt active bits for global interrupts 1b per interrupt, 32 bits per word, 31 words.
Definition: gic_v2.hh:241
uint32_t & getIntGroup(ContextID ctx, uint32_t ix)
Definition: gic_v2.hh:257
uint32_t & getIntEnabled(ContextID ctx, uint32_t ix)
Definition: gic_v2.hh:216
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
uint8_t getIntConfig(ContextID ctx, uint32_t ix)
GICD_ICFGRn get 2 bit config associated to an interrupt.
Definition: gic_v2.hh:287
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
void postInt(uint32_t cpu, Tick when)
Post an interrupt to a CPU with a delay.
Definition: gic_v2.cc:923
const Params * params() const
Definition: gic_v2.hh:443
void sendInt(uint32_t number) override
Post an interrupt from a device that is connected to the GIC.
Definition: gic_v2.cc:862
Basic support for object serialization.
Definition: serialize.hh:166
static const AddrRange GICD_ICPENDR
Definition: gic_v2.hh:84
std::vector< BankedRegs * > bankedRegs
Definition: gic_v2.hh:207
Bitfield< 1 > enableGrp1
Definition: gic_v2.hh:141
EventFunctionWrapper * postIntEvent[CPU_MAX]
Definition: gic_v2.hh:436
uint32_t & getPendingInt(ContextID ctx, uint32_t ix)
Definition: gic_v2.hh:229
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: gic_v2.cc:985
Definition: gic_v2.hh:59
void clearPPInt(uint32_t num, uint32_t cpu) override
Definition: gic_v2.cc:904
virtual const std::string name() const
Definition: sim_object.hh:129
Generic interface for platforms.
uint32_t intGroup
GICD_IGROUPR0 interrupt group bits for first 32 interrupts, 1b per interrupt.
Definition: gic_v2.hh:193
Base class for ARM GIC implementations.
Tick writeCpu(PacketPtr pkt)
Handle a write to the cpu portion of the GIC.
Definition: gic_v2.cc:555
uint32_t cpuHighestInt[CPU_MAX]
highest interrupt that is interrupting CPU
Definition: gic_v2.hh:381
int pendingDelayedInterrupts
Definition: gic_v2.hh:438
std::ostream CheckpointOut
Definition: serialize.hh:63
BankedRegs & getBankedRegs(ContextID)
Definition: gic_v2.cc:636
void postDelayedFiq(uint32_t cpu)
Definition: gic_v2.cc:957
Bitfield< 12, 10 > cpu_id
Definition: gic_v2.hh:136
uint8_t getCpuPriority(unsigned cpu)
Definition: gic_v2.cc:724
uint8_t getCpuTarget(ContextID ctx, uint32_t ix)
Definition: gic_v2.hh:299
void postDelayedInt(uint32_t cpu)
Deliver a delayed interrupt to the target CPU.
Definition: gic_v2.cc:932
uint32_t cpuSgiPendingExt[CPU_MAX]
SGI pending arrays for gem5 GIC extension mode, which instead keeps 16 SGI pending bits for each of t...
Definition: gic_v2.hh:393
uint32_t itLines
Number of itLines enabled.
Definition: gic_v2.hh:175
const SimObjectParams * _params
Cached copy of the object parameters.
Definition: sim_object.hh:111
const Tick cpuPioDelay
Latency for a cpu operation.
Definition: gic_v2.hh:159
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...
Definition: gic_v2.hh:349
static const AddrRange GICD_ITARGETSR
Definition: gic_v2.hh:88
BitUnion32(SWI) Bitfield< 3
bool enabled
Gic enabled.
Definition: gic_v2.hh:166
void drainResume() override
Resume execution after a successful drain.
Definition: gic_v2.cc:978
static const AddrRange GICD_ICFGR
Definition: gic_v2.hh:89
uint8_t cpuTarget[GLOBAL_INT_LINES]
GICD_ITARGETSR{8..255} an 8 bit cpu target id for each global interrupt.
Definition: gic_v2.hh:297
const uint32_t giccIIDR
Definition: gic_v2.hh:78
static const AddrRange GICD_ISPENDR
Definition: gic_v2.hh:83
void sendPPInt(uint32_t num, uint32_t cpu) override
Interface call for private peripheral interrupts.
Definition: gic_v2.cc:876
~GicV2()
Definition: gic_v2.cc:101
T bits(T val, int first, int last)
Extract the bitfield from position &#39;first&#39; to &#39;last&#39; (inclusive) from &#39;val&#39; and right justify it...
Definition: bitfield.hh:71
Tick writeDistributor(PacketPtr pkt)
Handle a write to the distributor portion of the GIC.
Definition: gic_v2.cc:386
Bitfield< 0 > p
void updateRunPri()
Update the register that records priority of the highest priority active interrupt.
Definition: gic_v2.cc:833
void writeDistributor(ContextID ctx, Addr daddr, uint32_t data) override
Definition: gic_v2.hh:501
const char data[]
uint32_t cpuPpiPending[CPU_MAX]
One bit per private peripheral interrupt.
Definition: gic_v2.hh:398
void postFiq(uint32_t cpu, Tick when)
Definition: gic_v2.cc:942
int ContextID
Globally unique thread context ID.
Definition: types.hh:229
uint32_t intConfig[INT_BITS_MAX *2]
2 bit per interrupt signaling if it&#39;s level or edge sensitive and if it is 1:N or N:N ...
Definition: gic_v2.hh:324
const bool haveGem5Extensions
Are gem5 extensions available?
Definition: gic_v2.hh:169
static const int GICC_BPR_MINIMUM
minimum value for Binary Point Register ("IMPLEMENTATION DEFINED"); chosen for consistency with Linux...
Definition: gic_v2.hh:126
int intNumToBit(int num) const
Definition: gic_v2.hh:419
GicV2Params Params
Definition: gic_v2.hh:441

Generated on Fri Jul 3 2020 15:53:01 for gem5 by doxygen 1.8.13