mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00

Apple has its own virtio-blk PCI device ID where it deviates from the official virtio-pci spec slightly: It puts a new "apple type" field at a static offset in config space and introduces a new barrier command. This patch first creates a mechanism for virtio-blk downstream classes to handle unknown commands. It then creates such a downstream class and a new vmapple-virtio-blk-pci class which support the additional apple type config identifier as well as the barrier command. The 'aux' or 'root' device type are selected using the 'variant' property. Signed-off-by: Alexander Graf <graf@amazon.com> Signed-off-by: Phil Dennis-Jordan <phil@philjordan.eu> Reviewed-by: Akihiko Odaki <akihiko.odaki@daynix.com> Tested-by: Akihiko Odaki <akihiko.odaki@daynix.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Message-ID: <20241223221645.29911-13-phil@philjordan.eu> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
114 lines
2.8 KiB
C
114 lines
2.8 KiB
C
/*
|
|
* Virtio Block Device
|
|
*
|
|
* Copyright IBM, Corp. 2007
|
|
*
|
|
* Authors:
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
* the COPYING file in the top-level directory.
|
|
*
|
|
*/
|
|
|
|
#ifndef QEMU_VIRTIO_BLK_H
|
|
#define QEMU_VIRTIO_BLK_H
|
|
|
|
#include "standard-headers/linux/virtio_blk.h"
|
|
#include "hw/virtio/virtio.h"
|
|
#include "hw/block/block.h"
|
|
#include "system/iothread.h"
|
|
#include "system/block-backend.h"
|
|
#include "system/block-ram-registrar.h"
|
|
#include "qom/object.h"
|
|
#include "qapi/qapi-types-virtio.h"
|
|
|
|
#define TYPE_VIRTIO_BLK "virtio-blk-device"
|
|
OBJECT_DECLARE_TYPE(VirtIOBlock, VirtIOBlkClass, VIRTIO_BLK)
|
|
|
|
/* This is the last element of the write scatter-gather list */
|
|
struct virtio_blk_inhdr
|
|
{
|
|
unsigned char status;
|
|
};
|
|
|
|
#define VIRTIO_BLK_AUTO_NUM_QUEUES UINT16_MAX
|
|
|
|
struct VirtIOBlkConf
|
|
{
|
|
BlockConf conf;
|
|
IOThread *iothread;
|
|
IOThreadVirtQueueMappingList *iothread_vq_mapping_list;
|
|
char *serial;
|
|
uint32_t request_merging;
|
|
uint16_t num_queues;
|
|
uint16_t queue_size;
|
|
bool seg_max_adjust;
|
|
bool report_discard_granularity;
|
|
uint32_t max_discard_sectors;
|
|
uint32_t max_write_zeroes_sectors;
|
|
bool x_enable_wce_if_config_wce;
|
|
};
|
|
|
|
struct VirtIOBlockReq;
|
|
struct VirtIOBlock {
|
|
VirtIODevice parent_obj;
|
|
BlockBackend *blk;
|
|
QemuMutex rq_lock;
|
|
struct VirtIOBlockReq *rq; /* protected by rq_lock */
|
|
VirtIOBlkConf conf;
|
|
unsigned short sector_mask;
|
|
bool original_wce;
|
|
VMChangeStateEntry *change;
|
|
bool ioeventfd_disabled;
|
|
bool ioeventfd_started;
|
|
bool ioeventfd_starting;
|
|
bool ioeventfd_stopping;
|
|
|
|
/*
|
|
* The AioContext for each virtqueue. The BlockDriverState will use the
|
|
* first element as its AioContext.
|
|
*/
|
|
AioContext **vq_aio_context;
|
|
|
|
uint64_t host_features;
|
|
size_t config_size;
|
|
BlockRAMRegistrar blk_ram_registrar;
|
|
};
|
|
|
|
typedef struct VirtIOBlockReq {
|
|
VirtQueueElement elem;
|
|
int64_t sector_num;
|
|
VirtIOBlock *dev;
|
|
VirtQueue *vq;
|
|
IOVDiscardUndo inhdr_undo;
|
|
IOVDiscardUndo outhdr_undo;
|
|
struct virtio_blk_inhdr *in;
|
|
struct virtio_blk_outhdr out;
|
|
QEMUIOVector qiov;
|
|
size_t in_len;
|
|
struct VirtIOBlockReq *next;
|
|
struct VirtIOBlockReq *mr_next;
|
|
BlockAcctCookie acct;
|
|
} VirtIOBlockReq;
|
|
|
|
#define VIRTIO_BLK_MAX_MERGE_REQS 32
|
|
|
|
typedef struct MultiReqBuffer {
|
|
VirtIOBlockReq *reqs[VIRTIO_BLK_MAX_MERGE_REQS];
|
|
unsigned int num_reqs;
|
|
bool is_write;
|
|
} MultiReqBuffer;
|
|
|
|
typedef struct VirtIOBlkClass {
|
|
/*< private >*/
|
|
VirtioDeviceClass parent;
|
|
/*< public >*/
|
|
bool (*handle_unknown_request)(VirtIOBlockReq *req, MultiReqBuffer *mrb,
|
|
uint32_t type);
|
|
} VirtIOBlkClass;
|
|
|
|
void virtio_blk_handle_vq(VirtIOBlock *s, VirtQueue *vq);
|
|
void virtio_blk_req_complete(VirtIOBlockReq *req, unsigned char status);
|
|
|
|
#endif
|