40 #include "debug/VIOBlock.hh" 41 #include "params/VirtIOBlock.hh" 47 params->queueSize, *this),
71 size_t off_data,
size_t size)
74 uint64_t sector(req.
sector);
76 DPRINTF(VIOBlock,
"Read request starting @ sector %i (size: %i)\n",
80 panic(
"Unexpected request/sector size relationship\n");
84 warn(
"Failed to read sector %i\n", sector);
90 desc_chain->
chainWrite(off_data, &data[0], size);
97 size_t off_data,
size_t size)
100 uint64_t sector(req.
sector);
102 DPRINTF(VIOBlock,
"Write request starting @ sector %i (size: %i)\n",
106 panic(
"Unexpected request/sector size relationship\n");
109 desc_chain->
chainRead(off_data, &data[0], size);
113 warn(
"Failed to write sector %i\n", sector);
126 DPRINTF(VIOBlock,
"Got input data descriptor (len: %i)\n",
133 desc->
chainRead(0, (uint8_t *)&req,
sizeof(req));
143 status = parent.read(req, desc,
sizeof(
BlkRequest), data_size);
147 status = parent.write(req, desc,
sizeof(
BlkRequest), data_size);
155 warn(
"Unsupported IO request: %i\n", req.type);
161 &status,
sizeof(status));
169 VirtIOBlockParams::create()
#define panic(...)
This implements a cprintf based panic() function.
Base class for all VirtIO-based devices.
Status read(const BlkRequest &req, VirtDescriptor *desc_chain, size_t off_data, size_t size)
Device read request.
VirtIOBlock(Params *params)
DiskImage & image
Image backing this device.
static const RequestType T_FLUSH
Flush device buffers.
Block device configuration structure.
Status write(const BlkRequest &req, VirtDescriptor *desc_chain, size_t off_data, size_t size)
Device write request.
static const RequestType T_OUT
Write request.
size_t size() const
Retrieve the size of this descriptor.
VirtIO block device request as sent by guest.
void chainRead(size_t offset, uint8_t *dst, size_t size) const
Read the contents of a descriptor chain.
virtual std::streampos size() const =0
ByteOrder byteOrder
The byte order of the queues, descriptors, etc.
T htog(T value, ByteOrder guest_byte_order)
size_t chainSize() const
Retrieve the size of this descriptor chain.
static const RequestType T_IN
Read request.
void chainWrite(size_t offset, const uint8_t *src, size_t size)
Write to a descriptor chain.
virtual std::streampos write(const uint8_t *data, std::streampos offset)=0
VirtIO descriptor (chain) wrapper.
void onNotifyDescriptor(VirtDescriptor *desc)
Notify queue of pending incoming descriptor.
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...
void readConfig(PacketPtr pkt, Addr cfgOffset)
Read from the configuration space of a device.
void registerQueue(VirtQueue &queue)
Register a new VirtQueue with the device model.
static const Status S_IOERR
Request failed due to a device error.
virtual std::streampos read(uint8_t *data, std::streampos offset) const =0
static const Status S_OK
Request succeeded.
RequestQueue qRequests
Device I/O request queue.
static const Status S_UNSUPP
Request not supported.
void readConfigBlob(PacketPtr pkt, Addr cfgOffset, const uint8_t *cfg)
Read configuration data from a device structure.
ByteOrder byteOrder(const ThreadContext *tc)