gem5  v20.0.0.2
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
watchdog_sp805.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 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_WATCHDOG_SP805_HH__
39 #define __DEV_ARM_WATCHDOG_SP805_HH__
40 
41 #include "dev/arm/amba_device.hh"
42 
43 class Sp805Params;
44 
52 class Sp805 : public AmbaIntDevice
53 {
54  public:
55  Sp805(Sp805Params const* params);
56 
57  void serialize(CheckpointOut &cp) const override;
58  void unserialize(CheckpointIn &cp) override;
59 
60  protected:
61  Tick read(PacketPtr pkt) override;
62  Tick write(PacketPtr pkt) override;
63 
64  private:
65  enum Offset : Addr {
66  WDOGLOAD = 0x000,
67  WDOGVALUE = 0x004,
68  WDOGCONTROL = 0x008,
69  WDOGINTCLR = 0x00c,
70  WDOGRIS = 0x010,
71  WDOGMIS = 0x014,
72  // 0x018 - 0xbfc -> Reserved
73  WDOGLOCK = 0xc00,
74  // 0xc04 - 0xefc -> Reserved
75  WDOGITCR = 0xf00,
76  WDOGITOP = 0xf04,
77  // 0xf08 - 0xfdc -> Reserved
78  // 0xfe0 - 0xfff -> CoreSight / Peripheral ID (AMBA ID)
79  };
80 
82  uint32_t timeoutInterval;
83 
86 
88  uint32_t persistedValue;
89 
91  bool enabled;
92 
95 
97  bool intRaised;
98 
101 
104 
107 
109  uint32_t value(void) const;
110 
112  void timeoutExpired(void);
113 
115  void restartCounter(void);
116 
118  void stopCounter(void);
119 
124  void sendInt(void);
125 
127  void clearInt(void);
128 
130  static constexpr uint32_t WDOGLOCK_MAGIC = 0x1acce551;
131 };
132 
133 #endif // __DEV_ARM_WATCHDOG_SP805_HH__
static constexpr uint32_t WDOGLOCK_MAGIC
If written into WdogLock, registers are unlocked for writes.
void restartCounter(void)
Restarts the counter to the current timeout interval.
void stopCounter(void)
Stops the counter when watchdog becomes disabled.
Tick timeoutStartTick
Timeout start tick to keep track of the counter value.
Definition: cprintf.cc:40
uint32_t value(void) const
Returns the current counter value.
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
void timeoutExpired(void)
Triggered when value reaches 0.
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Sp805(Sp805Params const *params)
EventFunctionWrapper timeoutEvent
Timeout event, triggered when the counter value reaches 0.
bool resetEnabled
Indicates if reset behaviour is enabled when counter reaches 0.
This is a base class for AMBA devices that have to respond to Device and Implementer ID calls...
uint64_t Tick
Tick count type.
Definition: types.hh:61
uint32_t timeoutInterval
Timeout interval (in cycles) as specified in WdogLoad.
const Params * params() const
Definition: io_device.hh:167
void clearInt(void)
Clears any active interrupts.
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:140
bool enabled
Indicates if watchdog (counter and interrupt) is enabled.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
bool intRaised
Indicates if an interrupt has been raised by the counter reaching 0.
uint32_t persistedValue
Value as persisted when the watchdog is stopped.
std::ostream CheckpointOut
Definition: serialize.hh:63
bool integrationTestEnabled
Indicates if integration test harness is enabled.
void serialize(CheckpointOut &cp) const override
Serialize an object.
bool writeAccessEnabled
Indicates if write access to registers is enabled.
void sendInt(void)
Raises an interrupt.

Generated on Mon Jun 8 2020 15:45:10 for gem5 by doxygen 1.8.13