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

8 9
#define MAX_SCSI_DEVS	255

10 11
#define SCSI_CMD_BUF_SIZE     16

G
Gerd Hoffmann 已提交
12 13 14 15 16 17 18
/* scsi-disk.c */
enum scsi_reason {
    SCSI_REASON_DONE, /* Command complete.  */
    SCSI_REASON_DATA  /* Transfer complete, more data required.  */
};

typedef struct SCSIBus SCSIBus;
P
Paolo Bonzini 已提交
19
typedef struct SCSIBusOps SCSIBusOps;
G
Gerd Hoffmann 已提交
20 21 22
typedef struct SCSIDevice SCSIDevice;
typedef struct SCSIDeviceInfo SCSIDeviceInfo;

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

29 30 31 32
typedef struct SCSIRequest {
    SCSIBus           *bus;
    SCSIDevice        *dev;
    uint32_t          tag;
33
    uint32_t          lun;
G
Gerd Hoffmann 已提交
34
    uint32_t          status;
35 36 37
    struct {
        uint8_t buf[SCSI_CMD_BUF_SIZE];
        int len;
38 39
        size_t xfer;
        uint64_t lba;
G
Gerd Hoffmann 已提交
40
        enum SCSIXferMode mode;
41
    } cmd;
42
    BlockDriverAIOCB  *aiocb;
43
    bool enqueued;
44
    QTAILQ_ENTRY(SCSIRequest) next;
45 46
} SCSIRequest;

G
Gerd Hoffmann 已提交
47 48 49 50
struct SCSIDevice
{
    DeviceState qdev;
    uint32_t id;
51
    BlockConf conf;
G
Gerd Hoffmann 已提交
52
    SCSIDeviceInfo *info;
53
    QTAILQ_HEAD(, SCSIRequest) requests;
54
    int blocksize;
55
    int type;
G
Gerd Hoffmann 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
};

/* 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 */
typedef int (*scsi_qdev_initfn)(SCSIDevice *dev);
struct SCSIDeviceInfo {
    DeviceInfo qdev;
    scsi_qdev_initfn init;
    void (*destroy)(SCSIDevice *s);
    int32_t (*send_command)(SCSIDevice *s, uint32_t tag, uint8_t *buf,
                            int lun);
    void (*read_data)(SCSIDevice *s, uint32_t tag);
    int (*write_data)(SCSIDevice *s, uint32_t tag);
    void (*cancel_io)(SCSIDevice *s, uint32_t tag);
    uint8_t *(*get_buf)(SCSIDevice *s, uint32_t tag);
};

P
Paolo Bonzini 已提交
76 77 78 79
struct SCSIBusOps {
    void (*complete)(SCSIBus *bus, int reason, uint32_t tag, uint32_t arg);
};

G
Gerd Hoffmann 已提交
80 81 82 83 84
struct SCSIBus {
    BusState qbus;
    int busnr;

    int tcq, ndev;
P
Paolo Bonzini 已提交
85
    const SCSIBusOps *ops;
G
Gerd Hoffmann 已提交
86

87
    SCSIDevice *devs[MAX_SCSI_DEVS];
G
Gerd Hoffmann 已提交
88 89 90
};

void scsi_bus_new(SCSIBus *bus, DeviceState *host, int tcq, int ndev,
P
Paolo Bonzini 已提交
91
                  const SCSIBusOps *ops);
G
Gerd Hoffmann 已提交
92 93 94 95 96 97 98
void scsi_qdev_register(SCSIDeviceInfo *info);

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

99 100
SCSIDevice *scsi_bus_legacy_add_drive(SCSIBus *bus, BlockDriverState *bdrv,
                                      int unit, bool removable);
101
int scsi_bus_legacy_handle_cmdline(SCSIBus *bus);
G
Gerd Hoffmann 已提交
102

103 104 105
SCSIRequest *scsi_req_alloc(size_t size, SCSIDevice *d, uint32_t tag, uint32_t lun);
SCSIRequest *scsi_req_find(SCSIDevice *d, uint32_t tag);
void scsi_req_free(SCSIRequest *req);
106

107
int scsi_req_parse(SCSIRequest *req, uint8_t *buf);
G
Gerd Hoffmann 已提交
108
void scsi_req_print(SCSIRequest *req);
P
Paolo Bonzini 已提交
109
void scsi_req_data(SCSIRequest *req, int len);
G
Gerd Hoffmann 已提交
110
void scsi_req_complete(SCSIRequest *req);
111

G
Gerd Hoffmann 已提交
112
#endif