gem5  v22.1.0.0
malta_io.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 
33 #include "dev/mips/malta_io.hh"
34 
35 #include <sys/time.h>
36 
37 #include <deque>
38 #include <string>
39 #include <vector>
40 
41 #include "base/time.hh"
42 #include "base/trace.hh"
43 #include "debug/Malta.hh"
44 #include "dev/mips/malta.hh"
45 #include "dev/mips/malta_cchip.hh"
46 #include "dev/mips/maltareg.h"
47 #include "dev/rtcreg.h"
48 #include "mem/packet.hh"
49 #include "mem/packet_access.hh"
50 #include "mem/port.hh"
51 #include "params/MaltaIO.hh"
52 #include "sim/system.hh"
53 
54 namespace gem5
55 {
56 
57 MaltaIO::RTC::RTC(const std::string &name, const MaltaIOParams &p)
58  : MC146818(p.malta, name, p.time, p.year_is_bcd, p.frequency),
59  malta(p.malta)
60 {
61 }
62 
64  : BasicPioDevice(p, 0x100), malta(p.malta),
65  pitimer(this, p.name + "pitimer"), rtc(p.name + ".rtc", p)
66 {
67  // set the back pointer from malta to myself
68  malta->io = this;
69 
70  timerData = 0;
71  picr = 0;
72  picInterrupting = false;
73 }
74 
75 Tick
77 {
78  return sim_clock::Frequency / params().frequency;
79 }
80 
81 Tick
83 {
84  panic("MaltaIO::read(...) not implemented inside malta_io.cc");
85  return pioDelay;
86 }
87 
88 Tick
90 {
91  panic("MaltaIO::write(...) not implemented inside malta_io.cc");
92  return pioDelay;
93 }
94 
95 void
96 MaltaIO::postIntr(uint8_t interrupt)
97 {
98  malta->cchip->postIntr(interrupt);
99  DPRINTF(Malta, "posting pic interrupt to cchip\n");
100 }
101 
102 void
103 MaltaIO::clearIntr(uint8_t interrupt)
104 {
105  malta->cchip->clearIntr(interrupt);
106  DPRINTF(Malta, "clear pic interrupt to cchip\n");
107 }
108 
109 void
111 {
119 
120  // Serialize the timers
121  pitimer.serialize("pitimer", cp);
122  rtc.serialize("rtc", cp);
123 }
124 
125 void
127 {
135 
136  // Unserialize the timers
137  pitimer.unserialize("pitimer", cp);
138  rtc.unserialize("rtc", cp);
139 }
140 
141 void
143 {
144  rtc.startup();
145  pitimer.startup();
146 }
147 
148 } // namespace gem5
#define DPRINTF(x,...)
Definition: trace.hh:186
Tick pioDelay
Delay that the device experinces on an access.
Definition: io_device.hh:157
void serialize(const std::string &base, CheckpointOut &cp) const
Serialize this object to the given output stream.
void startup()
Start ticking.
void unserialize(const std::string &base, CheckpointIn &cp)
Reconstruct the state of this object from a checkpoint.
Real-Time Clock (MC146818)
Definition: mc146818.hh:42
virtual void startup()
Start ticking.
Definition: mc146818.cc:124
void serialize(const std::string &base, CheckpointOut &cp) const
Serialize this object to the given output stream.
Definition: mc146818.cc:266
void unserialize(const std::string &base, CheckpointIn &cp)
Reconstruct the state of this object from a checkpoint.
Definition: mc146818.cc:286
void clearIntr(uint32_t interrupt)
clear an interrupt previously posted to the CPU.
Definition: malta_cchip.cc:120
void postIntr(uint32_t interrupt)
post an interrupt to the CPU.
Definition: malta_cchip.cc:104
RTC(const std::string &name, const MaltaIOParams &p)
Definition: malta_io.cc:57
bool picInterrupting
Is the pic interrupting right now or not.
Definition: malta_io.hh:85
void postIntr(uint8_t interrupt)
Post an Interrupt to the CPU.
Definition: malta_io.cc:96
void clearIntr(uint8_t interrupt)
Clear an Interrupt to the CPU.
Definition: malta_io.cc:103
uint8_t mode2
Mode of PIC2.
Definition: malta_io.hh:79
uint8_t picr
Raw PIC interrupt register before masking.
Definition: malta_io.hh:82
uint8_t mask2
Mask of the PIC2.
Definition: malta_io.hh:73
Tick frequency() const
Return the freqency of the RTC.
Definition: malta_io.cc:76
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: malta_io.cc:82
void startup() override
Start running.
Definition: malta_io.cc:142
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: malta_io.cc:89
Malta * malta
A pointer to the Malta device which be belong to.
Definition: malta_io.hh:88
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: malta_io.cc:126
Intel8254Timer pitimer
Intel 8253 Periodic Interval Timer.
Definition: malta_io.hh:91
uint16_t timerData
The interval is set via two writes to the PIT.
Definition: malta_io.hh:99
uint8_t mode1
Mode of PIC1.
Definition: malta_io.hh:76
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: malta_io.cc:110
uint8_t mask1
Mask of the PIC1.
Definition: malta_io.hh:70
MaltaIO(const Params &p)
Initialize all the data for devices supported by Malta I/O.
Definition: malta_io.cc:63
Top level class for Malta Chipset emulation.
Definition: malta.hh:55
MaltaIO * io
Pointer to the MaltaIO device which has the RTC.
Definition: malta.hh:61
MaltaCChip * cchip
Pointer to the Malta CChip.
Definition: malta.hh:67
virtual std::string name() const
Definition: named.hh:47
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:294
PioDeviceParams Params
Definition: io_device.hh:134
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:178
const Params & params() const
Definition: sim_object.hh:176
Declaration of top level class for the Malta chipset.
Emulation of the Malta CChip CSRs.
Malta I/O Space mapping including RTC/timer interrupts.
List of Tsunami CSRs.
Port Object Declaration.
Bitfield< 54 > p
Definition: pagetable.hh:70
Tick Frequency
The simulated frequency of curTick(). (In ticks per second)
Definition: core.cc:48
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
std::ostream CheckpointOut
Definition: serialize.hh:66
uint64_t Tick
Tick count type.
Definition: types.hh:58
Declaration of the Packet class.
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:575
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:568
const std::string & name()
Definition: trace.cc:49

Generated on Wed Dec 21 2022 10:22:34 for gem5 by doxygen 1.9.1