mirror of https://github.com/xemu-project/xemu.git
scsi: allow arbitrary LUNs
This only requires changes in two places: in SCSIBus, we need to look for a free LUN if somebody creates a device with a pre-existing scsi-id but the default LUN (-1, meaning "search for a free spot"); in vSCSI, we need to actually parse the LUN according to the SCSI spec. For vSCSI, max_target/max_lun are set according to the logical unit addressing format in SAM. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
ba74307c5a
commit
7e0380b9bb
3
hw/esp.c
3
hw/esp.c
|
@ -724,7 +724,8 @@ void esp_init(target_phys_addr_t espaddr, int it_shift,
|
||||||
|
|
||||||
static const struct SCSIBusInfo esp_scsi_info = {
|
static const struct SCSIBusInfo esp_scsi_info = {
|
||||||
.tcq = false,
|
.tcq = false,
|
||||||
.ndev = ESP_MAX_DEVS,
|
.max_target = ESP_MAX_DEVS,
|
||||||
|
.max_lun = 7,
|
||||||
|
|
||||||
.transfer_data = esp_transfer_data,
|
.transfer_data = esp_transfer_data,
|
||||||
.complete = esp_command_complete,
|
.complete = esp_command_complete,
|
||||||
|
|
|
@ -2085,7 +2085,8 @@ static int lsi_scsi_uninit(PCIDevice *d)
|
||||||
|
|
||||||
static const struct SCSIBusInfo lsi_scsi_info = {
|
static const struct SCSIBusInfo lsi_scsi_info = {
|
||||||
.tcq = true,
|
.tcq = true,
|
||||||
.ndev = LSI_MAX_DEVS,
|
.max_target = LSI_MAX_DEVS,
|
||||||
|
.max_lun = 0, /* LUN support is buggy */
|
||||||
|
|
||||||
.transfer_data = lsi_transfer_data,
|
.transfer_data = lsi_transfer_data,
|
||||||
.complete = lsi_command_complete,
|
.complete = lsi_command_complete,
|
||||||
|
|
|
@ -17,7 +17,7 @@ static struct BusInfo scsi_bus_info = {
|
||||||
.get_fw_dev_path = scsibus_get_fw_dev_path,
|
.get_fw_dev_path = scsibus_get_fw_dev_path,
|
||||||
.props = (Property[]) {
|
.props = (Property[]) {
|
||||||
DEFINE_PROP_UINT32("scsi-id", SCSIDevice, id, -1),
|
DEFINE_PROP_UINT32("scsi-id", SCSIDevice, id, -1),
|
||||||
DEFINE_PROP_UINT32("lun", SCSIDevice, lun, 0),
|
DEFINE_PROP_UINT32("lun", SCSIDevice, lun, -1),
|
||||||
DEFINE_PROP_END_OF_LIST(),
|
DEFINE_PROP_END_OF_LIST(),
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -37,26 +37,42 @@ static int scsi_qdev_init(DeviceState *qdev, DeviceInfo *base)
|
||||||
SCSIDevice *dev = DO_UPCAST(SCSIDevice, qdev, qdev);
|
SCSIDevice *dev = DO_UPCAST(SCSIDevice, qdev, qdev);
|
||||||
SCSIDeviceInfo *info = DO_UPCAST(SCSIDeviceInfo, qdev, base);
|
SCSIDeviceInfo *info = DO_UPCAST(SCSIDeviceInfo, qdev, base);
|
||||||
SCSIBus *bus = DO_UPCAST(SCSIBus, qbus, dev->qdev.parent_bus);
|
SCSIBus *bus = DO_UPCAST(SCSIBus, qbus, dev->qdev.parent_bus);
|
||||||
SCSIDevice *olddev;
|
SCSIDevice *d;
|
||||||
int rc = -1;
|
int rc = -1;
|
||||||
|
|
||||||
if (dev->id == -1) {
|
if (dev->id != -1 && dev->id > bus->info->max_target) {
|
||||||
int id;
|
|
||||||
for (id = 0; id < bus->info->ndev; id++) {
|
|
||||||
if (!scsi_device_find(bus, id, 0)) {
|
|
||||||
dev->id = id;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (dev->id >= bus->info->ndev) {
|
|
||||||
error_report("bad scsi device id: %d", dev->id);
|
error_report("bad scsi device id: %d", dev->id);
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
|
|
||||||
olddev = scsi_device_find(bus, dev->id, dev->lun);
|
if (dev->id == -1) {
|
||||||
if (olddev && dev->lun == olddev->lun) {
|
int id = -1;
|
||||||
qdev_free(&olddev->qdev);
|
if (dev->lun == -1) {
|
||||||
|
dev->lun = 0;
|
||||||
|
}
|
||||||
|
do {
|
||||||
|
d = scsi_device_find(bus, ++id, dev->lun);
|
||||||
|
} while (d && d->lun == dev->lun && id <= bus->info->max_target);
|
||||||
|
if (id > bus->info->max_target) {
|
||||||
|
error_report("no free target");
|
||||||
|
goto err;
|
||||||
|
}
|
||||||
|
dev->id = id;
|
||||||
|
} else if (dev->lun == -1) {
|
||||||
|
int lun = -1;
|
||||||
|
do {
|
||||||
|
d = scsi_device_find(bus, dev->id, ++lun);
|
||||||
|
} while (d && d->lun == lun && lun < bus->info->max_lun);
|
||||||
|
if (lun > bus->info->max_lun) {
|
||||||
|
error_report("no free lun");
|
||||||
|
goto err;
|
||||||
|
}
|
||||||
|
dev->lun = lun;
|
||||||
|
} else {
|
||||||
|
d = scsi_device_find(bus, dev->id, dev->lun);
|
||||||
|
if (dev->lun == d->lun && dev != d) {
|
||||||
|
qdev_free(&d->qdev);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dev->info = info;
|
dev->info = info;
|
||||||
|
@ -115,7 +131,7 @@ int scsi_bus_legacy_handle_cmdline(SCSIBus *bus)
|
||||||
int res = 0, unit;
|
int res = 0, unit;
|
||||||
|
|
||||||
loc_push_none(&loc);
|
loc_push_none(&loc);
|
||||||
for (unit = 0; unit < bus->info->ndev; unit++) {
|
for (unit = 0; unit < bus->info->max_target; unit++) {
|
||||||
dinfo = drive_get(IF_SCSI, bus->busnr, unit);
|
dinfo = drive_get(IF_SCSI, bus->busnr, unit);
|
||||||
if (dinfo == NULL) {
|
if (dinfo == NULL) {
|
||||||
continue;
|
continue;
|
||||||
|
|
|
@ -98,7 +98,8 @@ struct SCSIDeviceInfo {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct SCSIBusInfo {
|
struct SCSIBusInfo {
|
||||||
int tcq, ndev;
|
int tcq;
|
||||||
|
int max_target, max_lun;
|
||||||
void (*transfer_data)(SCSIRequest *req, uint32_t arg);
|
void (*transfer_data)(SCSIRequest *req, uint32_t arg);
|
||||||
void (*complete)(SCSIRequest *req, uint32_t arg);
|
void (*complete)(SCSIRequest *req, uint32_t arg);
|
||||||
void (*cancel)(SCSIRequest *req);
|
void (*cancel)(SCSIRequest *req);
|
||||||
|
|
|
@ -131,9 +131,39 @@ static void vscsi_put_req(vscsi_req *req)
|
||||||
|
|
||||||
static SCSIDevice *vscsi_device_find(SCSIBus *bus, uint64_t srp_lun, int *lun)
|
static SCSIDevice *vscsi_device_find(SCSIBus *bus, uint64_t srp_lun, int *lun)
|
||||||
{
|
{
|
||||||
/* XXX Figure that one out properly ! This is crackpot */
|
int channel = 0, id = 0;
|
||||||
int id = (srp_lun >> 56) & 0x7f;
|
|
||||||
*lun = (srp_lun >> 48) & 0xff;
|
retry:
|
||||||
|
switch (srp_lun >> 62) {
|
||||||
|
case 0:
|
||||||
|
if ((srp_lun >> 56) != 0) {
|
||||||
|
channel = (srp_lun >> 56) & 0x3f;
|
||||||
|
id = (srp_lun >> 48) & 0xff;
|
||||||
|
srp_lun <<= 16;
|
||||||
|
goto retry;
|
||||||
|
}
|
||||||
|
*lun = (srp_lun >> 48) & 0xff;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 1:
|
||||||
|
*lun = (srp_lun >> 48) & 0x3fff;
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
channel = (srp_lun >> 53) & 0x7;
|
||||||
|
id = (srp_lun >> 56) & 0x3f;
|
||||||
|
*lun = (srp_lun >> 48) & 0x1f;
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
*lun = -1;
|
||||||
|
return NULL;
|
||||||
|
default:
|
||||||
|
abort();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (channel) {
|
||||||
|
*lun = -1;
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
return scsi_device_find(bus, id, *lun);
|
return scsi_device_find(bus, id, *lun);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -862,7 +892,8 @@ static int vscsi_do_crq(struct VIOsPAPRDevice *dev, uint8_t *crq_data)
|
||||||
|
|
||||||
static const struct SCSIBusInfo vscsi_scsi_info = {
|
static const struct SCSIBusInfo vscsi_scsi_info = {
|
||||||
.tcq = true,
|
.tcq = true,
|
||||||
.ndev = VSCSI_REQ_LIMIT,
|
.max_target = 63, /* logical unit addressing format */
|
||||||
|
.max_lun = 31,
|
||||||
|
|
||||||
.transfer_data = vscsi_transfer_data,
|
.transfer_data = vscsi_transfer_data,
|
||||||
.complete = vscsi_command_complete,
|
.complete = vscsi_command_complete,
|
||||||
|
|
|
@ -497,7 +497,8 @@ static void usb_msd_password_cb(void *opaque, int err)
|
||||||
|
|
||||||
static const struct SCSIBusInfo usb_msd_scsi_info = {
|
static const struct SCSIBusInfo usb_msd_scsi_info = {
|
||||||
.tcq = false,
|
.tcq = false,
|
||||||
.ndev = 1,
|
.max_target = 0,
|
||||||
|
.max_lun = 0,
|
||||||
|
|
||||||
.transfer_data = usb_msd_transfer_data,
|
.transfer_data = usb_msd_transfer_data,
|
||||||
.complete = usb_msd_command_complete,
|
.complete = usb_msd_command_complete,
|
||||||
|
|
Loading…
Reference in New Issue