Go to the documentation of this file.
45 #ifndef __DEV_STORAGE_IDE_DISK_HH__
46 #define __DEV_STORAGE_IDE_DISK_HH__
54 #include "params/IdeDisk.hh"
62 #define DMA_BACKOFF_PERIOD 200
64 #define MAX_DMA_SIZE 0x20000 // 128K
65 #define MAX_SINGLE_DMA_SIZE 0x10000
66 #define MAX_MULTSECT (128)
68 #define PRD_BASE_MASK 0xfffffffe
69 #define PRD_COUNT_MASK 0xfffe
70 #define PRD_EOT_MASK 0x8000
101 #define DATA_OFFSET (0)
102 #define ERROR_OFFSET (1)
103 #define FEATURES_OFFSET (1)
104 #define NSECTOR_OFFSET (2)
105 #define SECTOR_OFFSET (3)
106 #define LCYL_OFFSET (4)
107 #define HCYL_OFFSET (5)
108 #define SELECT_OFFSET (6)
109 #define DRIVE_OFFSET (6)
110 #define STATUS_OFFSET (7)
111 #define COMMAND_OFFSET (7)
113 #define CONTROL_OFFSET (2)
114 #define ALTSTAT_OFFSET (2)
116 #define SELECT_DEV_BIT 0x10
117 #define CONTROL_RST_BIT 0x04
118 #define CONTROL_IEN_BIT 0x02
119 #define STATUS_BSY_BIT 0x80
120 #define STATUS_DRDY_BIT 0x40
121 #define STATUS_DRQ_BIT 0x08
122 #define STATUS_SEEK_BIT 0x10
123 #define STATUS_DF_BIT 0x20
124 #define DRIVE_LBA_BIT 0x40
314 void startDma(
const uint32_t &prdTableBase);
389 #endif // __DEV_STORAGE_IDE_DISK_HH__
This is a simple scalar statistic, like a counter.
void updateState(DevAction_t action)
Addr pciToDma(Addr pciAddr)
statistics::Scalar dmaWriteBytes
uint32_t curSector
Current sector in access.
PrdTableEntry curPrd
PRD entry.
statistics::Scalar dmaWriteTxs
void reset(int id)
Reset the device state.
void unserialize(CheckpointIn &cp) override
Unserialize an object.
statistics::Scalar dmaWriteFullPages
~IdeDisk()
Delete the data buffer.
ChunkGenerator * dmaWriteCG
IdeController * controller() const
struct ataparams driveID
Drive identification structure for this disk.
uint32_t curPrdAddr
PRD table base address.
void readCommand(const Addr offset, int size, uint8_t *data)
Addr chunkBytes
Size of chunks to DMA.
void startDma(const uint32_t &prdTableBase)
IdeDiskStats(statistics::Group *parent)
uint32_t cmdBytesLeft
Number of bytes left in command data transfer.
Basic interface for accessing a disk image.
This class takes an arbitrary memory region (address/length pair) and generates a series of appropria...
#define MAX_SINGLE_DMA_SIZE
bool dmaRead
Dma transaction is a read.
DevState_t devState
Device state.
bool pendingInterrupt
Interrupt pending.
ChunkGenerator * dmaReadCG
bool nIENBit
Interrupt enable bit.
void setChannel(IdeController::Channel *_channel, Addr chunk_bytes)
Set the controller for this device.
EventFunctionWrapper dmaWriteWaitEvent
DmaState_t dmaState
Dma state.
uint32_t cmdBytes
Number of bytes in command data transfer.
statistics::Scalar dmaReadTxs
EventFunctionWrapper dmaReadEvent
Device model for an Intel PIIX4 IDE controller.
int devID
Device ID (device0=0/device1=1)
IdeController::Channel * channel
The channel this disk is connected to.
void writeCommand(const Addr offset, int size, const uint8_t *data)
Abstract superclass for simulation objects.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
DiskImage * image
The image that contains the data of this disk.
gem5::IdeDisk::IdeDiskStats ideDiskStats
uint8_t status
Status register.
EventFunctionWrapper dmaReadWaitEvent
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
void writeDisk(uint32_t sector, uint8_t *data)
void readDisk(uint32_t sector, uint8_t *data)
EventFunctionWrapper dmaPrdReadEvent
uint32_t drqBytesLeft
Number of bytes left in DRQ block.
statistics::Scalar dmaReadFullPages
void readControl(const Addr offset, int size, uint8_t *data)
std::ostream CheckpointOut
statistics::Scalar dmaReadBytes
IdeController * ctrl
The IDE controller for this disk.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
void serialize(CheckpointOut &cp) const override
Serialize an object.
EventFunctionWrapper dmaTransferEvent
uint8_t * dataBuffer
Data buffer for transfers.
bool dmaAborted
DMA Aborted.
CommandReg_t cmdReg
Command block registers.
int diskDelay
The disk delay in microseconds.
void writeControl(const Addr offset, int size, const uint8_t *data)
EventFunctionWrapper dmaWriteEvent
Generated on Thu Jun 16 2022 10:41:53 for gem5 by doxygen 1.8.17