X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=blobdiff_plain;f=palacios%2Fsrc%2Fdevices%2Fatapi.h;h=ad03ee97750b5fc2fe3331245844454a526edac8;hp=ec613d7f5627fea0db304e6af368b4e8f8bfcd8d;hb=123a1ba27ea09c8fa77a1b36ce625b43d7c48b14;hpb=e89fcf9ca3b902f647593a816b750551ac3840ca diff --git a/palacios/src/devices/atapi.h b/palacios/src/devices/atapi.h index ec613d7..ad03ee9 100644 --- a/palacios/src/devices/atapi.h +++ b/palacios/src/devices/atapi.h @@ -128,7 +128,8 @@ static void atapi_cmd_nop(struct vm_device * dev, struct ide_channel * channel) static int atapi_read_chunk(struct vm_device * dev, struct ide_channel * channel) { struct ide_drive * drive = get_selected_drive(channel); - int ret = drive->cd_ops->read(drive->data_buf, 1, drive->current_lba, drive->private_data); + int ret = drive->ops->read(drive->data_buf, drive->current_lba * ATAPI_BLOCK_SIZE, ATAPI_BLOCK_SIZE, +drive->private_data); if (ret == -1) { PrintError("IDE: Error reading CD block (LBA=%p)\n", (void *)(addr_t)(drive->current_lba)); @@ -177,10 +178,10 @@ static int atapi_read10(struct vm_device * dev, struct ide_channel * channel) { return 0; } - if (lba + xfer_len > drive->cd_ops->get_capacity(drive->private_data)) { + if (lba + xfer_len > drive->ops->get_capacity(drive->private_data)) { PrintError("IDE: xfer len exceeded capacity (lba=%d) (xfer_len=%d) (ReadEnd=%d) (capacity=%d)\n", lba, xfer_len, lba + xfer_len, - drive->cd_ops->get_capacity(drive->private_data)); + (uint32_t)drive->ops->get_capacity(drive->private_data)); atapi_cmd_error(dev, channel, ATAPI_SEN_ILL_REQ, ASC_LOG_BLK_OOR); ide_raise_irq(dev, channel); return 0; @@ -238,7 +239,7 @@ static void atapi_req_sense(struct vm_device * dev, struct ide_channel * channel static int atapi_get_capacity(struct vm_device * dev, struct ide_channel * channel) { struct ide_drive * drive = get_selected_drive(channel); struct atapi_rd_capacity_resp * resp = (struct atapi_rd_capacity_resp *)(drive->data_buf); - uint32_t capacity = drive->cd_ops->get_capacity(drive->private_data); + uint32_t capacity = drive->ops->get_capacity(drive->private_data); resp->lba = le_to_be_32(capacity); resp->block_len = le_to_be_32(ATAPI_BLOCK_SIZE); @@ -404,6 +405,51 @@ static int atapi_mode_sense(struct vm_device * dev, struct ide_channel * channel } +static int atapi_inquiry(struct vm_device * dev, struct ide_channel * channel) { + struct ide_drive * drive = get_selected_drive(channel); + struct atapi_inquiry_cmd * inquiry_cmd = (struct atapi_inquiry_cmd *)(drive->data_buf); + uint16_t alloc_len = be_to_le_16(inquiry_cmd->alloc_len); + struct atapi_inquiry_resp * resp = (struct atapi_inquiry_resp *)(drive->data_buf); + int xfer_len = sizeof(struct atapi_inquiry_resp); + const char * vendor_id = "VTAB "; + const char * product_id = "Turbo CD-ROM "; + const char * product_rev = "1.0 "; + + memset(resp, 0, sizeof(struct atapi_inquiry_resp)); + + resp->dev_type = DEV_TYPE_CDROM; + resp->removable_media = 1; + resp->resp_data_fmt = 0x1; + resp->atapi_trans_ver = 0x2; + resp->additional_len = 31; + + memcpy(resp->t10_vendor_id, vendor_id, strlen(vendor_id)); + memcpy(resp->product_id, product_id, strlen(product_id)); + memcpy(resp->product_rev, product_rev, strlen(product_rev)); + + if (alloc_len < xfer_len) { + xfer_len = alloc_len; + } + + atapi_setup_cmd_resp(dev, channel, xfer_len); + + return 0; +} + + +static int atapi_cmd_is_data_op(uint8_t cmd) { + switch (cmd) { + case 0x28: // read (10) + case 0xa8: // read (12) + case 0x2a: // write (10) + case 0xaa: // write (12) + return 1; + default: + return 0; + } +} + + static int atapi_handle_packet(struct vm_device * dev, struct ide_channel * channel) { struct ide_drive * drive = get_selected_drive(channel); uint8_t cmd = drive->data_buf[0]; @@ -424,6 +470,10 @@ static int atapi_handle_packet(struct vm_device * dev, struct ide_channel * chan atapi_req_sense(dev, channel); break; + case 0x1e: // lock door + atapi_cmd_nop(dev, channel); + break; + case 0x28: // read(10) if (atapi_read10(dev, channel) == -1) { PrintError("IDE: Error in ATAPI read (%x)\n", cmd); @@ -468,21 +518,25 @@ static int atapi_handle_packet(struct vm_device * dev, struct ide_channel * chan ide_raise_irq(dev, channel); break; - + case 0x12: // inquiry + if (atapi_inquiry(dev, channel) == -1) { + PrintError("IDE: Error in ATAPI inquiry (%x)\n", cmd); + return -1; + } + break; case 0xa8: // read(12) case 0x1b: // start/stop drive case 0xbd: // mechanism status - case 0x12: // inquiry case 0xbe: // read cd case 0x2b: // seek - case 0x1e: // lock door + case 0x42: // read sub-channel