gem5  v22.0.0.1
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 gem5
39 {
40 
41 namespace X86ISA
42 {
43 
44 class I8237 : public BasicPioDevice
45 {
46  public:
48 
49  protected:
51  uint8_t maskVal;
52  //XXX These should be serialized.
53  uint8_t requestVal;
54  uint8_t commandVal;
55  uint8_t statusVal;
56  uint8_t tempVal;
57  bool highByte;
58 
60 
61  struct Channel
62  {
63  class ChannelAddrReg : public Register
64  {
65  public:
67  };
68 
70  {
71  public:
73  };
74 
75  int number;
76 
77  //XXX These should be serialized.
78  uint8_t mode = 0x0;
79 
82 
83  Channel(int _num) : number(_num), addrReg(*this), remainingReg(*this)
84  {}
85  };
86 
87  class WriteOnlyReg : public Register
88  {
89  public:
90  WriteOnlyReg(const std::string &new_name, Addr offset);
91  };
92 
93  std::array<Channel, 4> channels;
94 
103 
104  void reset();
105  void setMaskBit(Register &reg, const uint8_t &command);
106  void setRequestBit(Register &reg, const uint8_t &command);
107 
108  public:
109  using Params = I8237Params;
110 
111  I8237(const Params &p);
112 
113  Tick read(PacketPtr pkt) override;
114  Tick write(PacketPtr pkt) override;
115 
116  void serialize(CheckpointOut &cp) const override;
117  void unserialize(CheckpointIn &cp) override;
118 };
119 
120 } // namespace X86ISA
121 } // namespace gem5
122 
123 #endif //__DEV_X86_I8237_HH__
gem5::X86ISA::I8237::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: i8237.cc:191
gem5::RegisterBank< ByteOrder::little >::Register8
Register< uint8_t > Register8
Definition: reg_bank.hh:788
gem5::X86ISA::I8237::latency
Tick latency
Definition: i8237.hh:50
io_device.hh
gem5::X86ISA::I8237::commandVal
uint8_t commandVal
Definition: i8237.hh:54
gem5::CheckpointIn
Definition: serialize.hh:68
gem5::X86ISA::I8237::Channel
Definition: i8237.hh:61
gem5::X86ISA::I8237::temporaryMasterClearReg
Register temporaryMasterClearReg
Definition: i8237.hh:100
gem5::X86ISA::I8237::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: i8237.cc:185
gem5::X86ISA::offset
offset
Definition: misc.hh:1024
gem5::X86ISA::I8237::Channel::remainingReg
ChannelRemainingReg remainingReg
Definition: i8237.hh:81
gem5::X86ISA::I8237::WriteOnlyReg::WriteOnlyReg
WriteOnlyReg(const std::string &new_name, Addr offset)
Definition: i8237.cc:76
gem5::X86ISA::I8237::Channel::number
int number
Definition: i8237.hh:75
gem5::X86ISA::I8237::Channel::ChannelRemainingReg
Definition: i8237.hh:69
gem5::X86ISA::I8237::tempVal
uint8_t tempVal
Definition: i8237.hh:56
gem5::X86ISA::I8237::Channel::Channel
Channel(int _num)
Definition: i8237.hh:83
gem5::X86ISA::I8237
Definition: i8237.hh:44
gem5::X86ISA::I8237::channels
std::array< Channel, 4 > channels
Definition: i8237.hh:93
gem5::X86ISA::I8237::statusVal
uint8_t statusVal
Definition: i8237.hh:55
gem5::PioDevice::Params
PioDeviceParams Params
Definition: io_device.hh:134
gem5::X86ISA::I8237::setRequestBit
void setRequestBit(Register &reg, const uint8_t &command)
Definition: i8237.cc:160
gem5::X86ISA::I8237::modeReg
WriteOnlyReg modeReg
Definition: i8237.hh:98
gem5::X86ISA::I8237::reset
void reset()
Definition: i8237.cc:140
gem5::X86ISA::I8237::WriteOnlyReg
Definition: i8237.hh:87
gem5::X86ISA::I8237::writeMaskReg
WriteOnlyReg writeMaskReg
Definition: i8237.hh:102
gem5::Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:291
gem5::Tick
uint64_t Tick
Tick count type.
Definition: types.hh:58
gem5::X86ISA::I8237::statusCommandReg
Register statusCommandReg
Definition: i8237.hh:95
gem5::X86ISA::I8237::Channel::ChannelAddrReg::ChannelAddrReg
ChannelAddrReg(Channel &)
Definition: i8237.cc:62
gem5::X86ISA::I8237::write
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: i8237.cc:177
gem5::X86ISA::I8237::setMaskBitReg
WriteOnlyReg setMaskBitReg
Definition: i8237.hh:97
gem5::X86ISA::I8237::maskVal
uint8_t maskVal
Definition: i8237.hh:51
gem5::X86ISA::I8237::read
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: i8237.cc:169
gem5::X86ISA::I8237::Channel::ChannelAddrReg
Definition: i8237.hh:63
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::X86ISA::I8237::Channel::ChannelRemainingReg::ChannelRemainingReg
ChannelRemainingReg(Channel &)
Definition: i8237.cc:69
gem5::X86ISA::I8237::Channel::mode
uint8_t mode
Definition: i8237.hh:78
gem5::X86ISA::reg
Bitfield< 5, 3 > reg
Definition: types.hh:92
gem5::X86ISA::I8237::Channel::addrReg
ChannelAddrReg addrReg
Definition: i8237.hh:80
gem5::RegisterBank< ByteOrder::little >
gem5::X86ISA::I8237::requestReg
WriteOnlyReg requestReg
Definition: i8237.hh:96
gem5::X86ISA::I8237::clearMaskReg
WriteOnlyReg clearMaskReg
Definition: i8237.hh:101
gem5::X86ISA::p
Bitfield< 0 > p
Definition: pagetable.hh:151
gem5::CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:66
gem5::X86ISA::I8237::Register
RegisterBankLE::Register8 Register
Definition: i8237.hh:47
gem5::X86ISA::I8237::regs
RegisterBankLE regs
Definition: i8237.hh:59
gem5::X86ISA::I8237::requestVal
uint8_t requestVal
Definition: i8237.hh:53
gem5::X86ISA::I8237::setMaskBit
void setMaskBit(Register &reg, const uint8_t &command)
Definition: i8237.cc:151
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::X86ISA::I8237::clearFlipFlopReg
WriteOnlyReg clearFlipFlopReg
Definition: i8237.hh:99
gem5::BasicPioDevice
Definition: io_device.hh:147
gem5::X86ISA::I8237::highByte
bool highByte
Definition: i8237.hh:57
gem5::X86ISA::I8237::I8237
I8237(const Params &p)
Definition: i8237.cc:84
reg_bank.hh

Generated on Wed Jul 13 2022 10:39:21 for gem5 by doxygen 1.8.17