rtc_pl031.hh (9235:5aa4896ed55a) rtc_pl031.hh (10905:a6ca6831e775)
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

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

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);
127
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

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

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);
127
128
129 virtual void serialize(std::ostream &os);
130 virtual void unserialize(Checkpoint *cp, const std::string &section);
128 void serialize(CheckpointOut &cp) const M5_ATTR_OVERRIDE;
129 void unserialize(CheckpointIn &cp) M5_ATTR_OVERRIDE;
131};
132
133
134#endif // __DEV_ARM_RTC_PL031_HH__
135
130};
131
132
133#endif // __DEV_ARM_RTC_PL031_HH__
134