scsi.h 8.4 KB
Newer Older
G
Gerd Hoffmann 已提交
1 2
#ifndef QEMU_HW_SCSI_H
#define QEMU_HW_SCSI_H
G
Gerd Hoffmann 已提交
3 4

#include "qdev.h"
5
#include "block.h"
6
#include "hw/block-common.h"
7
#include "sysemu.h"
G
Gerd Hoffmann 已提交
8

9 10
#define MAX_SCSI_DEVS	255

11 12
#define SCSI_CMD_BUF_SIZE     16

G
Gerd Hoffmann 已提交
13
typedef struct SCSIBus SCSIBus;
14
typedef struct SCSIBusInfo SCSIBusInfo;
P
Paolo Bonzini 已提交
15
typedef struct SCSICommand SCSICommand;
G
Gerd Hoffmann 已提交
16
typedef struct SCSIDevice SCSIDevice;
17
typedef struct SCSIRequest SCSIRequest;
P
Paolo Bonzini 已提交
18
typedef struct SCSIReqOps SCSIReqOps;
G
Gerd Hoffmann 已提交
19

G
Gerd Hoffmann 已提交
20 21 22 23 24 25
enum SCSIXferMode {
    SCSI_XFER_NONE,      /*  TEST_UNIT_READY, ...            */
    SCSI_XFER_FROM_DEV,  /*  READ, INQUIRY, MODE_SENSE, ...  */
    SCSI_XFER_TO_DEV,    /*  WRITE, MODE_SELECT, ...         */
};

26 27 28 29 30 31
typedef struct SCSISense {
    uint8_t key;
    uint8_t asc;
    uint8_t ascq;
} SCSISense;

32 33
#define SCSI_SENSE_BUF_SIZE 96

P
Paolo Bonzini 已提交
34 35 36 37 38 39 40 41
struct SCSICommand {
    uint8_t buf[SCSI_CMD_BUF_SIZE];
    int len;
    size_t xfer;
    uint64_t lba;
    enum SCSIXferMode mode;
};

42
struct SCSIRequest {
43 44
    SCSIBus           *bus;
    SCSIDevice        *dev;
P
Paolo Bonzini 已提交
45
    const SCSIReqOps  *ops;
P
Paolo Bonzini 已提交
46
    uint32_t          refcount;
47
    uint32_t          tag;
48
    uint32_t          lun;
G
Gerd Hoffmann 已提交
49
    uint32_t          status;
50
    size_t            resid;
P
Paolo Bonzini 已提交
51
    SCSICommand       cmd;
52
    BlockDriverAIOCB  *aiocb;
53 54
    QEMUSGList        *sg;
    bool              dma_started;
55 56
    uint8_t sense[SCSI_SENSE_BUF_SIZE];
    uint32_t sense_len;
57
    bool enqueued;
58
    bool io_canceled;
59
    bool retry;
60
    void *hba_private;
61
    QTAILQ_ENTRY(SCSIRequest) next;
62
};
63

64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
#define TYPE_SCSI_DEVICE "scsi-device"
#define SCSI_DEVICE(obj) \
     OBJECT_CHECK(SCSIDevice, (obj), TYPE_SCSI_DEVICE)
#define SCSI_DEVICE_CLASS(klass) \
     OBJECT_CLASS_CHECK(SCSIDeviceClass, (klass), TYPE_SCSI_DEVICE)
#define SCSI_DEVICE_GET_CLASS(obj) \
     OBJECT_GET_CLASS(SCSIDeviceClass, (obj), TYPE_SCSI_DEVICE)

typedef struct SCSIDeviceClass {
    DeviceClass parent_class;
    int (*init)(SCSIDevice *dev);
    void (*destroy)(SCSIDevice *s);
    SCSIRequest *(*alloc_req)(SCSIDevice *s, uint32_t tag, uint32_t lun,
                              uint8_t *buf, void *hba_private);
    void (*unit_attention_reported)(SCSIDevice *s);
} SCSIDeviceClass;

G
Gerd Hoffmann 已提交
81 82 83
struct SCSIDevice
{
    DeviceState qdev;
84 85
    VMChangeStateEntry *vmsentry;
    QEMUBH *bh;
G
Gerd Hoffmann 已提交
86
    uint32_t id;
87
    BlockConf conf;
88
    SCSISense unit_attention;
89
    bool sense_is_ua;
90 91
    uint8_t sense[SCSI_SENSE_BUF_SIZE];
    uint32_t sense_len;
92
    QTAILQ_HEAD(, SCSIRequest) requests;
P
Paolo Bonzini 已提交
93
    uint32_t channel;
94
    uint32_t lun;
95
    int blocksize;
96
    int type;
P
Paolo Bonzini 已提交
97
    uint64_t max_lba;
G
Gerd Hoffmann 已提交
98 99
};

