gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
i8237.hh
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 #ifndef __DEV_X86_I8237_HH__
30 #define __DEV_X86_I8237_HH__
31 
32 #include <array>
33 
34 #include "dev/io_device.hh"
35 #include "dev/reg_bank.hh"
36 #include "params/I8237.hh"
37 
38 namespace X86ISA
39 {
40 
41 class I8237 : public BasicPioDevice
42 {
43  public:
45 
46  protected:
48  uint8_t maskReg = 0;
49 
51 
52  struct Channel
53  {
54  class ChannelAddrReg : public Register
55  {
56  public:
58  };
59 
61  {
62  public:
64  };
65 
66  int number;
67 
70 
71  Channel(int _num) : number(_num), addrReg(*this), remainingReg(*this)
72  {}
73  };
74 
75  class WriteOnlyReg : public Register
76  {
77  public:
78  WriteOnlyReg(const std::string &new_name, Addr offset);
79  };
80 
81  std::array<Channel, 4> channels;
82 
91 
92  void setMaskBit(Register &reg, const uint8_t &command);
93 
94  public:
95  using Params = I8237Params;
96 
97  I8237(const Params &p);
98 
99  Tick read(PacketPtr pkt) override;
100  Tick write(PacketPtr pkt) override;
101 
102  void serialize(CheckpointOut &cp) const override;
103  void unserialize(CheckpointIn &cp) override;
104 };
105 
106 } // namespace X86ISA
107 
108 #endif //__DEV_X86_I8237_HH__
X86ISA::I8237::maskReg
uint8_t maskReg
Definition: i8237.hh:48
X86ISA::I8237::regs
RegisterBankLE regs
Definition: i8237.hh:50
io_device.hh
X86ISA::I8237::Channel::ChannelAddrReg::ChannelAddrReg
ChannelAddrReg(Channel &)
Definition: i8237.cc:59
X86ISA::I8237::Channel::ChannelAddrReg
Definition: i8237.hh:54
X86ISA::I8237::temporaryMasterClearReg
Register temporaryMasterClearReg
Definition: i8237.hh:88
X86ISA::I8237::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: i8237.cc:153
X86ISA::I8237::clearFlipFlopReg
WriteOnlyReg clearFlipFlopReg
Definition: i8237.hh:87
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
X86ISA::reg
Bitfield< 5, 3 > reg
Definition: types.hh:88
X86ISA::I8237::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: i8237.cc:159
X86ISA::I8237::statusCommandReg
Register statusCommandReg
Definition: i8237.hh:83
X86ISA::I8237::requestReg
WriteOnlyReg requestReg
Definition: i8237.hh:84
X86ISA::I8237::setMaskBit
void setMaskBit(Register &reg, const uint8_t &command)
Definition: i8237.cc:127
cp
Definition: cprintf.cc:37
X86ISA::I8237
Definition: i8237.hh:41
X86ISA::I8237::Channel::remainingReg
ChannelRemainingReg remainingReg
Definition: i8237.hh:69
RegisterBank< ByteOrder::little >::Register8
Register< uint8_t > Register8
Definition: reg_bank.hh:766
X86ISA::I8237::Channel::ChannelRemainingReg::ChannelRemainingReg
ChannelRemainingReg(Channel &)
Definition: i8237.cc:66
X86ISA::I8237::setMaskBitReg
WriteOnlyReg setMaskBitReg
Definition: i8237.hh:85
RegisterBank< ByteOrder::little >
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::I8237::Channel::addrReg
ChannelAddrReg addrReg
Definition: i8237.hh:68
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
X86ISA::I8237::Channel::ChannelRemainingReg
Definition: i8237.hh:60
X86ISA::offset
offset
Definition: misc.hh:1024
X86ISA::I8237::latency
Tick latency
Definition: i8237.hh:47
X86ISA::I8237::WriteOnlyReg::WriteOnlyReg
WriteOnlyReg(const std::string &new_name, Addr offset)
Definition: i8237.cc:73
X86ISA::I8237::clearMaskReg
WriteOnlyReg clearMaskReg
Definition: i8237.hh:89
X86ISA::I8237::modeReg
WriteOnlyReg modeReg
Definition: i8237.hh:86
X86ISA::p
Bitfield< 0 > p
Definition: pagetable.hh:148
X86ISA::I8237::Channel::Channel
Channel(int _num)
Definition: i8237.hh:71
X86ISA::I8237::writeMaskReg
WriteOnlyReg writeMaskReg
Definition: i8237.hh:90
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
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
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
PioDevice::Params
PioDeviceParams Params
Definition: io_device.hh:131
reg_bank.hh
X86ISA::I8237::WriteOnlyReg
Definition: i8237.hh:75

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