39 #include "debug/IdeDisk.hh" 48 image(p->image), curSector((off_t)-1), dirty(false)
86 accessAddr,
diskData[accessAddr % SectorSize]);
88 case sizeof(uint16_t):
89 memcpy(&d16,
diskData + (accessAddr % SectorSize), 2);
91 DPRINTF(
IdeDisk,
"reading word %#x value= %#x\n", accessAddr, d16);
93 case sizeof(uint32_t):
94 memcpy(&d32,
diskData + (accessAddr % SectorSize), 4);
96 DPRINTF(
IdeDisk,
"reading dword %#x value= %#x\n", accessAddr, d32);
98 case sizeof(uint64_t):
99 memcpy(&d64,
diskData + (accessAddr % SectorSize), 8);
101 DPRINTF(
IdeDisk,
"reading qword %#x value= %#x\n", accessAddr, d64);
104 panic(
"Invalid access size\n");
128 off_t bytes_written =
143 case sizeof(uint8_t):
148 case sizeof(uint16_t):
149 d16 = pkt->
getRaw<uint16_t>();
150 memcpy(
diskData + (accessAddr % SectorSize), &d16, 2);
151 DPRINTF(
IdeDisk,
"writing word %#x value= %#x\n", accessAddr, d16);
153 case sizeof(uint32_t):
154 d32 = pkt->
getRaw<uint32_t>();
155 memcpy(
diskData + (accessAddr % SectorSize), &d32, 4);
156 DPRINTF(
IdeDisk,
"writing dword %#x value= %#x\n", accessAddr, d32);
158 case sizeof(uint64_t):
159 d64 = pkt->
getRaw<uint64_t>();
160 memcpy(
diskData + (accessAddr % SectorSize), &d64, 8);
161 DPRINTF(
IdeDisk,
"writing qword %#x value= %#x\n", accessAddr, d64);
164 panic(
"Invalid access size\n");
187 MmDiskParams::create()
#define panic(...)
This implements a cprintf based panic() function.
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
void serialize(CheckpointOut &cp) const override
Serialize an object.
void setRaw(T v)
Set the value in the data pointer to v without byte swapping.
This device acts as a disk similar to the memory mapped disk device in legion.
Addr pioSize
Size that the device's address range.
void makeAtomicResponse()
uint64_t Tick
Tick count type.
void serialize(CheckpointOut &cp) const override
Serialize an object.
virtual std::streampos write(const uint8_t *data, std::streampos offset)=0
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
uint8_t diskData[SectorSize]
std::ostream CheckpointOut
virtual std::streampos read(uint8_t *data, std::streampos offset) const =0
T getRaw() const
Get the data in the packet without byte swapping.
Tick pioDelay
Delay that the device experinces on an access.
Addr pioAddr
Address that the device listens to.
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.