rtc_pl031.hh (11168:f98eb2da15a4) rtc_pl031.hh (11174:5a9019db4a08)
1/*
2 * Copyright (c) 2010-2012 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

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

111 */
112 PL031(Params *p);
113
114 /**
115 * Handle a read to the device
116 * @param pkt The memory request.
117 * @param data Where to put the data.
118 */
1/*
2 * Copyright (c) 2010-2012 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

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

111 */
112 PL031(Params *p);
113
114 /**
115 * Handle a read to the device
116 * @param pkt The memory request.
117 * @param data Where to put the data.
118 */
119 virtual Tick read(PacketPtr pkt);
119 Tick read(PacketPtr pkt) override;
120
121 /**
122 * Handle writes to the device
123 * @param pkt The memory request.
124 * @param data the data
125 */
120
121 /**
122 * Handle writes to the device
123 * @param pkt The memory request.
124 * @param data the data
125 */
126 virtual Tick write(PacketPtr pkt);
126 Tick write(PacketPtr pkt) override;
127
128 void serialize(CheckpointOut &cp) const override;
129 void unserialize(CheckpointIn &cp) override;
130};
131
132
133#endif // __DEV_ARM_RTC_PL031_HH__
134
127
128 void serialize(CheckpointOut &cp) const override;
129 void unserialize(CheckpointIn &cp) override;
130};
131
132
133#endif // __DEV_ARM_RTC_PL031_HH__
134