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
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
{
36 struct VirtioScsiCmdReq
{
39 uint8_t task_attr
; /* = 0 = VIRTIO_SCSI_S_SIMPLE */
41 uint8_t crn
; /* = 0 */
42 uint8_t cdb
[VIRTIO_SCSI_CDB_SIZE
];
43 } __attribute__((packed
));
44 typedef struct VirtioScsiCmdReq VirtioScsiCmdReq
;
46 struct VirtioScsiCmdResp
{
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);
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 void 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 */