gem5  v20.1.0.0
rtc_pl031.hh
Go to the documentation of this file.
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
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 
38 #ifndef __DEV_ARM_RTC_PL310_HH__
39 #define __DEV_ARM_RTC_PL310_HH__
40 
41 #include "dev/arm/amba_device.hh"
42 #include "params/PL031.hh"
43 
48 class PL031 : public AmbaIntDevice
49 {
50  protected:
51  enum {
52  DataReg = 0x00,
53  MatchReg = 0x04,
54  LoadReg = 0x08,
55  ControlReg = 0x0C,
56  IntMask = 0x10,
57  RawISR = 0x14,
58  MaskedISR = 0x18,
59  IntClear = 0x1C,
60  };
61 
62  /* Seconds since epoch that correspond to time simulation was started at the
63  * begining of simulation and is then updated if ever written. */
64  uint32_t timeVal;
65 
66  /* Time when the timeVal register was written */
68 
69  /* Previous load value */
70  uint32_t loadVal;
71 
72  /* RTC Match Value
73  * Cause an interrupt when this value hits counter
74  */
75  uint32_t matchVal;
76 
79  bool rawInt;
80 
84  bool maskInt;
85 
88  bool pendingInt;
89 
91  void counterMatch();
93 
97  void resyncMatch();
98 
99  public:
100  typedef PL031Params Params;
101  const Params *
102  params() const
103  {
104  return dynamic_cast<const Params *>(_params);
105  }
110  PL031(Params *p);
111 
117  Tick read(PacketPtr pkt) override;
118 
124  Tick write(PacketPtr pkt) override;
125 
126  void serialize(CheckpointOut &cp) const override;
127  void unserialize(CheckpointIn &cp) override;
128 };
129 
130 
131 #endif // __DEV_ARM_RTC_PL031_HH__
132 
PL031::read
Tick read(PacketPtr pkt) override
Handle a read to the device.
Definition: rtc_pl031.cc:59
PL031::write
Tick write(PacketPtr pkt) override
Handle writes to the device.
Definition: rtc_pl031.cc:121
PL031::Params
PL031Params Params
Definition: rtc_pl031.hh:100
PL031::ControlReg
@ ControlReg
Definition: rtc_pl031.hh:55
amba_device.hh
PL031::matchVal
uint32_t matchVal
Definition: rtc_pl031.hh:75
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:63
PL031
Definition: rtc_pl031.hh:48
PL031::matchEvent
EventFunctionWrapper matchEvent
Definition: rtc_pl031.hh:92
EventFunctionWrapper
Definition: eventq.hh:1101
PL031::RawISR
@ RawISR
Definition: rtc_pl031.hh:57
PL031::MaskedISR
@ MaskedISR
Definition: rtc_pl031.hh:58
cp
Definition: cprintf.cc:40
PL031::resyncMatch
void resyncMatch()
Called to update the matchEvent when the load Value or match value are written.
Definition: rtc_pl031.cc:164
PL031::maskInt
bool maskInt
If the timer interrupt mask that is anded with the raw interrupt to generate a pending interrupt.
Definition: rtc_pl031.hh:84
PL031::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: rtc_pl031.cc:217
PL031::params
const Params * params() const
Definition: rtc_pl031.hh:102
PL031::rawInt
bool rawInt
If timer has caused an interrupt.
Definition: rtc_pl031.hh:79
PL031::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: rtc_pl031.cc:195
PL031::LoadReg
@ LoadReg
Definition: rtc_pl031.hh:54
AmbaIntDevice
Definition: amba_device.hh:86
PL031::loadVal
uint32_t loadVal
Definition: rtc_pl031.hh:70
PL031::MatchReg
@ MatchReg
Definition: rtc_pl031.hh:53
PL031::IntMask
@ IntMask
Definition: rtc_pl031.hh:56
PL031::IntClear
@ IntClear
Definition: rtc_pl031.hh:59
AmbaPioDevice::Params
AmbaPioDeviceParams Params
Definition: amba_device.hh:82
SimObject::_params
const SimObjectParams * _params
Cached copy of the object parameters.
Definition: sim_object.hh:110
PL031::PL031
PL031(Params *p)
The constructor for RealView just registers itself with the MMU.
Definition: rtc_pl031.cc:49
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:257
PL031::timeVal
uint32_t timeVal
Definition: rtc_pl031.hh:64
PL031::counterMatch
void counterMatch()
Called when the counter reaches matches.
Definition: rtc_pl031.cc:181
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:63
PL031::lastWrittenTick
Tick lastWrittenTick
Definition: rtc_pl031.hh:67
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
CheckpointIn
Definition: serialize.hh:67
PL031::pendingInt
bool pendingInt
If an interrupt is currently pending.
Definition: rtc_pl031.hh:88
PL031::DataReg
@ DataReg
Definition: rtc_pl031.hh:52

Generated on Wed Sep 30 2020 14:02:10 for gem5 by doxygen 1.8.17