133231e0eSKevin Wolf /* 233231e0eSKevin Wolf * QEMU ATAPI Emulation 333231e0eSKevin Wolf * 433231e0eSKevin Wolf * Copyright (c) 2003 Fabrice Bellard 533231e0eSKevin Wolf * Copyright (c) 2006 Openedhand Ltd. 633231e0eSKevin Wolf * 733231e0eSKevin Wolf * Permission is hereby granted, free of charge, to any person obtaining a copy 833231e0eSKevin Wolf * of this software and associated documentation files (the "Software"), to deal 933231e0eSKevin Wolf * in the Software without restriction, including without limitation the rights 1033231e0eSKevin Wolf * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 1133231e0eSKevin Wolf * copies of the Software, and to permit persons to whom the Software is 1233231e0eSKevin Wolf * furnished to do so, subject to the following conditions: 1333231e0eSKevin Wolf * 1433231e0eSKevin Wolf * The above copyright notice and this permission notice shall be included in 1533231e0eSKevin Wolf * all copies or substantial portions of the Software. 1633231e0eSKevin Wolf * 1733231e0eSKevin Wolf * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 1833231e0eSKevin Wolf * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 1933231e0eSKevin Wolf * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 2033231e0eSKevin Wolf * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 2133231e0eSKevin Wolf * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 2233231e0eSKevin Wolf * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 2333231e0eSKevin Wolf * THE SOFTWARE. 2433231e0eSKevin Wolf */ 2533231e0eSKevin Wolf 26*53239262SPeter Maydell #include "qemu/osdep.h" 2733231e0eSKevin Wolf #include "hw/ide/internal.h" 280d09e41aSPaolo Bonzini #include "hw/scsi/scsi.h" 294be74634SMarkus Armbruster #include "sysemu/block-backend.h" 3033231e0eSKevin Wolf 3133231e0eSKevin Wolf static void ide_atapi_cmd_read_dma_cb(void *opaque, int ret); 3233231e0eSKevin Wolf 3333231e0eSKevin Wolf static void padstr8(uint8_t *buf, int buf_size, const char *src) 3433231e0eSKevin Wolf { 3533231e0eSKevin Wolf int i; 3633231e0eSKevin Wolf for(i = 0; i < buf_size; i++) { 3733231e0eSKevin Wolf if (*src) 3833231e0eSKevin Wolf buf[i] = *src++; 3933231e0eSKevin Wolf else 4033231e0eSKevin Wolf buf[i] = ' '; 4133231e0eSKevin Wolf } 4233231e0eSKevin Wolf } 4333231e0eSKevin Wolf 4433231e0eSKevin Wolf static inline void cpu_to_ube16(uint8_t *buf, int val) 4533231e0eSKevin Wolf { 4633231e0eSKevin Wolf buf[0] = val >> 8; 4733231e0eSKevin Wolf buf[1] = val & 0xff; 4833231e0eSKevin Wolf } 4933231e0eSKevin Wolf 5033231e0eSKevin Wolf static inline void cpu_to_ube32(uint8_t *buf, unsigned int val) 5133231e0eSKevin Wolf { 5233231e0eSKevin Wolf buf[0] = val >> 24; 5333231e0eSKevin Wolf buf[1] = val >> 16; 5433231e0eSKevin Wolf buf[2] = val >> 8; 5533231e0eSKevin Wolf buf[3] = val & 0xff; 5633231e0eSKevin Wolf } 5733231e0eSKevin Wolf 5833231e0eSKevin Wolf static inline int ube16_to_cpu(const uint8_t *buf) 5933231e0eSKevin Wolf { 6033231e0eSKevin Wolf return (buf[0] << 8) | buf[1]; 6133231e0eSKevin Wolf } 6233231e0eSKevin Wolf 6333231e0eSKevin Wolf static inline int ube32_to_cpu(const uint8_t *buf) 6433231e0eSKevin Wolf { 6533231e0eSKevin Wolf return (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3]; 6633231e0eSKevin Wolf } 6733231e0eSKevin Wolf 6833231e0eSKevin Wolf static void lba_to_msf(uint8_t *buf, int lba) 6933231e0eSKevin Wolf { 7033231e0eSKevin Wolf lba += 150; 7133231e0eSKevin Wolf buf[0] = (lba / 75) / 60; 7233231e0eSKevin Wolf buf[1] = (lba / 75) % 60; 7333231e0eSKevin Wolf buf[2] = lba % 75; 7433231e0eSKevin Wolf } 7533231e0eSKevin Wolf 7633231e0eSKevin Wolf static inline int media_present(IDEState *s) 7733231e0eSKevin Wolf { 78a1aff5bfSMarkus Armbruster return !s->tray_open && s->nb_sectors > 0; 7933231e0eSKevin Wolf } 8033231e0eSKevin Wolf 81a7acf552SAmit Shah /* XXX: DVDs that could fit on a CD will be reported as a CD */ 8233231e0eSKevin Wolf static inline int media_is_dvd(IDEState *s) 8333231e0eSKevin Wolf { 8433231e0eSKevin Wolf return (media_present(s) && s->nb_sectors > CD_MAX_SECTORS); 8533231e0eSKevin Wolf } 8633231e0eSKevin Wolf 8733231e0eSKevin Wolf static inline int media_is_cd(IDEState *s) 8833231e0eSKevin Wolf { 8933231e0eSKevin Wolf return (media_present(s) && s->nb_sectors <= CD_MAX_SECTORS); 9033231e0eSKevin Wolf } 9133231e0eSKevin Wolf 9233231e0eSKevin Wolf static void cd_data_to_raw(uint8_t *buf, int lba) 9333231e0eSKevin Wolf { 9433231e0eSKevin Wolf /* sync bytes */ 9533231e0eSKevin Wolf buf[0] = 0x00; 9633231e0eSKevin Wolf memset(buf + 1, 0xff, 10); 9733231e0eSKevin Wolf buf[11] = 0x00; 9833231e0eSKevin Wolf buf += 12; 9933231e0eSKevin Wolf /* MSF */ 10033231e0eSKevin Wolf lba_to_msf(buf, lba); 10133231e0eSKevin Wolf buf[3] = 0x01; /* mode 1 data */ 10233231e0eSKevin Wolf buf += 4; 10333231e0eSKevin Wolf /* data */ 10433231e0eSKevin Wolf buf += 2048; 10533231e0eSKevin Wolf /* XXX: ECC not computed */ 10633231e0eSKevin Wolf memset(buf, 0, 288); 10733231e0eSKevin Wolf } 10833231e0eSKevin Wolf 1095f81724dSPeter Lieven static int 1105f81724dSPeter Lieven cd_read_sector_sync(IDEState *s) 11133231e0eSKevin Wolf { 11233231e0eSKevin Wolf int ret; 113ece2d05eSAlberto Garcia block_acct_start(blk_get_stats(s->blk), &s->acct, 114ece2d05eSAlberto Garcia 4 * BDRV_SECTOR_SIZE, BLOCK_ACCT_READ); 11533231e0eSKevin Wolf 1165f81724dSPeter Lieven #ifdef DEBUG_IDE_ATAPI 1175f81724dSPeter Lieven printf("cd_read_sector_sync: lba=%d\n", s->lba); 1185f81724dSPeter Lieven #endif 1195f81724dSPeter Lieven 1205f81724dSPeter Lieven switch (s->cd_sector_size) { 12133231e0eSKevin Wolf case 2048: 1225f81724dSPeter Lieven ret = blk_read(s->blk, (int64_t)s->lba << 2, 1235f81724dSPeter Lieven s->io_buffer, 4); 12433231e0eSKevin Wolf break; 12533231e0eSKevin Wolf case 2352: 1265f81724dSPeter Lieven ret = blk_read(s->blk, (int64_t)s->lba << 2, 1275f81724dSPeter Lieven s->io_buffer + 16, 4); 128ece2d05eSAlberto Garcia if (ret >= 0) { 1295f81724dSPeter Lieven cd_data_to_raw(s->io_buffer, s->lba); 130ece2d05eSAlberto Garcia } 13133231e0eSKevin Wolf break; 13233231e0eSKevin Wolf default: 133ece2d05eSAlberto Garcia block_acct_invalid(blk_get_stats(s->blk), BLOCK_ACCT_READ); 134ece2d05eSAlberto Garcia return -EIO; 13533231e0eSKevin Wolf } 136ece2d05eSAlberto Garcia 137ece2d05eSAlberto Garcia if (ret < 0) { 138ece2d05eSAlberto Garcia block_acct_failed(blk_get_stats(s->blk), &s->acct); 139ece2d05eSAlberto Garcia } else { 140ece2d05eSAlberto Garcia block_acct_done(blk_get_stats(s->blk), &s->acct); 1415f81724dSPeter Lieven s->lba++; 1425f81724dSPeter Lieven s->io_buffer_index = 0; 143ece2d05eSAlberto Garcia } 144ece2d05eSAlberto Garcia 14533231e0eSKevin Wolf return ret; 14633231e0eSKevin Wolf } 14733231e0eSKevin Wolf 1485f81724dSPeter Lieven static void cd_read_sector_cb(void *opaque, int ret) 1495f81724dSPeter Lieven { 1505f81724dSPeter Lieven IDEState *s = opaque; 1515f81724dSPeter Lieven 1525f81724dSPeter Lieven #ifdef DEBUG_IDE_ATAPI 1535f81724dSPeter Lieven printf("cd_read_sector_cb: lba=%d ret=%d\n", s->lba, ret); 1545f81724dSPeter Lieven #endif 1555f81724dSPeter Lieven 1565f81724dSPeter Lieven if (ret < 0) { 15736be0929SAlberto Garcia block_acct_failed(blk_get_stats(s->blk), &s->acct); 1585f81724dSPeter Lieven ide_atapi_io_error(s, ret); 1595f81724dSPeter Lieven return; 1605f81724dSPeter Lieven } 1615f81724dSPeter Lieven 16236be0929SAlberto Garcia block_acct_done(blk_get_stats(s->blk), &s->acct); 16336be0929SAlberto Garcia 1645f81724dSPeter Lieven if (s->cd_sector_size == 2352) { 1655f81724dSPeter Lieven cd_data_to_raw(s->io_buffer, s->lba); 1665f81724dSPeter Lieven } 1675f81724dSPeter Lieven 1685f81724dSPeter Lieven s->lba++; 1695f81724dSPeter Lieven s->io_buffer_index = 0; 1705f81724dSPeter Lieven s->status &= ~BUSY_STAT; 1715f81724dSPeter Lieven 1725f81724dSPeter Lieven ide_atapi_cmd_reply_end(s); 1735f81724dSPeter Lieven } 1745f81724dSPeter Lieven 1755f81724dSPeter Lieven static int cd_read_sector(IDEState *s) 1765f81724dSPeter Lieven { 1775f81724dSPeter Lieven if (s->cd_sector_size != 2048 && s->cd_sector_size != 2352) { 17836be0929SAlberto Garcia block_acct_invalid(blk_get_stats(s->blk), BLOCK_ACCT_READ); 1795f81724dSPeter Lieven return -EINVAL; 1805f81724dSPeter Lieven } 1815f81724dSPeter Lieven 1825f81724dSPeter Lieven s->iov.iov_base = (s->cd_sector_size == 2352) ? 1835f81724dSPeter Lieven s->io_buffer + 16 : s->io_buffer; 1845f81724dSPeter Lieven 1855f81724dSPeter Lieven s->iov.iov_len = 4 * BDRV_SECTOR_SIZE; 1865f81724dSPeter Lieven qemu_iovec_init_external(&s->qiov, &s->iov, 1); 1875f81724dSPeter Lieven 1885f81724dSPeter Lieven #ifdef DEBUG_IDE_ATAPI 1895f81724dSPeter Lieven printf("cd_read_sector: lba=%d\n", s->lba); 1905f81724dSPeter Lieven #endif 1915f81724dSPeter Lieven 1925f81724dSPeter Lieven block_acct_start(blk_get_stats(s->blk), &s->acct, 1935f81724dSPeter Lieven 4 * BDRV_SECTOR_SIZE, BLOCK_ACCT_READ); 1945f81724dSPeter Lieven 19502506b20SPeter Lieven ide_buffered_readv(s, (int64_t)s->lba << 2, &s->qiov, 4, 1965f81724dSPeter Lieven cd_read_sector_cb, s); 1975f81724dSPeter Lieven 1985f81724dSPeter Lieven s->status |= BUSY_STAT; 1995f81724dSPeter Lieven return 0; 2005f81724dSPeter Lieven } 2015f81724dSPeter Lieven 20233231e0eSKevin Wolf void ide_atapi_cmd_ok(IDEState *s) 20333231e0eSKevin Wolf { 20433231e0eSKevin Wolf s->error = 0; 20533231e0eSKevin Wolf s->status = READY_STAT | SEEK_STAT; 20633231e0eSKevin Wolf s->nsector = (s->nsector & ~7) | ATAPI_INT_REASON_IO | ATAPI_INT_REASON_CD; 207d735b620SJohn Snow ide_transfer_stop(s); 20833231e0eSKevin Wolf ide_set_irq(s->bus); 20933231e0eSKevin Wolf } 21033231e0eSKevin Wolf 21133231e0eSKevin Wolf void ide_atapi_cmd_error(IDEState *s, int sense_key, int asc) 21233231e0eSKevin Wolf { 21333231e0eSKevin Wolf #ifdef DEBUG_IDE_ATAPI 21433231e0eSKevin Wolf printf("atapi_cmd_error: sense=0x%x asc=0x%x\n", sense_key, asc); 21533231e0eSKevin Wolf #endif 21633231e0eSKevin Wolf s->error = sense_key << 4; 21733231e0eSKevin Wolf s->status = READY_STAT | ERR_STAT; 21833231e0eSKevin Wolf s->nsector = (s->nsector & ~7) | ATAPI_INT_REASON_IO | ATAPI_INT_REASON_CD; 21933231e0eSKevin Wolf s->sense_key = sense_key; 22033231e0eSKevin Wolf s->asc = asc; 221d735b620SJohn Snow ide_transfer_stop(s); 22233231e0eSKevin Wolf ide_set_irq(s->bus); 22333231e0eSKevin Wolf } 22433231e0eSKevin Wolf 22533231e0eSKevin Wolf void ide_atapi_io_error(IDEState *s, int ret) 22633231e0eSKevin Wolf { 22733231e0eSKevin Wolf /* XXX: handle more errors */ 22833231e0eSKevin Wolf if (ret == -ENOMEDIUM) { 22967cc61e4SPaolo Bonzini ide_atapi_cmd_error(s, NOT_READY, 23033231e0eSKevin Wolf ASC_MEDIUM_NOT_PRESENT); 23133231e0eSKevin Wolf } else { 23267cc61e4SPaolo Bonzini ide_atapi_cmd_error(s, ILLEGAL_REQUEST, 23333231e0eSKevin Wolf ASC_LOGICAL_BLOCK_OOR); 23433231e0eSKevin Wolf } 23533231e0eSKevin Wolf } 23633231e0eSKevin Wolf 237af0e00dbSJohn Snow static uint16_t atapi_byte_count_limit(IDEState *s) 238af0e00dbSJohn Snow { 239af0e00dbSJohn Snow uint16_t bcl; 240af0e00dbSJohn Snow 241af0e00dbSJohn Snow bcl = s->lcyl | (s->hcyl << 8); 242af0e00dbSJohn Snow if (bcl == 0xffff) { 243af0e00dbSJohn Snow return 0xfffe; 244af0e00dbSJohn Snow } 245af0e00dbSJohn Snow return bcl; 246af0e00dbSJohn Snow } 247af0e00dbSJohn Snow 24833231e0eSKevin Wolf /* The whole ATAPI transfer logic is handled in this function */ 24933231e0eSKevin Wolf void ide_atapi_cmd_reply_end(IDEState *s) 25033231e0eSKevin Wolf { 25133231e0eSKevin Wolf int byte_count_limit, size, ret; 25233231e0eSKevin Wolf #ifdef DEBUG_IDE_ATAPI 25333231e0eSKevin Wolf printf("reply: tx_size=%d elem_tx_size=%d index=%d\n", 25433231e0eSKevin Wolf s->packet_transfer_size, 25533231e0eSKevin Wolf s->elementary_transfer_size, 25633231e0eSKevin Wolf s->io_buffer_index); 25733231e0eSKevin Wolf #endif 25833231e0eSKevin Wolf if (s->packet_transfer_size <= 0) { 25933231e0eSKevin Wolf /* end of transfer */ 260d735b620SJohn Snow ide_atapi_cmd_ok(s); 26133231e0eSKevin Wolf ide_set_irq(s->bus); 26233231e0eSKevin Wolf #ifdef DEBUG_IDE_ATAPI 2635f81724dSPeter Lieven printf("end of transfer, status=0x%x\n", s->status); 26433231e0eSKevin Wolf #endif 26533231e0eSKevin Wolf } else { 26633231e0eSKevin Wolf /* see if a new sector must be read */ 26733231e0eSKevin Wolf if (s->lba != -1 && s->io_buffer_index >= s->cd_sector_size) { 2685f81724dSPeter Lieven if (!s->elementary_transfer_size) { 2695f81724dSPeter Lieven ret = cd_read_sector(s); 2705f81724dSPeter Lieven if (ret < 0) { 2715f81724dSPeter Lieven ide_atapi_io_error(s, ret); 2725f81724dSPeter Lieven } 2735f81724dSPeter Lieven return; 2745f81724dSPeter Lieven } else { 2755f81724dSPeter Lieven /* rebuffering within an elementary transfer is 2765f81724dSPeter Lieven * only possible with a sync request because we 2775f81724dSPeter Lieven * end up with a race condition otherwise */ 2785f81724dSPeter Lieven ret = cd_read_sector_sync(s); 27933231e0eSKevin Wolf if (ret < 0) { 28033231e0eSKevin Wolf ide_atapi_io_error(s, ret); 28133231e0eSKevin Wolf return; 28233231e0eSKevin Wolf } 2835f81724dSPeter Lieven } 28433231e0eSKevin Wolf } 28533231e0eSKevin Wolf if (s->elementary_transfer_size > 0) { 28633231e0eSKevin Wolf /* there are some data left to transmit in this elementary 28733231e0eSKevin Wolf transfer */ 28833231e0eSKevin Wolf size = s->cd_sector_size - s->io_buffer_index; 28933231e0eSKevin Wolf if (size > s->elementary_transfer_size) 29033231e0eSKevin Wolf size = s->elementary_transfer_size; 29133231e0eSKevin Wolf s->packet_transfer_size -= size; 29233231e0eSKevin Wolf s->elementary_transfer_size -= size; 29333231e0eSKevin Wolf s->io_buffer_index += size; 29433231e0eSKevin Wolf ide_transfer_start(s, s->io_buffer + s->io_buffer_index - size, 29533231e0eSKevin Wolf size, ide_atapi_cmd_reply_end); 29633231e0eSKevin Wolf } else { 29733231e0eSKevin Wolf /* a new transfer is needed */ 29833231e0eSKevin Wolf s->nsector = (s->nsector & ~7) | ATAPI_INT_REASON_IO; 299af0e00dbSJohn Snow byte_count_limit = atapi_byte_count_limit(s); 30033231e0eSKevin Wolf #ifdef DEBUG_IDE_ATAPI 30133231e0eSKevin Wolf printf("byte_count_limit=%d\n", byte_count_limit); 30233231e0eSKevin Wolf #endif 30333231e0eSKevin Wolf size = s->packet_transfer_size; 30433231e0eSKevin Wolf if (size > byte_count_limit) { 30533231e0eSKevin Wolf /* byte count limit must be even if this case */ 30633231e0eSKevin Wolf if (byte_count_limit & 1) 30733231e0eSKevin Wolf byte_count_limit--; 30833231e0eSKevin Wolf size = byte_count_limit; 30933231e0eSKevin Wolf } 31033231e0eSKevin Wolf s->lcyl = size; 31133231e0eSKevin Wolf s->hcyl = size >> 8; 31233231e0eSKevin Wolf s->elementary_transfer_size = size; 31333231e0eSKevin Wolf /* we cannot transmit more than one sector at a time */ 31433231e0eSKevin Wolf if (s->lba != -1) { 31533231e0eSKevin Wolf if (size > (s->cd_sector_size - s->io_buffer_index)) 31633231e0eSKevin Wolf size = (s->cd_sector_size - s->io_buffer_index); 31733231e0eSKevin Wolf } 31833231e0eSKevin Wolf s->packet_transfer_size -= size; 31933231e0eSKevin Wolf s->elementary_transfer_size -= size; 32033231e0eSKevin Wolf s->io_buffer_index += size; 32133231e0eSKevin Wolf ide_transfer_start(s, s->io_buffer + s->io_buffer_index - size, 32233231e0eSKevin Wolf size, ide_atapi_cmd_reply_end); 32333231e0eSKevin Wolf ide_set_irq(s->bus); 32433231e0eSKevin Wolf #ifdef DEBUG_IDE_ATAPI 32533231e0eSKevin Wolf printf("status=0x%x\n", s->status); 32633231e0eSKevin Wolf #endif 32733231e0eSKevin Wolf } 32833231e0eSKevin Wolf } 32933231e0eSKevin Wolf } 33033231e0eSKevin Wolf 33133231e0eSKevin Wolf /* send a reply of 'size' bytes in s->io_buffer to an ATAPI command */ 33233231e0eSKevin Wolf static void ide_atapi_cmd_reply(IDEState *s, int size, int max_size) 33333231e0eSKevin Wolf { 33433231e0eSKevin Wolf if (size > max_size) 33533231e0eSKevin Wolf size = max_size; 33633231e0eSKevin Wolf s->lba = -1; /* no sector read */ 33733231e0eSKevin Wolf s->packet_transfer_size = size; 33833231e0eSKevin Wolf s->io_buffer_size = size; /* dma: send the reply data as one chunk */ 33933231e0eSKevin Wolf s->elementary_transfer_size = 0; 34033231e0eSKevin Wolf 34133231e0eSKevin Wolf if (s->atapi_dma) { 3424be74634SMarkus Armbruster block_acct_start(blk_get_stats(s->blk), &s->acct, size, 3435366d0c8SBenoît Canet BLOCK_ACCT_READ); 34433231e0eSKevin Wolf s->status = READY_STAT | SEEK_STAT | DRQ_STAT; 3454855b576SPaolo Bonzini ide_start_dma(s, ide_atapi_cmd_read_dma_cb); 34633231e0eSKevin Wolf } else { 34733231e0eSKevin Wolf s->status = READY_STAT | SEEK_STAT; 348c71c06d4SPaolo Bonzini s->io_buffer_index = 0; 34933231e0eSKevin Wolf ide_atapi_cmd_reply_end(s); 35033231e0eSKevin Wolf } 35133231e0eSKevin Wolf } 35233231e0eSKevin Wolf 35333231e0eSKevin Wolf /* start a CD-CDROM read command */ 35433231e0eSKevin Wolf static void ide_atapi_cmd_read_pio(IDEState *s, int lba, int nb_sectors, 35533231e0eSKevin Wolf int sector_size) 35633231e0eSKevin Wolf { 35733231e0eSKevin Wolf s->lba = lba; 35833231e0eSKevin Wolf s->packet_transfer_size = nb_sectors * sector_size; 35933231e0eSKevin Wolf s->elementary_transfer_size = 0; 36033231e0eSKevin Wolf s->io_buffer_index = sector_size; 36133231e0eSKevin Wolf s->cd_sector_size = sector_size; 36233231e0eSKevin Wolf 36333231e0eSKevin Wolf ide_atapi_cmd_reply_end(s); 36433231e0eSKevin Wolf } 36533231e0eSKevin Wolf 36633231e0eSKevin Wolf static void ide_atapi_cmd_check_status(IDEState *s) 36733231e0eSKevin Wolf { 36833231e0eSKevin Wolf #ifdef DEBUG_IDE_ATAPI 36933231e0eSKevin Wolf printf("atapi_cmd_check_status\n"); 37033231e0eSKevin Wolf #endif 37167cc61e4SPaolo Bonzini s->error = MC_ERR | (UNIT_ATTENTION << 4); 37233231e0eSKevin Wolf s->status = ERR_STAT; 37333231e0eSKevin Wolf s->nsector = 0; 37433231e0eSKevin Wolf ide_set_irq(s->bus); 37533231e0eSKevin Wolf } 37633231e0eSKevin Wolf /* ATAPI DMA support */ 37733231e0eSKevin Wolf 37833231e0eSKevin Wolf /* XXX: handle read errors */ 37933231e0eSKevin Wolf static void ide_atapi_cmd_read_dma_cb(void *opaque, int ret) 38033231e0eSKevin Wolf { 38133231e0eSKevin Wolf IDEState *s = opaque; 38233231e0eSKevin Wolf int data_offset, n; 38333231e0eSKevin Wolf 38433231e0eSKevin Wolf if (ret < 0) { 38533231e0eSKevin Wolf ide_atapi_io_error(s, ret); 38633231e0eSKevin Wolf goto eot; 38733231e0eSKevin Wolf } 38833231e0eSKevin Wolf 38933231e0eSKevin Wolf if (s->io_buffer_size > 0) { 39033231e0eSKevin Wolf /* 39133231e0eSKevin Wolf * For a cdrom read sector command (s->lba != -1), 39233231e0eSKevin Wolf * adjust the lba for the next s->io_buffer_size chunk 39333231e0eSKevin Wolf * and dma the current chunk. 39433231e0eSKevin Wolf * For a command != read (s->lba == -1), just transfer 39533231e0eSKevin Wolf * the reply data. 39633231e0eSKevin Wolf */ 39733231e0eSKevin Wolf if (s->lba != -1) { 39833231e0eSKevin Wolf if (s->cd_sector_size == 2352) { 39933231e0eSKevin Wolf n = 1; 40033231e0eSKevin Wolf cd_data_to_raw(s->io_buffer, s->lba); 40133231e0eSKevin Wolf } else { 40233231e0eSKevin Wolf n = s->io_buffer_size >> 11; 40333231e0eSKevin Wolf } 40433231e0eSKevin Wolf s->lba += n; 40533231e0eSKevin Wolf } 40633231e0eSKevin Wolf s->packet_transfer_size -= s->io_buffer_size; 40733231e0eSKevin Wolf if (s->bus->dma->ops->rw_buf(s->bus->dma, 1) == 0) 40833231e0eSKevin Wolf goto eot; 40933231e0eSKevin Wolf } 41033231e0eSKevin Wolf 41133231e0eSKevin Wolf if (s->packet_transfer_size <= 0) { 41233231e0eSKevin Wolf s->status = READY_STAT | SEEK_STAT; 41333231e0eSKevin Wolf s->nsector = (s->nsector & ~7) | ATAPI_INT_REASON_IO | ATAPI_INT_REASON_CD; 41433231e0eSKevin Wolf ide_set_irq(s->bus); 415a597e79cSChristoph Hellwig goto eot; 41633231e0eSKevin Wolf } 41733231e0eSKevin Wolf 41833231e0eSKevin Wolf s->io_buffer_index = 0; 41933231e0eSKevin Wolf if (s->cd_sector_size == 2352) { 42033231e0eSKevin Wolf n = 1; 42133231e0eSKevin Wolf s->io_buffer_size = s->cd_sector_size; 42233231e0eSKevin Wolf data_offset = 16; 42333231e0eSKevin Wolf } else { 42433231e0eSKevin Wolf n = s->packet_transfer_size >> 11; 42533231e0eSKevin Wolf if (n > (IDE_DMA_BUF_SECTORS / 4)) 42633231e0eSKevin Wolf n = (IDE_DMA_BUF_SECTORS / 4); 42733231e0eSKevin Wolf s->io_buffer_size = n * 2048; 42833231e0eSKevin Wolf data_offset = 0; 42933231e0eSKevin Wolf } 43033231e0eSKevin Wolf #ifdef DEBUG_AIO 43133231e0eSKevin Wolf printf("aio_read_cd: lba=%u n=%d\n", s->lba, n); 43233231e0eSKevin Wolf #endif 433a597e79cSChristoph Hellwig 43433231e0eSKevin Wolf s->bus->dma->iov.iov_base = (void *)(s->io_buffer + data_offset); 43533231e0eSKevin Wolf s->bus->dma->iov.iov_len = n * 4 * 512; 43633231e0eSKevin Wolf qemu_iovec_init_external(&s->bus->dma->qiov, &s->bus->dma->iov, 1); 437a597e79cSChristoph Hellwig 43802506b20SPeter Lieven s->bus->dma->aiocb = ide_buffered_readv(s, (int64_t)s->lba << 2, 43933231e0eSKevin Wolf &s->bus->dma->qiov, n * 4, 44033231e0eSKevin Wolf ide_atapi_cmd_read_dma_cb, s); 441a597e79cSChristoph Hellwig return; 442ad54ae80SPaolo Bonzini 443a597e79cSChristoph Hellwig eot: 444ece2d05eSAlberto Garcia if (ret < 0) { 445ece2d05eSAlberto Garcia block_acct_failed(blk_get_stats(s->blk), &s->acct); 446ece2d05eSAlberto Garcia } else { 4474be74634SMarkus Armbruster block_acct_done(blk_get_stats(s->blk), &s->acct); 448ece2d05eSAlberto Garcia } 4490e7ce54cSPaolo Bonzini ide_set_inactive(s, false); 45033231e0eSKevin Wolf } 45133231e0eSKevin Wolf 45233231e0eSKevin Wolf /* start a CD-CDROM read command with DMA */ 45333231e0eSKevin Wolf /* XXX: test if DMA is available */ 45433231e0eSKevin Wolf static void ide_atapi_cmd_read_dma(IDEState *s, int lba, int nb_sectors, 45533231e0eSKevin Wolf int sector_size) 45633231e0eSKevin Wolf { 45733231e0eSKevin Wolf s->lba = lba; 45833231e0eSKevin Wolf s->packet_transfer_size = nb_sectors * sector_size; 45933231e0eSKevin Wolf s->io_buffer_size = 0; 46033231e0eSKevin Wolf s->cd_sector_size = sector_size; 46133231e0eSKevin Wolf 4624be74634SMarkus Armbruster block_acct_start(blk_get_stats(s->blk), &s->acct, s->packet_transfer_size, 4635366d0c8SBenoît Canet BLOCK_ACCT_READ); 464a597e79cSChristoph Hellwig 46533231e0eSKevin Wolf /* XXX: check if BUSY_STAT should be set */ 46633231e0eSKevin Wolf s->status = READY_STAT | SEEK_STAT | DRQ_STAT | BUSY_STAT; 4674855b576SPaolo Bonzini ide_start_dma(s, ide_atapi_cmd_read_dma_cb); 46833231e0eSKevin Wolf } 46933231e0eSKevin Wolf 47033231e0eSKevin Wolf static void ide_atapi_cmd_read(IDEState *s, int lba, int nb_sectors, 47133231e0eSKevin Wolf int sector_size) 47233231e0eSKevin Wolf { 47333231e0eSKevin Wolf #ifdef DEBUG_IDE_ATAPI 47433231e0eSKevin Wolf printf("read %s: LBA=%d nb_sectors=%d\n", s->atapi_dma ? "dma" : "pio", 47533231e0eSKevin Wolf lba, nb_sectors); 47633231e0eSKevin Wolf #endif 47733231e0eSKevin Wolf if (s->atapi_dma) { 47833231e0eSKevin Wolf ide_atapi_cmd_read_dma(s, lba, nb_sectors, sector_size); 47933231e0eSKevin Wolf } else { 48033231e0eSKevin Wolf ide_atapi_cmd_read_pio(s, lba, nb_sectors, sector_size); 48133231e0eSKevin Wolf } 48233231e0eSKevin Wolf } 48333231e0eSKevin Wolf 484a71754e5SDr. David Alan Gilbert 485a71754e5SDr. David Alan Gilbert /* Called by *_restart_bh when the transfer function points 486a71754e5SDr. David Alan Gilbert * to ide_atapi_cmd 487a71754e5SDr. David Alan Gilbert */ 488a71754e5SDr. David Alan Gilbert void ide_atapi_dma_restart(IDEState *s) 489a71754e5SDr. David Alan Gilbert { 490a71754e5SDr. David Alan Gilbert /* 491a71754e5SDr. David Alan Gilbert * I'm not sure we have enough stored to restart the command 492a71754e5SDr. David Alan Gilbert * safely, so give the guest an error it should recover from. 493a71754e5SDr. David Alan Gilbert * I'm assuming most guests will try to recover from something 494a71754e5SDr. David Alan Gilbert * listed as a medium error on a CD; it seems to work on Linux. 495a71754e5SDr. David Alan Gilbert * This would be more of a problem if we did any other type of 496a71754e5SDr. David Alan Gilbert * DMA operation. 497a71754e5SDr. David Alan Gilbert */ 498a71754e5SDr. David Alan Gilbert ide_atapi_cmd_error(s, MEDIUM_ERROR, ASC_NO_SEEK_COMPLETE); 499a71754e5SDr. David Alan Gilbert } 500a71754e5SDr. David Alan Gilbert 50133231e0eSKevin Wolf static inline uint8_t ide_atapi_set_profile(uint8_t *buf, uint8_t *index, 50233231e0eSKevin Wolf uint16_t profile) 50333231e0eSKevin Wolf { 50433231e0eSKevin Wolf uint8_t *buf_profile = buf + 12; /* start of profiles */ 50533231e0eSKevin Wolf 50633231e0eSKevin Wolf buf_profile += ((*index) * 4); /* start of indexed profile */ 50733231e0eSKevin Wolf cpu_to_ube16 (buf_profile, profile); 50833231e0eSKevin Wolf buf_profile[2] = ((buf_profile[0] == buf[6]) && (buf_profile[1] == buf[7])); 50933231e0eSKevin Wolf 51033231e0eSKevin Wolf /* each profile adds 4 bytes to the response */ 51133231e0eSKevin Wolf (*index)++; 51233231e0eSKevin Wolf buf[11] += 4; /* Additional Length */ 51333231e0eSKevin Wolf 51433231e0eSKevin Wolf return 4; 51533231e0eSKevin Wolf } 51633231e0eSKevin Wolf 51733231e0eSKevin Wolf static int ide_dvd_read_structure(IDEState *s, int format, 51833231e0eSKevin Wolf const uint8_t *packet, uint8_t *buf) 51933231e0eSKevin Wolf { 52033231e0eSKevin Wolf switch (format) { 52133231e0eSKevin Wolf case 0x0: /* Physical format information */ 52233231e0eSKevin Wolf { 52333231e0eSKevin Wolf int layer = packet[6]; 52433231e0eSKevin Wolf uint64_t total_sectors; 52533231e0eSKevin Wolf 52633231e0eSKevin Wolf if (layer != 0) 52733231e0eSKevin Wolf return -ASC_INV_FIELD_IN_CMD_PACKET; 52833231e0eSKevin Wolf 529e119bcacSKevin Wolf total_sectors = s->nb_sectors >> 2; 530e119bcacSKevin Wolf if (total_sectors == 0) { 53133231e0eSKevin Wolf return -ASC_MEDIUM_NOT_PRESENT; 532e119bcacSKevin Wolf } 53333231e0eSKevin Wolf 53433231e0eSKevin Wolf buf[4] = 1; /* DVD-ROM, part version 1 */ 53533231e0eSKevin Wolf buf[5] = 0xf; /* 120mm disc, minimum rate unspecified */ 53633231e0eSKevin Wolf buf[6] = 1; /* one layer, read-only (per MMC-2 spec) */ 53733231e0eSKevin Wolf buf[7] = 0; /* default densities */ 53833231e0eSKevin Wolf 53933231e0eSKevin Wolf /* FIXME: 0x30000 per spec? */ 54033231e0eSKevin Wolf cpu_to_ube32(buf + 8, 0); /* start sector */ 54133231e0eSKevin Wolf cpu_to_ube32(buf + 12, total_sectors - 1); /* end sector */ 54233231e0eSKevin Wolf cpu_to_ube32(buf + 16, total_sectors - 1); /* l0 end sector */ 54333231e0eSKevin Wolf 54433231e0eSKevin Wolf /* Size of buffer, not including 2 byte size field */ 545d8ee2591SPeter Maydell stw_be_p(buf, 2048 + 2); 54633231e0eSKevin Wolf 54733231e0eSKevin Wolf /* 2k data + 4 byte header */ 54833231e0eSKevin Wolf return (2048 + 4); 54933231e0eSKevin Wolf } 55033231e0eSKevin Wolf 55133231e0eSKevin Wolf case 0x01: /* DVD copyright information */ 55233231e0eSKevin Wolf buf[4] = 0; /* no copyright data */ 55333231e0eSKevin Wolf buf[5] = 0; /* no region restrictions */ 55433231e0eSKevin Wolf 55533231e0eSKevin Wolf /* Size of buffer, not including 2 byte size field */ 556d8ee2591SPeter Maydell stw_be_p(buf, 4 + 2); 55733231e0eSKevin Wolf 55833231e0eSKevin Wolf /* 4 byte header + 4 byte data */ 55933231e0eSKevin Wolf return (4 + 4); 56033231e0eSKevin Wolf 56133231e0eSKevin Wolf case 0x03: /* BCA information - invalid field for no BCA info */ 56233231e0eSKevin Wolf return -ASC_INV_FIELD_IN_CMD_PACKET; 56333231e0eSKevin Wolf 56433231e0eSKevin Wolf case 0x04: /* DVD disc manufacturing information */ 56533231e0eSKevin Wolf /* Size of buffer, not including 2 byte size field */ 566d8ee2591SPeter Maydell stw_be_p(buf, 2048 + 2); 56733231e0eSKevin Wolf 56833231e0eSKevin Wolf /* 2k data + 4 byte header */ 56933231e0eSKevin Wolf return (2048 + 4); 57033231e0eSKevin Wolf 57133231e0eSKevin Wolf case 0xff: 57233231e0eSKevin Wolf /* 57333231e0eSKevin Wolf * This lists all the command capabilities above. Add new ones 57433231e0eSKevin Wolf * in order and update the length and buffer return values. 57533231e0eSKevin Wolf */ 57633231e0eSKevin Wolf 57733231e0eSKevin Wolf buf[4] = 0x00; /* Physical format */ 57833231e0eSKevin Wolf buf[5] = 0x40; /* Not writable, is readable */ 579d8ee2591SPeter Maydell stw_be_p(buf + 6, 2048 + 4); 58033231e0eSKevin Wolf 58133231e0eSKevin Wolf buf[8] = 0x01; /* Copyright info */ 58233231e0eSKevin Wolf buf[9] = 0x40; /* Not writable, is readable */ 583d8ee2591SPeter Maydell stw_be_p(buf + 10, 4 + 4); 58433231e0eSKevin Wolf 58533231e0eSKevin Wolf buf[12] = 0x03; /* BCA info */ 58633231e0eSKevin Wolf buf[13] = 0x40; /* Not writable, is readable */ 587d8ee2591SPeter Maydell stw_be_p(buf + 14, 188 + 4); 58833231e0eSKevin Wolf 58933231e0eSKevin Wolf buf[16] = 0x04; /* Manufacturing info */ 59033231e0eSKevin Wolf buf[17] = 0x40; /* Not writable, is readable */ 591d8ee2591SPeter Maydell stw_be_p(buf + 18, 2048 + 4); 59233231e0eSKevin Wolf 59333231e0eSKevin Wolf /* Size of buffer, not including 2 byte size field */ 594d8ee2591SPeter Maydell stw_be_p(buf, 16 + 2); 59533231e0eSKevin Wolf 59633231e0eSKevin Wolf /* data written + 4 byte header */ 59733231e0eSKevin Wolf return (16 + 4); 59833231e0eSKevin Wolf 59933231e0eSKevin Wolf default: /* TODO: formats beyond DVD-ROM requires */ 60033231e0eSKevin Wolf return -ASC_INV_FIELD_IN_CMD_PACKET; 60133231e0eSKevin Wolf } 60233231e0eSKevin Wolf } 60333231e0eSKevin Wolf 60433231e0eSKevin Wolf static unsigned int event_status_media(IDEState *s, 60533231e0eSKevin Wolf uint8_t *buf) 60633231e0eSKevin Wolf { 60733231e0eSKevin Wolf uint8_t event_code, media_status; 60833231e0eSKevin Wolf 60933231e0eSKevin Wolf media_status = 0; 610dd063333SMarkus Armbruster if (s->tray_open) { 61133231e0eSKevin Wolf media_status = MS_TRAY_OPEN; 6124be74634SMarkus Armbruster } else if (blk_is_inserted(s->blk)) { 61333231e0eSKevin Wolf media_status = MS_MEDIA_PRESENT; 61433231e0eSKevin Wolf } 61533231e0eSKevin Wolf 61633231e0eSKevin Wolf /* Event notification descriptor */ 61733231e0eSKevin Wolf event_code = MEC_NO_CHANGE; 6182df0a3a3SPaolo Bonzini if (media_status != MS_TRAY_OPEN) { 6192df0a3a3SPaolo Bonzini if (s->events.new_media) { 62033231e0eSKevin Wolf event_code = MEC_NEW_MEDIA; 62133231e0eSKevin Wolf s->events.new_media = false; 6222df0a3a3SPaolo Bonzini } else if (s->events.eject_request) { 6232df0a3a3SPaolo Bonzini event_code = MEC_EJECT_REQUESTED; 6242df0a3a3SPaolo Bonzini s->events.eject_request = false; 6252df0a3a3SPaolo Bonzini } 62633231e0eSKevin Wolf } 62733231e0eSKevin Wolf 62833231e0eSKevin Wolf buf[4] = event_code; 62933231e0eSKevin Wolf buf[5] = media_status; 63033231e0eSKevin Wolf 63133231e0eSKevin Wolf /* These fields are reserved, just clear them. */ 63233231e0eSKevin Wolf buf[6] = 0; 63333231e0eSKevin Wolf buf[7] = 0; 63433231e0eSKevin Wolf 63533231e0eSKevin Wolf return 8; /* We wrote to 4 extra bytes from the header */ 63633231e0eSKevin Wolf } 63733231e0eSKevin Wolf 638e1a064f9SKevin Wolf static void cmd_get_event_status_notification(IDEState *s, 639e1a064f9SKevin Wolf uint8_t *buf) 64033231e0eSKevin Wolf { 641e1a064f9SKevin Wolf const uint8_t *packet = buf; 642e1a064f9SKevin Wolf 64333231e0eSKevin Wolf struct { 64433231e0eSKevin Wolf uint8_t opcode; 64533231e0eSKevin Wolf uint8_t polled; /* lsb bit is polled; others are reserved */ 64633231e0eSKevin Wolf uint8_t reserved2[2]; 64733231e0eSKevin Wolf uint8_t class; 64833231e0eSKevin Wolf uint8_t reserved3[2]; 64933231e0eSKevin Wolf uint16_t len; 65033231e0eSKevin Wolf uint8_t control; 651541dc0d4SStefan Weil } QEMU_PACKED *gesn_cdb; 65233231e0eSKevin Wolf 65333231e0eSKevin Wolf struct { 65433231e0eSKevin Wolf uint16_t len; 65533231e0eSKevin Wolf uint8_t notification_class; 65633231e0eSKevin Wolf uint8_t supported_events; 657541dc0d4SStefan Weil } QEMU_PACKED *gesn_event_header; 65833231e0eSKevin Wolf unsigned int max_len, used_len; 65933231e0eSKevin Wolf 66033231e0eSKevin Wolf gesn_cdb = (void *)packet; 66133231e0eSKevin Wolf gesn_event_header = (void *)buf; 66233231e0eSKevin Wolf 66333231e0eSKevin Wolf max_len = be16_to_cpu(gesn_cdb->len); 66433231e0eSKevin Wolf 66533231e0eSKevin Wolf /* It is fine by the MMC spec to not support async mode operations */ 66633231e0eSKevin Wolf if (!(gesn_cdb->polled & 0x01)) { /* asynchronous mode */ 66733231e0eSKevin Wolf /* Only polling is supported, asynchronous mode is not. */ 66867cc61e4SPaolo Bonzini ide_atapi_cmd_error(s, ILLEGAL_REQUEST, 66933231e0eSKevin Wolf ASC_INV_FIELD_IN_CMD_PACKET); 67033231e0eSKevin Wolf return; 67133231e0eSKevin Wolf } 67233231e0eSKevin Wolf 67333231e0eSKevin Wolf /* polling mode operation */ 67433231e0eSKevin Wolf 67533231e0eSKevin Wolf /* 67633231e0eSKevin Wolf * These are the supported events. 67733231e0eSKevin Wolf * 67833231e0eSKevin Wolf * We currently only support requests of the 'media' type. 679f0f992e6SPaolo Bonzini * Notification class requests and supported event classes are bitmasks, 680f0f992e6SPaolo Bonzini * but they are build from the same values as the "notification class" 681f0f992e6SPaolo Bonzini * field. 68233231e0eSKevin Wolf */ 683f0f992e6SPaolo Bonzini gesn_event_header->supported_events = 1 << GESN_MEDIA; 68433231e0eSKevin Wolf 68533231e0eSKevin Wolf /* 68633231e0eSKevin Wolf * We use |= below to set the class field; other bits in this byte 68733231e0eSKevin Wolf * are reserved now but this is useful to do if we have to use the 68833231e0eSKevin Wolf * reserved fields later. 68933231e0eSKevin Wolf */ 69033231e0eSKevin Wolf gesn_event_header->notification_class = 0; 69133231e0eSKevin Wolf 69233231e0eSKevin Wolf /* 69333231e0eSKevin Wolf * Responses to requests are to be based on request priority. The 69433231e0eSKevin Wolf * notification_class_request_type enum above specifies the 69533231e0eSKevin Wolf * priority: upper elements are higher prio than lower ones. 69633231e0eSKevin Wolf */ 697f0f992e6SPaolo Bonzini if (gesn_cdb->class & (1 << GESN_MEDIA)) { 698f0f992e6SPaolo Bonzini gesn_event_header->notification_class |= GESN_MEDIA; 69933231e0eSKevin Wolf used_len = event_status_media(s, buf); 70033231e0eSKevin Wolf } else { 70133231e0eSKevin Wolf gesn_event_header->notification_class = 0x80; /* No event available */ 70233231e0eSKevin Wolf used_len = sizeof(*gesn_event_header); 70333231e0eSKevin Wolf } 70433231e0eSKevin Wolf gesn_event_header->len = cpu_to_be16(used_len 70533231e0eSKevin Wolf - sizeof(*gesn_event_header)); 70633231e0eSKevin Wolf ide_atapi_cmd_reply(s, used_len, max_len); 70733231e0eSKevin Wolf } 70833231e0eSKevin Wolf 709a60cf7e7SKevin Wolf static void cmd_request_sense(IDEState *s, uint8_t *buf) 71033231e0eSKevin Wolf { 711a60cf7e7SKevin Wolf int max_len = buf[4]; 712a60cf7e7SKevin Wolf 713a60cf7e7SKevin Wolf memset(buf, 0, 18); 714a60cf7e7SKevin Wolf buf[0] = 0x70 | (1 << 7); 715a60cf7e7SKevin Wolf buf[2] = s->sense_key; 716a60cf7e7SKevin Wolf buf[7] = 10; 717a60cf7e7SKevin Wolf buf[12] = s->asc; 718a60cf7e7SKevin Wolf 71967cc61e4SPaolo Bonzini if (s->sense_key == UNIT_ATTENTION) { 72067cc61e4SPaolo Bonzini s->sense_key = NO_SENSE; 721a60cf7e7SKevin Wolf } 722a60cf7e7SKevin Wolf 723a60cf7e7SKevin Wolf ide_atapi_cmd_reply(s, 18, max_len); 724a60cf7e7SKevin Wolf } 725a60cf7e7SKevin Wolf 726a60cf7e7SKevin Wolf static void cmd_inquiry(IDEState *s, uint8_t *buf) 727a60cf7e7SKevin Wolf { 7289a502563SJohn Snow uint8_t page_code = buf[2]; 729a60cf7e7SKevin Wolf int max_len = buf[4]; 730a60cf7e7SKevin Wolf 7319a502563SJohn Snow unsigned idx = 0; 7329a502563SJohn Snow unsigned size_idx; 7339a502563SJohn Snow unsigned preamble_len; 7349a502563SJohn Snow 7359a502563SJohn Snow /* If the EVPD (Enable Vital Product Data) bit is set in byte 1, 7369a502563SJohn Snow * we are being asked for a specific page of info indicated by byte 2. */ 7379a502563SJohn Snow if (buf[1] & 0x01) { 7389a502563SJohn Snow preamble_len = 4; 7399a502563SJohn Snow size_idx = 3; 7409a502563SJohn Snow 7419a502563SJohn Snow buf[idx++] = 0x05; /* CD-ROM */ 7429a502563SJohn Snow buf[idx++] = page_code; /* Page Code */ 7439a502563SJohn Snow buf[idx++] = 0x00; /* reserved */ 7449a502563SJohn Snow idx++; /* length (set later) */ 7459a502563SJohn Snow 7469a502563SJohn Snow switch (page_code) { 7479a502563SJohn Snow case 0x00: 7489a502563SJohn Snow /* Supported Pages: List of supported VPD responses. */ 7499a502563SJohn Snow buf[idx++] = 0x00; /* 0x00: Supported Pages, and: */ 7509a502563SJohn Snow buf[idx++] = 0x83; /* 0x83: Device Identification. */ 7519a502563SJohn Snow break; 7529a502563SJohn Snow 7539a502563SJohn Snow case 0x83: 7549a502563SJohn Snow /* Device Identification. Each entry is optional, but the entries 7559a502563SJohn Snow * included here are modeled after libata's VPD responses. 7569a502563SJohn Snow * If the response is given, at least one entry must be present. */ 7579a502563SJohn Snow 7589a502563SJohn Snow /* Entry 1: Serial */ 7599a502563SJohn Snow if (idx + 24 > max_len) { 7609a502563SJohn Snow /* Not enough room for even the first entry: */ 7619a502563SJohn Snow /* 4 byte header + 20 byte string */ 7629a502563SJohn Snow ide_atapi_cmd_error(s, ILLEGAL_REQUEST, 7639a502563SJohn Snow ASC_DATA_PHASE_ERROR); 7649a502563SJohn Snow return; 7659a502563SJohn Snow } 7669a502563SJohn Snow buf[idx++] = 0x02; /* Ascii */ 7679a502563SJohn Snow buf[idx++] = 0x00; /* Vendor Specific */ 7689a502563SJohn Snow buf[idx++] = 0x00; 7699a502563SJohn Snow buf[idx++] = 20; /* Remaining length */ 7709a502563SJohn Snow padstr8(buf + idx, 20, s->drive_serial_str); 7719a502563SJohn Snow idx += 20; 7729a502563SJohn Snow 7739a502563SJohn Snow /* Entry 2: Drive Model and Serial */ 7749a502563SJohn Snow if (idx + 72 > max_len) { 7759a502563SJohn Snow /* 4 (header) + 8 (vendor) + 60 (model & serial) */ 7769a502563SJohn Snow goto out; 7779a502563SJohn Snow } 7789a502563SJohn Snow buf[idx++] = 0x02; /* Ascii */ 7799a502563SJohn Snow buf[idx++] = 0x01; /* T10 Vendor */ 7809a502563SJohn Snow buf[idx++] = 0x00; 7819a502563SJohn Snow buf[idx++] = 68; 7829a502563SJohn Snow padstr8(buf + idx, 8, "ATA"); /* Generic T10 vendor */ 7839a502563SJohn Snow idx += 8; 7849a502563SJohn Snow padstr8(buf + idx, 40, s->drive_model_str); 7859a502563SJohn Snow idx += 40; 7869a502563SJohn Snow padstr8(buf + idx, 20, s->drive_serial_str); 7879a502563SJohn Snow idx += 20; 7889a502563SJohn Snow 7899a502563SJohn Snow /* Entry 3: WWN */ 7909a502563SJohn Snow if (s->wwn && (idx + 12 <= max_len)) { 7919a502563SJohn Snow /* 4 byte header + 8 byte wwn */ 7929a502563SJohn Snow buf[idx++] = 0x01; /* Binary */ 7939a502563SJohn Snow buf[idx++] = 0x03; /* NAA */ 7949a502563SJohn Snow buf[idx++] = 0x00; 7959a502563SJohn Snow buf[idx++] = 0x08; 7969a502563SJohn Snow stq_be_p(&buf[idx], s->wwn); 7979a502563SJohn Snow idx += 8; 7989a502563SJohn Snow } 7999a502563SJohn Snow break; 8009a502563SJohn Snow 8019a502563SJohn Snow default: 8029a502563SJohn Snow /* SPC-3, revision 23 sec. 6.4 */ 8039a502563SJohn Snow ide_atapi_cmd_error(s, ILLEGAL_REQUEST, 8049a502563SJohn Snow ASC_INV_FIELD_IN_CMD_PACKET); 8059a502563SJohn Snow return; 8069a502563SJohn Snow } 8079a502563SJohn Snow } else { 8089a502563SJohn Snow preamble_len = 5; 8099a502563SJohn Snow size_idx = 4; 8109a502563SJohn Snow 811a60cf7e7SKevin Wolf buf[0] = 0x05; /* CD-ROM */ 812a60cf7e7SKevin Wolf buf[1] = 0x80; /* removable */ 813a60cf7e7SKevin Wolf buf[2] = 0x00; /* ISO */ 814a60cf7e7SKevin Wolf buf[3] = 0x21; /* ATAPI-2 (XXX: put ATAPI-4 ?) */ 8159a502563SJohn Snow /* buf[size_idx] set below. */ 816a60cf7e7SKevin Wolf buf[5] = 0; /* reserved */ 817a60cf7e7SKevin Wolf buf[6] = 0; /* reserved */ 818a60cf7e7SKevin Wolf buf[7] = 0; /* reserved */ 819a60cf7e7SKevin Wolf padstr8(buf + 8, 8, "QEMU"); 820a60cf7e7SKevin Wolf padstr8(buf + 16, 16, "QEMU DVD-ROM"); 821a60cf7e7SKevin Wolf padstr8(buf + 32, 4, s->version); 8229a502563SJohn Snow idx = 36; 8239a502563SJohn Snow } 8249a502563SJohn Snow 8259a502563SJohn Snow out: 8269a502563SJohn Snow buf[size_idx] = idx - preamble_len; 8279a502563SJohn Snow ide_atapi_cmd_reply(s, idx, max_len); 828a60cf7e7SKevin Wolf } 829a60cf7e7SKevin Wolf 830a60cf7e7SKevin Wolf static void cmd_get_configuration(IDEState *s, uint8_t *buf) 831a60cf7e7SKevin Wolf { 832a60cf7e7SKevin Wolf uint32_t len; 833a60cf7e7SKevin Wolf uint8_t index = 0; 83433231e0eSKevin Wolf int max_len; 83533231e0eSKevin Wolf 836a60cf7e7SKevin Wolf /* only feature 0 is supported */ 837a60cf7e7SKevin Wolf if (buf[2] != 0 || buf[3] != 0) { 83867cc61e4SPaolo Bonzini ide_atapi_cmd_error(s, ILLEGAL_REQUEST, 839a60cf7e7SKevin Wolf ASC_INV_FIELD_IN_CMD_PACKET); 84033231e0eSKevin Wolf return; 84133231e0eSKevin Wolf } 84233231e0eSKevin Wolf 843a60cf7e7SKevin Wolf /* XXX: could result in alignment problems in some architectures */ 844a60cf7e7SKevin Wolf max_len = ube16_to_cpu(buf + 7); 845a60cf7e7SKevin Wolf 846a60cf7e7SKevin Wolf /* 847a60cf7e7SKevin Wolf * XXX: avoid overflow for io_buffer if max_len is bigger than 848a60cf7e7SKevin Wolf * the size of that buffer (dimensioned to max number of 849a60cf7e7SKevin Wolf * sectors to transfer at once) 850a60cf7e7SKevin Wolf * 851a60cf7e7SKevin Wolf * Only a problem if the feature/profiles grow. 852a60cf7e7SKevin Wolf */ 853a60cf7e7SKevin Wolf if (max_len > 512) { 854a60cf7e7SKevin Wolf /* XXX: assume 1 sector */ 855a60cf7e7SKevin Wolf max_len = 512; 85633231e0eSKevin Wolf } 857a60cf7e7SKevin Wolf 858a60cf7e7SKevin Wolf memset(buf, 0, max_len); 859a60cf7e7SKevin Wolf /* 860a60cf7e7SKevin Wolf * the number of sectors from the media tells us which profile 861a60cf7e7SKevin Wolf * to use as current. 0 means there is no media 862a60cf7e7SKevin Wolf */ 863a60cf7e7SKevin Wolf if (media_is_dvd(s)) { 864a60cf7e7SKevin Wolf cpu_to_ube16(buf + 6, MMC_PROFILE_DVD_ROM); 865a60cf7e7SKevin Wolf } else if (media_is_cd(s)) { 866a60cf7e7SKevin Wolf cpu_to_ube16(buf + 6, MMC_PROFILE_CD_ROM); 86733231e0eSKevin Wolf } 868a60cf7e7SKevin Wolf 869a60cf7e7SKevin Wolf buf[10] = 0x02 | 0x01; /* persistent and current */ 870a60cf7e7SKevin Wolf len = 12; /* headers: 8 + 4 */ 871a60cf7e7SKevin Wolf len += ide_atapi_set_profile(buf, &index, MMC_PROFILE_DVD_ROM); 872a60cf7e7SKevin Wolf len += ide_atapi_set_profile(buf, &index, MMC_PROFILE_CD_ROM); 873a60cf7e7SKevin Wolf cpu_to_ube32(buf, len - 4); /* data length */ 874a60cf7e7SKevin Wolf 875a60cf7e7SKevin Wolf ide_atapi_cmd_reply(s, len, max_len); 876a60cf7e7SKevin Wolf } 877a60cf7e7SKevin Wolf 878a60cf7e7SKevin Wolf static void cmd_mode_sense(IDEState *s, uint8_t *buf) 87933231e0eSKevin Wolf { 88033231e0eSKevin Wolf int action, code; 881a60cf7e7SKevin Wolf int max_len; 882a60cf7e7SKevin Wolf 883a60cf7e7SKevin Wolf max_len = ube16_to_cpu(buf + 7); 884a60cf7e7SKevin Wolf action = buf[2] >> 6; 885a60cf7e7SKevin Wolf code = buf[2] & 0x3f; 886a60cf7e7SKevin Wolf 88733231e0eSKevin Wolf switch(action) { 88833231e0eSKevin Wolf case 0: /* current values */ 88933231e0eSKevin Wolf switch(code) { 89067cc61e4SPaolo Bonzini case MODE_PAGE_R_W_ERROR: /* error recovery */ 8912c20ae11SPaolo Bonzini cpu_to_ube16(&buf[0], 16 - 2); 89233231e0eSKevin Wolf buf[2] = 0x70; 89333231e0eSKevin Wolf buf[3] = 0; 89433231e0eSKevin Wolf buf[4] = 0; 89533231e0eSKevin Wolf buf[5] = 0; 89633231e0eSKevin Wolf buf[6] = 0; 89733231e0eSKevin Wolf buf[7] = 0; 89833231e0eSKevin Wolf 899af0e1ea2SPaolo Bonzini buf[8] = MODE_PAGE_R_W_ERROR; 900af0e1ea2SPaolo Bonzini buf[9] = 16 - 10; 90133231e0eSKevin Wolf buf[10] = 0x00; 90233231e0eSKevin Wolf buf[11] = 0x05; 90333231e0eSKevin Wolf buf[12] = 0x00; 90433231e0eSKevin Wolf buf[13] = 0x00; 90533231e0eSKevin Wolf buf[14] = 0x00; 90633231e0eSKevin Wolf buf[15] = 0x00; 90733231e0eSKevin Wolf ide_atapi_cmd_reply(s, 16, max_len); 90833231e0eSKevin Wolf break; 90967cc61e4SPaolo Bonzini case MODE_PAGE_AUDIO_CTL: 9102c20ae11SPaolo Bonzini cpu_to_ube16(&buf[0], 24 - 2); 91133231e0eSKevin Wolf buf[2] = 0x70; 91233231e0eSKevin Wolf buf[3] = 0; 91333231e0eSKevin Wolf buf[4] = 0; 91433231e0eSKevin Wolf buf[5] = 0; 91533231e0eSKevin Wolf buf[6] = 0; 91633231e0eSKevin Wolf buf[7] = 0; 91733231e0eSKevin Wolf 918af0e1ea2SPaolo Bonzini buf[8] = MODE_PAGE_AUDIO_CTL; 919af0e1ea2SPaolo Bonzini buf[9] = 24 - 10; 92033231e0eSKevin Wolf /* Fill with CDROM audio volume */ 92133231e0eSKevin Wolf buf[17] = 0; 92233231e0eSKevin Wolf buf[19] = 0; 92333231e0eSKevin Wolf buf[21] = 0; 92433231e0eSKevin Wolf buf[23] = 0; 92533231e0eSKevin Wolf 92633231e0eSKevin Wolf ide_atapi_cmd_reply(s, 24, max_len); 92733231e0eSKevin Wolf break; 92867cc61e4SPaolo Bonzini case MODE_PAGE_CAPABILITIES: 9292c20ae11SPaolo Bonzini cpu_to_ube16(&buf[0], 30 - 2); 93033231e0eSKevin Wolf buf[2] = 0x70; 93133231e0eSKevin Wolf buf[3] = 0; 93233231e0eSKevin Wolf buf[4] = 0; 93333231e0eSKevin Wolf buf[5] = 0; 93433231e0eSKevin Wolf buf[6] = 0; 93533231e0eSKevin Wolf buf[7] = 0; 93633231e0eSKevin Wolf 937af0e1ea2SPaolo Bonzini buf[8] = MODE_PAGE_CAPABILITIES; 9382c20ae11SPaolo Bonzini buf[9] = 30 - 10; 939a07c7dcdSPaolo Bonzini buf[10] = 0x3b; /* read CDR/CDRW/DVDROM/DVDR/DVDRAM */ 94033231e0eSKevin Wolf buf[11] = 0x00; 94133231e0eSKevin Wolf 94233231e0eSKevin Wolf /* Claim PLAY_AUDIO capability (0x01) since some Linux 94333231e0eSKevin Wolf code checks for this to automount media. */ 94433231e0eSKevin Wolf buf[12] = 0x71; 94533231e0eSKevin Wolf buf[13] = 3 << 5; 94633231e0eSKevin Wolf buf[14] = (1 << 0) | (1 << 3) | (1 << 5); 947a0a7573bSMarkus Armbruster if (s->tray_locked) { 948a07c7dcdSPaolo Bonzini buf[14] |= 1 << 1; 949a0a7573bSMarkus Armbruster } 950a07c7dcdSPaolo Bonzini buf[15] = 0x00; /* No volume & mute control, no changer */ 951a07c7dcdSPaolo Bonzini cpu_to_ube16(&buf[16], 704); /* 4x read speed */ 952a07c7dcdSPaolo Bonzini buf[18] = 0; /* Two volume levels */ 95333231e0eSKevin Wolf buf[19] = 2; 954a07c7dcdSPaolo Bonzini cpu_to_ube16(&buf[20], 512); /* 512k buffer */ 955a07c7dcdSPaolo Bonzini cpu_to_ube16(&buf[22], 704); /* 4x read speed current */ 95633231e0eSKevin Wolf buf[24] = 0; 95733231e0eSKevin Wolf buf[25] = 0; 95833231e0eSKevin Wolf buf[26] = 0; 95933231e0eSKevin Wolf buf[27] = 0; 9602c20ae11SPaolo Bonzini buf[28] = 0; 9612c20ae11SPaolo Bonzini buf[29] = 0; 9622c20ae11SPaolo Bonzini ide_atapi_cmd_reply(s, 30, max_len); 96333231e0eSKevin Wolf break; 96433231e0eSKevin Wolf default: 96533231e0eSKevin Wolf goto error_cmd; 96633231e0eSKevin Wolf } 96733231e0eSKevin Wolf break; 96833231e0eSKevin Wolf case 1: /* changeable values */ 96933231e0eSKevin Wolf goto error_cmd; 97033231e0eSKevin Wolf case 2: /* default values */ 97133231e0eSKevin Wolf goto error_cmd; 97233231e0eSKevin Wolf default: 97333231e0eSKevin Wolf case 3: /* saved values */ 97467cc61e4SPaolo Bonzini ide_atapi_cmd_error(s, ILLEGAL_REQUEST, 97533231e0eSKevin Wolf ASC_SAVING_PARAMETERS_NOT_SUPPORTED); 97633231e0eSKevin Wolf break; 97733231e0eSKevin Wolf } 978a60cf7e7SKevin Wolf return; 979a60cf7e7SKevin Wolf 980a60cf7e7SKevin Wolf error_cmd: 98167cc61e4SPaolo Bonzini ide_atapi_cmd_error(s, ILLEGAL_REQUEST, ASC_INV_FIELD_IN_CMD_PACKET); 98233231e0eSKevin Wolf } 983a60cf7e7SKevin Wolf 984a60cf7e7SKevin Wolf static void cmd_test_unit_ready(IDEState *s, uint8_t *buf) 985a60cf7e7SKevin Wolf { 9867a2c4b82SKevin Wolf /* Not Ready Conditions are already handled in ide_atapi_cmd(), so if we 9877a2c4b82SKevin Wolf * come here, we know that it's ready. */ 98833231e0eSKevin Wolf ide_atapi_cmd_ok(s); 989a60cf7e7SKevin Wolf } 990a60cf7e7SKevin Wolf 991a60cf7e7SKevin Wolf static void cmd_prevent_allow_medium_removal(IDEState *s, uint8_t* buf) 992a60cf7e7SKevin Wolf { 993a0a7573bSMarkus Armbruster s->tray_locked = buf[4] & 1; 9944be74634SMarkus Armbruster blk_lock_medium(s->blk, buf[4] & 1); 995a60cf7e7SKevin Wolf ide_atapi_cmd_ok(s); 996a60cf7e7SKevin Wolf } 997a60cf7e7SKevin Wolf 998a60cf7e7SKevin Wolf static void cmd_read(IDEState *s, uint8_t* buf) 99933231e0eSKevin Wolf { 100033231e0eSKevin Wolf int nb_sectors, lba; 100133231e0eSKevin Wolf 1002a60cf7e7SKevin Wolf if (buf[0] == GPCMD_READ_10) { 1003a60cf7e7SKevin Wolf nb_sectors = ube16_to_cpu(buf + 7); 1004a60cf7e7SKevin Wolf } else { 1005a60cf7e7SKevin Wolf nb_sectors = ube32_to_cpu(buf + 6); 1006a60cf7e7SKevin Wolf } 1007a60cf7e7SKevin Wolf 1008a60cf7e7SKevin Wolf lba = ube32_to_cpu(buf + 2); 100933231e0eSKevin Wolf if (nb_sectors == 0) { 101033231e0eSKevin Wolf ide_atapi_cmd_ok(s); 1011a60cf7e7SKevin Wolf return; 101233231e0eSKevin Wolf } 1013a60cf7e7SKevin Wolf 101433231e0eSKevin Wolf ide_atapi_cmd_read(s, lba, nb_sectors, 2048); 101533231e0eSKevin Wolf } 1016a60cf7e7SKevin Wolf 1017a60cf7e7SKevin Wolf static void cmd_read_cd(IDEState *s, uint8_t* buf) 101833231e0eSKevin Wolf { 101933231e0eSKevin Wolf int nb_sectors, lba, transfer_request; 102033231e0eSKevin Wolf 1021a60cf7e7SKevin Wolf nb_sectors = (buf[6] << 16) | (buf[7] << 8) | buf[8]; 1022a60cf7e7SKevin Wolf lba = ube32_to_cpu(buf + 2); 1023a60cf7e7SKevin Wolf 102433231e0eSKevin Wolf if (nb_sectors == 0) { 102533231e0eSKevin Wolf ide_atapi_cmd_ok(s); 1026a60cf7e7SKevin Wolf return; 102733231e0eSKevin Wolf } 1028a60cf7e7SKevin Wolf 1029a60cf7e7SKevin Wolf transfer_request = buf[9]; 103033231e0eSKevin Wolf switch(transfer_request & 0xf8) { 103133231e0eSKevin Wolf case 0x00: 103233231e0eSKevin Wolf /* nothing */ 103333231e0eSKevin Wolf ide_atapi_cmd_ok(s); 103433231e0eSKevin Wolf break; 103533231e0eSKevin Wolf case 0x10: 103633231e0eSKevin Wolf /* normal read */ 103733231e0eSKevin Wolf ide_atapi_cmd_read(s, lba, nb_sectors, 2048); 103833231e0eSKevin Wolf break; 103933231e0eSKevin Wolf case 0xf8: 104033231e0eSKevin Wolf /* read all data */ 104133231e0eSKevin Wolf ide_atapi_cmd_read(s, lba, nb_sectors, 2352); 104233231e0eSKevin Wolf break; 104333231e0eSKevin Wolf default: 104467cc61e4SPaolo Bonzini ide_atapi_cmd_error(s, ILLEGAL_REQUEST, 104533231e0eSKevin Wolf ASC_INV_FIELD_IN_CMD_PACKET); 104633231e0eSKevin Wolf break; 104733231e0eSKevin Wolf } 104833231e0eSKevin Wolf } 1049a60cf7e7SKevin Wolf 1050a60cf7e7SKevin Wolf static void cmd_seek(IDEState *s, uint8_t* buf) 105133231e0eSKevin Wolf { 105233231e0eSKevin Wolf unsigned int lba; 1053e119bcacSKevin Wolf uint64_t total_sectors = s->nb_sectors >> 2; 105433231e0eSKevin Wolf 1055a60cf7e7SKevin Wolf lba = ube32_to_cpu(buf + 2); 105633231e0eSKevin Wolf if (lba >= total_sectors) { 105767cc61e4SPaolo Bonzini ide_atapi_cmd_error(s, ILLEGAL_REQUEST, ASC_LOGICAL_BLOCK_OOR); 1058a60cf7e7SKevin Wolf return; 105933231e0eSKevin Wolf } 1060a60cf7e7SKevin Wolf 106133231e0eSKevin Wolf ide_atapi_cmd_ok(s); 106233231e0eSKevin Wolf } 1063a60cf7e7SKevin Wolf 1064a60cf7e7SKevin Wolf static void cmd_start_stop_unit(IDEState *s, uint8_t* buf) 106533231e0eSKevin Wolf { 1066fdec4404SMarkus Armbruster int sense; 1067f0776564SMarkus Armbruster bool start = buf[4] & 1; 1068f0776564SMarkus Armbruster bool loej = buf[4] & 2; /* load on start, eject on !start */ 1069ce560dcfSRonnie Sahlberg int pwrcnd = buf[4] & 0xf0; 1070ce560dcfSRonnie Sahlberg 1071ce560dcfSRonnie Sahlberg if (pwrcnd) { 1072ce560dcfSRonnie Sahlberg /* eject/load only happens for power condition == 0 */ 107303441c3aSKevin Wolf ide_atapi_cmd_ok(s); 1074ce560dcfSRonnie Sahlberg return; 1075ce560dcfSRonnie Sahlberg } 107633231e0eSKevin Wolf 1077f0776564SMarkus Armbruster if (loej) { 107848f65b3fSMarkus Armbruster if (!start && !s->tray_open && s->tray_locked) { 10794be74634SMarkus Armbruster sense = blk_is_inserted(s->blk) 108067cc61e4SPaolo Bonzini ? NOT_READY : ILLEGAL_REQUEST; 1081a60cf7e7SKevin Wolf ide_atapi_cmd_error(s, sense, ASC_MEDIA_REMOVAL_PREVENTED); 1082fdec4404SMarkus Armbruster return; 108333231e0eSKevin Wolf } 1084d88b1819SLuiz Capitulino 1085d88b1819SLuiz Capitulino if (s->tray_open != !start) { 10864be74634SMarkus Armbruster blk_eject(s->blk, !start); 1087dd063333SMarkus Armbruster s->tray_open = !start; 1088dd063333SMarkus Armbruster } 1089d88b1819SLuiz Capitulino } 1090fdec4404SMarkus Armbruster 1091fdec4404SMarkus Armbruster ide_atapi_cmd_ok(s); 109233231e0eSKevin Wolf } 1093a60cf7e7SKevin Wolf 1094a60cf7e7SKevin Wolf static void cmd_mechanism_status(IDEState *s, uint8_t* buf) 109533231e0eSKevin Wolf { 1096a60cf7e7SKevin Wolf int max_len = ube16_to_cpu(buf + 8); 1097a60cf7e7SKevin Wolf 109833231e0eSKevin Wolf cpu_to_ube16(buf, 0); 109933231e0eSKevin Wolf /* no current LBA */ 110033231e0eSKevin Wolf buf[2] = 0; 110133231e0eSKevin Wolf buf[3] = 0; 110233231e0eSKevin Wolf buf[4] = 0; 110333231e0eSKevin Wolf buf[5] = 1; 110433231e0eSKevin Wolf cpu_to_ube16(buf + 6, 0); 110533231e0eSKevin Wolf ide_atapi_cmd_reply(s, 8, max_len); 110633231e0eSKevin Wolf } 1107a60cf7e7SKevin Wolf 1108a60cf7e7SKevin Wolf static void cmd_read_toc_pma_atip(IDEState *s, uint8_t* buf) 110933231e0eSKevin Wolf { 111033231e0eSKevin Wolf int format, msf, start_track, len; 1111a60cf7e7SKevin Wolf int max_len; 11127a2c4b82SKevin Wolf uint64_t total_sectors = s->nb_sectors >> 2; 1113a60cf7e7SKevin Wolf 1114a60cf7e7SKevin Wolf max_len = ube16_to_cpu(buf + 7); 1115a60cf7e7SKevin Wolf format = buf[9] >> 6; 1116a60cf7e7SKevin Wolf msf = (buf[1] >> 1) & 1; 1117a60cf7e7SKevin Wolf start_track = buf[6]; 1118a60cf7e7SKevin Wolf 111933231e0eSKevin Wolf switch(format) { 112033231e0eSKevin Wolf case 0: 112133231e0eSKevin Wolf len = cdrom_read_toc(total_sectors, buf, msf, start_track); 112233231e0eSKevin Wolf if (len < 0) 112333231e0eSKevin Wolf goto error_cmd; 112433231e0eSKevin Wolf ide_atapi_cmd_reply(s, len, max_len); 112533231e0eSKevin Wolf break; 112633231e0eSKevin Wolf case 1: 112733231e0eSKevin Wolf /* multi session : only a single session defined */ 112833231e0eSKevin Wolf memset(buf, 0, 12); 112933231e0eSKevin Wolf buf[1] = 0x0a; 113033231e0eSKevin Wolf buf[2] = 0x01; 113133231e0eSKevin Wolf buf[3] = 0x01; 113233231e0eSKevin Wolf ide_atapi_cmd_reply(s, 12, max_len); 113333231e0eSKevin Wolf break; 113433231e0eSKevin Wolf case 2: 113533231e0eSKevin Wolf len = cdrom_read_toc_raw(total_sectors, buf, msf, start_track); 113633231e0eSKevin Wolf if (len < 0) 113733231e0eSKevin Wolf goto error_cmd; 113833231e0eSKevin Wolf ide_atapi_cmd_reply(s, len, max_len); 113933231e0eSKevin Wolf break; 114033231e0eSKevin Wolf default: 114133231e0eSKevin Wolf error_cmd: 114267cc61e4SPaolo Bonzini ide_atapi_cmd_error(s, ILLEGAL_REQUEST, 114333231e0eSKevin Wolf ASC_INV_FIELD_IN_CMD_PACKET); 114433231e0eSKevin Wolf } 114533231e0eSKevin Wolf } 1146a60cf7e7SKevin Wolf 1147a60cf7e7SKevin Wolf static void cmd_read_cdvd_capacity(IDEState *s, uint8_t* buf) 114833231e0eSKevin Wolf { 1149e119bcacSKevin Wolf uint64_t total_sectors = s->nb_sectors >> 2; 115033231e0eSKevin Wolf 115133231e0eSKevin Wolf /* NOTE: it is really the number of sectors minus 1 */ 115233231e0eSKevin Wolf cpu_to_ube32(buf, total_sectors - 1); 115333231e0eSKevin Wolf cpu_to_ube32(buf + 4, 2048); 115433231e0eSKevin Wolf ide_atapi_cmd_reply(s, 8, 8); 115533231e0eSKevin Wolf } 1156a60cf7e7SKevin Wolf 115755042b95SPaolo Bonzini static void cmd_read_disc_information(IDEState *s, uint8_t* buf) 115855042b95SPaolo Bonzini { 115955042b95SPaolo Bonzini uint8_t type = buf[1] & 7; 116055042b95SPaolo Bonzini uint32_t max_len = ube16_to_cpu(buf + 7); 116155042b95SPaolo Bonzini 116255042b95SPaolo Bonzini /* Types 1/2 are only defined for Blu-Ray. */ 116355042b95SPaolo Bonzini if (type != 0) { 116455042b95SPaolo Bonzini ide_atapi_cmd_error(s, ILLEGAL_REQUEST, 116555042b95SPaolo Bonzini ASC_INV_FIELD_IN_CMD_PACKET); 116655042b95SPaolo Bonzini return; 116755042b95SPaolo Bonzini } 116855042b95SPaolo Bonzini 116955042b95SPaolo Bonzini memset(buf, 0, 34); 117055042b95SPaolo Bonzini buf[1] = 32; 117155042b95SPaolo Bonzini buf[2] = 0xe; /* last session complete, disc finalized */ 117255042b95SPaolo Bonzini buf[3] = 1; /* first track on disc */ 117355042b95SPaolo Bonzini buf[4] = 1; /* # of sessions */ 117455042b95SPaolo Bonzini buf[5] = 1; /* first track of last session */ 117555042b95SPaolo Bonzini buf[6] = 1; /* last track of last session */ 117655042b95SPaolo Bonzini buf[7] = 0x20; /* unrestricted use */ 117755042b95SPaolo Bonzini buf[8] = 0x00; /* CD-ROM or DVD-ROM */ 117855042b95SPaolo Bonzini /* 9-10-11: most significant byte corresponding bytes 4-5-6 */ 117955042b95SPaolo Bonzini /* 12-23: not meaningful for CD-ROM or DVD-ROM */ 118055042b95SPaolo Bonzini /* 24-31: disc bar code */ 118155042b95SPaolo Bonzini /* 32: disc application code */ 118255042b95SPaolo Bonzini /* 33: number of OPC tables */ 118355042b95SPaolo Bonzini 118455042b95SPaolo Bonzini ide_atapi_cmd_reply(s, 34, max_len); 118555042b95SPaolo Bonzini } 118655042b95SPaolo Bonzini 1187a60cf7e7SKevin Wolf static void cmd_read_dvd_structure(IDEState *s, uint8_t* buf) 118833231e0eSKevin Wolf { 1189a60cf7e7SKevin Wolf int max_len; 1190a60cf7e7SKevin Wolf int media = buf[1]; 1191a60cf7e7SKevin Wolf int format = buf[7]; 119233231e0eSKevin Wolf int ret; 119333231e0eSKevin Wolf 1194a60cf7e7SKevin Wolf max_len = ube16_to_cpu(buf + 8); 119533231e0eSKevin Wolf 119633231e0eSKevin Wolf if (format < 0xff) { 119733231e0eSKevin Wolf if (media_is_cd(s)) { 119867cc61e4SPaolo Bonzini ide_atapi_cmd_error(s, ILLEGAL_REQUEST, 119933231e0eSKevin Wolf ASC_INCOMPATIBLE_FORMAT); 1200a60cf7e7SKevin Wolf return; 120133231e0eSKevin Wolf } else if (!media_present(s)) { 120267cc61e4SPaolo Bonzini ide_atapi_cmd_error(s, ILLEGAL_REQUEST, 120333231e0eSKevin Wolf ASC_INV_FIELD_IN_CMD_PACKET); 1204a60cf7e7SKevin Wolf return; 120533231e0eSKevin Wolf } 120633231e0eSKevin Wolf } 120733231e0eSKevin Wolf 120833231e0eSKevin Wolf memset(buf, 0, max_len > IDE_DMA_BUF_SECTORS * 512 + 4 ? 120933231e0eSKevin Wolf IDE_DMA_BUF_SECTORS * 512 + 4 : max_len); 121033231e0eSKevin Wolf 121133231e0eSKevin Wolf switch (format) { 121233231e0eSKevin Wolf case 0x00 ... 0x7f: 121333231e0eSKevin Wolf case 0xff: 121433231e0eSKevin Wolf if (media == 0) { 1215a60cf7e7SKevin Wolf ret = ide_dvd_read_structure(s, format, buf, buf); 121633231e0eSKevin Wolf 1217a60cf7e7SKevin Wolf if (ret < 0) { 121867cc61e4SPaolo Bonzini ide_atapi_cmd_error(s, ILLEGAL_REQUEST, -ret); 1219a60cf7e7SKevin Wolf } else { 122033231e0eSKevin Wolf ide_atapi_cmd_reply(s, ret, max_len); 1221a60cf7e7SKevin Wolf } 122233231e0eSKevin Wolf 122333231e0eSKevin Wolf break; 122433231e0eSKevin Wolf } 122533231e0eSKevin Wolf /* TODO: BD support, fall through for now */ 122633231e0eSKevin Wolf 122733231e0eSKevin Wolf /* Generic disk structures */ 122833231e0eSKevin Wolf case 0x80: /* TODO: AACS volume identifier */ 122933231e0eSKevin Wolf case 0x81: /* TODO: AACS media serial number */ 123033231e0eSKevin Wolf case 0x82: /* TODO: AACS media identifier */ 123133231e0eSKevin Wolf case 0x83: /* TODO: AACS media key block */ 123233231e0eSKevin Wolf case 0x90: /* TODO: List of recognized format layers */ 123333231e0eSKevin Wolf case 0xc0: /* TODO: Write protection status */ 123433231e0eSKevin Wolf default: 123567cc61e4SPaolo Bonzini ide_atapi_cmd_error(s, ILLEGAL_REQUEST, 123633231e0eSKevin Wolf ASC_INV_FIELD_IN_CMD_PACKET); 123733231e0eSKevin Wolf break; 123833231e0eSKevin Wolf } 123933231e0eSKevin Wolf } 1240a60cf7e7SKevin Wolf 1241a60cf7e7SKevin Wolf static void cmd_set_speed(IDEState *s, uint8_t* buf) 1242a60cf7e7SKevin Wolf { 1243a60cf7e7SKevin Wolf ide_atapi_cmd_ok(s); 1244a60cf7e7SKevin Wolf } 1245a60cf7e7SKevin Wolf 1246e1a064f9SKevin Wolf enum { 1247e1a064f9SKevin Wolf /* 1248e1a064f9SKevin Wolf * Only commands flagged as ALLOW_UA are allowed to run under a 1249e1a064f9SKevin Wolf * unit attention condition. (See MMC-5, section 4.1.6.1) 1250e1a064f9SKevin Wolf */ 1251e1a064f9SKevin Wolf ALLOW_UA = 0x01, 12527a2c4b82SKevin Wolf 12537a2c4b82SKevin Wolf /* 12547a2c4b82SKevin Wolf * Commands flagged with CHECK_READY can only execute if a medium is present. 12557a2c4b82SKevin Wolf * Otherwise they report the Not Ready Condition. (See MMC-5, section 12567a2c4b82SKevin Wolf * 4.1.8) 12577a2c4b82SKevin Wolf */ 12587a2c4b82SKevin Wolf CHECK_READY = 0x02, 12599ef2e93fSJohn Snow 12609ef2e93fSJohn Snow /* 12619ef2e93fSJohn Snow * Commands flagged with NONDATA do not in any circumstances return 12629ef2e93fSJohn Snow * any data via ide_atapi_cmd_reply. These commands are exempt from 12639ef2e93fSJohn Snow * the normal byte_count_limit constraints. 12649ef2e93fSJohn Snow * See ATA8-ACS3 "7.21.5 Byte Count Limit" 12659ef2e93fSJohn Snow */ 12669ef2e93fSJohn Snow NONDATA = 0x04, 1267e1a064f9SKevin Wolf }; 1268e1a064f9SKevin Wolf 1269f36aa12dSJohn Snow static const struct AtapiCmd { 1270e1a064f9SKevin Wolf void (*handler)(IDEState *s, uint8_t *buf); 1271e1a064f9SKevin Wolf int flags; 1272e1a064f9SKevin Wolf } atapi_cmd_table[0x100] = { 12739ef2e93fSJohn Snow [ 0x00 ] = { cmd_test_unit_ready, CHECK_READY | NONDATA }, 1274e1a064f9SKevin Wolf [ 0x03 ] = { cmd_request_sense, ALLOW_UA }, 1275e1a064f9SKevin Wolf [ 0x12 ] = { cmd_inquiry, ALLOW_UA }, 12769ef2e93fSJohn Snow [ 0x1b ] = { cmd_start_stop_unit, NONDATA }, /* [1] */ 12779ef2e93fSJohn Snow [ 0x1e ] = { cmd_prevent_allow_medium_removal, NONDATA }, 12787a2c4b82SKevin Wolf [ 0x25 ] = { cmd_read_cdvd_capacity, CHECK_READY }, 1279a1aff5bfSMarkus Armbruster [ 0x28 ] = { cmd_read, /* (10) */ CHECK_READY }, 12809ef2e93fSJohn Snow [ 0x2b ] = { cmd_seek, CHECK_READY | NONDATA }, 12817a2c4b82SKevin Wolf [ 0x43 ] = { cmd_read_toc_pma_atip, CHECK_READY }, 1282e1a064f9SKevin Wolf [ 0x46 ] = { cmd_get_configuration, ALLOW_UA }, 1283e1a064f9SKevin Wolf [ 0x4a ] = { cmd_get_event_status_notification, ALLOW_UA }, 128455042b95SPaolo Bonzini [ 0x51 ] = { cmd_read_disc_information, CHECK_READY }, 1285e1a064f9SKevin Wolf [ 0x5a ] = { cmd_mode_sense, /* (10) */ 0 }, 1286a1aff5bfSMarkus Armbruster [ 0xa8 ] = { cmd_read, /* (12) */ CHECK_READY }, 1287a1aff5bfSMarkus Armbruster [ 0xad ] = { cmd_read_dvd_structure, CHECK_READY }, 12889ef2e93fSJohn Snow [ 0xbb ] = { cmd_set_speed, NONDATA }, 1289e1a064f9SKevin Wolf [ 0xbd ] = { cmd_mechanism_status, 0 }, 1290a1aff5bfSMarkus Armbruster [ 0xbe ] = { cmd_read_cd, CHECK_READY }, 1291a1aff5bfSMarkus Armbruster /* [1] handler detects and reports not ready condition itself */ 1292e1a064f9SKevin Wolf }; 1293e1a064f9SKevin Wolf 1294a60cf7e7SKevin Wolf void ide_atapi_cmd(IDEState *s) 1295a60cf7e7SKevin Wolf { 1296f36aa12dSJohn Snow uint8_t *buf = s->io_buffer; 1297f36aa12dSJohn Snow const struct AtapiCmd *cmd = &atapi_cmd_table[s->io_buffer[0]]; 1298a60cf7e7SKevin Wolf 1299a60cf7e7SKevin Wolf #ifdef DEBUG_IDE_ATAPI 1300a60cf7e7SKevin Wolf { 1301a60cf7e7SKevin Wolf int i; 1302a60cf7e7SKevin Wolf printf("ATAPI limit=0x%x packet:", s->lcyl | (s->hcyl << 8)); 1303a60cf7e7SKevin Wolf for(i = 0; i < ATAPI_PACKET_SIZE; i++) { 1304ab719827SAlon Levy printf(" %02x", buf[i]); 1305a60cf7e7SKevin Wolf } 1306a60cf7e7SKevin Wolf printf("\n"); 1307a60cf7e7SKevin Wolf } 1308a60cf7e7SKevin Wolf #endif 1309f36aa12dSJohn Snow 1310a60cf7e7SKevin Wolf /* 1311e1a064f9SKevin Wolf * If there's a UNIT_ATTENTION condition pending, only command flagged with 1312e1a064f9SKevin Wolf * ALLOW_UA are allowed to complete. with other commands getting a CHECK 1313e1a064f9SKevin Wolf * condition response unless a higher priority status, defined by the drive 1314a60cf7e7SKevin Wolf * here, is pending. 1315a60cf7e7SKevin Wolf */ 1316f36aa12dSJohn Snow if (s->sense_key == UNIT_ATTENTION && !(cmd->flags & ALLOW_UA)) { 1317a60cf7e7SKevin Wolf ide_atapi_cmd_check_status(s); 1318a60cf7e7SKevin Wolf return; 1319a60cf7e7SKevin Wolf } 13204a737d14SAmit Shah /* 13214a737d14SAmit Shah * When a CD gets changed, we have to report an ejected state and 13224a737d14SAmit Shah * then a loaded state to guests so that they detect tray 13234a737d14SAmit Shah * open/close and media change events. Guests that do not use 13244a737d14SAmit Shah * GET_EVENT_STATUS_NOTIFICATION to detect such tray open/close 13254a737d14SAmit Shah * states rely on this behavior. 13264a737d14SAmit Shah */ 1327f36aa12dSJohn Snow if (!(cmd->flags & ALLOW_UA) && 13284be74634SMarkus Armbruster !s->tray_open && blk_is_inserted(s->blk) && s->cdrom_changed) { 1329a60cf7e7SKevin Wolf 13300c6f08b0SPavel Hrdina if (s->cdrom_changed == 1) { 13310c6f08b0SPavel Hrdina ide_atapi_cmd_error(s, NOT_READY, ASC_MEDIUM_NOT_PRESENT); 13320c6f08b0SPavel Hrdina s->cdrom_changed = 2; 13330c6f08b0SPavel Hrdina } else { 13340c6f08b0SPavel Hrdina ide_atapi_cmd_error(s, UNIT_ATTENTION, ASC_MEDIUM_MAY_HAVE_CHANGED); 1335a60cf7e7SKevin Wolf s->cdrom_changed = 0; 13360c6f08b0SPavel Hrdina } 13370c6f08b0SPavel Hrdina 1338a60cf7e7SKevin Wolf return; 1339a60cf7e7SKevin Wolf } 1340e1a064f9SKevin Wolf 13417a2c4b82SKevin Wolf /* Report a Not Ready condition if appropriate for the command */ 1342f36aa12dSJohn Snow if ((cmd->flags & CHECK_READY) && 13434be74634SMarkus Armbruster (!media_present(s) || !blk_is_inserted(s->blk))) 13447a2c4b82SKevin Wolf { 134567cc61e4SPaolo Bonzini ide_atapi_cmd_error(s, NOT_READY, ASC_MEDIUM_NOT_PRESENT); 13467a2c4b82SKevin Wolf return; 13477a2c4b82SKevin Wolf } 13487a2c4b82SKevin Wolf 13499ef2e93fSJohn Snow /* Nondata commands permit the byte_count_limit to be 0. 13509ef2e93fSJohn Snow * If this is a data-transferring PIO command and BCL is 0, 13519ef2e93fSJohn Snow * we abort at the /ATA/ level, not the ATAPI level. 13529ef2e93fSJohn Snow * See ATA8 ACS3 section 7.17.6.49 and 7.21.5 */ 1353f36aa12dSJohn Snow if (cmd->handler && !(cmd->flags & NONDATA)) { 13549ef2e93fSJohn Snow /* TODO: Check IDENTIFY data word 125 for default BCL (currently 0) */ 1355af0e00dbSJohn Snow if (!(atapi_byte_count_limit(s) || s->atapi_dma)) { 13569ef2e93fSJohn Snow /* TODO: Move abort back into core.c and make static inline again */ 13579ef2e93fSJohn Snow ide_abort_command(s); 13589ef2e93fSJohn Snow return; 13599ef2e93fSJohn Snow } 13609ef2e93fSJohn Snow } 13619ef2e93fSJohn Snow 1362e1a064f9SKevin Wolf /* Execute the command */ 1363f36aa12dSJohn Snow if (cmd->handler) { 1364f36aa12dSJohn Snow cmd->handler(s, buf); 1365e1a064f9SKevin Wolf return; 136633231e0eSKevin Wolf } 1367e1a064f9SKevin Wolf 136867cc61e4SPaolo Bonzini ide_atapi_cmd_error(s, ILLEGAL_REQUEST, ASC_ILLEGAL_OPCODE); 136933231e0eSKevin Wolf } 1370