gem5  v20.0.0.3
vgic.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013,2018 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  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #include "dev/arm/vgic.hh"
39 
40 #include "base/trace.hh"
41 #include "debug/Checkpoint.hh"
42 #include "debug/VGIC.hh"
43 #include "dev/arm/base_gic.hh"
44 #include "mem/packet.hh"
45 #include "mem/packet_access.hh"
46 
48  : PioDevice(p), gicvIIDR(p->gicv_iidr), platform(p->platform),
49  gic(p->gic), vcpuAddr(p->vcpu_addr), hvAddr(p->hv_addr),
50  pioDelay(p->pio_delay), maintInt(p->maint_int)
51 {
52  for (int x = 0; x < VGIC_CPU_MAX; x++) {
54  [this, x]{ processPostVIntEvent(x); },
55  "Post VInterrupt to CPU");
56  maintIntPosted[x] = false;
57  vIntPosted[x] = false;
58  }
59  assert(sys->numRunningContexts() <= VGIC_CPU_MAX);
60 }
61 
63 {
64  for (int x = 0; x < VGIC_CPU_MAX; x++)
65  delete postVIntEvent[x];
66 }
67 
68 Tick
70 {
71  Addr addr = pkt->getAddr();
72 
73  if (addr >= vcpuAddr && addr < vcpuAddr + GICV_SIZE)
74  return readVCpu(pkt);
75  else if (addr >= hvAddr && addr < hvAddr + GICH_REG_SIZE)
76  return readCtrl(pkt);
77  else
78  panic("Read to unknown address %#x\n", pkt->getAddr());
79 }
80 
81 Tick
83 {
84  Addr addr = pkt->getAddr();
85 
86  if (addr >= vcpuAddr && addr < vcpuAddr + GICV_SIZE)
87  return writeVCpu(pkt);
88  else if (addr >= hvAddr && addr < hvAddr + GICH_REG_SIZE)
89  return writeCtrl(pkt);
90  else
91  panic("Write to unknown address %#x\n", pkt->getAddr());
92 }
93 
94 Tick
96 {
97  Addr daddr = pkt->getAddr() - vcpuAddr;
98 
99  ContextID ctx_id = pkt->req->contextId();
100  assert(ctx_id < VGIC_CPU_MAX);
101  struct vcpuIntData *vid = &vcpuData[ctx_id];
102 
103  DPRINTF(VGIC, "VGIC VCPU read register %#x\n", daddr);
104 
105  switch (daddr) {
106  case GICV_CTLR:
107  pkt->setLE<uint32_t>(vid->vctrl);
108  break;
109  case GICV_IAR: {
110  int i = findHighestPendingLR(vid);
111  if (i < 0 || !vid->vctrl.En) {
112  pkt->setLE<uint32_t>(1023); // "No int" marker
113  } else {
114  ListReg *lr = &vid->LR[i];
115 
116  pkt->setLE<uint32_t>(lr->VirtualID |
117  (((int)lr->CpuID) << 10));
118  // We don't support auto-EOI of HW interrupts via real GIC!
119  // Fortunately, KVM doesn't use this. How about Xen...? Ulp!
120  if (lr->HW)
121  panic("VGIC does not support 'HW' List Register feature (LR %#x)!\n",
122  *lr);
123  lr->State = LR_ACTIVE;
124  DPRINTF(VGIC, "Consumed interrupt %d (cpu%d) from LR%d (EOI%d)\n",
125  lr->VirtualID, lr->CpuID, i, lr->EOI);
126  }
127  } break;
128  case GICV_IIDR:
129  pkt->setLE<uint32_t>(gicvIIDR);
130  break;
131  default:
132  panic("VGIC VCPU read of bad address %#x\n", daddr);
133  }
134 
135  updateIntState(ctx_id);
136 
137  pkt->makeAtomicResponse();
138  return pioDelay;
139 }
140 
141 Tick
143 {
144  Addr daddr = pkt->getAddr() - hvAddr;
145 
146  ContextID ctx_id = pkt->req->contextId();
147 
148  DPRINTF(VGIC, "VGIC HVCtrl read register %#x\n", daddr);
149 
150  /* Munge the address: 0-0xfff is the usual space banked by requester CPU.
151  * Anything > that is 0x200-sized slices of 'per CPU' regs.
152  */
153  if (daddr & ~0x1ff) {
154  ctx_id = (daddr >> 9);
155  if (ctx_id > 8)
156  panic("VGIC: Weird unbanked hv ctrl address %#x!\n", daddr);
157  daddr &= ~0x1ff;
158  }
159  assert(ctx_id < VGIC_CPU_MAX);
160  struct vcpuIntData *vid = &vcpuData[ctx_id];
161 
162  switch (daddr) {
163  case GICH_HCR:
164  pkt->setLE<uint32_t>(vid->hcr);
165  break;
166 
167  case GICH_VTR:
168  pkt->setLE<uint32_t>(0x44000000 | (NUM_LR - 1));
169  break;
170 
171  case GICH_VMCR:
172  pkt->setLE<uint32_t>(
173  ((uint32_t)vid->VMPriMask << 27) |
174  ((uint32_t)vid->VMBP << 21) |
175  ((uint32_t)vid->VMABP << 18) |
176  ((uint32_t)vid->VEM << 9) |
177  ((uint32_t)vid->VMCBPR << 4) |
178  ((uint32_t)vid->VMFiqEn << 3) |
179  ((uint32_t)vid->VMAckCtl << 2) |
180  ((uint32_t)vid->VMGrp1En << 1) |
181  ((uint32_t)vid->VMGrp0En << 0)
182  );
183  break;
184 
185  case GICH_MISR:
186  pkt->setLE<uint32_t>(getMISR(vid));
187  break;
188 
189  case GICH_EISR0:
190  pkt->setLE<uint32_t>(vid->eisr & 0xffffffff);
191  break;
192 
193  case GICH_EISR1:
194  pkt->setLE<uint32_t>(vid->eisr >> 32);
195  break;
196 
197  case GICH_ELSR0: {
198  uint32_t bm = 0;
199  for (int i = 0; i < ((NUM_LR < 32) ? NUM_LR : 32); i++) {
200  if (!vid->LR[i].State)
201  bm |= 1 << i;
202  }
203  pkt->setLE<uint32_t>(bm);
204  } break;
205 
206  case GICH_ELSR1: {
207  uint32_t bm = 0;
208  for (int i = 32; i < NUM_LR; i++) {
209  if (!vid->LR[i].State)
210  bm |= 1 << (i-32);
211  }
212  pkt->setLE<uint32_t>(bm);
213  } break;
214 
215  case GICH_APR0:
216  warn_once("VGIC GICH_APR read!\n");
217  pkt->setLE<uint32_t>(0);
218  break;
219 
220  case GICH_LR0:
221  case GICH_LR1:
222  case GICH_LR2:
223  case GICH_LR3:
224  pkt->setLE<uint32_t>(vid->LR[(daddr - GICH_LR0) >> 2]);
225  break;
226 
227  default:
228  panic("VGIC HVCtrl read of bad address %#x\n", daddr);
229  }
230 
231  pkt->makeAtomicResponse();
232  return pioDelay;
233 }
234 
235 Tick
237 {
238  Addr daddr = pkt->getAddr() - vcpuAddr;
239 
240  ContextID ctx_id = pkt->req->contextId();
241  assert(ctx_id < VGIC_CPU_MAX);
242  struct vcpuIntData *vid = &vcpuData[ctx_id];
243 
244  DPRINTF(VGIC, "VGIC VCPU write register %#x <= %#x\n",
245  daddr, pkt->getLE<uint32_t>());
246 
247  switch (daddr) {
248  case GICV_CTLR:
249  vid->vctrl = pkt->getLE<uint32_t>();
250  break;
251  case GICV_PMR:
252  vid->VMPriMask = pkt->getLE<uint32_t>();
253  break;
254  case GICV_EOIR: {
255  // We don't handle the split EOI-then-DIR mode. Linux (guest)
256  // doesn't need it though.
257  assert(!vid->vctrl.EOImode);
258  uint32_t w = pkt->getLE<uint32_t>();
259  unsigned int virq = w & 0x3ff;
260  unsigned int vcpu = (w >> 10) & 7;
261  int i = findLRForVIRQ(vid, virq, vcpu);
262  if (i < 0) {
263  DPRINTF(VGIC, "EOIR: No LR for irq %d(cpu%d)\n", virq, vcpu);
264  } else {
265  DPRINTF(VGIC, "EOIR: Found LR%d for irq %d(cpu%d)\n", i, virq, vcpu);
266  ListReg *lr = &vid->LR[i];
267  lr->State = 0;
268  // Maintenance interrupt -- via eisr -- is flagged when
269  // LRs have EOI=1 and State=INVALID!
270  }
271  } break;
272  default:
273  panic("VGIC VCPU write %#x to unk address %#x\n",
274  pkt->getLE<uint32_t>(), daddr);
275  }
276 
277  // This updates the EISRs and flags IRQs:
278  updateIntState(ctx_id);
279 
280  pkt->makeAtomicResponse();
281  return pioDelay;
282 }
283 
284 Tick
286 {
287  Addr daddr = pkt->getAddr() - hvAddr;
288 
289  ContextID ctx_id = pkt->req->contextId();
290 
291  DPRINTF(VGIC, "VGIC HVCtrl write register %#x <= %#x\n",
292  daddr, pkt->getLE<uint32_t>());
293 
294  /* Munge the address: 0-0xfff is the usual space banked by requester CPU.
295  * Anything > that is 0x200-sized slices of 'per CPU' regs.
296  */
297  if (daddr & ~0x1ff) {
298  ctx_id = (daddr >> 9);
299  if (ctx_id > 8)
300  panic("VGIC: Weird unbanked hv ctrl address %#x!\n", daddr);
301  daddr &= ~0x1ff;
302  }
303  assert(ctx_id < VGIC_CPU_MAX);
304  struct vcpuIntData *vid = &vcpuData[ctx_id];
305 
306  switch (daddr) {
307  case GICH_HCR:
308  vid->hcr = pkt->getLE<uint32_t>();
309  // update int state
310  break;
311 
312  case GICH_VMCR: {
313  uint32_t d = pkt->getLE<uint32_t>();
314  vid->VMPriMask = d >> 27;
315  vid->VMBP = (d >> 21) & 7;
316  vid->VMABP = (d >> 18) & 7;
317  vid->VEM = (d >> 9) & 1;
318  vid->VMCBPR = (d >> 4) & 1;
319  vid->VMFiqEn = (d >> 3) & 1;
320  vid->VMAckCtl = (d >> 2) & 1;
321  vid->VMGrp1En = (d >> 1) & 1;
322  vid->VMGrp0En = d & 1;
323  } break;
324 
325  case GICH_APR0:
326  warn_once("VGIC GICH_APR0 written, ignored\n");
327  break;
328 
329  case GICH_LR0:
330  case GICH_LR1:
331  case GICH_LR2:
332  case GICH_LR3:
333  vid->LR[(daddr - GICH_LR0) >> 2] = pkt->getLE<uint32_t>();
334  // update int state
335  break;
336 
337  default:
338  panic("VGIC HVCtrl write to bad address %#x\n", daddr);
339  }
340 
341  updateIntState(ctx_id);
342 
343  pkt->makeAtomicResponse();
344  return pioDelay;
345 }
346 
347 
348 uint32_t
349 VGic::getMISR(struct vcpuIntData *vid)
350 {
351  return (!!vid->hcr.VGrp1DIE && !vid->VMGrp1En ? 0x80 : 0) |
352  (!!vid->hcr.VGrp1EIE && vid->VMGrp1En ? 0x40 : 0) |
353  (!!vid->hcr.VGrp0DIE && !vid->VMGrp0En ? 0x20 : 0) |
354  (!!vid->hcr.VGrp0EIE && vid->VMGrp0En ? 0x10 : 0) |
355  (!!vid->hcr.NPIE && !lrPending(vid) ? 0x08 : 0) |
356  (!!vid->hcr.LRENPIE && vid->hcr.EOICount ? 0x04 : 0) |
357  (!!vid->hcr.UIE && lrValid(vid) <= 1 ? 0x02 : 0) |
358  (vid->eisr ? 0x01 : 0);
359 }
360 
361 void
362 VGic::postVInt(uint32_t cpu, Tick when)
363 {
364  DPRINTF(VGIC, "Posting VIRQ to %d\n", cpu);
365  if (!(postVIntEvent[cpu]->scheduled()))
366  eventq->schedule(postVIntEvent[cpu], when);
367 }
368 
369 void
370 VGic::unPostVInt(uint32_t cpu)
371 {
372  DPRINTF(VGIC, "Unposting VIRQ to %d\n", cpu);
374 }
375 
376 void
378 {
380 }
381 
382 
383 void
384 VGic::postMaintInt(uint32_t cpu)
385 {
386  DPRINTF(VGIC, "Posting maintenance PPI to GIC/cpu%d\n", cpu);
387  // Linux DT configures this as Level.
388  gic->sendPPInt(maintInt, cpu);
389 }
390 
391 void
392 VGic::unPostMaintInt(uint32_t cpu)
393 {
394  DPRINTF(VGIC, "Unposting maintenance PPI to GIC/cpu%d\n", cpu);
395  gic->clearPPInt(maintInt, cpu);
396 }
397 
398 /* Update state (in general); something concerned with ctx_id has changed.
399  * This may raise a maintenance interrupt.
400  */
401 void
403 {
404  // @todo This should update APRs!
405 
406  // Build EISR contents:
407  // (Cached so that regs can read them without messing about again)
408  struct vcpuIntData *tvid = &vcpuData[ctx_id];
409 
410  tvid->eisr = 0;
411  for (int i = 0; i < NUM_LR; i++) {
412  if (!tvid->LR[i].State && tvid->LR[i].EOI) {
413  tvid->eisr |= 1 << i;
414  }
415  }
416 
417  assert(sys->numRunningContexts() <= VGIC_CPU_MAX);
418  for (int i = 0; i < sys->numRunningContexts(); i++) {
419  struct vcpuIntData *vid = &vcpuData[i];
420  // Are any LRs active that weren't before?
421  if (!vIntPosted[i]) {
422  if (lrPending(vid) && vid->vctrl.En) {
423  vIntPosted[i] = true;
424  postVInt(i, curTick() + 1);
425  }
426  } else if (!lrPending(vid)) {
427  vIntPosted[i] = false;
428  unPostVInt(i);
429  }
430 
431  // Any maintenance ints to send?
432  if (!maintIntPosted[i]) {
433  if (vid->hcr.En && getMISR(vid)) {
434  maintIntPosted[i] = true;
435  postMaintInt(i);
436  }
437  } else {
438  if (!vid->hcr.En || !getMISR(vid)) {
439  unPostMaintInt(i);
440  maintIntPosted[i] = false;
441  }
442  }
443  }
444 }
445 
448 {
449  AddrRangeList ranges;
450  ranges.push_back(RangeSize(hvAddr, GICH_REG_SIZE));
451  ranges.push_back(RangeSize(vcpuAddr, GICV_SIZE));
452  return ranges;
453 }
454 
455 void
457 {
458  Tick interrupt_time[VGIC_CPU_MAX];
459  for (uint32_t cpu = 0; cpu < VGIC_CPU_MAX; cpu++) {
460  interrupt_time[cpu] = 0;
461  if (postVIntEvent[cpu]->scheduled()) {
462  interrupt_time[cpu] = postVIntEvent[cpu]->when();
463  }
464  }
465 
466  DPRINTF(Checkpoint, "Serializing VGIC\n");
467 
468  SERIALIZE_ARRAY(interrupt_time, VGIC_CPU_MAX);
469  SERIALIZE_ARRAY(maintIntPosted, VGIC_CPU_MAX);
470  SERIALIZE_ARRAY(vIntPosted, VGIC_CPU_MAX);
475 
476  for (uint32_t cpu = 0; cpu < VGIC_CPU_MAX; cpu++)
477  vcpuData[cpu].serializeSection(cp, csprintf("vcpuData%d", cpu));
478 }
479 
480 void
482 {
483  uint32_t vctrl_val = vctrl;
484  SERIALIZE_SCALAR(vctrl_val);
485  uint32_t hcr_val = hcr;
486  SERIALIZE_SCALAR(hcr_val);
487  uint64_t eisr_val = eisr;
488  SERIALIZE_SCALAR(eisr_val);
489  uint8_t VMGrp0En_val = VMGrp0En;
490  SERIALIZE_SCALAR(VMGrp0En_val);
491  uint8_t VMGrp1En_val = VMGrp1En;
492  SERIALIZE_SCALAR(VMGrp1En_val);
493  uint8_t VMAckCtl_val = VMAckCtl;
494  SERIALIZE_SCALAR(VMAckCtl_val);
495  uint8_t VMFiqEn_val = VMFiqEn;
496  SERIALIZE_SCALAR(VMFiqEn_val);
497  uint8_t VMCBPR_val = VMCBPR;
498  SERIALIZE_SCALAR(VMCBPR_val);
499  uint8_t VEM_val = VEM;
500  SERIALIZE_SCALAR(VEM_val);
501  uint8_t VMABP_val = VMABP;
502  SERIALIZE_SCALAR(VMABP_val);
503  uint8_t VMBP_val = VMBP;
504  SERIALIZE_SCALAR(VMBP_val);
505  uint8_t VMPriMask_val = VMPriMask;
506  SERIALIZE_SCALAR(VMPriMask_val);
507 
508  for (int i = 0; i < NUM_LR; i++) {
509  ScopedCheckpointSection sec_lr(cp, csprintf("LR%d", i));
510  paramOut(cp, "lr", LR[i]);
511  }
512 }
513 
515 {
516  DPRINTF(Checkpoint, "Unserializing Arm GIC\n");
517 
518  Tick interrupt_time[VGIC_CPU_MAX];
519  UNSERIALIZE_ARRAY(interrupt_time, VGIC_CPU_MAX);
520  for (uint32_t cpu = 0; cpu < VGIC_CPU_MAX; cpu++) {
521  if (interrupt_time[cpu])
522  schedule(postVIntEvent[cpu], interrupt_time[cpu]);
523 
524  vcpuData[cpu].unserializeSection(cp, csprintf("vcpuData%d", cpu));
525  }
526  UNSERIALIZE_ARRAY(maintIntPosted, VGIC_CPU_MAX);
527  UNSERIALIZE_ARRAY(vIntPosted, VGIC_CPU_MAX);
532 }
533 
534 void
536 {
537  paramIn(cp, "vctrl_val", vctrl);
538  paramIn(cp, "hcr_val", hcr);
539  paramIn(cp, "eisr_val", eisr);
540  paramIn(cp, "VMGrp0En_val", VMGrp0En);
541  paramIn(cp, "VMGrp1En_val", VMGrp1En);
542  paramIn(cp, "VMAckCtl_val", VMAckCtl);
543  paramIn(cp, "VMFiqEn_val", VMFiqEn);
544  paramIn(cp, "VMCBPR_val", VMCBPR);
545  paramIn(cp, "VEM_val", VEM);
546  paramIn(cp, "VMABP_val", VMABP);
547  paramIn(cp, "VMPriMask_val", VMPriMask);
548 
549  for (int i = 0; i < NUM_LR; i++) {
550  ScopedCheckpointSection sec_lr(cp, csprintf("LR%d", i));
551  paramIn(cp, "lr", LR[i]);
552  }
553 }
554 
555 VGic *
556 VGicParams::create()
557 {
558  return new VGic(this);
559 }
IntrControl * intrctrl
Pointer to the interrupt controller.
Definition: platform.hh:53
EventQueue * eventq
A pointer to this object&#39;s event queue.
Definition: eventq.hh:909
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
#define DPRINTF(x,...)
Definition: trace.hh:225
AddrRange RangeSize(Addr start, Addr size)
Definition: addr_range.hh:580
static const int GICH_HCR
Definition: vgic.hh:72
static const int GICH_VTR
Definition: vgic.hh:73
static const int GICV_CTLR
Definition: vgic.hh:87
EndBitUnion(VCTLR) struct vcpuIntData struct std::array< vcpuIntData, VGIC_CPU_MAX > vcpuData
Definition: vgic.hh:186
Addr vcpuAddr
Definition: vgic.hh:116
static const int GICV_SIZE
Definition: vgic.hh:86
~VGic()
Definition: vgic.cc:62
Implementiation of a GIC-400 List Register-based VGIC interface.
VGic(const Params *p)
Definition: vgic.cc:47
Bitfield< 7 > i
void post(int cpu_id, int int_num, int index)
Definition: intr_control.cc:47
unsigned int lrValid(struct vcpuIntData *vid)
Definition: vgic.hh:229
bool maintIntPosted[VGIC_CPU_MAX]
Definition: vgic.hh:110
uint32_t getMISR(struct vcpuIntData *vid)
Definition: vgic.cc:349
BaseGic * gic
Definition: vgic.hh:114
ip6_addr_t addr
Definition: inet.hh:330
Definition: vgic.hh:63
static const int GICV_IIDR
Definition: vgic.hh:99
void schedule(Event *event, Tick when, bool global=false)
Schedule the given event on this queue.
Definition: eventq_impl.hh:38
static const int GICH_LR3
Definition: vgic.hh:84
Tick pioDelay
Definition: vgic.hh:118
void processPostVIntEvent(uint32_t cpu)
Post interrupt to CPU.
Definition: vgic.cc:377
Definition: cprintf.cc:40
AddrRangeList getAddrRanges() const override
Every PIO device is obliged to provide an implementation that returns the address ranges the device r...
Definition: vgic.cc:447
Addr hvAddr
Definition: vgic.hh:117
void serializeSection(CheckpointOut &cp, const char *name) const
Serialize an object into a new section.
Definition: serialize.cc:171
int numRunningContexts()
Return number of running (non-halted) thread contexts in system.
Definition: system.cc:275
void setLE(T v)
Set the value in the data pointer to v as little endian.
RequestPtr req
A pointer to the original request.
Definition: packet.hh:321
Bitfield< 3 > x
Definition: pagetable.hh:69
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:770
Tick curTick()
The current simulated tick.
Definition: core.hh:44
void updateIntState(ContextID ctx_id)
Definition: vgic.cc:402
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158
static const int GICH_MISR
Definition: vgic.hh:75
virtual void sendPPInt(uint32_t num, uint32_t cpu)=0
Interface call for private peripheral interrupts.
void makeAtomicResponse()
Definition: packet.hh:943
int maintInt
Definition: vgic.hh:119
uint64_t Tick
Tick count type.
Definition: types.hh:61
void unPostVInt(uint32_t cpu)
Definition: vgic.cc:370
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: vgic.cc:69
static const int NUM_LR
Definition: vgic.hh:67
void paramOut(CheckpointOut &cp, const string &name, ExtMachInst const &machInst)
Definition: types.cc:38
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: vgic.cc:456
Bitfield< 9 > d
EventFunctionWrapper * postVIntEvent[VGIC_CPU_MAX]
Definition: vgic.hh:109
void serialize(const ThreadContext &tc, CheckpointOut &cp)
Thread context serialization helpers.
Addr getAddr() const
Definition: packet.hh:720
void schedule(Event &event, Tick when)
Definition: eventq.hh:934
This device is the base class which all devices senstive to an address range inherit from...
Definition: io_device.hh:99
Bitfield< 0 > w
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
System * sys
Definition: io_device.hh:102
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
#define SERIALIZE_ARRAY(member, size)
Definition: serialize.hh:805
#define warn_once(...)
Definition: logging.hh:212
VGicParams Params
Definition: vgic.hh:189
void postMaintInt(uint32_t cpu)
Definition: vgic.cc:384
Tick readVCpu(PacketPtr pkt)
Definition: vgic.cc:95
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:763
static const int GICH_ELSR1
Definition: vgic.hh:79
static const int GICH_LR0
Definition: vgic.hh:81
const uint32_t gicvIIDR
Definition: vgic.hh:104
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: vgic.cc:82
#define UNSERIALIZE_ARRAY(member, size)
Definition: serialize.hh:813
Base class for ARM GIC implementations.
static const int GICH_VMCR
Definition: vgic.hh:74
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: vgic.cc:514
unsigned int lrPending(struct vcpuIntData *vid)
Definition: vgic.hh:220
Declaration of the Packet class.
std::ostream CheckpointOut
Definition: serialize.hh:63
static const int GICH_LR2
Definition: vgic.hh:83
static const int GICV_EOIR
Definition: vgic.hh:91
static const int VGIC_CPU_MAX
Definition: vgic.hh:66
Platform * platform
Definition: vgic.hh:113
int findLRForVIRQ(struct vcpuIntData *vid, int virq, int vcpu)
Definition: vgic.hh:253
int findHighestPendingLR(struct vcpuIntData *vid)
Returns LR index or -1 if none pending.
Definition: vgic.hh:240
Tick writeCtrl(PacketPtr pkt)
Definition: vgic.cc:285
Bitfield< 27, 24 > gic
static const int GICH_LR1
Definition: vgic.hh:82
void paramIn(CheckpointIn &cp, const string &name, ExtMachInst &machInst)
Definition: types.cc:69
T getLE() const
Get the data in the packet byte swapped from little endian to host endian.
void unserialize(ThreadContext &tc, CheckpointIn &cp)
void postVInt(uint32_t cpu, Tick when)
Definition: vgic.cc:362
Tick writeVCpu(PacketPtr pkt)
Definition: vgic.cc:236
static const int GICH_APR0
Definition: vgic.hh:80
static const uint32_t LR_ACTIVE
Definition: vgic.hh:103
void clear(int cpu_id, int int_num, int index)
Definition: intr_control.cc:55
Scoped checkpoint section helper class.
Definition: serialize.hh:186
Bitfield< 0 > p
Tick when() const
Get the time that the event is scheduled.
Definition: eventq.hh:499
Tick readCtrl(PacketPtr pkt)
Definition: vgic.cc:142
static const int GICH_ELSR0
Definition: vgic.hh:78
static const int GICH_REG_SIZE
Definition: vgic.hh:70
static const int GICV_PMR
Definition: vgic.hh:88
static const int GICH_EISR1
Definition: vgic.hh:77
int ContextID
Globally unique thread context ID.
Definition: types.hh:229
static const int GICH_EISR0
Definition: vgic.hh:76
bool vIntPosted[VGIC_CPU_MAX]
Definition: vgic.hh:111
void unPostMaintInt(uint32_t cpu)
Definition: vgic.cc:392
static const int GICV_IAR
Definition: vgic.hh:90
virtual void clearPPInt(uint32_t num, uint32_t cpu)=0

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