timer_sp804.hh (7584:28ddf6d9e982) timer_sp804.hh (7733:08d6a773d1b6)
1/*
2 * Copyright (c) 2010 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

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

116
117 std::string name() const { return _name; }
118
119 /** Handle read for a single timer */
120 void read(PacketPtr pkt, Addr daddr);
121
122 /** Handle write for a single timer */
123 void write(PacketPtr pkt, Addr daddr);
1/*
2 * Copyright (c) 2010 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

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

116
117 std::string name() const { return _name; }
118
119 /** Handle read for a single timer */
120 void read(PacketPtr pkt, Addr daddr);
121
122 /** Handle write for a single timer */
123 void write(PacketPtr pkt, Addr daddr);
124
125 void serialize(std::ostream &os);
126 void unserialize(Checkpoint *cp, const std::string &section);
127
124 };
125
126 /** Pointer to the GIC for causing an interrupt */
127 Gic *gic;
128
129 /** Timers that do the actual work */
130 Timer timer0;
131 Timer timer1;

--- 36 unchanged lines hidden ---
128 };
129
130 /** Pointer to the GIC for causing an interrupt */
131 Gic *gic;
132
133 /** Timers that do the actual work */
134 Timer timer0;
135 Timer timer1;

--- 36 unchanged lines hidden ---