gem5  v20.0.0.3
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 "params/IdeController.hh"
41 
42 class IdeDisk;
43 
48 class IdeController : public PciDevice
49 {
50  private:
51  // Bus master IDE status register bit fields
52  BitUnion8(BMIStatusReg)
53  Bitfield<6> dmaCap0;
54  Bitfield<5> dmaCap1;
55  Bitfield<2> intStatus;
56  Bitfield<1> dmaError;
57  Bitfield<0> active;
58  EndBitUnion(BMIStatusReg)
59 
60  BitUnion8(BMICommandReg)
61  Bitfield<3> rw;
62  Bitfield<0> startStop;
63  EndBitUnion(BMICommandReg)
64 
65  struct Channel
66  {
67  std::string _name;
68 
69  const std::string
70  name()
71  {
72  return _name;
73  }
74 
76  Addr cmdAddr, cmdSize, ctrlAddr, ctrlSize;
77 
79  struct BMIRegs
80  {
81  void reset() {
82  memset(static_cast<void *>(this), 0, sizeof(*this));
83  }
84 
85  BMICommandReg command;
86  uint8_t reserved0;
87  BMIStatusReg status;
88  uint8_t reserved1;
89  uint32_t bmidtp;
90  } bmiRegs;
91 
93  IdeDisk *master, *slave;
94 
96  IdeDisk *selected;
97 
98  bool selectBit;
99 
100  void
101  select(bool selSlave)
102  {
103  selectBit = selSlave;
104  selected = selectBit ? slave : master;
105  }
106 
107  void accessCommand(Addr offset, int size, uint8_t *data, bool read);
108  void accessControl(Addr offset, int size, uint8_t *data, bool read);
109  void accessBMI(Addr offset, int size, uint8_t *data, bool read);
110 
111  Channel(std::string newName, Addr _cmdSize, Addr _ctrlSize);
112  ~Channel();
113 
114  void serialize(const std::string &base, std::ostream &os) const;
115  void unserialize(const std::string &base, CheckpointIn &cp);
116  };
117 
118  Channel primary;
119  Channel secondary;
120 
123 
126  uint8_t deviceTiming;
127  uint8_t udmaControl;
128  uint16_t udmaTiming;
129  uint16_t ideConfig;
130 
131  // Internal management variables
132  bool ioEnabled;
133  bool bmEnabled;
134 
135  uint32_t ioShift, ctrlOffset;
136 
137  void dispatchAccess(PacketPtr pkt, bool read);
138 
139  public:
140  typedef IdeControllerParams Params;
141  const Params *params() const { return (const Params *)_params; }
142  IdeController(Params *p);
143 
145  bool isDiskSelected(IdeDisk *diskPtr);
146 
147  void intrPost();
148 
149  Tick writeConfig(PacketPtr pkt) override;
150  Tick readConfig(PacketPtr pkt) override;
151 
152  void setDmaComplete(IdeDisk *disk);
153 
154  Tick read(PacketPtr pkt) override;
155  Tick write(PacketPtr pkt) override;
156 
157  void serialize(CheckpointOut &cp) const override;
158  void unserialize(CheckpointIn &cp) override;
159 };
160 #endif // __DEV_STORAGE_IDE_CTRL_HH_
Tick readConfig(PacketPtr pkt) override
Read from the PCI config space data that is stored locally.
Definition: ide_ctrl.cc:173
IdeControllerParams Params
Definition: ide_ctrl.hh:140
void unserialize(CheckpointIn &cp) override
Reconstruct the state of this object from a checkpoint.
Definition: ide_ctrl.cc:606
PCI device, base implementation is only config space.
Definition: device.hh:66
bool isDiskSelected(IdeDisk *diskPtr)
See if a disk is selected based on its pointer.
Definition: ide_ctrl.cc:143
uint16_t ideConfig
Definition: ide_ctrl.hh:129
uint16_t secondaryTiming
Definition: ide_ctrl.hh:125
Device model for an Intel PIIX4 IDE controller.
Definition: ide_ctrl.hh:48
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: ide_ctrl.cc:549
void reset()
Definition: statistics.cc:569
BitUnion8(BMIStatusReg) Bitfield< 6 > dmaCap0
Bitfield< 23, 0 > offset
Definition: types.hh:152
Definition: cprintf.cc:40
bool ioEnabled
Definition: ide_ctrl.hh:132
uint8_t udmaControl
Definition: ide_ctrl.hh:127
uint16_t primaryTiming
Registers used in device specific PCI configuration.
Definition: ide_ctrl.hh:125
Bitfield< 0 > startStop
Definition: ide_ctrl.hh:62
IdeController(Params *p)
Definition: ide_ctrl.cc:91
Bitfield< 17 > os
Definition: misc.hh:803
void dispatchAccess(PacketPtr pkt, bool read)
Definition: ide_ctrl.cc:484
EndBitUnion(BMICommandReg) struct Channel
Definition: ide_ctrl.hh:63
Bitfield< 5, 0 > status
uint32_t ctrlOffset
Definition: ide_ctrl.hh:135
Channel primary
Definition: ide_ctrl.hh:116
Bitfield< 1 > dmaError
Definition: ide_ctrl.hh:56
uint8_t deviceTiming
Definition: ide_ctrl.hh:126
uint64_t Tick
Tick count type.
Definition: types.hh:61
uint16_t udmaTiming
Definition: ide_ctrl.hh:128
Bitfield< 51, 12 > base
Definition: pagetable.hh:141
uint32_t ioShift
Definition: ide_ctrl.hh:135
const Params * params() const
Definition: ide_ctrl.hh:141
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
Addr bmiAddr
Bus master interface (BMI) registers.
Definition: ide_ctrl.hh:122
virtual const std::string name() const
Definition: sim_object.hh:129
IDE Disk device model.
Definition: ide_disk.hh:205
std::ostream CheckpointOut
Definition: serialize.hh:63
const SimObjectParams * _params
Cached copy of the object parameters.
Definition: sim_object.hh:111
EndBitUnion(BMIStatusReg) BitUnion8(BMICommandReg) Bitfield< 3 > rw
Channel secondary
Definition: ide_ctrl.hh:119
Bitfield< 31 > rw
void serialize(CheckpointOut &cp) const override
Serialize this object to the given output stream.
Definition: ide_ctrl.cc:563
bool bmEnabled
Definition: ide_ctrl.hh:133
Bitfield< 0 > active
Definition: ide_ctrl.hh:57
Bitfield< 0 > p
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: ide_ctrl.cc:556
const char data[]
void setDmaComplete(IdeDisk *disk)
Definition: ide_ctrl.cc:156
Bitfield< 5 > dmaCap1
Definition: ide_ctrl.hh:54
void intrPost()
Definition: ide_ctrl.cc:149
Tick writeConfig(PacketPtr pkt) override
Write to the PCI config space data that is stored locally.
Definition: ide_ctrl.cc:255
Bitfield< 2 > intStatus
Definition: ide_ctrl.hh:55

Generated on Fri Jul 3 2020 15:53:02 for gem5 by doxygen 1.8.13