gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
gic_v3_distributor.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019-2020 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) 2018 Metempsy Technology Consulting
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 #ifndef __DEV_ARM_GICV3_DISTRIBUTOR_H__
42 #define __DEV_ARM_GICV3_DISTRIBUTOR_H__
43 
44 #include "base/addr_range.hh"
45 #include "dev/arm/gic_v3.hh"
46 #include "sim/serialize.hh"
47 
49 {
50  private:
51 
52  friend class Gicv3Redistributor;
53  friend class Gicv3CPUInterface;
54  friend class Gicv3Its;
55 
56  protected:
57 
59  const uint32_t itLines;
60 
61  enum {
62  // Control Register
63  GICD_CTLR = 0x0000,
64  // Interrupt Controller Type Register
65  GICD_TYPER = 0x0004,
66  // Implementer Identification Register
67  GICD_IIDR = 0x0008,
68  // Interrupt Controller Type Register 2
69  GICD_TYPER2 = 0x000C,
70  // Error Reporting Status Register
71  GICD_STATUSR = 0x0010,
72  // Set Non-secure SPI Pending Register
73  GICD_SETSPI_NSR = 0x0040,
74  // Clear Non-secure SPI Pending Register
75  GICD_CLRSPI_NSR = 0x0048,
76  // Set Secure SPI Pending Register
77  GICD_SETSPI_SR = 0x0050,
78  // Clear Secure SPI Pending Register
79  GICD_CLRSPI_SR = 0x0058,
80  // Software Generated Interrupt Register
81  GICD_SGIR = 0x0f00,
82  // Peripheral ID0 Register
83  GICD_PIDR0 = 0xffe0,
84  // Peripheral ID1 Register
85  GICD_PIDR1 = 0xffe4,
86  // Peripheral ID2 Register
87  GICD_PIDR2 = 0xffe8,
88  // Peripheral ID3 Register
89  GICD_PIDR3 = 0xffec,
90  // Peripheral ID4 Register
91  GICD_PIDR4 = 0xffd0,
92  // Peripheral ID5 Register
93  GICD_PIDR5 = 0xffd4,
94  // Peripheral ID6 Register
95  GICD_PIDR6 = 0xffd8,
96  // Peripheral ID7 Register
97  GICD_PIDR7 = 0xffdc,
98  };
99 
100  // Interrupt Group Registers
101  static const AddrRange GICD_IGROUPR;
102  // Interrupt Set-Enable Registers
103  static const AddrRange GICD_ISENABLER;
104  // Interrupt Clear-Enable Registers
105  static const AddrRange GICD_ICENABLER;
106  // Interrupt Set-Pending Registers
107  static const AddrRange GICD_ISPENDR;
108  // Interrupt Clear-Pending Registers
109  static const AddrRange GICD_ICPENDR;
110  // Interrupt Set-Active Registers
111  static const AddrRange GICD_ISACTIVER;
112  // Interrupt Clear-Active Registers
113  static const AddrRange GICD_ICACTIVER;
114  // Interrupt Priority Registers
116  // Interrupt Processor Targets Registers
117  static const AddrRange GICD_ITARGETSR; // GICv2 legacy
118  // Interrupt Configuration Registers
119  static const AddrRange GICD_ICFGR;
120  // Interrupt Group Modifier Registers
121  static const AddrRange GICD_IGRPMODR;
122  // Non-secure Access Control Registers
123  static const AddrRange GICD_NSACR;
124  // SGI Clear-Pending Registers
125  static const AddrRange GICD_CPENDSGIR; // GICv2 legacy
126  // SGI Set-Pending Registers
127  static const AddrRange GICD_SPENDSGIR; // GICv2 legacy
128  // Interrupt Routing Registers
129  static const AddrRange GICD_IROUTER;
130 
131  BitUnion64(IROUTER)
132  Bitfield<63, 40> res0_1;
133  Bitfield<39, 32> Aff3;
134  Bitfield<31> IRM;
135  Bitfield<30, 24> res0_2;
136  Bitfield<23, 16> Aff2;
137  Bitfield<15, 8> Aff1;
138  Bitfield<7, 0> Aff0;
139  EndBitUnion(IROUTER)
140 
141  static const uint32_t GICD_CTLR_ENABLEGRP0 = 1 << 0;
142  static const uint32_t GICD_CTLR_ENABLEGRP1 = 1 << 0;
143  static const uint32_t GICD_CTLR_ENABLEGRP1NS = 1 << 1;
144  static const uint32_t GICD_CTLR_ENABLEGRP1A = 1 << 1;
145  static const uint32_t GICD_CTLR_ENABLEGRP1S = 1 << 2;
146  static const uint32_t GICD_CTLR_DS = 1 << 6;
147 
148  bool ARE;
149  bool DS;
153  std::vector <uint8_t> irqGroup;
158  std::vector <uint8_t> irqPriority;
159  std::vector <Gicv3::IntTriggerType> irqConfig;
160  std::vector <uint8_t> irqGrpmod;
161  std::vector <uint8_t> irqNsacr;
163 
164  uint32_t gicdTyper;
165  uint32_t gicdPidr0;
166  uint32_t gicdPidr1;
167  uint32_t gicdPidr2;
168  uint32_t gicdPidr3;
169  uint32_t gicdPidr4;
170 
171  public:
172 
173  static const uint32_t ADDR_RANGE_SIZE = 0x10000;
174  static const uint32_t IDBITS = 0xf;
175 
176  protected:
177 
178  void activateIRQ(uint32_t int_id);
179  void deactivateIRQ(uint32_t int_id);
180  void fullUpdate();
181  Gicv3::GroupId getIntGroup(int int_id) const;
182 
183  inline bool
184  groupEnabled(Gicv3::GroupId group) const
185  {
186  if (DS == 0) {
187  switch (group) {
188  case Gicv3::G0S:
189  return EnableGrp0;
190 
191  case Gicv3::G1S:
192  return EnableGrp1S;
193 
194  case Gicv3::G1NS:
195  return EnableGrp1NS;
196 
197  default:
198  panic("Gicv3Distributor::groupEnabled(): "
199  "invalid group!\n");
200  }
201  } else {
202  switch (group) {
203  case Gicv3::G0S:
204  return EnableGrp0;
205 
206  case Gicv3::G1S:
207  case Gicv3::G1NS:
208  return EnableGrp1NS;
209 
210  default:
211  panic("Gicv3Distributor::groupEnabled(): "
212  "invalid group!\n");
213  }
214  }
215  }
216 
217  Gicv3::IntStatus intStatus(uint32_t int_id) const;
218 
219  inline bool isNotSPI(uint32_t int_id) const
220  {
221  if (int_id < (Gicv3::SGI_MAX + Gicv3::PPI_MAX) || int_id >= itLines) {
222  return true;
223  } else {
224  return false;
225  }
226  }
227 
228  bool isLevelSensitive(uint32_t int_id) const
229  {
230  return irqConfig[int_id] == Gicv3::INT_LEVEL_SENSITIVE;
231  }
232 
244  bool treatAsEdgeTriggered(uint32_t int_id) const
245  {
246  return !isLevelSensitive(int_id) || irqPendingIspendr[int_id];
247  }
248 
249  inline bool nsAccessToSecInt(uint32_t int_id, bool is_secure_access) const
250  {
251  return !DS && !is_secure_access && getIntGroup(int_id) != Gicv3::G1NS;
252  }
253 
254  void serialize(CheckpointOut & cp) const override;
255  void unserialize(CheckpointIn & cp) override;
256  void update();
257  Gicv3CPUInterface* route(uint32_t int_id);
258 
259  public:
260 
261  Gicv3Distributor(Gicv3 * gic, uint32_t it_lines);
262 
263  void sendInt(uint32_t int_id);
264  void clearInt(uint32_t int_id);
265  void deassertSPI(uint32_t int_id);
266  void clearIrqCpuInterface(uint32_t int_id);
267  void init();
268  uint64_t read(Addr addr, size_t size, bool is_secure_access);
269  void write(Addr addr, uint64_t data, size_t size,
270  bool is_secure_access);
271 };
272 
273 #endif //__DEV_ARM_GICV3_DISTRIBUTOR_H__
Gicv3Distributor::GICD_SETSPI_SR
@ GICD_SETSPI_SR
Definition: gic_v3_distributor.hh:77
Gicv3Distributor::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: gic_v3_distributor.cc:1197
Gicv3Distributor::GICD_SETSPI_NSR
@ GICD_SETSPI_NSR
Definition: gic_v3_distributor.hh:73
Gicv3Distributor::isNotSPI
bool isNotSPI(uint32_t int_id) const
Definition: gic_v3_distributor.hh:219
Gicv3Distributor::GICD_ICFGR
static const AddrRange GICD_ICFGR
Definition: gic_v3_distributor.hh:119
Gicv3Distributor::gicdPidr1
uint32_t gicdPidr1
Definition: gic_v3_distributor.hh:166
Gicv3::G1NS
@ G1NS
Definition: gic_v3.hh:92
Gicv3Its::size
Bitfield< 7, 0 > size
Definition: gic_v3_its.hh:186
data
const char data[]
Definition: circlebuf.test.cc:47
Gicv3Distributor::GICD_IPRIORITYR
static const AddrRange GICD_IPRIORITYR
Definition: gic_v3_distributor.hh:115
Gicv3Distributor::GICD_PIDR1
@ GICD_PIDR1
Definition: gic_v3_distributor.hh:85
serialize.hh
Gicv3Distributor::irqEnabled
std::vector< bool > irqEnabled
Definition: gic_v3_distributor.hh:154
Gicv3::PPI_MAX
static const int PPI_MAX
Definition: gic_v3.hh:78
Gicv3Distributor::EndBitUnion
EndBitUnion(IROUTER) static const uint32_t GICD_CTLR_ENABLEGRP0
Gicv3Distributor::GICD_CLRSPI_NSR
@ GICD_CLRSPI_NSR
Definition: gic_v3_distributor.hh:75
Gicv3Distributor::ARE
bool ARE
Definition: gic_v3_distributor.hh:148
Serializable
Basic support for object serialization.
Definition: serialize.hh:175
Gicv3Distributor::GICD_PIDR6
@ GICD_PIDR6
Definition: gic_v3_distributor.hh:95
Gicv3Distributor::GICD_CTLR_DS
static const uint32_t GICD_CTLR_DS
Definition: gic_v3_distributor.hh:146
Gicv3Distributor::Gicv3Distributor
Gicv3Distributor(Gicv3 *gic, uint32_t it_lines)
Definition: gic_v3_distributor.cc:67
Gicv3::SGI_MAX
static const int SGI_MAX
Definition: gic_v3.hh:76
Gicv3Distributor::GICD_PIDR2
@ GICD_PIDR2
Definition: gic_v3_distributor.hh:87
Gicv3Distributor::GICD_ICACTIVER
static const AddrRange GICD_ICACTIVER
Definition: gic_v3_distributor.hh:113
Gicv3Distributor::itLines
const uint32_t itLines
Definition: gic_v3_distributor.hh:59
Gicv3Distributor::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: gic_v3_distributor.cc:1177
Gicv3Distributor::route
Gicv3CPUInterface * route(uint32_t int_id)
Definition: gic_v3_distributor.cc:1036
Gicv3Distributor::GICD_NSACR
static const AddrRange GICD_NSACR
Definition: gic_v3_distributor.hh:123
Gicv3Distributor::intStatus
Gicv3::IntStatus intStatus(uint32_t int_id) const
Definition: gic_v3_distributor.cc:1116
Gicv3Distributor::getIntGroup
Gicv3::GroupId getIntGroup(int int_id) const
Definition: gic_v3_distributor.cc:1135
Gicv3Distributor::clearInt
void clearInt(uint32_t int_id)
Definition: gic_v3_distributor.cc:1015
Gicv3Distributor::irqActive
std::vector< bool > irqActive
Definition: gic_v3_distributor.hh:157
Gicv3Distributor::GICD_CTLR_ENABLEGRP1S
static const uint32_t GICD_CTLR_ENABLEGRP1S
Definition: gic_v3_distributor.hh:145
Gicv3Distributor::GICD_IGRPMODR
static const AddrRange GICD_IGRPMODR
Definition: gic_v3_distributor.hh:121
Gicv3Distributor::GICD_ICPENDR
static const AddrRange GICD_ICPENDR
Definition: gic_v3_distributor.hh:109
Gicv3Distributor::GICD_PIDR5
@ GICD_PIDR5
Definition: gic_v3_distributor.hh:93
Gicv3Distributor::irqConfig
std::vector< Gicv3::IntTriggerType > irqConfig
Definition: gic_v3_distributor.hh:159
Gicv3Distributor::GICD_CTLR_ENABLEGRP1NS
static const uint32_t GICD_CTLR_ENABLEGRP1NS
Definition: gic_v3_distributor.hh:143
Gicv3::G0S
@ G0S
Definition: gic_v3.hh:90
Gicv3Distributor::GICD_SPENDSGIR
static const AddrRange GICD_SPENDSGIR
Definition: gic_v3_distributor.hh:127
Gicv3::INT_LEVEL_SENSITIVE
@ INT_LEVEL_SENSITIVE
Definition: gic_v3.hh:96
cp
Definition: cprintf.cc:37
Gicv3Distributor::gic
Gicv3 * gic
Definition: gic_v3_distributor.hh:58
Gicv3Distributor::GICD_PIDR0
@ GICD_PIDR0
Definition: gic_v3_distributor.hh:83
Gicv3Distributor::GICD_CTLR_ENABLEGRP1A
static const uint32_t GICD_CTLR_ENABLEGRP1A
Definition: gic_v3_distributor.hh:144
Gicv3Distributor::irqGroup
std::vector< uint8_t > irqGroup
Definition: gic_v3_distributor.hh:153
AddrRange
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
Definition: addr_range.hh:68
Gicv3Distributor::GICD_TYPER2
@ GICD_TYPER2
Definition: gic_v3_distributor.hh:69
Gicv3Distributor::irqPendingIspendr
std::vector< bool > irqPendingIspendr
Definition: gic_v3_distributor.hh:156
Gicv3Distributor::GICD_PIDR7
@ GICD_PIDR7
Definition: gic_v3_distributor.hh:97
Gicv3Distributor::update
void update()
Definition: gic_v3_distributor.cc:1081
Gicv3Distributor::EnableGrp1S
bool EnableGrp1S
Definition: gic_v3_distributor.hh:150
Gicv3Distributor::groupEnabled
bool groupEnabled(Gicv3::GroupId group) const
Definition: gic_v3_distributor.hh:184
Gicv3Distributor::GICD_IROUTER
static const AddrRange GICD_IROUTER
Definition: gic_v3_distributor.hh:129
Gicv3Distributor::deactivateIRQ
void deactivateIRQ(uint32_t int_id)
Definition: gic_v3_distributor.cc:1171
Gicv3Its
GICv3 ITS module.
Definition: gic_v3_its.hh:80
Gicv3::IntStatus
IntStatus
Definition: gic_v3.hh:81
Gicv3Distributor::GICD_CLRSPI_SR
@ GICD_CLRSPI_SR
Definition: gic_v3_distributor.hh:79
Gicv3Distributor::gicdPidr0
uint32_t gicdPidr0
Definition: gic_v3_distributor.hh:165
Gicv3Distributor::read
uint64_t read(Addr addr, size_t size, bool is_secure_access)
Definition: gic_v3_distributor.cc:137
Gicv3Distributor::GICD_IIDR
@ GICD_IIDR
Definition: gic_v3_distributor.hh:67
Gicv3
Definition: gic_v3.hh:53
Gicv3Distributor::res0_2
Bitfield< 30, 24 > res0_2
Definition: gic_v3_distributor.hh:135
Gicv3Distributor::DS
bool DS
Definition: gic_v3_distributor.hh:149
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
Gicv3::G1S
@ G1S
Definition: gic_v3.hh:91
Gicv3Distributor::res0_1
res0_1
Definition: gic_v3_distributor.hh:132
Gicv3Distributor::Aff1
Bitfield< 15, 8 > Aff1
Definition: gic_v3_distributor.hh:137
Gicv3Distributor::EnableGrp0
bool EnableGrp0
Definition: gic_v3_distributor.hh:152
Gicv3Distributor::irqGrpmod
std::vector< uint8_t > irqGrpmod
Definition: gic_v3_distributor.hh:160
addr_range.hh
Gicv3Distributor::gicdTyper
uint32_t gicdTyper
Definition: gic_v3_distributor.hh:164
Gicv3CPUInterface
Definition: gic_v3_cpu_interface.hh:50
Gicv3Distributor::GICD_PIDR4
@ GICD_PIDR4
Definition: gic_v3_distributor.hh:91
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:80
Gicv3Distributor::treatAsEdgeTriggered
bool treatAsEdgeTriggered(uint32_t int_id) const
This helper is used to check if an interrupt should be treated as edge triggered in the following sce...
Definition: gic_v3_distributor.hh:244
Gicv3Distributor::GICD_CTLR_ENABLEGRP1
static const uint32_t GICD_CTLR_ENABLEGRP1
Definition: gic_v3_distributor.hh:142
Gicv3Distributor::GICD_ICENABLER
static const AddrRange GICD_ICENABLER
Definition: gic_v3_distributor.hh:105
Gicv3Distributor::init
void init()
Definition: gic_v3_distributor.cc:132
std
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
X86ISA::vector
Bitfield< 15, 8 > vector
Definition: intmessage.hh:44
Gicv3Distributor::GICD_SGIR
@ GICD_SGIR
Definition: gic_v3_distributor.hh:81
Gicv3Distributor::GICD_ITARGETSR
static const AddrRange GICD_ITARGETSR
Definition: gic_v3_distributor.hh:117
Gicv3Distributor
Definition: gic_v3_distributor.hh:48
Gicv3Distributor::irqPriority
std::vector< uint8_t > irqPriority
Definition: gic_v3_distributor.hh:158
Gicv3Distributor::deassertSPI
void deassertSPI(uint32_t int_id)
Definition: gic_v3_distributor.cc:1025
Gicv3Distributor::nsAccessToSecInt
bool nsAccessToSecInt(uint32_t int_id, bool is_secure_access) const
Definition: gic_v3_distributor.hh:249
Gicv3Distributor::Aff2
Bitfield< 23, 16 > Aff2
Definition: gic_v3_distributor.hh:136
Gicv3Distributor::fullUpdate
void fullUpdate()
Gicv3Distributor::irqNsacr
std::vector< uint8_t > irqNsacr
Definition: gic_v3_distributor.hh:161
Gicv3Distributor::irqAffinityRouting
std::vector< IROUTER > irqAffinityRouting
Definition: gic_v3_distributor.hh:162
Gicv3Distributor::GICD_ISENABLER
static const AddrRange GICD_ISENABLER
Definition: gic_v3_distributor.hh:103
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
Gicv3Distributor::isLevelSensitive
bool isLevelSensitive(uint32_t int_id) const
Definition: gic_v3_distributor.hh:228
Gicv3Distributor::BitUnion64
BitUnion64(IROUTER) Bitfield< 63
Gicv3Distributor::GICD_STATUSR
@ GICD_STATUSR
Definition: gic_v3_distributor.hh:71
Gicv3Distributor::GICD_ISPENDR
static const AddrRange GICD_ISPENDR
Definition: gic_v3_distributor.hh:107
Gicv3Distributor::GICD_CPENDSGIR
static const AddrRange GICD_CPENDSGIR
Definition: gic_v3_distributor.hh:125
Gicv3Distributor::irqPending
std::vector< bool > irqPending
Definition: gic_v3_distributor.hh:155
Gicv3Distributor::GICD_PIDR3
@ GICD_PIDR3
Definition: gic_v3_distributor.hh:89
Gicv3Distributor::gicdPidr4
uint32_t gicdPidr4
Definition: gic_v3_distributor.hh:169
Gicv3Distributor::GICD_CTLR
@ GICD_CTLR
Definition: gic_v3_distributor.hh:63
Gicv3Distributor::clearIrqCpuInterface
void clearIrqCpuInterface(uint32_t int_id)
Definition: gic_v3_distributor.cc:1073
Gicv3Distributor::Aff3
Bitfield< 39, 32 > Aff3
Definition: gic_v3_distributor.hh:133
CheckpointIn
Definition: serialize.hh:68
Gicv3Distributor::GICD_TYPER
@ GICD_TYPER
Definition: gic_v3_distributor.hh:65
Gicv3Distributor::write
void write(Addr addr, uint64_t data, size_t size, bool is_secure_access)
Definition: gic_v3_distributor.cc:509
Gicv3Distributor::gicdPidr2
uint32_t gicdPidr2
Definition: gic_v3_distributor.hh:167
Gicv3Distributor::sendInt
void sendInt(uint32_t int_id)
Definition: gic_v3_distributor.cc:1003
Gicv3Distributor::Aff0
Bitfield< 7, 0 > Aff0
Definition: gic_v3_distributor.hh:138
Gicv3Distributor::GICD_IGROUPR
static const AddrRange GICD_IGROUPR
Definition: gic_v3_distributor.hh:101
Gicv3Distributor::IDBITS
static const uint32_t IDBITS
Definition: gic_v3_distributor.hh:174
gic_v3.hh
Gicv3Redistributor
Definition: gic_v3_redistributor.hh:52
Gicv3Distributor::ADDR_RANGE_SIZE
static const uint32_t ADDR_RANGE_SIZE
Definition: gic_v3_distributor.hh:173
Gicv3Distributor::EnableGrp1NS
bool EnableGrp1NS
Definition: gic_v3_distributor.hh:151
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
Gicv3Distributor::GICD_ISACTIVER
static const AddrRange GICD_ISACTIVER
Definition: gic_v3_distributor.hh:111
Gicv3Distributor::IRM
Bitfield< 31 > IRM
Definition: gic_v3_distributor.hh:134
Gicv3Distributor::gicdPidr3
uint32_t gicdPidr3
Definition: gic_v3_distributor.hh:168
Gicv3Distributor::activateIRQ
void activateIRQ(uint32_t int_id)
Definition: gic_v3_distributor.cc:1162

Generated on Tue Mar 23 2021 19:41:25 for gem5 by doxygen 1.8.17