gem5  v20.0.0.3
gpu_nomali.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2014-2016 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 #ifndef __DEV_ARM_NOMALI_GPU_HH__
39 #define __DEV_ARM_NOMALI_GPU_HH__
40 
41 #include <map>
42 
43 #include "dev/io_device.hh"
44 #include "libnomali/nomali.h"
45 
46 class NoMaliGpuParams;
47 class CustomNoMaliGpuParams;
48 class RealView;
49 
50 class NoMaliGpu : public PioDevice
51 {
52  public:
53  NoMaliGpu(const NoMaliGpuParams *p);
54  virtual ~NoMaliGpu();
55 
56  void init() override;
57 
58  public: /* Checkpointing */
59  void serialize(CheckpointOut &cp) const override;
60  void unserialize(CheckpointIn &cp) override;
61 
62  public: /* IO device interfaces */
63  Tick read(PacketPtr pkt) override;
64  Tick write(PacketPtr pkt) override;
65  AddrRangeList getAddrRanges() const override;
66 
67  protected: /* API wrappers/helpers */
74  void reset();
75 
77  uint32_t readReg(nomali_addr_t reg);
79  void writeReg(nomali_addr_t reg, uint32_t value);
80 
82  uint32_t readRegRaw(nomali_addr_t reg) const;
84  void writeRegRaw(nomali_addr_t reg, uint32_t value);
85 
92  bool intState(nomali_int_t intno);
93 
102  static void gpuPanic(nomali_error_t err, const char *msg) M5_ATTR_NORETURN;
109  static void panicOnErr(nomali_error_t err, const char *msg) {
110  if (err != NOMALI_E_OK)
111  gpuPanic(err, msg);
112  }
113 
114  protected: /* Callbacks */
128  virtual void onInterrupt(nomali_int_t intno, bool set);
129 
136  virtual void onReset();
137 
140  private: /* Callback helpers */
142  void setCallback(const nomali_callback_t &callback);
143 
155  static void _interrupt(nomali_handle_t h, void *usr,
156  nomali_int_t intno, int set);
157 
167  static void _reset(nomali_handle_t h, void *usr);
168 
169  protected:
171  const Addr pioAddr;
172 
175 
178  const std::map<nomali_int_t, uint32_t> interruptMap;
179 
181  nomali_info_t nomaliInfo;
182 
184  nomali_handle_t nomali;
185 };
186 
187 
189 {
190  public:
191  CustomNoMaliGpu(const CustomNoMaliGpuParams *p);
192  virtual ~CustomNoMaliGpu();
193 
194  protected:
195  void onReset() override;
196 
197  private:
199  std::map<nomali_addr_t, uint32_t> idRegs;
200 };
201 
202 #endif // __DEV_ARM_NOMALI_GPU_HH__
RealView *const platform
Platform, used to discover GIC.
Definition: gpu_nomali.hh:174
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: gpu_nomali.cc:168
Bitfield< 5, 3 > reg
Definition: types.hh:87
bool intState(nomali_int_t intno)
Wrapper around nomali_int_state()
Definition: gpu_nomali.cc:253
nomali_handle_t nomali
Handle of a NoMali library instance.
Definition: gpu_nomali.hh:184
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: gpu_nomali.cc:125
static void _interrupt(nomali_handle_t h, void *usr, nomali_int_t intno, int set)
Interrupt callback from the NoMali library.
Definition: gpu_nomali.cc:307
virtual ~NoMaliGpu()
Definition: gpu_nomali.cc:107
virtual void onInterrupt(nomali_int_t intno, bool set)
Interrupt callback from the NoMali library.
Definition: gpu_nomali.cc:271
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: gpu_nomali.cc:189
nomali_info_t nomaliInfo
Cached information struct from the NoMali library.
Definition: gpu_nomali.hh:181
NoMaliGpu(const NoMaliGpuParams *p)
Definition: gpu_nomali.cc:55
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: gpu_nomali.cc:136
static void _reset(nomali_handle_t h, void *usr)
Reset callback from the NoMali library.
Definition: gpu_nomali.cc:316
std::map< nomali_addr_t, uint32_t > idRegs
Map between GPU registers and their custom reset values.
Definition: gpu_nomali.hh:199
static void panicOnErr(nomali_error_t err, const char *msg)
Panic if the NoMali returned an error, do nothing otherwise.
Definition: gpu_nomali.hh:109
void writeReg(nomali_addr_t reg, uint32_t value)
Wrapper around nomali_reg_write().
Definition: gpu_nomali.cc:221
uint64_t Tick
Tick count type.
Definition: types.hh:61
void setCallback(const nomali_callback_t &callback)
Wrapper around nomali_set_callback()
Definition: gpu_nomali.cc:296
const Addr pioAddr
Device base address.
Definition: gpu_nomali.hh:171
const std::map< nomali_int_t, uint32_t > interruptMap
Map between NoMali interrupt types and actual GIC interrupts.
Definition: gpu_nomali.hh:178
This device is the base class which all devices senstive to an address range inherit from...
Definition: io_device.hh:99
Bitfield< 16 > usr
Definition: misc.hh:802
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
void writeRegRaw(nomali_addr_t reg, uint32_t value)
Wrapper around nomali_reg_write_raw().
Definition: gpu_nomali.cc:245
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: gpu_nomali.cc:114
void reset()
Wrapper around nomali_reset().
Definition: gpu_nomali.cc:195
uint32_t readReg(nomali_addr_t reg)
Wrapper around nomali_reg_read().
Definition: gpu_nomali.cc:205
virtual void onReset()
Reset callback from the NoMali library.
Definition: gpu_nomali.cc:290
std::ostream CheckpointOut
Definition: serialize.hh:63
uint32_t readRegRaw(nomali_addr_t reg) const
Wrapper around nomali_reg_read_raw().
Definition: gpu_nomali.cc:232
static void gpuPanic(nomali_error_t err, const char *msg) M5_ATTR_NORETURN
Format a NoMali error into an error message and panic.
Definition: gpu_nomali.cc:264
Bitfield< 0 > p
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: gpu_nomali.cc:147

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