gem5  v20.0.0.3
gic_v3.cc
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 #include "dev/arm/gic_v3.hh"
42 
43 #include "cpu/intr_control.hh"
44 #include "debug/GIC.hh"
45 #include "debug/Interrupt.hh"
48 #include "dev/arm/gic_v3_its.hh"
50 #include "dev/platform.hh"
51 #include "mem/packet.hh"
52 #include "mem/packet_access.hh"
53 
55  : BaseGic(p)
56 {
57 }
58 
59 void
61 {
62  distributor = new Gicv3Distributor(this, params()->it_lines);
63  redistributors.resize(sys->numContexts(), nullptr);
64  cpuInterfaces.resize(sys->numContexts(), nullptr);
65 
66  panic_if(sys->numContexts() > params()->cpu_max,
67  "Exceeding maximum number of PEs supported by GICv3: "
68  "using %u while maximum is %u\n", sys->numContexts(),
69  params()->cpu_max);
70 
71  for (int i = 0; i < sys->numContexts(); i++) {
72  redistributors[i] = new Gicv3Redistributor(this, i);
73  cpuInterfaces[i] = new Gicv3CPUInterface(this, i);
74  }
75 
76  distRange = RangeSize(params()->dist_addr,
78 
79  redistSize = redistributors[0]->addrRangeSize;
80  redistRange = RangeSize(params()->redist_addr,
81  redistSize * sys->numContexts() - 1);
82 
84 
85  distributor->init();
86 
87  for (int i = 0; i < sys->numContexts(); i++) {
88  redistributors[i]->init();
89  cpuInterfaces[i]->init();
90  }
91 
92  Gicv3Its *its = params()->its;
93  if (its)
94  its->setGIC(this);
95 
96  BaseGic::init();
97 }
98 
99 Tick
101 {
102  const Addr addr = pkt->getAddr();
103  const size_t size = pkt->getSize();
104  bool is_secure_access = pkt->isSecure();
105  uint64_t resp = 0;
106  Tick delay = 0;
107 
108  if (distRange.contains(addr)) {
109  const Addr daddr = addr - distRange.start();
110  panic_if(!distributor, "Distributor is null!");
111  resp = distributor->read(daddr, size, is_secure_access);
112  delay = params()->dist_pio_delay;
113  DPRINTF(GIC, "Gicv3::read(): (distributor) context_id %d register %#x "
114  "size %d is_secure_access %d (value %#x)\n",
115  pkt->req->contextId(), daddr, size, is_secure_access, resp);
116  } else if (redistRange.contains(addr)) {
117  Addr daddr = (addr - redistRange.start()) % redistSize;
118 
120  resp = redist->read(daddr, size, is_secure_access);
121 
122  delay = params()->redist_pio_delay;
123  DPRINTF(GIC, "Gicv3::read(): (redistributor %d) context_id %d "
124  "register %#x size %d is_secure_access %d (value %#x)\n",
125  redist->processorNumber(), pkt->req->contextId(), daddr, size,
126  is_secure_access, resp);
127  } else {
128  panic("Gicv3::read(): unknown address %#x\n", addr);
129  }
130 
131  pkt->setUintX(resp, LittleEndianByteOrder);
132  pkt->makeAtomicResponse();
133  return delay;
134 }
135 
136 Tick
138 {
139  const size_t size = pkt->getSize();
140  uint64_t data = pkt->getUintX(LittleEndianByteOrder);
141  const Addr addr = pkt->getAddr();
142  bool is_secure_access = pkt->isSecure();
143  Tick delay = 0;
144 
145  if (distRange.contains(addr)) {
146  const Addr daddr = addr - distRange.start();
147  panic_if(!distributor, "Distributor is null!");
148  DPRINTF(GIC, "Gicv3::write(): (distributor) context_id %d "
149  "register %#x size %d is_secure_access %d value %#x\n",
150  pkt->req->contextId(), daddr, size, is_secure_access, data);
151  distributor->write(daddr, data, size, is_secure_access);
152  delay = params()->dist_pio_delay;
153  } else if (redistRange.contains(addr)) {
154  Addr daddr = (addr - redistRange.start()) % redistSize;
155 
157  DPRINTF(GIC, "Gicv3::write(): (redistributor %d) context_id %d "
158  "register %#x size %d is_secure_access %d value %#x\n",
159  redist->processorNumber(), pkt->req->contextId(), daddr, size,
160  is_secure_access, data);
161 
162  redist->write(daddr, data, size, is_secure_access);
163 
164  delay = params()->redist_pio_delay;
165  } else {
166  panic("Gicv3::write(): unknown address %#x\n", addr);
167  }
168 
169  pkt->makeAtomicResponse();
170  return delay;
171 }
172 
173 void
174 Gicv3::sendInt(uint32_t int_id)
175 {
176  panic_if(int_id < Gicv3::SGI_MAX + Gicv3::PPI_MAX, "Invalid SPI!");
177  panic_if(int_id >= Gicv3::INTID_SECURE, "Invalid SPI!");
178  DPRINTF(Interrupt, "Gicv3::sendInt(): received SPI %d\n", int_id);
179  distributor->sendInt(int_id);
180 }
181 
182 void
183 Gicv3::clearInt(uint32_t number)
184 {
185  distributor->deassertSPI(number);
186 }
187 
188 void
189 Gicv3::sendPPInt(uint32_t int_id, uint32_t cpu)
190 {
191  panic_if(cpu >= redistributors.size(), "Invalid cpuID sending PPI!");
192  panic_if(int_id < Gicv3::SGI_MAX, "Invalid PPI!");
193  panic_if(int_id >= Gicv3::SGI_MAX + Gicv3::PPI_MAX, "Invalid PPI!");
194  DPRINTF(Interrupt, "Gicv3::sendPPInt(): received PPI %d cpuTarget %#x\n",
195  int_id, cpu);
196  redistributors[cpu]->sendPPInt(int_id);
197 }
198 
199 void
200 Gicv3::clearPPInt(uint32_t num, uint32_t cpu)
201 {
202 }
203 
204 void
206 {
207  platform->intrctrl->post(cpu, int_type, 0);
209 }
210 
211 bool
213 {
214  return (version == GicVersion::GIC_V3) ||
215  (version == GicVersion::GIC_V4 && params()->gicv4);
216 }
217 
218 void
220 {
221  platform->intrctrl->clear(cpu, int_type, 0);
222 }
223 
224 void
225 Gicv3::deassertAll(uint32_t cpu)
226 {
227  platform->intrctrl->clearAll(cpu);
228 }
229 
230 bool
231 Gicv3::haveAsserted(uint32_t cpu) const
232 {
233  return platform->intrctrl->havePosted(cpu);
234 }
235 
237 Gicv3::getRedistributorByAffinity(uint32_t affinity) const
238 {
239  for (auto & redistributor : redistributors) {
240  if (redistributor->getAffinity() == affinity) {
241  return redistributor;
242  }
243  }
244 
245  return nullptr;
246 }
247 
250 {
252  "Address not pointing to a valid redistributor\n");
253 
254  const Addr daddr = addr - redistRange.start();
255  const uint32_t redistributor_id = daddr / redistSize;
256 
257  panic_if(redistributor_id >= redistributors.size(),
258  "Invalid redistributor_id!");
259  panic_if(!redistributors[redistributor_id], "Redistributor is null!");
260 
261  return redistributors[redistributor_id];
262 }
263 
264 void
266 {
267  distributor->serializeSection(cp, "distributor");
268 
269  for (uint32_t redistributor_id = 0;
270  redistributor_id < redistributors.size(); redistributor_id++)
271  redistributors[redistributor_id]->serializeSection(cp,
272  csprintf("redistributors.%i", redistributor_id));
273 
274  for (uint32_t cpu_interface_id = 0;
275  cpu_interface_id < cpuInterfaces.size(); cpu_interface_id++)
276  cpuInterfaces[cpu_interface_id]->serializeSection(cp,
277  csprintf("cpuInterface.%i", cpu_interface_id));
278 }
279 
280 void
282 {
283  getSystem()->setGIC(this);
284 
285  distributor->unserializeSection(cp, "distributor");
286 
287  for (uint32_t redistributor_id = 0;
288  redistributor_id < redistributors.size(); redistributor_id++)
289  redistributors[redistributor_id]->unserializeSection(cp,
290  csprintf("redistributors.%i", redistributor_id));
291 
292  for (uint32_t cpu_interface_id = 0;
293  cpu_interface_id < cpuInterfaces.size(); cpu_interface_id++)
294  cpuInterfaces[cpu_interface_id]->unserializeSection(cp,
295  csprintf("cpuInterface.%i", cpu_interface_id));
296 }
297 
298 Gicv3 *
299 Gicv3Params::create()
300 {
301  return new Gicv3(this);
302 }
IntrControl * intrctrl
Pointer to the interrupt controller.
Definition: platform.hh:53
#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
bool havePosted(int cpu_id) const
Definition: intr_control.cc:71
void setUintX(uint64_t w, ByteOrder endian)
Set the value in the word w after truncating it to the length of the packet and then byteswapping it ...
Definition: packet.cc:351
Platform * platform
Platform this GIC belongs to.
Definition: base_gic.hh:114
static const int PPI_MAX
Definition: gic_v3.hh:78
Definition: gic_v3.hh:52
Bitfield< 7 > i
BaseGicParams Params
Definition: base_gic.hh:65
void post(int cpu_id, int int_num, int index)
Definition: intr_control.cc:47
bool contains(const Addr &a) const
Determine if the range contains an address.
Definition: addr_range.hh:402
const Params * params() const
Definition: gic_v3.hh:114
ip6_addr_t addr
Definition: inet.hh:330
uint64_t read(Addr addr, size_t size, bool is_secure_access)
Gicv3Its * its
Definition: gic_v3.hh:62
Gicv3Redistributor * getRedistributorByAddr(Addr address) const
Definition: gic_v3.cc:249
void write(Addr addr, uint64_t data, size_t size, bool is_secure_access)
Definition: cprintf.cc:40
InterruptTypes
Definition: isa_traits.hh:101
void sendInt(uint32_t int_id)
AddrRangeList addrRanges
Definition: gic_v3.hh:65
void clearInt(uint32_t int_id) override
Clear an interrupt from a device that is connected to the GIC.
Definition: gic_v3.cc:183
void serializeSection(CheckpointOut &cp, const char *name) const
Serialize an object into a new section.
Definition: serialize.cc:171
void deassertSPI(uint32_t int_id)
uint64_t getUintX(ByteOrder endian) const
Get the data in the packet byte swapped from the specified endianness and zero-extended to 64 bits...
Definition: packet.cc:334
void clearPPInt(uint32_t int_id, uint32_t cpu) override
Definition: gic_v3.cc:200
void clearAll(int cpu_id)
Definition: intr_control.cc:63
ThreadContext * getThreadContext(ContextID tid) const
Definition: system.hh:186
static const int SGI_MAX
Definition: gic_v3.hh:76
uint64_t redistSize
Definition: gic_v3.hh:66
Gicv3Redistributor * getRedistributorByAffinity(uint32_t affinity) const
Definition: gic_v3.cc:237
RequestPtr req
A pointer to the original request.
Definition: packet.hh:321
void deassertInt(uint32_t cpu, ArmISA::InterruptTypes int_type)
Definition: gic_v3.cc:219
unsigned getSize() const
Definition: packet.hh:730
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158
void makeAtomicResponse()
Definition: packet.hh:943
void sendPPInt(uint32_t int_id, uint32_t cpu) override
Interface call for private peripheral interrupts.
Definition: gic_v3.cc:189
uint64_t Tick
Tick count type.
Definition: types.hh:61
Gicv3Distributor * distributor
Definition: gic_v3.hh:59
void deassertAll(uint32_t cpu)
Definition: gic_v3.cc:225
static const uint32_t ADDR_RANGE_SIZE
int64 int_type
Definition: sc_nbdefs.hh:206
Addr getAddr() const
Definition: packet.hh:720
unsigned numContexts() const
Definition: system.hh:198
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: gic_v3.cc:265
GicVersion
Definition: base_gic.hh:66
void write(Addr addr, uint64_t data, size_t size, bool is_secure_access)
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
uint32_t processorNumber() const
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
Gicv3(const Params *p)
Definition: gic_v3.cc:54
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: gic_v3.cc:100
static void callClearStandByWfi(ThreadContext *tc)
Make a call to notify the power controller of STANDBYWFI deassertion.
Definition: system.cc:207
Generic interface for platforms.
void setGIC(BaseGic *gic)
Sets the pointer to the GIC.
Definition: system.hh:174
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: gic_v3.cc:281
Declaration of the Packet class.
std::ostream CheckpointOut
Definition: serialize.hh:63
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: gic_v3.cc:60
friend class Gicv3Redistributor
Definition: gic_v3.hh:56
void postInt(uint32_t cpu, ArmISA::InterruptTypes int_type)
Definition: gic_v3.cc:205
friend class Gicv3CPUInterface
Definition: gic_v3.hh:55
bool haveAsserted(uint32_t cpu) const
Definition: gic_v3.cc:231
void sendInt(uint32_t int_id) override
Post an interrupt from a device that is connected to the GIC.
Definition: gic_v3.cc:174
AddrRange redistRange
Definition: gic_v3.hh:64
Addr start() const
Get the start address of the range.
Definition: addr_range.hh:293
bool isSecure() const
Definition: packet.hh:749
std::vector< Gicv3Redistributor * > redistributors
Definition: gic_v3.hh:60
AddrRange distRange
Definition: gic_v3.hh:63
std::vector< Gicv3CPUInterface * > cpuInterfaces
Definition: gic_v3.hh:61
void clear(int cpu_id, int int_num, int index)
Definition: intr_control.cc:55
bool supportsVersion(GicVersion version) override
Check if version supported.
Definition: gic_v3.cc:212
void setGIC(Gicv3 *_gic)
Definition: gic_v3_its.cc:800
ArmSystem * getSystem() const
Definition: base_gic.hh:104
Bitfield< 0 > p
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:181
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: base_gic.cc:66
const char data[]
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: gic_v3.cc:137
void unserializeSection(CheckpointIn &cp, const char *name)
Unserialize an a child object.
Definition: serialize.cc:178
GICv3 ITS module.
Definition: gic_v3_its.hh:74
uint64_t read(Addr addr, size_t size, bool is_secure_access)
static const int INTID_SECURE
Definition: gic_v3.hh:71

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