gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
timer_cpulocal.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2011 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  * Authors: Ali Saidi
38  * Geoffrey Blake
39  */
40 
41 #ifndef __DEV_ARM_LOCALTIMER_HH__
42 #define __DEV_ARM_LOCALTIMER_HH__
43 
44 #include "base/bitunion.hh"
45 #include "dev/io_device.hh"
46 #include "params/CpuLocalTimer.hh"
47 
53 class BaseGic;
54 
56 {
57  protected:
58  class Timer : public Serializable
59  {
60 
61  public:
62  enum {
63  TimerLoadReg = 0x00,
73  Size = 0x38
74  };
75 
76  BitUnion32(TimerCtrl)
77  Bitfield<0> enable;
78  Bitfield<1> autoReload;
79  Bitfield<2> intEnable;
80  Bitfield<7,3> reserved;
81  Bitfield<15,8> prescalar;
82  EndBitUnion(TimerCtrl)
83 
84  BitUnion32(WatchdogCtrl)
85  Bitfield<0> enable;
86  Bitfield<1> autoReload;
87  Bitfield<2> intEnable;
88  Bitfield<3> watchdogMode;
89  Bitfield<7,4> reserved;
90  Bitfield<15,8> prescalar;
91  EndBitUnion(WatchdogCtrl)
92 
93  protected:
94  std::string _name;
95 
98 
100  uint32_t intNumTimer;
101  uint32_t intNumWatchdog;
102 
104  uint32_t cpuNum;
105 
107  TimerCtrl timerControl;
108  WatchdogCtrl watchdogControl;
109 
116 
121 
123  uint32_t timerLoadValue;
125 
127  void timerAtZero();
128  EventWrapper<Timer, &Timer::timerAtZero> timerZeroEvent;
129 
130  void watchdogAtZero();
131  EventWrapper<Timer, &Timer::watchdogAtZero> watchdogZeroEvent;
132  public:
135  void restartTimerCounter(uint32_t val);
136  void restartWatchdogCounter(uint32_t val);
137 
138  Timer();
139 
140  std::string name() const { return _name; }
141 
143  void read(PacketPtr pkt, Addr daddr);
144 
146  void write(PacketPtr pkt, Addr daddr);
147 
148  void serialize(CheckpointOut &cp) const override;
149  void unserialize(CheckpointIn &cp) override;
150 
151  friend class CpuLocalTimer;
152  };
153 
154  static const int CPU_MAX = 8;
155 
158 
161 
162  public:
163  typedef CpuLocalTimerParams Params;
164  const Params *
165  params() const
166  {
167  return dynamic_cast<const Params *>(_params);
168  }
174 
180  Tick read(PacketPtr pkt) override;
181 
187  Tick write(PacketPtr pkt) override;
188 
189  void serialize(CheckpointOut &cp) const override;
190  void unserialize(CheckpointIn &cp) override;
191 };
192 
193 
194 #endif // __DEV_ARM_SP804_HH__
195 
Tick write(PacketPtr pkt) override
Handle a write to the device.
Timer localTimer[CPU_MAX]
Timers that do the actual work.
BitUnion32(TimerCtrl) Bitfield< 0 > enable
void read(PacketPtr pkt, Addr daddr)
Handle read for a single timer.
void restartTimerCounter(uint32_t val)
Restart the counter ticking at val.
bool pendingIntTimer
If an interrupt is currently pending.
uint32_t intNumTimer
Number of interrupt to cause/clear.
EndBitUnion(TimerCtrl) BitUnion32(WatchdogCtrl) Bitfield< 0 > enable
Bitfield< 1 > autoReload
uint32_t timerLoadValue
Value to load into counters when periodic mode reaches 0.
EndBitUnion(WatchdogCtrl) protected CpuLocalTimer * parent
Pointer to parent class.
BaseGic * gic
Pointer to the GIC for causing an interrupt.
Bitfield< 63 > val
Definition: misc.hh:770
void serialize(CheckpointOut &cp) const override
Serialize an object.
CpuLocalTimerParams Params
Bitfield< 11 > enable
Definition: misc.hh:1004
void serialize(CheckpointOut &cp) const override
Serialize an object.
TimerCtrl timerControl
Control register as specified above.
uint64_t Tick
Tick count type.
Definition: types.hh:63
uint32_t cpuNum
Cpu this timer is attached to.
void write(PacketPtr pkt, Addr daddr)
Handle write for a single timer.
Bitfield< 2 > intEnable
Bitfield< 15, 8 > prescalar
void unserialize(CheckpointIn &cp) override
Unserialize an object.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
bool rawIntTimer
If timer has caused an interrupt.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:245
Basic support for object serialization.
Definition: serialize.hh:220
Bitfield< 7, 3 > reserved
void restartWatchdogCounter(uint32_t val)
void timerAtZero()
Called when the counter reaches 0.
Bitfield< 3 > watchdogMode
std::ostream CheckpointOut
Definition: serialize.hh:67
Tick read(PacketPtr pkt) override
Handle a read to the device.
const SimObjectParams * _params
Cached copy of the object parameters.
Definition: sim_object.hh:107
std::string name() const
void unserialize(CheckpointIn &cp) override
Unserialize an object.
EventWrapper< Timer,&Timer::watchdogAtZero > watchdogZeroEvent
EventWrapper< Timer,&Timer::timerAtZero > timerZeroEvent
Bitfield< 0 > p
static const int CPU_MAX
CpuLocalTimer(Params *p)
The constructor for RealView just registers itself with the MMU.
WatchdogCtrl watchdogControl
const Params * params() const

Generated on Fri Jun 9 2017 13:03:45 for gem5 by doxygen 1.8.6