gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
base_gic.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2013, 2017-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 
42 #ifndef __DEV_ARM_BASE_GIC_H__
43 #define __DEV_ARM_BASE_GIC_H__
44 
45 #include <unordered_map>
46 
47 #include "arch/arm/system.hh"
48 #include "dev/io_device.hh"
49 
50 class Platform;
51 class RealView;
52 class ThreadContext;
53 class ArmInterruptPin;
54 class ArmSPI;
55 class ArmPPI;
56 
57 struct ArmInterruptPinParams;
58 struct ArmPPIParams;
59 struct ArmSPIParams;
60 struct BaseGicParams;
61 
62 class BaseGic : public PioDevice
63 {
64  public:
65  typedef BaseGicParams Params;
66  enum class GicVersion { GIC_V2, GIC_V3, GIC_V4 };
67 
68  BaseGic(const Params *p);
69  virtual ~BaseGic();
70  void init() override;
71 
72  const Params * params() const;
73 
82  virtual void sendInt(uint32_t num) = 0;
83 
90  virtual void sendPPInt(uint32_t num, uint32_t cpu) = 0;
91  virtual void clearPPInt(uint32_t num, uint32_t cpu) = 0;
92 
101  virtual void clearInt(uint32_t num) = 0;
102 
103  ArmSystem *
104  getSystem() const
105  {
106  return (ArmSystem *) sys;
107  }
108 
110  virtual bool supportsVersion(GicVersion version) = 0;
111 
112  protected:
115 };
116 
118 {
119  public:
120  virtual uint32_t readDistributor(ContextID ctx, Addr daddr) = 0;
121  virtual uint32_t readCpu(ContextID ctx, Addr daddr) = 0;
122 
123  virtual void writeDistributor(ContextID ctx, Addr daddr,
124  uint32_t data) = 0;
125  virtual void writeCpu(ContextID ctx, Addr daddr, uint32_t data) = 0;
126 };
127 
136 {
137  public:
138  ArmInterruptPinGen(const ArmInterruptPinParams *p);
139 
140  virtual ArmInterruptPin* get(ThreadContext *tc = nullptr) = 0;
141 };
142 
149 {
150  public:
151  ArmSPIGen(const ArmSPIParams *p);
152 
153  ArmInterruptPin* get(ThreadContext *tc = nullptr) override;
154  protected:
156 };
157 
164 {
165  public:
166  ArmPPIGen(const ArmPPIParams *p);
167 
168  ArmInterruptPin* get(ThreadContext* tc = nullptr) override;
169  protected:
170  std::unordered_map<ContextID, ArmPPI*> pins;
171 };
172 
177 {
178  friend class ArmInterruptPinGen;
179  protected:
181  uint32_t int_num);
182 
183  public: /* Public interface */
191  void setThreadContext(ThreadContext *tc);
192 
194  uint32_t num() const { return intNum; }
195 
197  virtual void raise() = 0;
199  virtual void clear() = 0;
200 
201  protected:
208  ContextID targetContext() const;
209 
215 
218 
220  const uint32_t intNum;
221 };
222 
223 class ArmSPI : public ArmInterruptPin
224 {
225  friend class ArmSPIGen;
226  private:
227  ArmSPI(Platform *platform, uint32_t int_num);
228 
229  public:
230  void raise() override;
231  void clear() override;
232 };
233 
234 class ArmPPI : public ArmInterruptPin
235 {
236  friend class ArmPPIGen;
237  private:
238  ArmPPI(Platform *platform, ThreadContext *tc, uint32_t int_num);
239 
240  public:
241  void raise() override;
242  void clear() override;
243 };
244 
245 #endif
const uint32_t intNum
Interrupt number to generate.
Definition: base_gic.hh:220
ArmSPI * pin
Definition: base_gic.hh:155
Platform * platform
Platform this GIC belongs to.
Definition: base_gic.hh:114
RealView *const platform
Arm platform to use for interrupt generation.
Definition: base_gic.hh:217
virtual void clearInt(uint32_t num)=0
Clear an interrupt from a device that is connected to the GIC.
BaseGicParams Params
Definition: base_gic.hh:65
Shared Peripheral Interrupt Generator It is capable of generating one interrupt only: it maintains a ...
Definition: base_gic.hh:148
ThreadContext is the external interface to all thread state for anything outside of the CPU...
virtual void sendPPInt(uint32_t num, uint32_t cpu)=0
Interface call for private peripheral interrupts.
virtual void sendInt(uint32_t num)=0
Post an interrupt from a device that is connected to the GIC.
This device is the base class which all devices senstive to an address range inherit from...
Definition: io_device.hh:99
GicVersion
Definition: base_gic.hh:66
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 num() const
Get interrupt number.
Definition: base_gic.hh:194
virtual ~BaseGic()
Definition: base_gic.cc:61
const ThreadContext * threadContext
Pointer to the thread context that owns this interrupt in case it is a thread-/CPU-private interrupt...
Definition: base_gic.hh:214
std::unordered_map< ContextID, ArmPPI * > pins
Definition: base_gic.hh:170
This SimObject is instantiated in the python world and serves as an ArmInterruptPin generator...
Definition: base_gic.hh:135
Private Peripheral Interrupt Generator Since PPIs are banked in the GIC, this class is capable of gen...
Definition: base_gic.hh:163
ArmSystem * getSystem() const
Definition: base_gic.hh:104
Bitfield< 0 > p
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: base_gic.cc:66
BaseGic(const Params *p)
Definition: base_gic.cc:47
const char data[]
Generic representation of an Arm interrupt pin.
Definition: base_gic.hh:176
Abstract superclass for simulation objects.
Definition: sim_object.hh:93
int ContextID
Globally unique thread context ID.
Definition: types.hh:229
virtual void clearPPInt(uint32_t num, uint32_t cpu)=0
const Params * params() const
Definition: base_gic.cc:73
virtual bool supportsVersion(GicVersion version)=0
Check if version supported.

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