gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
ide_ctrl.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 
34 #ifndef __DEV_STORAGE_IDE_CTRL_HH__
35 #define __DEV_STORAGE_IDE_CTRL_HH__
36 
37 #include "base/bitunion.hh"
38 #include "dev/io_device.hh"
39 #include "dev/pci/device.hh"
40 #include "dev/reg_bank.hh"
41 #include "params/IdeController.hh"
42 
43 class IdeDisk;
44 
49 class IdeController : public PciDevice
50 {
51  private:
52  // Bus master IDE status register bit fields
53  BitUnion8(BMIStatusReg)
54  Bitfield<6> dmaCap0;
55  Bitfield<5> dmaCap1;
56  Bitfield<2> intStatus;
57  Bitfield<1> dmaError;
58  Bitfield<0> active;
59  EndBitUnion(BMIStatusReg)
60 
61  BitUnion8(BMICommandReg)
62  Bitfield<3> rw;
63  Bitfield<0> startStop;
64  EndBitUnion(BMICommandReg)
65 
66 
67  class ConfigSpaceRegs : public RegisterBankLE
68  {
69  public:
70  ConfigSpaceRegs(const std::string &name) :
72  {
73  // None of these registers are actually hooked up to control
74  // anything, so they have no specially defined behaviors. They
75  // just store values for now, but should presumably do something
76  // in a more accurate model.
77  addRegisters({primaryTiming, secondaryTiming, deviceTiming, raz0,
78  udmaControl, raz1, udmaTiming, raz2});
79  }
80 
81  enum {
82  TimeRegWithDecodeEnabled = 0x8000
83  };
84 
85  /* Offset in config space */
86  /* 0x40-0x41 */ Register16 primaryTiming =
87  {"primary timing", TimeRegWithDecodeEnabled};
88  /* 0x42-0x43 */ Register16 secondaryTiming =
89  {"secondary timing", TimeRegWithDecodeEnabled};
90  /* 0x44 */ Register8 deviceTiming = {"device timing"};
91  /* 0x45-0x47 */ RegisterRaz raz0 = {"raz0", 3};
92  /* 0x48 */ Register8 udmaControl = {"udma control"};
93  /* 0x49 */ RegisterRaz raz1 = {"raz1", 1};
94  /* 0x4a-0x4b */ Register16 udmaTiming = {"udma timing"};
95  /* 0x4c-... */ RegisterRaz raz2 = {"raz2", PCI_CONFIG_SIZE - 0x4c};
96 
97  void serialize(CheckpointOut &cp) const;
99  };
100 
101  ConfigSpaceRegs configSpaceRegs;
102 
103  struct Channel
104  {
105  std::string _name;
106 
107  const std::string
109  {
110  return _name;
111  }
112 
114  struct BMIRegs
115  {
116  void
118  {
119  memset(static_cast<void *>(this), 0, sizeof(*this));
120  }
121 
122  BMICommandReg command;
123  uint8_t reserved0;
124  BMIStatusReg status;
125  uint8_t reserved1;
126  uint32_t bmidtp;
127  } bmiRegs;
128 
135  IdeDisk *device0 = nullptr, *device1 = nullptr;
136 
138  IdeDisk *selected = nullptr;
139 
140  bool selectBit = false;
141 
142  void
143  select(bool select_device_1)
144  {
145  selectBit = select_device_1;
147  }
148 
149  void accessCommand(Addr offset, int size, uint8_t *data, bool read);
150  void accessControl(Addr offset, int size, uint8_t *data, bool read);
151  void accessBMI(Addr offset, int size, uint8_t *data, bool read);
152 
153  Channel(std::string newName);
154 
155  void serialize(const std::string &base, std::ostream &os) const;
156  void unserialize(const std::string &base, CheckpointIn &cp);
157  };
158 
161 
162  uint32_t ioShift, ctrlOffset;
163 
164  void dispatchAccess(PacketPtr pkt, bool read);
165 
166  public:
168  IdeController(const Params &p);
169 
171  bool isDiskSelected(IdeDisk *diskPtr);
172 
173  void intrPost();
174 
175  Tick writeConfig(PacketPtr pkt) override;
176  Tick readConfig(PacketPtr pkt) override;
177 
178  void setDmaComplete(IdeDisk *disk);
179 
180  Tick read(PacketPtr pkt) override;
181  Tick write(PacketPtr pkt) override;
182 
183  void serialize(CheckpointOut &cp) const override;
184  void unserialize(CheckpointIn &cp) override;
185 };
186 #endif // __DEV_STORAGE_IDE_CTRL_HH_
io_device.hh
X86ISA::os
Bitfield< 17 > os
Definition: misc.hh:803
IdeController::dmaCap1
Bitfield< 5 > dmaCap1
Definition: ide_ctrl.hh:55
IdeController::ctrlOffset
uint32_t ctrlOffset
Definition: ide_ctrl.hh:162
data
const char data[]
Definition: circlebuf.test.cc:47
IdeController
Device model for an Intel PIIX4 IDE controller.
Definition: ide_ctrl.hh:49
IdeController::Channel::BMIRegs::reserved0
uint8_t reserved0
Definition: ide_ctrl.hh:123
IdeController::Channel::accessBMI
void accessBMI(Addr offset, int size, uint8_t *data, bool read)
Definition: ide_ctrl.cc:231
IdeController::Channel::selectBit
bool selectBit
Definition: ide_ctrl.hh:140
IdeController::serialize
void serialize(CheckpointOut &cp) const override
Serialize this object to the given output stream.
Definition: ide_ctrl.cc:393
IdeController::Channel::bmiRegs
struct IdeController::Channel::BMIRegs bmiRegs
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
IdeController::write
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: ide_ctrl.cc:386
IdeController::active
Bitfield< 0 > active
Definition: ide_ctrl.hh:58
X86ISA::base
Bitfield< 51, 12 > base
Definition: pagetable.hh:138
IdeController::Channel::selected
IdeDisk * selected
Currently selected disk.
Definition: ide_ctrl.hh:138
IdeController::Channel::BMIRegs::status
BMIStatusReg status
Definition: ide_ctrl.hh:124
IdeController::Channel::Channel
Channel(std::string newName)
Definition: ide_ctrl.cc:65
device.hh
IdeController::Channel::device0
IdeDisk * device0
IDE disks connected to this controller For more details about device0 and device1 see: https://en....
Definition: ide_ctrl.hh:135
IdeController::Channel::_name
std::string _name
Definition: ide_ctrl.hh:105
IdeController::read
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: ide_ctrl.cc:379
PCI_DEVICE_SPECIFIC
#define PCI_DEVICE_SPECIFIC
Definition: pcireg.h:162
IdeController::intStatus
Bitfield< 2 > intStatus
Definition: ide_ctrl.hh:56
IdeController::dmaError
Bitfield< 1 > dmaError
Definition: ide_ctrl.hh:57
IdeController::isDiskSelected
bool isDiskSelected(IdeDisk *diskPtr)
See if a disk is selected based on its pointer.
Definition: ide_ctrl.cc:129
cp
Definition: cprintf.cc:37
IdeController::Channel::BMIRegs::bmidtp
uint32_t bmidtp
Definition: ide_ctrl.hh:126
IdeController::dispatchAccess
void dispatchAccess(PacketPtr pkt, bool read)
Definition: ide_ctrl.cc:317
IdeController::setDmaComplete
void setDmaComplete(IdeDisk *disk)
Definition: ide_ctrl.cc:142
IdeController::Channel::accessControl
void accessControl(Addr offset, int size, uint8_t *data, bool read)
Definition: ide_ctrl.cc:217
bitunion.hh
IdeController::EndBitUnion
EndBitUnion(BMIStatusReg) BitUnion8(BMICommandReg) Bitfield< 3 > rw
IdeController::PARAMS
PARAMS(IdeController)
IdeController::Channel::select
void select(bool select_device_1)
Definition: ide_ctrl.hh:143
IdeController::Channel::name
const std::string name()
Definition: ide_ctrl.hh:108
IdeController::Channel::BMIRegs::reset
void reset()
Definition: ide_ctrl.hh:117
RegisterBank< ByteOrder::little >
IdeController::Channel::device1
IdeDisk * device1
Definition: ide_ctrl.hh:135
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
IdeController::writeConfig
Tick writeConfig(PacketPtr pkt) override
Write to the PCI config space data that is stored locally.
Definition: ide_ctrl.cc:178
IdeController::Channel::accessCommand
void accessCommand(Addr offset, int size, uint8_t *data, bool read)
Definition: ide_ctrl.cc:197
IdeDisk
IDE Disk device model.
Definition: ide_disk.hh:205
IdeController::ioShift
uint32_t ioShift
Definition: ide_ctrl.hh:162
IdeController::primary
Channel primary
Definition: ide_ctrl.hh:159
SimObject::name
virtual const std::string name() const
Definition: sim_object.hh:182
IdeController::readConfig
Tick readConfig(PacketPtr pkt) override
Read from the PCI config space data that is stored locally.
Definition: ide_ctrl.cc:159
IdeController::BitUnion8
BitUnion8(BMIStatusReg) Bitfield< 6 > dmaCap0
IdeController::Channel::BMIRegs::reserved1
uint8_t reserved1
Definition: ide_ctrl.hh:125
IdeController::Channel::BMIRegs
Registers used for bus master interface.
Definition: ide_ctrl.hh:114
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
ArmISA::rw
Bitfield< 31 > rw
Definition: miscregs_types.hh:249
IdeController::configSpaceRegs
EndBitUnion(BMICommandReg) class ConfigSpaceRegs ConfigSpaceRegs configSpaceRegs
Registers used in device specific PCI configuration.
Definition: ide_ctrl.hh:64
IdeController::Channel::unserialize
void unserialize(const std::string &base, CheckpointIn &cp)
Definition: ide_ctrl.cc:435
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
IdeController::startStop
Bitfield< 0 > startStop
Definition: ide_ctrl.hh:63
RegisterBankLE
RegisterBank< ByteOrder::little > RegisterBankLE
Definition: reg_bank.hh:919
IdeController::intrPost
void intrPost()
Definition: ide_ctrl.cc:135
IdeController::Channel::BMIRegs::command
BMICommandReg command
Definition: ide_ctrl.hh:122
IdeController::secondary
Channel secondary
Definition: ide_ctrl.hh:160
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
IdeController::Channel
Definition: ide_ctrl.hh:103
PCI_CONFIG_SIZE
#define PCI_CONFIG_SIZE
Definition: pcireg.h:163
CheckpointIn
Definition: serialize.hh:68
IdeController::Channel::serialize
void serialize(const std::string &base, std::ostream &os) const
Definition: ide_ctrl.cc:407
reg_bank.hh
PciDevice
PCI device, base implementation is only config space.
Definition: device.hh:266
DmaDevice::Params
DmaDeviceParams Params
Definition: dma_device.hh:206
IdeController::unserialize
void unserialize(CheckpointIn &cp) override
Reconstruct the state of this object from a checkpoint.
Definition: ide_ctrl.cc:421
IdeController::IdeController
IdeController(const Params &p)
Definition: ide_ctrl.cc:72
ArmISA::offset
Bitfield< 23, 0 > offset
Definition: types.hh:153

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