100 101 102 103 104 105 106 107 108 109
extern const VMStateDescription vmstate_scsi_device;

#define VMSTATE_SCSI_DEVICE(_field, _state) {                        \
    .name       = (stringify(_field)),                               \
    .size       = sizeof(SCSIDevice),                                \
    .vmsd       = &vmstate_scsi_device,                              \
    .flags      = VMS_STRUCT,                                        \
    .offset     = vmstate_offset_value(_state, _field, SCSIDevice),  \
}

G
Gerd Hoffmann 已提交
110 111 112 113 114
/* cdrom.c */
int cdrom_read_toc(int nb_sectors, uint8_t *buf, int msf, int start_track);
int cdrom_read_toc_raw(int nb_sectors, uint8_t *buf, int msf, int session_num);

/* scsi-bus.c */
P
Paolo Bonzini 已提交
115 116
struct SCSIReqOps {
    size_t size;
117 118 119 120 121 122
    void (*free_req)(SCSIRequest *req);
    int32_t (*send_command)(SCSIRequest *req, uint8_t *buf);
    void (*read_data)(SCSIRequest *req);
    void (*write_data)(SCSIRequest *req);
    void (*cancel_io)(SCSIRequest *req);
    uint8_t *(*get_buf)(SCSIRequest *req);
123 124 125

    void (*save_request)(QEMUFile *f, SCSIRequest *req);
    void (*load_request)(QEMUFile *f, SCSIRequest *req);
P
Paolo Bonzini 已提交
126 127
};

128
struct SCSIBusInfo {
P
Paolo Bonzini 已提交
129
    int tcq;
P
Paolo Bonzini 已提交
130
    int max_channel, max_target, max_lun;
131
    void (*transfer_data)(SCSIRequest *req, uint32_t arg);
132
    void (*complete)(SCSIRequest *req, uint32_t arg, size_t resid);
P
Paolo Bonzini 已提交
133
    void (*cancel)(SCSIRequest *req);
134
    QEMUSGList *(*get_sg_list)(SCSIRequest *req);
135 136 137

    void (*save_request)(QEMUFile *f, SCSIRequest *req);
    void *(*load_request)(QEMUFile *f, SCSIRequest *req);
P
Paolo Bonzini 已提交
138
    void (*free_request)(SCSIBus *bus, void *priv);
P
Paolo Bonzini 已提交
139 140
};

141 142 143
#define TYPE_SCSI_BUS "SCSI"
#define SCSI_BUS(obj) OBJECT_CHECK(SCSIBus, (obj), TYPE_SCSI_BUS)

G
Gerd Hoffmann 已提交
144 145 146 147
struct SCSIBus {
    BusState qbus;
    int busnr;

148
    SCSISense unit_attention;
149
    const SCSIBusInfo *info;
G
Gerd Hoffmann 已提交
150 151
};

152
void scsi_bus_new(SCSIBus *bus, DeviceState *host, const SCSIBusInfo *info);
G
Gerd Hoffmann 已提交
153 154 155 156 157 158

static inline SCSIBus *scsi_bus_from_device(SCSIDevice *d)
{
    return DO_UPCAST(SCSIBus, qbus, d->qdev.parent_bus);
}

159
SCSIDevice *scsi_bus_legacy_add_drive(SCSIBus *bus, BlockDriverState *bdrv,
160
                                      int unit, bool removable, int bootindex);
161
int scsi_bus_legacy_handle_cmdline(SCSIBus *bus);
G
Gerd Hoffmann 已提交
162

163 164 165 166 167 168 169 170 171 172
/*
 * Predefined sense codes
 */

