8 #define MAX_SCSI_DEVS 255
10 #define SCSI_CMD_BUF_SIZE 16
14 SCSI_REASON_DONE
, /* Command complete. */
15 SCSI_REASON_DATA
/* Transfer complete, more data required. */
18 typedef struct SCSIBus SCSIBus
;
19 typedef struct SCSIDevice SCSIDevice
;
20 typedef struct SCSIDeviceInfo SCSIDeviceInfo
;
21 typedef void (*scsi_completionfn
)(SCSIBus
*bus
, int reason
, uint32_t tag
,
25 SCSI_XFER_NONE
, /* TEST_UNIT_READY, ... */
26 SCSI_XFER_FROM_DEV
, /* READ, INQUIRY, MODE_SENSE, ... */
27 SCSI_XFER_TO_DEV
, /* WRITE, MODE_SELECT, ... */
30 typedef struct SCSIRequest
{
37 uint8_t buf
[SCSI_CMD_BUF_SIZE
];
41 enum SCSIXferMode mode
;
43 BlockDriverAIOCB
*aiocb
;
45 QTAILQ_ENTRY(SCSIRequest
) next
;
54 QTAILQ_HEAD(, SCSIRequest
) requests
;
60 int cdrom_read_toc(int nb_sectors
, uint8_t *buf
, int msf
, int start_track
);
61 int cdrom_read_toc_raw(int nb_sectors
, uint8_t *buf
, int msf
, int session_num
);
64 typedef int (*scsi_qdev_initfn
)(SCSIDevice
*dev
);
65 struct SCSIDeviceInfo
{
67 scsi_qdev_initfn init
;
68 void (*destroy
)(SCSIDevice
*s
);
69 int32_t (*send_command
)(SCSIDevice
*s
, uint32_t tag
, uint8_t *buf
,
71 void (*read_data
)(SCSIDevice
*s
, uint32_t tag
);
72 int (*write_data
)(SCSIDevice
*s
, uint32_t tag
);
73 void (*cancel_io
)(SCSIDevice
*s
, uint32_t tag
);
74 uint8_t *(*get_buf
)(SCSIDevice
*s
, uint32_t tag
);
77 typedef void (*SCSIAttachFn
)(DeviceState
*host
, BlockDriverState
*bdrv
,
84 scsi_completionfn complete
;
86 SCSIDevice
*devs
[MAX_SCSI_DEVS
];
89 void scsi_bus_new(SCSIBus
*bus
, DeviceState
*host
, int tcq
, int ndev
,
90 scsi_completionfn complete
);
91 void scsi_qdev_register(SCSIDeviceInfo
*info
);
93 static inline SCSIBus
*scsi_bus_from_device(SCSIDevice
*d
)
95 return DO_UPCAST(SCSIBus
, qbus
, d
->qdev
.parent_bus
);
98 SCSIDevice
*scsi_bus_legacy_add_drive(SCSIBus
*bus
, BlockDriverState
*bdrv
,
99 int unit
, bool removable
);
100 int scsi_bus_legacy_handle_cmdline(SCSIBus
*bus
);
102 SCSIRequest
*scsi_req_alloc(size_t size
, SCSIDevice
*d
, uint32_t tag
, uint32_t lun
);
103 SCSIRequest
*scsi_req_find(SCSIDevice
*d
, uint32_t tag
);
104 void scsi_req_free(SCSIRequest
*req
);
106 int scsi_req_parse(SCSIRequest
*req
, uint8_t *buf
);
107 void scsi_req_print(SCSIRequest
*req
);
108 void scsi_req_complete(SCSIRequest
*req
);