Go to the documentation of this file.
55 #include "debug/IdeDisk.hh"
62 :
SimObject(
p), ctrl(NULL), image(
p.image), diskDelay(
p.delay),
66 dmaReadWaitEvent([
this]{ doDmaRead(); },
name()),
68 dmaWriteWaitEvent([
this]{ doDmaWrite(); },
name()),
69 dmaPrdReadEvent([
this]{ dmaPrdReadDone(); },
name()),
70 dmaReadEvent([
this]{ dmaReadDone(); },
name()),
71 dmaWriteEvent([
this]{ dmaWriteDone(); },
name())
77 memset(&driveID, 0,
sizeof(
struct ataparams));
84 uint32_t lba_size = image->size();
85 if (lba_size >= 16383*16*63) {
92 else if (lba_size == 0)
93 panic(
"Bad IDE image size: 0\n");
97 if ((lba_size / sectors) >= 16)
100 heads = (lba_size / sectors);
102 cylinders = lba_size / (heads * sectors);
106 strncpy((
char *)driveID.atap_model,
"5MI EDD si k",
107 sizeof(driveID.atap_model));
111 driveID.atap_capabilities1 = 0x7;
113 driveID.atap_extensions = 0x6;
115 driveID.atap_cylinders = cylinders;
116 driveID.atap_sectors = sectors;
117 driveID.atap_heads = heads;
120 driveID.atap_curmulti_valid = 0x1;
122 driveID.atap_capacity = lba_size;
124 driveID.atap_dmamode_supp = 0x4;
126 driveID.atap_piomode_supp = 0x3;
128 driveID.atap_udmamode_supp = 0x1f;
130 driveID.atap_hwreset_res = 0x4001;
167 }
else if (
id ==
DEV1) {
171 panic(
"Invalid device ID: %#x\n",
id);
198 panic(
"Access to unset controller!\n");
209 if (size ==
sizeof(uint16_t)) {
211 }
else if (size ==
sizeof(uint32_t)) {
216 panic(
"Data read of unsupported size %d.\n", size);
221 assert(size ==
sizeof(uint8_t));
246 panic(
"Invalid IDE command register offset: %#x\n",
offset);
254 assert(size ==
sizeof(uint8_t));
257 panic(
"Invalid IDE control register offset: %#x\n",
offset);
265 if (size ==
sizeof(uint16_t)) {
267 }
else if (size ==
sizeof(uint32_t)) {
272 panic(
"Data write of unsupported size %d.\n", size);
278 assert(size ==
sizeof(uint8_t));
303 panic(
"Invalid IDE command register offset: %#x\n",
offset);
313 panic(
"Invalid IDE control register offset: %#x\n",
offset);
343 panic(
"Inconsistent DMA transfer state: dmaState = %d devState = %d\n",
364 "PRD: baseAddr:%#x (%#x) byteCount:%d (%d) eot:%#x sector:%d\n",
392 :
Stats::Group(parent,
"IdeDisk"),
394 "Number of full page size DMA reads (not PRD)."),
396 "Number of bytes transfered via DMA reads (not PRD)."),
398 "Number of DMA read transactions (not PRD)."),
400 "Number of full page size DMA writes."),
402 "Number of bytes transfered via DMA writes."),
449 uint32_t bytesWritten = 0;
474 uint32_t bytesRead = 0;
476 DPRINTF(
IdeDisk,
"doDmaWrite, diskDelay: %d totalDiskDelay: %d\n",
516 DPRINTF(
IdeDisk,
"doDmaWrite: not done curPrd byte count %d, eot %#x\n",
524 DPRINTF(
IdeDisk,
"doDmaWrite: done curPrd byte count %d, eot %#x\n",
536 DPRINTF(
IdeDisk,
"doWriteDone: curPrd byte count %d, eot %#x cmd bytes left:%d\n",
558 panic(
"Can't read from %s. Only %d of %d read. errno=%d\n",
568 panic(
"Can't write to %s. Only %d of %d written. errno=%d\n",
580 panic(
"Inconsistent DMA state, should be in Dma_Start!\n");
583 panic(
"Inconsistent device state for DMA start!\n");
598 panic(
"Inconsistent DMA state, should be Start or Transfer!");
601 panic(
"Inconsistent device state, should be Transfer or Prepare!\n");
651 panic(
"Attempt to perform CHS access, only supports LBA\n");
669 panic(
"Attempt to perform CHS access, only supports LBA\n");
688 panic(
"Attempt to perform CHS access, only supports LBA\n");
727 panic(
"Attempt to post an interrupt with one pending\n");
742 panic(
"Attempt to clear a non-pending interrupt\n");
876 panic(
"DEBUG: READING DATA ONE BYTE AT A TIME!\n");
952 panic(
"DEBUG: WRITING DATA ONE BYTE AT A TIME!\n");
1003 panic(
"Inconsistent DMA state, should be Dma_Idle\n");
1046 DPRINTF(
IdeDisk,
"Disk still busy aborting previous DMA command\n");
1096 assert(eventCount <= 1);
void serialize(CheckpointOut &cp) const override
Serialize an object.
virtual std::streampos write(const uint8_t *data, std::streampos offset)=0
bool scheduled() const
Determine if the current event is scheduled.
Addr complete() const
Number of bytes we have already chunked up.
uint32_t curPrdAddr
PRD table base address.
@ Running
Running normally.
#define UNSERIALIZE_SCALAR(scalar)
uint8_t status
Status register.
EventFunctionWrapper dmaPrdReadEvent
~IdeDisk()
Delete the data buffer.
void reschedule(Event &event, Tick when, bool always=false)
#define WDSF_READ_NATIVE_MAX
uint64_t Tick
Tick count type.
void updateState(DevAction_t action)
PrdTableEntry curPrd
PRD entry.
EventFunctionWrapper dmaReadWaitEvent
int diskDelay
The disk delay in microseconds.
Addr chunkBytes
Size of chunks to DMA.
void startDma(const uint32_t &prdTableBase)
IdeDiskStats(Stats::Group *parent)
Tick when() const
Get the time that the event is scheduled.
virtual std::streampos size() const =0
Stats::Scalar dmaWriteTxs
ChunkGenerator * dmaReadCG
DevState_t devState
Device state.
void writeDisk(uint32_t sector, uint8_t *data)
#define SERIALIZE_ENUM(scalar)
uint32_t cmdBytes
Number of bytes in command data transfer.
CommandReg_t cmdReg
Command block registers.
Addr addr() const
Return starting address of current chunk.
DmaState_t dmaState
Dma state.
void dmaRead(Addr addr, int size, Event *event, uint8_t *data, uint32_t sid, uint32_t ssid, Tick delay=0)
bool isDiskSelected(IdeDisk *diskPtr)
See if a disk is selected based on its pointer.
void readControl(const Addr offset, int size, uint8_t *data)
EventFunctionWrapper dmaWriteEvent
void schedule(Event &event, Tick when)
void dmaWrite(Addr addr, int size, Event *event, uint8_t *data, uint32_t sid, uint32_t ssid, Tick delay=0)
Stats::Scalar dmaWriteBytes
Addr pciToDma(Addr pciAddr)
void writeControl(const Addr offset, int size, const uint8_t *data)
void setDmaComplete(IdeDisk *disk)
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
uint32_t curSector
Current sector in access.
IdeDisk::IdeDiskStats ideDiskStats
Stats::Scalar dmaReadBytes
struct PrdEntry PrdEntry_t
void reset(int id)
Reset the device state.
bool next()
Advance generator to next chunk.
#define SERIALIZE_ARRAY(member, size)
bool dmaAborted
DMA Aborted.
EventFunctionWrapper dmaReadEvent
Stats::Scalar dmaWriteFullPages
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
#define DMA_BACKOFF_PERIOD
bool done() const
Are we done? That is, did the last call to next() advance past the end of the region?
const std::string & name()
#define SERIALIZE_SCALAR(scalar)
bool intrPending
Interrupt pending.
struct ataparams driveID
Drive identification structure for this disk.
DrainState drainState() const
Return the current drain state of an object.
virtual const std::string name() const
IdeController * ctrl
The IDE controller for this disk.
int devID
Device ID (device0=0/device1=1)
DiskImage * image
The image that contains the data of this disk.
#define UNSERIALIZE_ARRAY(member, size)
void readCommand(const Addr offset, int size, uint8_t *data)
enum DevAction DevAction_t
Addr size() const
Return size in bytes of current chunk.
#define ATAPI_IDENTIFY_DEVICE
Stats::Scalar dmaReadFullPages
#define WDCC_STANDBY_IMMED
bool dmaRead
Dma transaction is a read.
virtual std::streampos read(uint8_t *data, std::streampos offset) const =0
std::ostream CheckpointOut
void unserialize(CheckpointIn &cp) override
Unserialize an object.
#define UNSERIALIZE_ENUM(scalar)
This class takes an arbitrary memory region (address/length pair) and generates a series of appropria...
Tick curTick()
The universal simulation clock.
bool nIENBit
Interrupt enable bit.
uint32_t cmdBytesLeft
Number of bytes left in command data transfer.
uint8_t * dataBuffer
Data buffer for transfers.
void writeCommand(const Addr offset, int size, const uint8_t *data)
uint32_t drqBytesLeft
Number of bytes left in DRQ block.
#define ULL(N)
uint64_t constant
Addr pciToDma(Addr pci_addr) const
EventFunctionWrapper dmaTransferEvent
ChunkGenerator * dmaWriteCG
#define panic(...)
This implements a cprintf based panic() function.
EventFunctionWrapper dmaWriteWaitEvent
void readDisk(uint32_t sector, uint8_t *data)
Abstract superclass for simulation objects.
Generated on Tue Mar 23 2021 19:41:26 for gem5 by doxygen 1.8.17