39 #include "debug/MC146818.hh" 49 result += (val / 10) << 4;
58 result += (val >> 4) * 10;
68 mon = time.tm_mon + 1;
75 wday = time.tm_wday + 1;
91 bool bcd,
Tick frequency)
106 DPRINTFN(
"Real-time clock set to %s", asctime(&time));
116 MC146818::rega_dv_disabled(
const RtcRegA &
reg)
130 if (!rega_dv_disabled(stat_regA))
137 bool panic_unsupported(
false);
151 RtcRegA old_rega(stat_regA);
154 stat_regA.uip = old_rega;
156 if (!rega_dv_disabled(stat_regA) &&
158 inform(
"RTC: Unimplemented divider configuration: %i\n",
160 panic_unsupported =
true;
164 inform(
"RTC: Unimplemented interrupt rate: %i\n",
166 panic_unsupported =
true;
169 if (rega_dv_disabled(stat_regA)) {
174 }
else if (rega_dv_disabled(old_rega)) {
186 inform(
"RTC: Unimplemented interrupt configuration: %s %s\n",
189 panic_unsupported =
true;
193 inform(
"RTC: The binary interface is not fully implemented.\n");
194 panic_unsupported =
true;
198 inform(
"RTC: The 12h time format not supported.\n");
199 panic_unsupported =
true;
203 inform(
"RTC: Automatic daylight saving time not supported.\n");
204 panic_unsupported =
true;
217 panic(
"RTC status registers C and D are not implemented.\n");
222 if (panic_unsupported)
223 panic(
"Unimplemented RTC configuration!\n");
236 stat_regA.uip = !stat_regA.uip;
247 panic(
"Shouldn't be here");
255 assert(!rega_dv_disabled(stat_regA));
267 uint8_t regA_serial(stat_regA);
271 paramOut(cp, base +
".stat_regA", (uint8_t)regA_serial);
272 paramOut(cp, base +
".stat_regB", (uint8_t)regB_serial);
278 Tick rtcTimerInterruptTickOffset =
event.when() -
curTick();
292 paramIn(cp, base +
".stat_regA", tmp8);
294 paramIn(cp, base +
".stat_regB", tmp8);
300 Tick rtcTimerInterruptTickOffset;
302 event.offset = rtcTimerInterruptTickOffset;
303 Tick rtcClockTickOffset;
309 : parent(_parent), interval(i),
offset(i)
331 return "RTC interrupt";
345 return "RTC clock tick";
#define panic(...)
This implements a cprintf based panic() function.
static uint8_t bcdize(uint8_t val)
uint8_t readData(const uint8_t addr)
RTC read data.
Real-Time Clock (MC146818)
void writeData(const uint8_t addr, const uint8_t data)
RTC write data.
MC146818(EventManager *em, const std::string &name, const struct tm time, bool bcd, Tick frequency)
static const int RTC_STAT_REGA
static uint8_t unbcdize(uint8_t val)
Overload hash function for BasicBlockRange type.
static const int RTC_STAT_REGC
virtual const char * description() const
Event description.
RtcRegB stat_regB
RTC status register B.
#define UNSERIALIZE_SCALAR(scalar)
Tick curTick()
The current simulated tick.
RTCEvent(MC146818 *_parent, Tick i)
void serialize(const std::string &base, CheckpointOut &cp) const
Serialize this object to the given output stream.
RTCEvent event
RTC periodic interrupt event.
virtual void process()
Event process to occur at interrupt.
RTCTickEvent tickEvent
RTC tick event.
uint64_t Tick
Tick count type.
void scheduleIntr()
Schedule the RTC periodic interrupt.
void paramOut(CheckpointOut &cp, const string &name, ExtMachInst const &machInst)
const char * description() const
Event description.
static const int RTC_STAT_REGB
void deschedule(Event &event)
static const int RTCA_RS_1024HZ
virtual void handleEvent()
void schedule(Event &event, Tick when)
void arrayParamOut(CheckpointOut &cp, const std::string &name, const CircleBuf< T > ¶m)
void setTime(const struct tm time)
static const int RTCA_DV_DISABLED1
#define SERIALIZE_SCALAR(scalar)
bool scheduled() const
Determine if the current event is scheduled.
std::ostream CheckpointOut
virtual void startup()
Start ticking.
void unserialize(const std::string &base, CheckpointIn &cp)
Reconstruct the state of this object from a checkpoint.
static const int RTCA_DV_DISABLED0
void paramIn(CheckpointIn &cp, const string &name, ExtMachInst &machInst)
void arrayParamIn(CheckpointIn &cp, const std::string &name, CircleBuf< T > ¶m)
static const int RTC_STAT_REGD
Tick when() const
Get the time that the event is scheduled.
static const int RTCA_DV_32768HZ
void process()
Event process to occur at interrupt.
time_t mkutctime(struct tm *time)