gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
i8237.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008 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 
29 #include "dev/x86/i8237.hh"
30 
31 #include "base/cprintf.hh"
32 #include "mem/packet.hh"
33 #include "mem/packet_access.hh"
34 
35 namespace X86ISA
36 {
37 
38 namespace
39 {
40 
41 I8237::Register::ReadFunc
42 readUnimpl(const std::string &label)
43 {
44  return [label](I8237::Register &reg) -> uint8_t {
45  panic("Read from i8237 %s unimplemented.", label);
46  };
47 }
48 
49 I8237::Register::WriteFunc
50 writeUnimpl(const std::string &label)
51 {
52  return [label](I8237::Register &reg, const uint8_t &value) {
53  panic("Write to i8237 %s unimplemented.", label);
54  };
55 }
56 
57 } // anonymous namespace
58 
60  Register(csprintf("channel %d current address", channel.number))
61 {
62  reader(readUnimpl(name()));
63  writer(writeUnimpl(name()));
64 }
65 
67  Register(csprintf("channel %d remaining word count", channel.number))
68 {
69  reader(readUnimpl(name()));
70  writer(writeUnimpl(name()));
71 }
72 
73 I8237::WriteOnlyReg::WriteOnlyReg(const std::string &new_name, Addr offset) :
74  Register(new_name)
75 {
76  reader([offset](I8237::Register &reg) -> uint8_t {
77  panic("Illegal read from i8237 register %d.", offset);
78  });
79 }
80 
81 I8237::I8237(const Params &p) : BasicPioDevice(p, 16), latency(p.pio_latency),
82  regs("registers", pioAddr), channels{{{0}, {1}, {2}, {3}}},
83  statusCommandReg("status/command"),
84  requestReg("request", 0x9),
85  setMaskBitReg("set mask bit", 0xa),
86  modeReg("mode", 0xb),
87  clearFlipFlopReg("clear flip-flop", 0xc),
88  temporaryMasterClearReg("temporary/maskter clear"),
89  clearMaskReg("clear mask", 0xe),
90  writeMaskReg("write mask", 0xf)
91 {
92  // Add the channel address and remaining registers.
93  for (auto &channel: channels)
94  regs.addRegisters({ channel.addrReg, channel.remainingReg });
95 
96  // Add the other registers individually.
97  regs.addRegisters({
98  statusCommandReg.
99  reader(readUnimpl("status register")).
100  writer(writeUnimpl("command register")),
101 
102  requestReg.
103  writer(writeUnimpl("request register")),
104 
105  setMaskBitReg.
106  writer(this, &I8237::setMaskBit),
107 
108  modeReg.
109  writer(writeUnimpl("mode register")),
110 
111  clearFlipFlopReg.
112  writer(writeUnimpl("clear LSB/MSB flip-flop register")),
113 
114  temporaryMasterClearReg.
115  reader(readUnimpl("temporary register")).
116  writer(writeUnimpl("master clear register")),
117 
118  clearMaskReg.
119  writer(writeUnimpl("clear mask register")),
120 
121  writeMaskReg.
122  writer(writeUnimpl("write all mask register bits"))
123  });
124 }
125 
126 void
127 I8237::setMaskBit(Register &reg, const uint8_t &command)
128 {
129  uint8_t select = bits(command, 1, 0);
130  uint8_t bitVal = bits(command, 2);
131  if (!bitVal)
132  panic("Turning on i8237 channels unimplemented.");
133  replaceBits(maskReg, select, bitVal);
134 }
135 
136 Tick
138 {
139  regs.read(pkt->getAddr(), pkt->getPtr<void>(), pkt->getSize());
140  pkt->makeAtomicResponse();
141  return latency;
142 }
143 
144 Tick
146 {
147  regs.write(pkt->getAddr(), pkt->getPtr<void>(), pkt->getSize());
148  pkt->makeAtomicResponse();
149  return latency;
150 }
151 
152 void
154 {
156 }
157 
158 void
160 {
162 }
163 
164 } // namespace X86ISA
Packet::makeAtomicResponse
void makeAtomicResponse()
Definition: packet.hh:1017
X86ISA::I8237::maskReg
uint8_t maskReg
Definition: i8237.hh:48
BasicPioDevice::pioAddr
Addr pioAddr
Address that the device listens to.
Definition: io_device.hh:148
X86ISA::I8237::regs
RegisterBankLE regs
Definition: i8237.hh:50
X86ISA::I8237::Channel::ChannelAddrReg::ChannelAddrReg
ChannelAddrReg(Channel &)
Definition: i8237.cc:59
UNSERIALIZE_SCALAR
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:591
Packet::getAddr
Addr getAddr() const
Definition: packet.hh:755
PowerISA::xe
Bitfield< 4 > xe
Definition: miscregs.hh:91
X86ISA::I8237::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: i8237.cc:153
X86ISA::I8237::channels
std::array< Channel, 4 > channels
Definition: i8237.hh:81
X86ISA::I8237::Register
RegisterBankLE::Register8 Register
Definition: i8237.hh:44
X86ISA::I8237::I8237
I8237(const Params &p)
Definition: i8237.cc:81
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
Packet::getSize
unsigned getSize() const
Definition: packet.hh:765
RegisterBank::write
virtual void write(Addr addr, const void *buf, Addr bytes)
Definition: reg_bank.hh:862
X86ISA::reg
Bitfield< 5, 3 > reg
Definition: types.hh:88
packet.hh
X86ISA::I8237::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: i8237.cc:159
X86ISA::I8237::setMaskBit
void setMaskBit(Register &reg, const uint8_t &command)
Definition: i8237.cc:127
RegisterBank::read
virtual void read(Addr addr, void *buf, Addr bytes)
Definition: reg_bank.hh:805
cp
Definition: cprintf.cc:37
writer
Definition: test.h:47
i8237.hh
X86ISA::I8237::Channel::ChannelRemainingReg::ChannelRemainingReg
ChannelRemainingReg(Channel &)
Definition: i8237.cc:66
cprintf.hh
X86ISA::I8237::Channel
Definition: i8237.hh:52
X86ISA::I8237::write
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: i8237.cc:145
X86ISA
This is exposed globally, independent of the ISA.
Definition: acpi.hh:55
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
SERIALIZE_SCALAR
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:584
packet_access.hh
X86ISA::offset
offset
Definition: misc.hh:1024
X86ISA::I8237::latency
Tick latency
Definition: i8237.hh:47
SimObject::name
virtual const std::string name() const
Definition: sim_object.hh:182
X86ISA::I8237::WriteOnlyReg::WriteOnlyReg
WriteOnlyReg(const std::string &new_name, Addr offset)
Definition: i8237.cc:73
X86ISA::p
Bitfield< 0 > p
Definition: pagetable.hh:148
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
BasicPioDevice
Definition: io_device.hh:144
X86ISA::I8237::Channel::number
int number
Definition: i8237.hh:66
Packet::getPtr
T * getPtr()
get a pointer to the data ptr.
Definition: packet.hh:1158
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
bits
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
Definition: bitfield.hh:73
X86ISA::I8237::read
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: i8237.cc:137
CheckpointIn
Definition: serialize.hh:68
csprintf
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158
PioDevice::Params
PioDeviceParams Params
Definition: io_device.hh:131
replaceBits
constexpr void replaceBits(T &val, unsigned first, unsigned last, B bit_val)
A convenience function to replace bits first to last of val with bit_val in place.
Definition: bitfield.hh:174
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171

Generated on Tue Mar 23 2021 19:41:27 for gem5 by doxygen 1.8.17