Go to the documentation of this file.
46 #include "debug/IdeCtrl.hh"
50 #include "params/IdeController.hh"
83 for (
int i = 0;
i <
params().disks.size();
i++) {
100 panic(
"IDE controllers support a maximum "
101 "of 4 devices attached!\n");
104 params().disks[
i]->setController(
this, 4 * 1024);
153 panic(
"Unable to find disk based on pointer %#x\n", disk);
172 DPRINTF(IdeCtrl,
"PCI read offset: %#x size: %d data: %#x\n",
offset, size,
190 DPRINTF(IdeCtrl,
"PCI write offset: %#x size: %d data: %#x\n",
201 int size, uint8_t *
data,
bool read)
203 const Addr SelectOffset = 6;
204 const uint8_t SelectDevBit = 0x10;
210 assert(size ==
sizeof(uint8_t));
223 if (selected == NULL) {
224 assert(size ==
sizeof(uint8_t));
239 memcpy(
data, (uint8_t *)&bmiRegs +
offset, size);
244 if (size !=
sizeof(uint8_t))
245 panic(
"Invalid BMIC write size: %x\n", size);
247 BMICommandReg oldVal = bmiRegs.command;
248 BMICommandReg newVal = *
data;
251 if (oldVal.startStop && oldVal.rw != newVal.rw)
252 oldVal.rw = newVal.rw;
254 if (oldVal.startStop != newVal.startStop) {
255 if (selected == NULL)
256 panic(
"DMA start for disk which does not exist\n");
258 if (oldVal.startStop) {
259 DPRINTF(IdeCtrl,
"Stopping DMA transfer\n");
260 bmiRegs.status.active = 0;
262 selected->abortDma();
264 DPRINTF(IdeCtrl,
"Starting DMA transfer\n");
265 bmiRegs.status.active = 1;
267 selected->startDma(
letoh(bmiRegs.bmidtp));
271 bmiRegs.command = newVal;
276 if (size !=
sizeof(uint8_t))
277 panic(
"Invalid BMIS write size: %x\n", size);
279 BMIStatusReg oldVal = bmiRegs.status;
280 BMIStatusReg newVal = *
data;
283 newVal.active = oldVal.active;
286 if ((oldVal.intStatus == 1) && (newVal.intStatus == 1)) {
287 newVal.intStatus = 0;
292 uint8_t tmp = oldVal.intStatus;
293 newVal.intStatus = tmp;
295 if ((oldVal.dmaError == 1) && (newVal.dmaError == 1)) {
298 uint8_t tmp = oldVal.dmaError;
299 newVal.dmaError = tmp;
302 bmiRegs.status = newVal;
306 if (size !=
sizeof(uint32_t))
307 panic(
"Invalid BMIDTP write size: %x\n", size);
308 bmiRegs.bmidtp =
htole(*(uint32_t *)
data & ~0x3);
311 if (size !=
sizeof(uint8_t) && size !=
sizeof(uint16_t) &&
312 size !=
sizeof(uint32_t))
313 panic(
"IDE controller write of invalid write size: %x\n", size);
314 memcpy((uint8_t *)&bmiRegs +
offset,
data, size);
327 uint8_t *dataPtr = pkt->
getPtr<uint8_t>();
332 "IDE controller access to invalid address: %#x.",
addr);
353 PciCommandRegister command =
letoh(
config.command);
354 if (!
read && !command.busMaster)
374 DPRINTF(IdeCtrl,
"%s from offset: %#x size: %#x data: %#x\n",
413 uint8_t command = bmiRegs.command;
415 paramOut(cp,
base +
".bmiRegs.reserved0", bmiRegs.reserved0);
416 uint8_t
status = bmiRegs.status;
418 paramOut(cp,
base +
".bmiRegs.reserved1", bmiRegs.reserved1);
442 bmiRegs.command = command;
443 paramIn(cp,
base +
".bmiRegs.reserved0", bmiRegs.reserved0);
447 paramIn(cp,
base +
".bmiRegs.reserved1", bmiRegs.reserved1);
448 paramIn(cp,
base +
".bmiRegs.bmidtp", bmiRegs.bmidtp);
void unserialize(ThreadContext &tc, CheckpointIn &cp)
PCIConfig config
The current config space.
uint64_t getUintX(ByteOrder endian) const
Get the data in the packet byte swapped from the specified endianness and zero-extended to 64 bits.
void serialize(const std::string &base, std::ostream &os) const
#define UNSERIALIZE_SCALAR(scalar)
void serialize(CheckpointOut &cp) const override
Serialize this object to the given output stream.
void unserialize(CheckpointIn &cp) override
Reconstruct the state of this object from a checkpoint.
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
void readCommand(const Addr offset, int size, uint8_t *data)
void makeAtomicResponse()
void select(bool select_device_1)
#define PCI_DEVICE_SPECIFIC
virtual Tick writeConfig(PacketPtr pkt)
Write to the PCI config space data that is stored locally.
IdeDisk * device0
IDE disks connected to this controller For more details about device0 and device1 see: https://en....
Registers used for bus master interface.
virtual std::string name() const
const Params & params() const
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
uint64_t Tick
Tick count type.
IdeController(const Params &p)
void accessCommand(Addr offset, int size, uint8_t *data, bool read)
void dispatchAccess(PacketPtr pkt, bool read)
const T * getConstPtr() const
PCI device, base implementation is only config space.
bool getBAR(Addr addr, int &num, Addr &offs)
Which base address register (if any) maps the given address?
void accessControl(Addr offset, int size, uint8_t *data, bool read)
void writeCommand(const Addr offset, int size, const uint8_t *data)
void serialize(const ThreadContext &tc, CheckpointOut &cp)
Thread context serialization helpers.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Tick readConfig(PacketPtr pkt) override
Read from the PCI config space data that is stored locally.
#define SERIALIZE_SCALAR(scalar)
void serialize(CheckpointOut &cp) const override
Serialize this object to the given output stream.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
virtual Tick readConfig(PacketPtr pkt)
Read from the PCI config space data that is stored locally.
void paramOut(CheckpointOut &cp, const std::string &name, ExtMachInst const &machInst)
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
void setDmaComplete(IdeDisk *disk)
void unserialize(const std::string &base, CheckpointIn &cp)
bool isDiskSelected(IdeDisk *diskPtr)
See if a disk is selected based on its pointer.
IdeDisk * selected
Currently selected disk.
void paramIn(CheckpointIn &cp, const std::string &name, ExtMachInst &machInst)
struct gem5::IdeController::Channel::BMIRegs bmiRegs
EndBitUnion(BMICommandReg) class ConfigSpaceRegs ConfigSpaceRegs configSpaceRegs
Registers used in device specific PCI configuration.
void unserialize(CheckpointIn &cp) override
Reconstruct the state of this object from a checkpoint.
T getLE() const
Get the data in the packet byte swapped from little endian to host endian.
void accessBMI(Addr offset, int size, uint8_t *data, bool read)
std::ostream CheckpointOut
Tick writeConfig(PacketPtr pkt) override
Write to the PCI config space data that is stored locally.
Channel(std::string newName)
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
#define panic(...)
This implements a cprintf based panic() function.
T * getPtr()
get a pointer to the data ptr.
Generated on Wed Jul 28 2021 12:10:26 for gem5 by doxygen 1.8.17