scsi.h 6.6 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"
G
Gerd Hoffmann 已提交
6

7 8
#define MAX_SCSI_DEVS	255

9 10
#define SCSI_CMD_BUF_SIZE     16

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

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

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

31 32
#define SCSI_SENSE_BUF_SIZE 96

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

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

G
Gerd Hoffmann 已提交
58 59 60 61
struct SCSIDevice
{
    DeviceState qdev;
    uint32_t id;
62
    BlockConf conf;
G
Gerd Hoffmann 已提交
63
    SCSIDeviceInfo *info;
64
    SCSISense unit_attention;
65
    bool sense_is_ua;
66 67
    uint8_t sense[SCSI_SENSE_BUF_SIZE];
    uint32_t sense_len;
68
    QTAILQ_HEAD(, SCSIRequest) requests;
P
Paolo Bonzini 已提交
69
    uint32_t channel;
70
    uint32_t lun;
71
    int blocksize;
72
    int type;
P
Paolo Bonzini 已提交
73
    uint64_t max_lba;
G
Gerd Hoffmann 已提交
74 75 76 77 78 79 80
};

/* 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 已提交
81 82
struct SCSIReqOps {
    size_t size;
83 84 85 86 87 88
    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);
P
Paolo Bonzini 已提交
89 90
};

G
Gerd Hoffmann 已提交
91 92 93 94 95
typedef int (*scsi_qdev_initfn)(SCSIDevice *dev);
struct SCSIDeviceInfo {
    DeviceInfo qdev;
    scsi_qdev_initfn init;
    void (*destroy)(SCSIDevice *s);
96 97
    SCSIRequest *(*alloc_req)(SCSIDevice *s, uint32_t tag, uint32_t lun,
                              void *hba_private);
98
    void (*unit_attention_reported)(SCSIDevice *s);
G
Gerd Hoffmann 已提交
99 100
};

101
struct SCSIBusInfo {
P
Paolo Bonzini 已提交
102
    int tcq;
P
Paolo Bonzini 已提交
103
    int max_channel, max_target, max_lun;
104 105
    void (*transfer_data)(SCSIRequest *req, uint32_t arg);
    void (*complete)(SCSIRequest *req, uint32_t arg);
P
Paolo Bonzini 已提交
106
    void (*cancel)(SCSIRequest *req);
P
Paolo Bonzini 已提交
107 108
};

G
Gerd Hoffmann 已提交
109 110 111 112
struct SCSIBus {
    BusState qbus;
    int busnr;

113
    SCSISense unit_attention;
114
    const SCSIBusInfo *info;
G
Gerd Hoffmann 已提交
115 116
};

117
void scsi_bus_new(SCSIBus *bus, DeviceState *host, const SCSIBusInfo *info);
G
Gerd Hoffmann 已提交
118 119 120 121 122 123 124
void scsi_qdev_register(SCSIDeviceInfo *info);

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

125 126
SCSIDevice *scsi_bus_legacy_add_drive(SCSIBus *bus, BlockDriverState *bdrv,
                                      int unit, bool removable);
127
int scsi_bus_legacy_handle_cmdline(SCSIBus *bus);
G
Gerd Hoffmann 已提交
128

129 130 131 132 133 134 135 136 137 138
/*
 * 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;
139 140
/* LUN not ready, medium removal prevented */
extern const struct SCSISense sense_code_NOT_READY_REMOVAL_PREVENTED;
141 142 143 144 145 146 147 148 149 150
/* 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;
/* Illegal request, LUN not supported */
extern const struct SCSISense sense_code_LUN_NOT_SUPPORTED;
151 152 153 154
/* 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;
155 156
/* Illegal request, medium removal prevented */
extern const struct SCSISense sense_code_ILLEGAL_REQ_REMOVAL_PREVENTED;
157 158 159 160 161 162
/* 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;
163 164
/* LUN not ready, Medium not present */
extern const struct SCSISense sense_code_UNIT_ATTENTION_NO_MEDIUM;
165 166 167 168 169 170 171 172
/* 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;
173 174 175 176 177

#define SENSE_CODE(x) sense_code_ ## x

int scsi_sense_valid(SCSISense sense);

P
Paolo Bonzini 已提交
178 179
SCSIRequest *scsi_req_alloc(const SCSIReqOps *reqops, SCSIDevice *d,
                            uint32_t tag, uint32_t lun, void *hba_private);
180
SCSIRequest *scsi_req_new(SCSIDevice *d, uint32_t tag, uint32_t lun,
181 182
                          uint8_t *buf, void *hba_private);
int32_t scsi_req_enqueue(SCSIRequest *req);
183
void scsi_req_free(SCSIRequest *req);
P
Paolo Bonzini 已提交
184 185
SCSIRequest *scsi_req_ref(SCSIRequest *req);
void scsi_req_unref(SCSIRequest *req);
186

187
void scsi_req_build_sense(SCSIRequest *req, SCSISense sense);
G
Gerd Hoffmann 已提交
188
void scsi_req_print(SCSIRequest *req);
189
void scsi_req_continue(SCSIRequest *req);
P
Paolo Bonzini 已提交
190
void scsi_req_data(SCSIRequest *req, int len);
191
void scsi_req_complete(SCSIRequest *req, int status);
P
Paolo Bonzini 已提交
192
uint8_t *scsi_req_get_buf(SCSIRequest *req);
193
int scsi_req_get_sense(SCSIRequest *req, uint8_t *buf, int len);
P
Paolo Bonzini 已提交
194
void scsi_req_abort(SCSIRequest *req, int status);
P
Paolo Bonzini 已提交
195
void scsi_req_cancel(SCSIRequest *req);
196
void scsi_device_purge_requests(SCSIDevice *sdev, SCSISense sense);
197
int scsi_device_get_sense(SCSIDevice *dev, uint8_t *buf, int len, bool fixed);
P
Paolo Bonzini 已提交
198
SCSIDevice *scsi_device_find(SCSIBus *bus, int channel, int target, int lun);
199

P
Paolo Bonzini 已提交
200 201 202
/* scsi-generic.c. */
extern const SCSIReqOps scsi_generic_req_ops;

G
Gerd Hoffmann 已提交
203
#endif