gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
malta_io.hh
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 #ifndef __DEV_MALTA_IO_HH__
34 #define __DEV_MALTA_IO_HH__
35 
36 #include "dev/mips/malta.hh"
37 #include "dev/mips/malta_cchip.hh"
38 #include "dev/intel_8254_timer.hh"
39 #include "dev/io_device.hh"
40 #include "dev/mc146818.hh"
41 #include "params/MaltaIO.hh"
42 #include "sim/eventq.hh"
43 
48 class MaltaIO : public BasicPioDevice
49 {
50  protected:
51 
52  class RTC : public MC146818
53  {
54  public:
56  RTC(const std::string &name, const MaltaIOParams &p);
57 
58  protected:
59  void handleEvent()
60  {
61  //Actually interrupt the processor here
62  malta->cchip->postRTC();
63  }
64  };
65 
67  uint8_t mask1;
68 
70  uint8_t mask2;
71 
73  uint8_t mode1;
74 
76  uint8_t mode2;
77 
79  uint8_t picr; //Raw PIC interrput register
80 
83 
86 
89 
91 
96  uint16_t timerData;
97 
98  public:
103  Tick frequency() const;
104 
105  PARAMS(MaltaIO);
106 
111  MaltaIO(const Params &p);
112 
113  Tick read(PacketPtr pkt) override;
114  Tick write(PacketPtr pkt) override;
115 
116 
118  void postIntr(uint8_t interrupt);
119 
121  void clearIntr(uint8_t interrupt);
122 
123  void serialize(CheckpointOut &cp) const override;
124  void unserialize(CheckpointIn &cp) override;
125 
129  void startup() override;
130 
131 };
132 
133 #endif // __DEV_MALTA_IO_HH__
MaltaIO::picr
uint8_t picr
Raw PIC interrupt register before masking.
Definition: malta_io.hh:79
Malta::cchip
MaltaCChip * cchip
Pointer to the Malta CChip.
Definition: malta.hh:69
io_device.hh
MaltaIO::PARAMS
PARAMS(MaltaIO)
MaltaIO::clearIntr
void clearIntr(uint8_t interrupt)
Clear an Interrupt to the CPU.
Definition: malta_io.cc:100
MaltaIO::RTC
Definition: malta_io.hh:52
MaltaIO::rtc
RTC rtc
Definition: malta_io.hh:90
MaltaIO::RTC::RTC
RTC(const std::string &name, const MaltaIOParams &p)
Definition: malta_io.cc:54
malta.hh
MaltaIO::write
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: malta_io.cc:86
MaltaIO::malta
Malta * malta
A pointer to the Malta device which be belong to.
Definition: malta_io.hh:85
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
MaltaIO::mode2
uint8_t mode2
Mode of PIC2.
Definition: malta_io.hh:76
MaltaIO::pitimer
Intel8254Timer pitimer
Intel 8253 Periodic Interval Timer.
Definition: malta_io.hh:88
malta_cchip.hh
MaltaIO::mask1
uint8_t mask1
Mask of the PIC1.
Definition: malta_io.hh:67
cp
Definition: cprintf.cc:37
MaltaIO::mode1
uint8_t mode1
Mode of PIC1.
Definition: malta_io.hh:73
Intel8254Timer
Programmable Interval Timer (Intel 8254)
Definition: intel_8254_timer.hh:43
MaltaIO::mask2
uint8_t mask2
Mask of the PIC2.
Definition: malta_io.hh:70
MC146818
Real-Time Clock (MC146818)
Definition: mc146818.hh:38
MaltaIO::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: malta_io.cc:123
intel_8254_timer.hh
MaltaCChip::postRTC
void postRTC()
post an RTC interrupt to the CPU
Definition: malta_cchip.cc:95
MaltaIO::RTC::malta
Malta * malta
Definition: malta_io.hh:55
MaltaIO::postIntr
void postIntr(uint8_t interrupt)
Post an Interrupt to the CPU.
Definition: malta_io.cc:93
MaltaIO::frequency
Tick frequency() const
Return the freqency of the RTC.
Definition: malta_io.cc:73
MC146818::name
const std::string & name() const
Definition: mc146818.hh:85
Malta
Top level class for Malta Chipset emulation.
Definition: malta.hh:53
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
MaltaIO::timerData
uint16_t timerData
The interval is set via two writes to the PIT.
Definition: malta_io.hh:96
BasicPioDevice
Definition: io_device.hh:144
MaltaIO::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: malta_io.cc:107
MaltaIO
Malta I/O device is a catch all for all the south bridge stuff we care to implement.
Definition: malta_io.hh:48
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
MaltaIO::RTC::handleEvent
void handleEvent()
Definition: malta_io.hh:59
MaltaIO::MaltaIO
MaltaIO(const Params &p)
Initialize all the data for devices supported by Malta I/O.
Definition: malta_io.cc:60
MaltaIO::picInterrupting
bool picInterrupting
Is the pic interrupting right now or not.
Definition: malta_io.hh:82
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
MaltaIO::read
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: malta_io.cc:79
CheckpointIn
Definition: serialize.hh:68
PioDevice::Params
PioDeviceParams Params
Definition: io_device.hh:131
mc146818.hh
MaltaIO::startup
void startup() override
Start running.
Definition: malta_io.cc:139
eventq.hh

Generated on Tue Jun 22 2021 15:28:28 for gem5 by doxygen 1.8.17