gem5  v22.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
lupio_rtc.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2021 The Regents of the University of California
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #include "dev/lupio/lupio_rtc.hh"
30 
31 #include "base/time.hh"
32 #include "debug/LupioRTC.hh"
33 #include "mem/packet_access.hh"
34 #include "params/LupioRTC.hh"
35 
36 namespace gem5
37 {
38 
39 LupioRTC::LupioRTC(const Params &params) :
40  BasicPioDevice(params, params.pio_size),
41  time(params.time)
42 {
43  start = mktime(&time);
44 }
45 
46 uint8_t
48 {
49  uint8_t r = 0;
50  uint32_t time_sec;
51  time_t total_time;
52 
56  time_sec = (curTick() / sim_clock::as_int::s);
57  total_time = (time_t) time_sec + start;
58 
62  gmtime_r(&total_time, &time);
63 
64  switch (addr) {
65  case LUPIO_RTC_SECD:
66  r = time.tm_sec; /* 0-60 (for leap seconds) */
67  break;
68  case LUPIO_RTC_MINT:
69  r = time.tm_min; /* 0-59 */
70  break;
71  case LUPIO_RTC_HOUR:
72  r = time.tm_hour; /* 0-23 */
73  break;
74  case LUPIO_RTC_DYMO:
75  r = time.tm_mday; /* 1-31 */
76  break;
77  case LUPIO_RTC_MNTH:
78  r = time.tm_mon + 1; /* 1-12 */
79  break;
80  case LUPIO_RTC_YEAR:
81  r = (time.tm_year + 1900) % 100; /* 0-99 */
82  break;
83  case LUPIO_RTC_CENT:
84  r = (time.tm_year + 1900) / 100; /* 0-99 */
85  break;
86  case LUPIO_RTC_DYWK:
87  r = 1 + (time.tm_wday + 6) % 7; /* 1-7 (Monday is 1) */
88  break;
89  case LUPIO_RTC_DYYR:
90  r = time.tm_yday + 1; /* 1-366 (for leap years) */
91  break;
92  }
93  return r;
94 }
95 
96 Tick
98 {
99  bool is_atomic = pkt->isAtomicOp() && pkt->cmd == MemCmd::SwapReq;
101  "Read request - addr: %#x, size: %#x, atomic:%d\n",
102  pkt->getAddr(), pkt->getSize(), is_atomic);
103 
104  Addr rtc_addr = pkt->getAddr() - pioAddr;
105  uint8_t time_val = lupioRTCRead(rtc_addr);
106  DPRINTF(LupioRTC, "time value: %d\n", time_val);
107 
108  pkt->setData(&time_val);
109 
110  if (is_atomic) {
111  pkt->makeAtomicResponse();
112  } else {
113  pkt->makeResponse();
114  }
115 
116  return pioDelay;
117 }
118 
119 Tick
121 {
122  panic("Unexpected write to the LupioRTC device!");
123  return pioDelay;
124 }
125 
126 } // namespace gem5
gem5::curTick
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:46
gem5::LupioRTC::LUPIO_RTC_MINT
@ LUPIO_RTC_MINT
Definition: lupio_rtc.hh:56
gem5::LupioRTC::LUPIO_RTC_YEAR
@ LUPIO_RTC_YEAR
Definition: lupio_rtc.hh:60
gem5::Packet::isAtomicOp
bool isAtomicOp() const
Definition: packet.hh:829
gem5::LupioRTC::write
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: lupio_rtc.cc:120
gem5::BasicPioDevice::pioAddr
Addr pioAddr
Address that the device listens to.
Definition: io_device.hh:151
gem5::MemCmd::SwapReq
@ SwapReq
Definition: packet.hh:119
gem5::LupioRTC
LupioRTC: A Real-Time Clock Virtual Device that returns the current date and time in ISO 8601 format.
Definition: lupio_rtc.hh:45
gem5::Packet::setData
void setData(const uint8_t *p)
Copy data into the packet from the provided pointer.
Definition: packet.hh:1265
gem5::LupioRTC::time
struct tm time
Definition: lupio_rtc.hh:49
gem5::LupioRTC::LUPIO_RTC_SECD
@ LUPIO_RTC_SECD
Definition: lupio_rtc.hh:55
time.hh
lupio_rtc.hh
gem5::LupioRTC::LUPIO_RTC_MNTH
@ LUPIO_RTC_MNTH
Definition: lupio_rtc.hh:59
gem5::Packet::makeAtomicResponse
void makeAtomicResponse()
Definition: packet.hh:1056
gem5::VegaISA::r
Bitfield< 5 > r
Definition: pagetable.hh:60
gem5::sim_clock::as_int::s
Tick s
second
Definition: core.cc:68
gem5::LupioRTC::LUPIO_RTC_HOUR
@ LUPIO_RTC_HOUR
Definition: lupio_rtc.hh:57
gem5::LupioRTC::read
Tick read(PacketPtr pkt) override
Implement BasicPioDevice virtual functions.
Definition: lupio_rtc.cc:97
gem5::PioDevice::Params
PioDeviceParams Params
Definition: io_device.hh:134
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:186
gem5::LupioRTC::LUPIO_RTC_CENT
@ LUPIO_RTC_CENT
Definition: lupio_rtc.hh:61
gem5::Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:291
gem5::Tick
uint64_t Tick
Tick count type.
Definition: types.hh:58
gem5::BasicPioDevice::pioDelay
Tick pioDelay
Delay that the device experinces on an access.
Definition: io_device.hh:157
gem5::Packet::cmd
MemCmd cmd
The command field of the packet.
Definition: packet.hh:369
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::LupioRTC::LUPIO_RTC_DYYR
@ LUPIO_RTC_DYYR
Definition: lupio_rtc.hh:63
packet_access.hh
gem5::LupioRTC::lupioRTCRead
uint8_t lupioRTCRead(const uint8_t addr)
Function to return current time and date using system's wall-clock time.
Definition: lupio_rtc.cc:47
gem5::Packet::makeResponse
void makeResponse()
Take a request packet and modify it in place to be suitable for returning as a response to that reque...
Definition: packet.hh:1044
gem5::LupioRTC::start
time_t start
Definition: lupio_rtc.hh:48
gem5::LupioRTC::LUPIO_RTC_DYWK
@ LUPIO_RTC_DYWK
Definition: lupio_rtc.hh:62
gem5::LupioRTC::LupioRTC
LupioRTC(const Params &params)
Definition: lupio_rtc.cc:39
gem5::Packet::getAddr
Addr getAddr() const
Definition: packet.hh:790
gem5::LupioRTC::LUPIO_RTC_DYMO
@ LUPIO_RTC_DYMO
Definition: lupio_rtc.hh:58
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::BasicPioDevice
Definition: io_device.hh:147
gem5::Packet::getSize
unsigned getSize() const
Definition: packet.hh:800
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:178
gem5::X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:84

Generated on Thu Jun 16 2022 10:41:51 for gem5 by doxygen 1.8.17