gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
gic_v3.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 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) 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_H__
42 #define __DEV_ARM_GICV3_H__
43 
44 #include "dev/arm/base_gic.hh"
45 #include "params/Gicv3.hh"
46 
47 class Gicv3CPUInterface;
48 class Gicv3Distributor;
49 class Gicv3Redistributor;
50 class Gicv3Its;
51 
52 class Gicv3 : public BaseGic
53 {
54  protected:
55  friend class Gicv3CPUInterface;
56  friend class Gicv3Redistributor;
57 
58  typedef Gicv3Params Params;
66  uint64_t redistSize;
67 
68  public:
69 
70  // Special interrupt IDs, as per SPEC 2.2.1 section
71  static const int INTID_SECURE = 1020;
72  static const int INTID_NONSECURE = 1021;
73  static const int INTID_SPURIOUS = 1023;
74 
75  // Number of Software Generated Interrupts
76  static const int SGI_MAX = 16;
77  // Number of Private Peripheral Interrupts
78  static const int PPI_MAX = 16;
79 
80  // Interrupt states for PPIs, SGIs and SPIs, as per SPEC 4.1.2 section
81  typedef enum {
86  } IntStatus;
87 
88  // Interrupt groups, as per SPEC section 4.6
89  typedef enum {
90  G0S,
91  G1S,
93  } GroupId;
94 
95  typedef enum {
99 
100  protected:
101 
102  void clearInt(uint32_t int_id) override;
103  void clearPPInt(uint32_t int_id, uint32_t cpu) override;
104 
105  inline AddrRangeList
106  getAddrRanges() const override
107  {
108  return addrRanges;
109  }
110 
111  void init() override;
112 
113  const Params *
114  params() const
115  {
116  return dynamic_cast<const Params *>(_params);
117  }
118 
119  Tick read(PacketPtr pkt) override;
120  void reset();
121  void sendInt(uint32_t int_id) override;
122  void sendPPInt(uint32_t int_id, uint32_t cpu) override;
123  void serialize(CheckpointOut & cp) const override;
124  void unserialize(CheckpointIn & cp) override;
125  Tick write(PacketPtr pkt) override;
126  bool supportsVersion(GicVersion version) override;
127 
128  public:
129 
130  Gicv3(const Params * p);
131  void deassertInt(uint32_t cpu, ArmISA::InterruptTypes int_type);
132  void deassertAll(uint32_t cpu);
133  bool haveAsserted(uint32_t cpu) const;
134 
135  inline Gicv3CPUInterface *
136  getCPUInterface(int cpu_id) const
137  {
138  assert(cpu_id < cpuInterfaces.size() and cpuInterfaces[cpu_id]);
139  return cpuInterfaces[cpu_id];
140  }
141 
142  inline Gicv3Distributor *
144  {
145  return distributor;
146  }
147 
148  inline Gicv3Redistributor *
149  getRedistributor(ContextID context_id) const
150  {
151  assert(context_id < redistributors.size() and
152  redistributors[context_id]);
153  return redistributors[context_id];
154  }
155 
157  getRedistributorByAffinity(uint32_t affinity) const;
158 
160  getRedistributorByAddr(Addr address) const;
161 
162  void postInt(uint32_t cpu, ArmISA::InterruptTypes int_type);
163 };
164 
165 #endif //__DEV_ARM_GICV3_H__
static const int PPI_MAX
Definition: gic_v3.hh:78
Definition: gic_v3.hh:52
const Params * params() const
Definition: gic_v3.hh:114
Gicv3Its * its
Definition: gic_v3.hh:62
Gicv3Redistributor * getRedistributorByAddr(Addr address) const
Definition: gic_v3.cc:249
AddrRangeList getAddrRanges() const override
Every PIO device is obliged to provide an implementation that returns the address ranges the device r...
Definition: gic_v3.hh:106
Definition: cprintf.cc:40
Gicv3Params Params
Definition: gic_v3.hh:58
InterruptTypes
Definition: isa_traits.hh:101
AddrRangeList addrRanges
Definition: gic_v3.hh:65
static const int INTID_NONSECURE
Definition: gic_v3.hh:72
void clearInt(uint32_t int_id) override
Clear an interrupt from a device that is connected to the GIC.
Definition: gic_v3.cc:183
STL vector class.
Definition: stl.hh:37
void clearPPInt(uint32_t int_id, uint32_t cpu) override
Definition: gic_v3.cc:200
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
void deassertInt(uint32_t cpu, ArmISA::InterruptTypes int_type)
Definition: gic_v3.cc:219
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
Definition: addr_range.hh:68
IntTriggerType
Definition: gic_v3.hh:95
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
int64 int_type
Definition: sc_nbdefs.hh:206
GroupId
Definition: gic_v3.hh:89
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: gic_v3.cc:265
GicVersion
Definition: base_gic.hh:66
static const int INTID_SPURIOUS
Definition: gic_v3.hh:73
Gicv3Redistributor * getRedistributor(ContextID context_id) const
Definition: gic_v3.hh:149
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
Gicv3CPUInterface * getCPUInterface(int cpu_id) const
Definition: gic_v3.hh:136
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
IntStatus
Definition: gic_v3.hh:81
Base class for ARM GIC implementations.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: gic_v3.cc:281
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
const SimObjectParams * _params
Cached copy of the object parameters.
Definition: sim_object.hh:111
void postInt(uint32_t cpu, ArmISA::InterruptTypes int_type)
Definition: gic_v3.cc:205
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
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
bool supportsVersion(GicVersion version) override
Check if version supported.
Definition: gic_v3.cc:212
Bitfield< 0 > p
int ContextID
Globally unique thread context ID.
Definition: types.hh:229
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: gic_v3.cc:137
void reset()
GICv3 ITS module.
Definition: gic_v3_its.hh:74
static const int INTID_SECURE
Definition: gic_v3.hh:71
Gicv3Distributor * getDistributor() const
Definition: gic_v3.hh:143

Generated on Thu May 28 2020 16:21:32 for gem5 by doxygen 1.8.13