/* No sense data available */
extern const struct SCSISense sense_code_NO_SENSE;
/* LUN not ready, Manual intervention required */
extern const struct SCSISense sense_code_LUN_NOT_READY;
/* LUN not ready, Medium not present */
extern const struct SCSISense sense_code_NO_MEDIUM;
173 174
/* LUN not ready, medium removal prevented */
extern const struct SCSISense sense_code_NOT_READY_REMOVAL_PREVENTED;
175 176 177 178 179 180 181 182
/* Hardware error, internal target failure */
extern const struct SCSISense sense_code_TARGET_FAILURE;
/* Illegal request, invalid command operation code */
extern const struct SCSISense sense_code_INVALID_OPCODE;
/* Illegal request, LBA out of range */
extern const struct SCSISense sense_code_LBA_OUT_OF_RANGE;
/* Illegal request, Invalid field in CDB */
extern const struct SCSISense sense_code_INVALID_FIELD;
183 184 185 186
/* Illegal request, Invalid field in parameter list */
extern const struct SCSISense sense_code_INVALID_PARAM;
/* Illegal request, Parameter list length error */
extern const struct SCSISense sense_code_INVALID_PARAM_LEN;
187 188
/* Illegal request, LUN not supported */
extern const struct SCSISense sense_code_LUN_NOT_SUPPORTED;
189 190 191 192
/* Illegal request, Saving parameters not supported */
extern const struct SCSISense sense_code_SAVING_PARAMS_NOT_SUPPORTED;
/* Illegal request, Incompatible format */
extern const struct SCSISense sense_code_INCOMPATIBLE_FORMAT;
193 194
/* Illegal request, medium removal prevented */
extern const struct SCSISense sense_code_ILLEGAL_REQ_REMOVAL_PREVENTED;
195 196 197 198 199 200
/* Command aborted, I/O process terminated */
extern const struct SCSISense sense_code_IO_ERROR;
/* Command aborted, I_T Nexus loss occurred */
extern const struct SCSISense sense_code_I_T_NEXUS_LOSS;
/* Command aborted, Logical Unit failure */
extern const struct SCSISense sense_code_LUN_FAILURE;
201 202
/* LUN not ready, Medium not present */
extern const struct SCSISense sense_code_UNIT_ATTENTION_NO_MEDIUM;
203 204 205 206 207 208 209 210
/* Unit attention, Power on, reset or bus device reset occurred */
extern const struct SCSISense sense_code_RESET;
/* Unit attention, Medium may have changed*/
extern const struct SCSISense sense_code_MEDIUM_CHANGED;
/* Unit attention, Reported LUNs data has changed */
extern const struct SCSISense sense_code_REPORTED_LUNS_CHANGED;
/* Unit attention, Device internal reset */
extern const struct SCSISense sense_code_DEVICE_INTERNAL_RESET;
211 212
/* Data Protection, Write Protected */
extern const struct SCSISense sense_code_WRITE_PROTECTED;
213 214 215 216

#define SENSE_CODE(x) sense_code_ ## x

int scsi_sense_valid(SCSISense sense);
217 218
int scsi_build_sense(uint8_t *in_buf, int in_len,
                     uint8_t *buf, int len, bool fixed);
219

P
Paolo Bonzini 已提交
220 221
SCSIRequest *scsi_req_alloc(const SCSIReqOps *reqops, SCSIDevice *d,
                            uint32_t tag, uint32_t lun, void *hba_private);
222
SCSIRequest *scsi_req_new(SCSIDevice *d, uint32_t tag, uint32_t lun,
223 224
                          uint8_t *buf, void *hba_private);
int32_t scsi_req_enqueue(SCSIRequest *req);
225
void scsi_req_free(SCSIRequest *req);
P
Paolo Bonzini 已提交
226 227
SCSIRequest *scsi_req_ref(SCSIRequest *req);
void scsi_req_unref(SCSIRequest *req);
228

229
void scsi_req_build_sense(SCSIRequest *req, SCSISense sense);
G
Gerd Hoffmann 已提交
230
void scsi_req_print(SCSIRequest *req);
231
void scsi_req_continue(SCSIRequest *req);
P
Paolo Bonzini 已提交
232
void scsi_req_data(SCSIRequest *req, int len);
233
void scsi_req_complete(SCSIRequest *req, int status);
P
Paolo Bonzini 已提交
234
uint8_t *scsi_req_get_buf(SCSIRequest *req);
235
int scsi_req_get_sense(SCSIRequest *req, uint8_t *buf, int len);
P
Paolo Bonzini 已提交
236
void scsi_req_abort(SCSIRequest *req, int status);
P
Paolo Bonzini 已提交
237
void scsi_req_cancel(SCSIRequest *req);
238
void scsi_req_retry(SCSIRequest *req);
239
void scsi_device_purge_requests(SCSIDevice *sdev, SCSISense sense);
240
int scsi_device_get_sense(SCSIDevice *dev, uint8_t *buf, int len, bool fixed);
P
Paolo Bonzini 已提交
241
SCSIDevice *scsi_device_find(SCSIBus *bus, int channel, int target, int lun);
242

P
Paolo Bonzini 已提交
243 244 245
/* scsi-generic.c. */
extern const SCSIReqOps scsi_generic_req_ops;

G
Gerd Hoffmann 已提交
246
#endif