Merge remote-tracking branch 'remotes/dgilbert-gitlab/tags/pull-virtiofs-20210315...
[qemu/ar7.git] / pc-bios / s390-ccw / virtio-scsi.h
blob4b14c2c2f909095404d7878fc4873b25315b16fa
1 /*
2 * Virtio-SCSI definitions for s390 machine loader for qemu
4 * Copyright 2015 IBM Corp.
5 * Author: Eugene "jno" Dvurechenski <jno@linux.vnet.ibm.com>
7 * This work is licensed under the terms of the GNU GPL, version 2 or (at
8 * your option) any later version. See the COPYING file in the top-level
9 * directory.
12 #ifndef VIRTIO_SCSI_H
13 #define VIRTIO_SCSI_H
15 #include "s390-ccw.h"
16 #include "virtio.h"
17 #include "scsi.h"
19 #define VIRTIO_SCSI_CDB_SIZE SCSI_DEFAULT_CDB_SIZE
20 #define VIRTIO_SCSI_SENSE_SIZE SCSI_DEFAULT_SENSE_SIZE
22 #define VIRTIO_SCSI_MAX_SECTORS 2048
24 /* command-specific response values */
25 #define VIRTIO_SCSI_S_OK 0x00
26 #define VIRTIO_SCSI_S_BAD_TARGET 0x03
28 #define QEMU_CDROM_SIGNATURE "QEMU CD-ROM "
30 enum virtio_scsi_vq_id {
31 VR_CONTROL = 0,
32 VR_EVENT = 1,
33 VR_REQUEST = 2,
36 struct VirtioScsiCmdReq {
37 ScsiLun lun;
38 uint64_t id;
39 uint8_t task_attr; /* = 0 = VIRTIO_SCSI_S_SIMPLE */
40 uint8_t prio;
41 uint8_t crn; /* = 0 */
42 uint8_t cdb[VIRTIO_SCSI_CDB_SIZE];
43 } __attribute__((packed));
44 typedef struct VirtioScsiCmdReq VirtioScsiCmdReq;
46 struct VirtioScsiCmdResp {
47 uint32_t sense_len;
48 uint32_t residual;
49 uint16_t status_qualifier;
50 uint8_t status; /* first check for .response */
51 uint8_t response; /* then for .status */
52 uint8_t sense[VIRTIO_SCSI_SENSE_SIZE];
53 } __attribute__((packed));
54 typedef struct VirtioScsiCmdResp VirtioScsiCmdResp;
56 static inline const char *virtio_scsi_response_msg(const VirtioScsiCmdResp *r)
58 static char err_msg[] = "VS RESP=XX";
59 uint8_t v = r->response;
61 fill_hex_val(err_msg + 8, &v, 1);
62 return err_msg;
65 static inline bool virtio_scsi_response_ok(const VirtioScsiCmdResp *r)
67 return r->response == VIRTIO_SCSI_S_OK && r->status == CDB_STATUS_GOOD;
70 int virtio_scsi_setup(VDev *vdev);
71 int virtio_scsi_read_many(VDev *vdev,
72 ulong sector, void *load_addr, int sec_num);
74 #endif /* VIRTIO_SCSI_H */