gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
cmos.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2004-2005 The Regents of The University of Michigan
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  * Authors: Gabe Black
29  */
30 
31 #include "dev/x86/cmos.hh"
32 
33 #include "debug/CMOS.hh"
34 #include "dev/x86/intdev.hh"
35 #include "mem/packet_access.hh"
36 
37 void
39 {
40  for (auto *wire: intPin) {
41  wire->raise();
42  //XXX This is a hack.
43  wire->lower();
44  }
45 }
46 
47 Tick
49 {
50  assert(pkt->getSize() == 1);
51  switch(pkt->getAddr() - pioAddr)
52  {
53  case 0x0:
54  pkt->setLE(address);
55  break;
56  case 0x1:
57  pkt->setLE(readRegister(address));
58  break;
59  default:
60  panic("Read from undefined CMOS port.\n");
61  }
62  pkt->makeAtomicResponse();
63  return latency;
64 }
65 
66 Tick
68 {
69  assert(pkt->getSize() == 1);
70  switch(pkt->getAddr() - pioAddr)
71  {
72  case 0x0:
73  address = pkt->getLE<uint8_t>();
74  break;
75  case 0x1:
76  writeRegister(address, pkt->getLE<uint8_t>());
77  break;
78  default:
79  panic("Write to undefined CMOS port.\n");
80  }
81  pkt->makeAtomicResponse();
82  return latency;
83 }
84 
85 uint8_t
87 {
88  assert(reg < numRegs);
89  uint8_t val;
90  if (reg <= 0xD) {
91  val = rtc.readData(reg);
92  DPRINTF(CMOS,
93  "Reading CMOS RTC reg %x as %x.\n", reg, val);
94  } else {
95  val = regs[reg];
96  DPRINTF(CMOS,
97  "Reading non-volitile CMOS address %x as %x.\n", reg, val);
98  }
99  return val;
100 }
101 
102 void
104 {
105  assert(reg < numRegs);
106  if (reg <= 0xD) {
107  DPRINTF(CMOS, "Writing CMOS RTC reg %x with %x.\n",
108  reg, val);
109  rtc.writeData(reg, val);
110  } else {
111  DPRINTF(CMOS, "Writing non-volitile CMOS address %x with %x.\n",
112  reg, val);
113  regs[reg] = val;
114  }
115 }
116 
117 void
119 {
120  rtc.startup();
121 }
122 
123 void
125 {
128 
129  // Serialize the timer
130  rtc.serialize("rtc", cp);
131 }
132 
133 void
135 {
138 
139  // Serialize the timer
140  rtc.unserialize("rtc", cp);
141 }
142 
143 X86ISA::Cmos *
144 CmosParams::create()
145 {
146  return new X86ISA::Cmos(this);
147 }
void writeRegister(uint8_t reg, uint8_t val)
Definition: cmos.cc:103
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:167
#define DPRINTF(x,...)
Definition: trace.hh:229
Bitfield< 5, 3 > reg
Definition: types.hh:89
uint8_t readData(const uint8_t addr)
RTC read data.
Definition: mc146818.cc:232
std::vector< IntSourcePin< X86RTC > * > intPin
Definition: cmos.hh:59
static const int numRegs
Definition: cmos.hh:49
uint8_t readRegister(uint8_t reg)
Definition: cmos.cc:86
void writeData(const uint8_t addr, const uint8_t data)
RTC write data.
Definition: mc146818.cc:139
Tick latency
Definition: cmos.hh:45
Definition: cprintf.cc:42
X86ISA::Cmos::X86RTC rtc
Bitfield< 63 > val
Definition: misc.hh:771
void setLE(T v)
Set the value in the data pointer to v as little endian.
void handleEvent()
Definition: cmos.cc:38
unsigned getSize() const
Definition: packet.hh:736
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:645
void serialize(const std::string &base, CheckpointOut &cp) const
Serialize this object to the given output stream.
Definition: mc146818.cc:269
void makeAtomicResponse()
Definition: packet.hh:949
uint64_t Tick
Tick count type.
Definition: types.hh:63
#define SERIALIZE_ARRAY(member, size)
Definition: serialize.hh:658
Addr getAddr() const
Definition: packet.hh:726
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: cmos.cc:48
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: cmos.cc:134
void startup() override
startup() is the final initialization call before simulation.
Definition: cmos.cc:118
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:255
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:643
#define UNSERIALIZE_ARRAY(member, size)
Definition: serialize.hh:661
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: cmos.cc:67
std::ostream CheckpointOut
Definition: serialize.hh:68
virtual void startup()
Start ticking.
Definition: mc146818.cc:127
void unserialize(const std::string &base, CheckpointIn &cp)
Reconstruct the state of this object from a checkpoint.
Definition: mc146818.cc:289
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: cmos.cc:124
uint8_t address
Definition: cmos.hh:47
T getLE() const
Get the data in the packet byte swapped from little endian to host endian.
Addr pioAddr
Address that the device listens to.
Definition: io_device.hh:157
uint8_t regs[numRegs]
Definition: cmos.hh:51

Generated on Fri Feb 28 2020 16:27:01 for gem5 by doxygen 1.8.13