gpu_nomali.hh (10916:5c76426fd9ee) gpu_nomali.hh (11168:f98eb2da15a4)
1/*
2 * Copyright (c) 2014-2015 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

--- 41 unchanged lines hidden (view full) ---

50
51class NoMaliGpu : public PioDevice
52{
53 public:
54 NoMaliGpu(const NoMaliGpuParams *p);
55 virtual ~NoMaliGpu();
56
57 public: /* Checkpointing */
1/*
2 * Copyright (c) 2014-2015 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

--- 41 unchanged lines hidden (view full) ---

50
51class NoMaliGpu : public PioDevice
52{
53 public:
54 NoMaliGpu(const NoMaliGpuParams *p);
55 virtual ~NoMaliGpu();
56
57 public: /* Checkpointing */
58 void serialize(CheckpointOut &cp) const M5_ATTR_OVERRIDE;
59 void unserialize(CheckpointIn &cp) M5_ATTR_OVERRIDE;
58 void serialize(CheckpointOut &cp) const override;
59 void unserialize(CheckpointIn &cp) override;
60
61 public: /* IO device interfaces */
60
61 public: /* IO device interfaces */
62 Tick read(PacketPtr pkt) M5_ATTR_OVERRIDE;
63 Tick write(PacketPtr pkt) M5_ATTR_OVERRIDE;
64 AddrRangeList getAddrRanges() const M5_ATTR_OVERRIDE;
62 Tick read(PacketPtr pkt) override;
63 Tick write(PacketPtr pkt) override;
64 AddrRangeList getAddrRanges() const override;
65
66 private:
67 /**
68 * Interrupt callback from the NoMali library.
69 *
70 * This method calls onInterrupt() on the NoMaliGpu owning this
71 * device.
72 *

--- 58 unchanged lines hidden ---
65
66 private:
67 /**
68 * Interrupt callback from the NoMali library.
69 *
70 * This method calls onInterrupt() on the NoMaliGpu owning this
71 * device.
72 *

--- 58 unchanged lines hidden ---