core.c 87.4 KB
Newer Older
B
bellard 已提交
1
/*
2
 * QEMU IDE disk and CD/DVD-ROM Emulator
3
 *
B
bellard 已提交
4
 * Copyright (c) 2003 Fabrice Bellard
5
 * Copyright (c) 2006 Openedhand Ltd.
6
 *
B
bellard 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
G
Gerd Hoffmann 已提交
25 26 27
#include <hw/hw.h>
#include <hw/pc.h>
#include <hw/pci.h>
G
Gerd Hoffmann 已提交
28
#include <hw/scsi.h>
29
#include "qemu-error.h"
P
pbrook 已提交
30 31
#include "qemu-timer.h"
#include "sysemu.h"
32
#include "dma.h"
G
Gerd Hoffmann 已提交
33 34

#include <hw/ide/internal.h>
B
Brian Wheeler 已提交
35

B
Blue Swirl 已提交
36 37
#define IDE_PAGE_SIZE 4096

B
Blue Swirl 已提交
38
static const int smart_attributes[][5] = {
B
Brian Wheeler 已提交
39 40 41 42 43 44 45 46
    /* id,  flags, val, wrst, thrsh */
    { 0x01, 0x03, 0x64, 0x64, 0x06}, /* raw read */
    { 0x03, 0x03, 0x64, 0x64, 0x46}, /* spin up */
    { 0x04, 0x02, 0x64, 0x64, 0x14}, /* start stop count */
    { 0x05, 0x03, 0x64, 0x64, 0x36}, /* remapped sectors */
    { 0x00, 0x00, 0x00, 0x00, 0x00}
};

47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
/* XXX: DVDs that could fit on a CD will be reported as a CD */
static inline int media_present(IDEState *s)
{
    return (s->nb_sectors > 0);
}

static inline int media_is_dvd(IDEState *s)
{
    return (media_present(s) && s->nb_sectors > CD_MAX_SECTORS);
}

static inline int media_is_cd(IDEState *s)
{
    return (media_present(s) && s->nb_sectors <= CD_MAX_SECTORS);
}

63
static void ide_dma_start(IDEState *s, BlockDriverCompletionFunc *dma_cb);
K
Kevin Wolf 已提交
64
static void ide_dma_restart(IDEState *s, int is_read);
65
static void ide_atapi_cmd_read_dma_cb(void *opaque, int ret);
K
Kevin Wolf 已提交
66
static int ide_handle_rw_error(IDEState *s, int error, int op);
B
bellard 已提交
67

B
bellard 已提交
68 69 70 71 72 73 74 75
static void padstr(char *str, const char *src, int len)
{
    int i, v;
    for(i = 0; i < len; i++) {
        if (*src)
            v = *src++;
        else
            v = ' ';
76
        str[i^1] = v;
B
bellard 已提交
77 78 79
    }
}

B
bellard 已提交
80 81 82 83 84 85 86 87 88 89 90
static void padstr8(uint8_t *buf, int buf_size, const char *src)
{
    int i;
    for(i = 0; i < buf_size; i++) {
        if (*src)
            buf[i] = *src++;
        else
            buf[i] = ' ';
    }
}

B
bellard 已提交
91 92
static void put_le16(uint16_t *p, unsigned int v)
{
B
bellard 已提交
93
    *p = cpu_to_le16(v);
B
bellard 已提交
94 95
}

B
bellard 已提交
96 97 98 99
static void ide_identify(IDEState *s)
{
    uint16_t *p;
    unsigned int oldsize;
100
    IDEDevice *dev;
B
bellard 已提交
101

102 103 104 105 106
    if (s->identify_set) {
	memcpy(s->io_buffer, s->identify_data, sizeof(s->identify_data));
	return;
    }

B
bellard 已提交
107 108
    memset(s->io_buffer, 0, 512);
    p = (uint16_t *)s->io_buffer;
B
bellard 已提交
109
    put_le16(p + 0, 0x0040);
110
    put_le16(p + 1, s->cylinders);
B
bellard 已提交
111 112 113
    put_le16(p + 3, s->heads);
    put_le16(p + 4, 512 * s->sectors); /* XXX: retired, remove ? */
    put_le16(p + 5, 512); /* XXX: retired, remove ? */
114
    put_le16(p + 6, s->sectors);
115
    padstr((char *)(p + 10), s->drive_serial_str, 20); /* serial number */
B
bellard 已提交
116 117 118
    put_le16(p + 20, 3); /* XXX: retired, remove ? */
    put_le16(p + 21, 512); /* cache size in sectors */
    put_le16(p + 22, 4); /* ecc bytes */
G
Gerd Hoffmann 已提交
119
    padstr((char *)(p + 23), s->version, 8); /* firmware version */
T
ths 已提交
120
    padstr((char *)(p + 27), "QEMU HARDDISK", 40); /* model */
121
#if MAX_MULT_SECTORS > 1
B
bellard 已提交
122
    put_le16(p + 47, 0x8000 | MAX_MULT_SECTORS);
B
bellard 已提交
123
#endif
B
bellard 已提交
124
    put_le16(p + 48, 1); /* dword I/O */
125
    put_le16(p + 49, (1 << 11) | (1 << 9) | (1 << 8)); /* DMA and LBA supported */
B
bellard 已提交
126 127
    put_le16(p + 51, 0x200); /* PIO transfer cycle */
    put_le16(p + 52, 0x200); /* DMA transfer cycle */
128
    put_le16(p + 53, 1 | (1 << 1) | (1 << 2)); /* words 54-58,64-70,88 are valid */
B
bellard 已提交
129 130 131
    put_le16(p + 54, s->cylinders);
    put_le16(p + 55, s->heads);
    put_le16(p + 56, s->sectors);
B
bellard 已提交
132
    oldsize = s->cylinders * s->heads * s->sectors;
B
bellard 已提交
133 134
    put_le16(p + 57, oldsize);
    put_le16(p + 58, oldsize >> 16);
B
bellard 已提交
135
    if (s->mult_sectors)
B
bellard 已提交
136 137 138
        put_le16(p + 59, 0x100 | s->mult_sectors);
    put_le16(p + 60, s->nb_sectors);
    put_le16(p + 61, s->nb_sectors >> 16);
139
    put_le16(p + 62, 0x07); /* single word dma0-2 supported */
140 141 142 143 144 145 146
    put_le16(p + 63, 0x07); /* mdma0-2 supported */
    put_le16(p + 65, 120);
    put_le16(p + 66, 120);
    put_le16(p + 67, 120);
    put_le16(p + 68, 120);
    put_le16(p + 80, 0xf0); /* ata3 -> ata6 supported */
    put_le16(p + 81, 0x16); /* conforms to ata5 */
B
Brian Wheeler 已提交
147 148
    /* 14=NOP supported, 0=SMART supported */
    put_le16(p + 82, (1 << 14) | 1);
B
bellard 已提交
149 150
    /* 13=flush_cache_ext,12=flush_cache,10=lba48 */
    put_le16(p + 83, (1 << 14) | (1 << 13) | (1 <<12) | (1 << 10));
B
Brian Wheeler 已提交
151 152
    /* 14=set to 1, 1=SMART self test, 0=SMART error logging */
    put_le16(p + 84, (1 << 14) | 0);
153 154 155 156 157
    /* 14 = NOP supported, 5=WCACHE enabled, 0=SMART feature set enabled */
    if (bdrv_enable_write_cache(s->bs))
         put_le16(p + 85, (1 << 14) | (1 << 5) | 1);
    else
         put_le16(p + 85, (1 << 14) | 1);
B
bellard 已提交
158 159
    /* 13=flush_cache_ext,12=flush_cache,10=lba48 */
    put_le16(p + 86, (1 << 14) | (1 << 13) | (1 <<12) | (1 << 10));
B
Brian Wheeler 已提交
160 161
    /* 14=set to 1, 1=smart self test, 0=smart error logging */
    put_le16(p + 87, (1 << 14) | 0);
162 163
    put_le16(p + 88, 0x3f | (1 << 13)); /* udma5 set and supported */
    put_le16(p + 93, 1 | (1 << 14) | 0x2000);
B
bellard 已提交
164 165 166 167
    put_le16(p + 100, s->nb_sectors);
    put_le16(p + 101, s->nb_sectors >> 16);
    put_le16(p + 102, s->nb_sectors >> 32);
    put_le16(p + 103, s->nb_sectors >> 48);
168 169 170
    dev = s->unit ? s->bus->slave : s->bus->master;
    if (dev && dev->conf.physical_block_size)
        put_le16(p + 106, 0x6000 | get_physical_block_exp(&dev->conf));
171 172 173

    memcpy(s->identify_data, p, sizeof(s->identify_data));
    s->identify_set = 1;
B
bellard 已提交
174 175 176 177 178 179
}

static void ide_atapi_identify(IDEState *s)
{
    uint16_t *p;

180 181 182 183 184
    if (s->identify_set) {
	memcpy(s->io_buffer, s->identify_data, sizeof(s->identify_data));
	return;
    }

B
bellard 已提交
185 186 187
    memset(s->io_buffer, 0, 512);
    p = (uint16_t *)s->io_buffer;
    /* Removable CDROM, 50us response, 12 byte packets */
B
bellard 已提交
188
    put_le16(p + 0, (2 << 14) | (5 << 8) | (1 << 7) | (2 << 5) | (0 << 0));
189
    padstr((char *)(p + 10), s->drive_serial_str, 20); /* serial number */
B
bellard 已提交
190 191 192
    put_le16(p + 20, 3); /* buffer type */
    put_le16(p + 21, 512); /* cache size in sectors */
    put_le16(p + 22, 4); /* ecc bytes */
G
Gerd Hoffmann 已提交
193
    padstr((char *)(p + 23), s->version, 8); /* firmware version */
194
    padstr((char *)(p + 27), "QEMU DVD-ROM", 40); /* model */
B
bellard 已提交
195
    put_le16(p + 48, 1); /* dword I/O (XXX: should not be set on CDROM) */
196 197 198
#ifdef USE_DMA_CDROM
    put_le16(p + 49, 1 << 9 | 1 << 8); /* DMA and LBA supported */
    put_le16(p + 53, 7); /* words 64-70, 54-58, 88 valid */
199
    put_le16(p + 62, 7);  /* single word dma0-2 supported */
200 201 202
    put_le16(p + 63, 7);  /* mdma0-2 supported */
    put_le16(p + 64, 0x3f); /* PIO modes supported */
#else
B
bellard 已提交
203 204 205 206
    put_le16(p + 49, 1 << 9); /* LBA supported, no DMA */
    put_le16(p + 53, 3); /* words 64-70, 54-58 valid */
    put_le16(p + 63, 0x103); /* DMA modes XXX: may be incorrect */
    put_le16(p + 64, 1); /* PIO modes */
207
#endif
B
bellard 已提交
208 209 210 211
    put_le16(p + 65, 0xb4); /* minimum DMA multiword tx cycle time */
    put_le16(p + 66, 0xb4); /* recommended DMA multiword tx cycle time */
    put_le16(p + 67, 0x12c); /* minimum PIO cycle time without flow control */
    put_le16(p + 68, 0xb4); /* minimum PIO cycle time with IORDY flow control */
212

B
bellard 已提交
213 214
    put_le16(p + 71, 30); /* in ns */
    put_le16(p + 72, 30); /* in ns */
B
bellard 已提交
215

B
bellard 已提交
216
    put_le16(p + 80, 0x1e); /* support up to ATA/ATAPI-4 */
217 218 219
#ifdef USE_DMA_CDROM
    put_le16(p + 88, 0x3f | (1 << 13)); /* udma5 set and supported */
#endif
220 221
    memcpy(s->identify_data, p, sizeof(s->identify_data));
    s->identify_set = 1;
B
bellard 已提交
222 223
}

224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
static void ide_cfata_identify(IDEState *s)
{
    uint16_t *p;
    uint32_t cur_sec;

    p = (uint16_t *) s->identify_data;
    if (s->identify_set)
        goto fill_buffer;

    memset(p, 0, sizeof(s->identify_data));

    cur_sec = s->cylinders * s->heads * s->sectors;

    put_le16(p + 0, 0x848a);			/* CF Storage Card signature */
    put_le16(p + 1, s->cylinders);		/* Default cylinders */
    put_le16(p + 3, s->heads);			/* Default heads */
    put_le16(p + 6, s->sectors);		/* Default sectors per track */
    put_le16(p + 7, s->nb_sectors >> 16);	/* Sectors per card */
    put_le16(p + 8, s->nb_sectors);		/* Sectors per card */
243
    padstr((char *)(p + 10), s->drive_serial_str, 20); /* serial number */
244
    put_le16(p + 22, 0x0004);			/* ECC bytes */
G
Gerd Hoffmann 已提交
245
    padstr((char *) (p + 23), s->version, 8);	/* Firmware Revision */
T
ths 已提交
246
    padstr((char *) (p + 27), "QEMU MICRODRIVE", 40);/* Model number */
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
#if MAX_MULT_SECTORS > 1
    put_le16(p + 47, 0x8000 | MAX_MULT_SECTORS);
#else
    put_le16(p + 47, 0x0000);
#endif
    put_le16(p + 49, 0x0f00);			/* Capabilities */
    put_le16(p + 51, 0x0002);			/* PIO cycle timing mode */
    put_le16(p + 52, 0x0001);			/* DMA cycle timing mode */
    put_le16(p + 53, 0x0003);			/* Translation params valid */
    put_le16(p + 54, s->cylinders);		/* Current cylinders */
    put_le16(p + 55, s->heads);			/* Current heads */
    put_le16(p + 56, s->sectors);		/* Current sectors */
    put_le16(p + 57, cur_sec);			/* Current capacity */
    put_le16(p + 58, cur_sec >> 16);		/* Current capacity */
    if (s->mult_sectors)			/* Multiple sector setting */
        put_le16(p + 59, 0x100 | s->mult_sectors);
    put_le16(p + 60, s->nb_sectors);		/* Total LBA sectors */
    put_le16(p + 61, s->nb_sectors >> 16);	/* Total LBA sectors */
    put_le16(p + 63, 0x0203);			/* Multiword DMA capability */
    put_le16(p + 64, 0x0001);			/* Flow Control PIO support */
    put_le16(p + 65, 0x0096);			/* Min. Multiword DMA cycle */
    put_le16(p + 66, 0x0096);			/* Rec. Multiword DMA cycle */
    put_le16(p + 68, 0x00b4);			/* Min. PIO cycle time */
    put_le16(p + 82, 0x400c);			/* Command Set supported */
    put_le16(p + 83, 0x7068);			/* Command Set supported */
    put_le16(p + 84, 0x4000);			/* Features supported */
    put_le16(p + 85, 0x000c);			/* Command Set enabled */
    put_le16(p + 86, 0x7044);			/* Command Set enabled */
    put_le16(p + 87, 0x4000);			/* Features enabled */
    put_le16(p + 91, 0x4060);			/* Current APM level */
    put_le16(p + 129, 0x0002);			/* Current features option */
    put_le16(p + 130, 0x0005);			/* Reassigned sectors */
    put_le16(p + 131, 0x0001);			/* Initial power mode */
    put_le16(p + 132, 0x0000);			/* User signature */
    put_le16(p + 160, 0x8100);			/* Power requirement */
    put_le16(p + 161, 0x8001);			/* CF command set */

    s->identify_set = 1;

fill_buffer:
    memcpy(s->io_buffer, p, sizeof(s->identify_data));
}

B
bellard 已提交
290 291 292 293 294 295
static void ide_set_signature(IDEState *s)
{
    s->select &= 0xf0; /* clear head */
    /* put signature */
    s->nsector = 1;
    s->sector = 1;
296
    if (s->drive_kind == IDE_CD) {
B
bellard 已提交
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
        s->lcyl = 0x14;
        s->hcyl = 0xeb;
    } else if (s->bs) {
        s->lcyl = 0;
        s->hcyl = 0;
    } else {
        s->lcyl = 0xff;
        s->hcyl = 0xff;
    }
}

static inline void ide_abort_command(IDEState *s)
{
    s->status = READY_STAT | ERR_STAT;
    s->error = ABRT_ERR;
}

314 315 316 317 318 319 320 321
static inline void ide_dma_submit_check(IDEState *s,
          BlockDriverCompletionFunc *dma_cb, BMDMAState *bm)
{
    if (bm->aiocb)
	return;
    dma_cb(bm, -1);
}

B
bellard 已提交
322
/* prepare data transfer and tell what to do after */
323
static void ide_transfer_start(IDEState *s, uint8_t *buf, int size,
B
bellard 已提交
324 325 326 327 328
                               EndTransferFunc *end_transfer_func)
{
    s->end_transfer_func = end_transfer_func;
    s->data_ptr = buf;
    s->data_end = buf + size;
329 330
    if (!(s->status & ERR_STAT))
        s->status |= DRQ_STAT;
B
bellard 已提交
331 332 333 334 335 336 337 338 339 340
}

static void ide_transfer_stop(IDEState *s)
{
    s->end_transfer_func = ide_transfer_stop;
    s->data_ptr = s->io_buffer;
    s->data_end = s->io_buffer;
    s->status &= ~DRQ_STAT;
}

G
Gerd Hoffmann 已提交
341
int64_t ide_get_sector(IDEState *s)
B
bellard 已提交
342 343 344 345
{
    int64_t sector_num;
    if (s->select & 0x40) {
        /* lba */
B
bellard 已提交
346 347 348 349 350 351 352 353 354 355
	if (!s->lba48) {
	    sector_num = ((s->select & 0x0f) << 24) | (s->hcyl << 16) |
		(s->lcyl << 8) | s->sector;
	} else {
	    sector_num = ((int64_t)s->hob_hcyl << 40) |
		((int64_t) s->hob_lcyl << 32) |
		((int64_t) s->hob_sector << 24) |
		((int64_t) s->hcyl << 16) |
		((int64_t) s->lcyl << 8) | s->sector;
	}
B
bellard 已提交
356 357
    } else {
        sector_num = ((s->hcyl << 8) | s->lcyl) * s->heads * s->sectors +
B
bellard 已提交
358
            (s->select & 0x0f) * s->sectors + (s->sector - 1);
B
bellard 已提交
359 360 361 362
    }
    return sector_num;
}

G
Gerd Hoffmann 已提交
363
void ide_set_sector(IDEState *s, int64_t sector_num)
B
bellard 已提交
364 365 366
{
    unsigned int cyl, r;
    if (s->select & 0x40) {
B
bellard 已提交
367 368 369 370 371 372 373 374 375 376 377 378 379
	if (!s->lba48) {
            s->select = (s->select & 0xf0) | (sector_num >> 24);
            s->hcyl = (sector_num >> 16);
            s->lcyl = (sector_num >> 8);
            s->sector = (sector_num);
	} else {
	    s->sector = sector_num;
	    s->lcyl = sector_num >> 8;
	    s->hcyl = sector_num >> 16;
	    s->hob_sector = sector_num >> 24;
	    s->hob_lcyl = sector_num >> 32;
	    s->hob_hcyl = sector_num >> 40;
	}
B
bellard 已提交
380 381 382 383 384
    } else {
        cyl = sector_num / (s->heads * s->sectors);
        r = sector_num % (s->heads * s->sectors);
        s->hcyl = cyl >> 8;
        s->lcyl = cyl;
385
        s->select = (s->select & 0xf0) | ((r / s->sectors) & 0x0f);
B
bellard 已提交
386 387 388 389
        s->sector = (r % s->sectors) + 1;
    }
}

390 391
static void ide_rw_error(IDEState *s) {
    ide_abort_command(s);
392
    ide_set_irq(s->bus);
393 394
}

B
bellard 已提交
395 396 397 398 399 400
static void ide_sector_read(IDEState *s)
{
    int64_t sector_num;
    int ret, n;

    s->status = READY_STAT | SEEK_STAT;
401
    s->error = 0; /* not needed by IDE spec, but needed by Windows */
B
bellard 已提交
402 403 404 405 406 407 408
    sector_num = ide_get_sector(s);
    n = s->nsector;
    if (n == 0) {
        /* no more sector to read from disk */
        ide_transfer_stop(s);
    } else {
#if defined(DEBUG_IDE)
409
        printf("read sector=%" PRId64 "\n", sector_num);
B
bellard 已提交
410 411 412 413
#endif
        if (n > s->req_nb_sectors)
            n = s->req_nb_sectors;
        ret = bdrv_read(s->bs, sector_num, s->io_buffer, n);
414
        if (ret != 0) {
K
Kevin Wolf 已提交
415 416 417 418 419
            if (ide_handle_rw_error(s, -ret,
                BM_STATUS_PIO_RETRY | BM_STATUS_RETRY_READ))
            {
                return;
            }
420
        }
B
bellard 已提交
421
        ide_transfer_start(s, s->io_buffer, 512 * n, ide_sector_read);
422
        ide_set_irq(s->bus);
B
bellard 已提交
423 424 425 426 427
        ide_set_sector(s, sector_num + n);
        s->nsector -= n;
    }
}

428 429 430 431

/* return 0 if buffer completed */
static int dma_buf_prepare(BMDMAState *bm, int is_write)
{
G
Gerd Hoffmann 已提交
432
    IDEState *s = bmdma_active_if(bm);
433 434 435 436 437 438
    struct {
        uint32_t addr;
        uint32_t size;
    } prd;
    int l, len;

B
Blue Swirl 已提交
439
    qemu_sglist_init(&s->sg, s->nsector / (IDE_PAGE_SIZE / 512) + 1);
440 441 442 443 444
    s->io_buffer_size = 0;
    for(;;) {
        if (bm->cur_prd_len == 0) {
            /* end of table (with a fail safe of one page) */
            if (bm->cur_prd_last ||
B
Blue Swirl 已提交
445
                (bm->cur_addr - bm->addr) >= IDE_PAGE_SIZE)
446 447 448 449 450 451 452 453 454 455 456 457 458 459
                return s->io_buffer_size != 0;
            cpu_physical_memory_read(bm->cur_addr, (uint8_t *)&prd, 8);
            bm->cur_addr += 8;
            prd.addr = le32_to_cpu(prd.addr);
            prd.size = le32_to_cpu(prd.size);
            len = prd.size & 0xfffe;
            if (len == 0)
                len = 0x10000;
            bm->cur_prd_len = len;
            bm->cur_prd_addr = prd.addr;
            bm->cur_prd_last = (prd.size & 0x80000000);
        }
        l = bm->cur_prd_len;
        if (l > 0) {
460 461 462 463
            qemu_sglist_add(&s->sg, bm->cur_prd_addr, l);
            bm->cur_prd_addr += l;
            bm->cur_prd_len -= l;
            s->io_buffer_size += l;
464 465 466 467 468 469 470
        }
    }
    return 1;
}

static void dma_buf_commit(IDEState *s, int is_write)
{
471
    qemu_sglist_destroy(&s->sg);
472 473
}

G
Gerd Hoffmann 已提交
474
void ide_dma_error(IDEState *s)
475 476 477 478
{
    ide_transfer_stop(s);
    s->error = ABRT_ERR;
    s->status = READY_STAT | ERR_STAT;
479
    ide_set_irq(s->bus);
480 481
}

K
Kevin Wolf 已提交
482
static int ide_handle_rw_error(IDEState *s, int error, int op)
483
{
K
Kevin Wolf 已提交
484
    int is_read = (op & BM_STATUS_RETRY_READ);
485
    BlockErrorAction action = bdrv_get_on_error(s->bs, is_read);
486

487 488
    if (action == BLOCK_ERR_IGNORE) {
        bdrv_mon_event(s->bs, BDRV_ACTION_IGNORE, is_read);
489
        return 0;
490
    }
491 492 493

    if ((error == ENOSPC && action == BLOCK_ERR_STOP_ENOSPC)
            || action == BLOCK_ERR_STOP_ANY) {
G
Gerd Hoffmann 已提交
494 495
        s->bus->bmdma->unit = s->unit;
        s->bus->bmdma->status |= op;
496
        bdrv_mon_event(s->bs, BDRV_ACTION_STOP, is_read);
497
        vm_stop(0);
498
    } else {
K
Kevin Wolf 已提交
499
        if (op & BM_STATUS_DMA_RETRY) {
500
            dma_buf_commit(s, 0);
501
            ide_dma_error(s);
502
        } else {
503
            ide_rw_error(s);
504
        }
505
        bdrv_mon_event(s->bs, BDRV_ACTION_REPORT, is_read);
506 507 508 509 510
    }

    return 1;
}

511 512
/* return 0 if buffer completed */
static int dma_buf_rw(BMDMAState *bm, int is_write)
B
bellard 已提交
513
{
G
Gerd Hoffmann 已提交
514
    IDEState *s = bmdma_active_if(bm);
515 516 517 518 519
    struct {
        uint32_t addr;
        uint32_t size;
    } prd;
    int l, len;
B
bellard 已提交
520

521 522
    for(;;) {
        l = s->io_buffer_size - s->io_buffer_index;
523
        if (l <= 0)
524 525 526 527
            break;
        if (bm->cur_prd_len == 0) {
            /* end of table (with a fail safe of one page) */
            if (bm->cur_prd_last ||
B
Blue Swirl 已提交
528
                (bm->cur_addr - bm->addr) >= IDE_PAGE_SIZE)
529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
                return 0;
            cpu_physical_memory_read(bm->cur_addr, (uint8_t *)&prd, 8);
            bm->cur_addr += 8;
            prd.addr = le32_to_cpu(prd.addr);
            prd.size = le32_to_cpu(prd.size);
            len = prd.size & 0xfffe;
            if (len == 0)
                len = 0x10000;
            bm->cur_prd_len = len;
            bm->cur_prd_addr = prd.addr;
            bm->cur_prd_last = (prd.size & 0x80000000);
        }
        if (l > bm->cur_prd_len)
            l = bm->cur_prd_len;
        if (l > 0) {
            if (is_write) {
545
                cpu_physical_memory_write(bm->cur_prd_addr,
546 547
                                          s->io_buffer + s->io_buffer_index, l);
            } else {
548
                cpu_physical_memory_read(bm->cur_prd_addr,
549 550 551 552 553
                                          s->io_buffer + s->io_buffer_index, l);
            }
            bm->cur_prd_addr += l;
            bm->cur_prd_len -= l;
            s->io_buffer_index += l;
B
bellard 已提交
554 555
        }
    }
556 557 558 559 560 561
    return 1;
}

static void ide_read_dma_cb(void *opaque, int ret)
{
    BMDMAState *bm = opaque;
G
Gerd Hoffmann 已提交
562
    IDEState *s = bmdma_active_if(bm);
563 564 565
    int n;
    int64_t sector_num;

566
    if (ret < 0) {
K
Kevin Wolf 已提交
567 568 569 570 571
        if (ide_handle_rw_error(s, -ret,
            BM_STATUS_DMA_RETRY | BM_STATUS_RETRY_READ))
        {
            return;
        }
572 573
    }

574 575 576
    n = s->io_buffer_size >> 9;
    sector_num = ide_get_sector(s);
    if (n > 0) {
577
        dma_buf_commit(s, 1);
578 579 580 581 582 583 584
        sector_num += n;
        ide_set_sector(s, sector_num);
        s->nsector -= n;
    }

    /* end of transfer ? */
    if (s->nsector == 0) {
B
bellard 已提交
585
        s->status = READY_STAT | SEEK_STAT;
586
        ide_set_irq(s->bus);
587 588 589 590
    eot:
        bm->status &= ~BM_STATUS_DMAING;
        bm->status |= BM_STATUS_INT;
        bm->dma_cb = NULL;
G
Gerd Hoffmann 已提交
591
        bm->unit = -1;
592 593
        bm->aiocb = NULL;
        return;
B
bellard 已提交
594
    }
595 596 597 598 599

    /* launch next transfer */
    n = s->nsector;
    s->io_buffer_index = 0;
    s->io_buffer_size = n * 512;
600 601
    if (dma_buf_prepare(bm, 1) == 0)
        goto eot;
602
#ifdef DEBUG_AIO
B
blueswir1 已提交
603
    printf("aio_read: sector_num=%" PRId64 " n=%d\n", sector_num, n);
604
#endif
605
    bm->aiocb = dma_bdrv_read(s->bs, &s->sg, sector_num, ide_read_dma_cb, bm);
606
    ide_dma_submit_check(s, ide_read_dma_cb, bm);
B
bellard 已提交
607 608 609 610
}

static void ide_sector_read_dma(IDEState *s)
{
611
    s->status = READY_STAT | SEEK_STAT | DRQ_STAT | BUSY_STAT;
B
bellard 已提交
612 613
    s->io_buffer_index = 0;
    s->io_buffer_size = 0;
A
aurel32 已提交
614
    s->is_read = 1;
B
bellard 已提交
615 616 617
    ide_dma_start(s, ide_read_dma_cb);
}

618 619 620
static void ide_sector_write_timer_cb(void *opaque)
{
    IDEState *s = opaque;
621
    ide_set_irq(s->bus);
622 623
}

B
bellard 已提交
624 625 626
static void ide_sector_write(IDEState *s)
{
    int64_t sector_num;
627
    int ret, n, n1;
B
bellard 已提交
628 629 630 631

    s->status = READY_STAT | SEEK_STAT;
    sector_num = ide_get_sector(s);
#if defined(DEBUG_IDE)
632
    printf("write sector=%" PRId64 "\n", sector_num);
B
bellard 已提交
633 634 635 636
#endif
    n = s->nsector;
    if (n > s->req_nb_sectors)
        n = s->req_nb_sectors;
637
    ret = bdrv_write(s->bs, sector_num, s->io_buffer, n);
638

639
    if (ret != 0) {
K
Kevin Wolf 已提交
640
        if (ide_handle_rw_error(s, -ret, BM_STATUS_PIO_RETRY))
641
            return;
642 643
    }

B
bellard 已提交
644 645
    s->nsector -= n;
    if (s->nsector == 0) {
T
ths 已提交
646
        /* no more sectors to write */
B
bellard 已提交
647 648 649 650 651 652 653 654
        ide_transfer_stop(s);
    } else {
        n1 = s->nsector;
        if (n1 > s->req_nb_sectors)
            n1 = s->req_nb_sectors;
        ide_transfer_start(s, s->io_buffer, 512 * n1, ide_sector_write);
    }
    ide_set_sector(s, sector_num + n);
655

656 657 658 659 660 661 662
    if (win2k_install_hack && ((++s->irq_count % 16) == 0)) {
        /* It seems there is a bug in the Windows 2000 installer HDD
           IDE driver which fills the disk with empty logs when the
           IDE write IRQ comes too early. This hack tries to correct
           that at the expense of slower write performances. Use this
           option _only_ to install Windows 2000. You must disable it
           for normal use. */
B
Blue Swirl 已提交
663
        qemu_mod_timer(s->sector_write_timer,
664
                       qemu_get_clock(vm_clock) + (get_ticks_per_sec() / 1000));
B
Blue Swirl 已提交
665
    } else {
666
        ide_set_irq(s->bus);
667
    }
B
bellard 已提交
668 669
}

670
static void ide_dma_restart_bh(void *opaque)
671 672
{
    BMDMAState *bm = opaque;
K
Kevin Wolf 已提交
673
    int is_read;
674 675 676 677

    qemu_bh_delete(bm->bh);
    bm->bh = NULL;

K
Kevin Wolf 已提交
678 679
    is_read = !!(bm->status & BM_STATUS_RETRY_READ);

680
    if (bm->status & BM_STATUS_DMA_RETRY) {
K
Kevin Wolf 已提交
681 682
        bm->status &= ~(BM_STATUS_DMA_RETRY | BM_STATUS_RETRY_READ);
        ide_dma_restart(bmdma_active_if(bm), is_read);
683
    } else if (bm->status & BM_STATUS_PIO_RETRY) {
K
Kevin Wolf 已提交
684 685 686 687 688 689
        bm->status &= ~(BM_STATUS_PIO_RETRY | BM_STATUS_RETRY_READ);
        if (is_read) {
            ide_sector_read(bmdma_active_if(bm));
        } else {
            ide_sector_write(bmdma_active_if(bm));
        }
690 691 692
    }
}

G
Gerd Hoffmann 已提交
693
void ide_dma_restart_cb(void *opaque, int running, int reason)
694 695 696 697 698 699 700 701 702 703 704 705
{
    BMDMAState *bm = opaque;

    if (!running)
        return;

    if (!bm->bh) {
        bm->bh = qemu_bh_new(ide_dma_restart_bh, bm);
        qemu_bh_schedule(bm->bh);
    }
}

706
static void ide_write_dma_cb(void *opaque, int ret)
B
bellard 已提交
707
{
708
    BMDMAState *bm = opaque;
G
Gerd Hoffmann 已提交
709
    IDEState *s = bmdma_active_if(bm);
710
    int n;
B
bellard 已提交
711 712
    int64_t sector_num;

713
    if (ret < 0) {
K
Kevin Wolf 已提交
714
        if (ide_handle_rw_error(s, -ret,  BM_STATUS_DMA_RETRY))
715
            return;
716 717
    }

718 719 720
    n = s->io_buffer_size >> 9;
    sector_num = ide_get_sector(s);
    if (n > 0) {
721
        dma_buf_commit(s, 0);
722 723 724
        sector_num += n;
        ide_set_sector(s, sector_num);
        s->nsector -= n;
B
bellard 已提交
725 726
    }

727 728 729
    /* end of transfer ? */
    if (s->nsector == 0) {
        s->status = READY_STAT | SEEK_STAT;
730
        ide_set_irq(s->bus);
731 732 733 734
    eot:
        bm->status &= ~BM_STATUS_DMAING;
        bm->status |= BM_STATUS_INT;
        bm->dma_cb = NULL;
G
Gerd Hoffmann 已提交
735
        bm->unit = -1;
736 737 738 739
        bm->aiocb = NULL;
        return;
    }

B
bellard 已提交
740 741
    n = s->nsector;
    s->io_buffer_size = n * 512;
742 743
    /* launch next transfer */
    if (dma_buf_prepare(bm, 0) == 0)
744 745
        goto eot;
#ifdef DEBUG_AIO
B
blueswir1 已提交
746
    printf("aio_write: sector_num=%" PRId64 " n=%d\n", sector_num, n);
747
#endif
748
    bm->aiocb = dma_bdrv_write(s->bs, &s->sg, sector_num, ide_write_dma_cb, bm);
749
    ide_dma_submit_check(s, ide_write_dma_cb, bm);
750 751 752 753 754 755 756
}

static void ide_sector_write_dma(IDEState *s)
{
    s->status = READY_STAT | SEEK_STAT | DRQ_STAT | BUSY_STAT;
    s->io_buffer_index = 0;
    s->io_buffer_size = 0;
A
aurel32 已提交
757
    s->is_read = 0;
B
bellard 已提交
758 759 760
    ide_dma_start(s, ide_write_dma_cb);
}

G
Gerd Hoffmann 已提交
761
void ide_atapi_cmd_ok(IDEState *s)
B
bellard 已提交
762 763
{
    s->error = 0;
A
aliguori 已提交
764
    s->status = READY_STAT | SEEK_STAT;
B
bellard 已提交
765
    s->nsector = (s->nsector & ~7) | ATAPI_INT_REASON_IO | ATAPI_INT_REASON_CD;
766
    ide_set_irq(s->bus);
B
bellard 已提交
767 768
}

G
Gerd Hoffmann 已提交
769
void ide_atapi_cmd_error(IDEState *s, int sense_key, int asc)
B
bellard 已提交
770 771 772 773 774 775 776 777 778
{
#ifdef DEBUG_IDE_ATAPI
    printf("atapi_cmd_error: sense=0x%x asc=0x%x\n", sense_key, asc);
#endif
    s->error = sense_key << 4;
    s->status = READY_STAT | ERR_STAT;
    s->nsector = (s->nsector & ~7) | ATAPI_INT_REASON_IO | ATAPI_INT_REASON_CD;
    s->sense_key = sense_key;
    s->asc = asc;
779
    ide_set_irq(s->bus);
B
bellard 已提交
780 781
}

782 783 784 785 786 787 788 789
static void ide_atapi_cmd_check_status(IDEState *s)
{
#ifdef DEBUG_IDE_ATAPI
    printf("atapi_cmd_check_status\n");
#endif
    s->error = MC_ERR | (SENSE_UNIT_ATTENTION << 4);
    s->status = ERR_STAT;
    s->nsector = 0;
790
    ide_set_irq(s->bus);
791 792
}

C
Christoph Hellwig 已提交
793 794 795 796 797 798 799 800 801 802
static void ide_flush_cb(void *opaque, int ret)
{
    IDEState *s = opaque;

    /* XXX: how do we signal I/O errors here? */

    s->status = READY_STAT | SEEK_STAT;
    ide_set_irq(s->bus);
}

B
bellard 已提交
803 804 805
static inline void cpu_to_ube16(uint8_t *buf, int val)
{
    buf[0] = val >> 8;
B
blueswir1 已提交
806
    buf[1] = val & 0xff;
B
bellard 已提交
807 808 809 810 811 812 813
}

static inline void cpu_to_ube32(uint8_t *buf, unsigned int val)
{
    buf[0] = val >> 24;
    buf[1] = val >> 16;
    buf[2] = val >> 8;
B
blueswir1 已提交
814
    buf[3] = val & 0xff;
B
bellard 已提交
815 816 817 818 819 820 821 822 823 824 825 826
}

static inline int ube16_to_cpu(const uint8_t *buf)
{
    return (buf[0] << 8) | buf[1];
}

static inline int ube32_to_cpu(const uint8_t *buf)
{
    return (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
}

B
bellard 已提交
827 828 829 830 831 832 833 834
static void lba_to_msf(uint8_t *buf, int lba)
{
    lba += 150;
    buf[0] = (lba / 75) / 60;
    buf[1] = (lba / 75) % 60;
    buf[2] = lba % 75;
}

835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851
static void cd_data_to_raw(uint8_t *buf, int lba)
{
    /* sync bytes */
    buf[0] = 0x00;
    memset(buf + 1, 0xff, 10);
    buf[11] = 0x00;
    buf += 12;
    /* MSF */
    lba_to_msf(buf, lba);
    buf[3] = 0x01; /* mode 1 data */
    buf += 4;
    /* data */
    buf += 2048;
    /* XXX: ECC not computed */
    memset(buf, 0, 288);
}

852
static int cd_read_sector(BlockDriverState *bs, int lba, uint8_t *buf,
B
bellard 已提交
853 854
                           int sector_size)
{
B
bellard 已提交
855 856
    int ret;

B
bellard 已提交
857 858
    switch(sector_size) {
    case 2048:
B
bellard 已提交
859
        ret = bdrv_read(bs, (int64_t)lba << 2, buf, 4);
B
bellard 已提交
860 861
        break;
    case 2352:
B
bellard 已提交
862 863 864
        ret = bdrv_read(bs, (int64_t)lba << 2, buf + 16, 4);
        if (ret < 0)
            return ret;
865
        cd_data_to_raw(buf, lba);
B
bellard 已提交
866 867
        break;
    default:
B
bellard 已提交
868
        ret = -EIO;
B
bellard 已提交
869 870
        break;
    }
B
bellard 已提交
871 872 873
    return ret;
}

G
Gerd Hoffmann 已提交
874
void ide_atapi_io_error(IDEState *s, int ret)
B
bellard 已提交
875 876 877
{
    /* XXX: handle more errors */
    if (ret == -ENOMEDIUM) {
878
        ide_atapi_cmd_error(s, SENSE_NOT_READY,
B
bellard 已提交
879 880
                            ASC_MEDIUM_NOT_PRESENT);
    } else {
881
        ide_atapi_cmd_error(s, SENSE_ILLEGAL_REQUEST,
B
bellard 已提交
882 883
                            ASC_LOGICAL_BLOCK_OOR);
    }
B
bellard 已提交
884 885
}

B
bellard 已提交
886 887 888
/* The whole ATAPI transfer logic is handled in this function */
static void ide_atapi_cmd_reply_end(IDEState *s)
{
B
bellard 已提交
889
    int byte_count_limit, size, ret;
B
bellard 已提交
890
#ifdef DEBUG_IDE_ATAPI
891
    printf("reply: tx_size=%d elem_tx_size=%d index=%d\n",
B
bellard 已提交
892 893 894 895 896 897 898
           s->packet_transfer_size,
           s->elementary_transfer_size,
           s->io_buffer_index);
#endif
    if (s->packet_transfer_size <= 0) {
        /* end of transfer */
        ide_transfer_stop(s);
A
aliguori 已提交
899
        s->status = READY_STAT | SEEK_STAT;
B
bellard 已提交
900
        s->nsector = (s->nsector & ~7) | ATAPI_INT_REASON_IO | ATAPI_INT_REASON_CD;
901
        ide_set_irq(s->bus);
B
bellard 已提交
902 903 904 905 906
#ifdef DEBUG_IDE_ATAPI
        printf("status=0x%x\n", s->status);
#endif
    } else {
        /* see if a new sector must be read */
B
bellard 已提交
907
        if (s->lba != -1 && s->io_buffer_index >= s->cd_sector_size) {
B
bellard 已提交
908 909 910 911 912 913
            ret = cd_read_sector(s->bs, s->lba, s->io_buffer, s->cd_sector_size);
            if (ret < 0) {
                ide_transfer_stop(s);
                ide_atapi_io_error(s, ret);
                return;
            }
B
bellard 已提交
914 915 916 917 918 919
            s->lba++;
            s->io_buffer_index = 0;
        }
        if (s->elementary_transfer_size > 0) {
            /* there are some data left to transmit in this elementary
               transfer */
B
bellard 已提交
920
            size = s->cd_sector_size - s->io_buffer_index;
B
bellard 已提交
921 922
            if (size > s->elementary_transfer_size)
                size = s->elementary_transfer_size;
923
            ide_transfer_start(s, s->io_buffer + s->io_buffer_index,
B
bellard 已提交
924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943
                               size, ide_atapi_cmd_reply_end);
            s->packet_transfer_size -= size;
            s->elementary_transfer_size -= size;
            s->io_buffer_index += size;
        } else {
            /* a new transfer is needed */
            s->nsector = (s->nsector & ~7) | ATAPI_INT_REASON_IO;
            byte_count_limit = s->lcyl | (s->hcyl << 8);
#ifdef DEBUG_IDE_ATAPI
            printf("byte_count_limit=%d\n", byte_count_limit);
#endif
            if (byte_count_limit == 0xffff)
                byte_count_limit--;
            size = s->packet_transfer_size;
            if (size > byte_count_limit) {
                /* byte count limit must be even if this case */
                if (byte_count_limit & 1)
                    byte_count_limit--;
                size = byte_count_limit;
            }
944 945
            s->lcyl = size;
            s->hcyl = size >> 8;
B
bellard 已提交
946 947 948
            s->elementary_transfer_size = size;
            /* we cannot transmit more than one sector at a time */
            if (s->lba != -1) {
B
bellard 已提交
949 950
                if (size > (s->cd_sector_size - s->io_buffer_index))
                    size = (s->cd_sector_size - s->io_buffer_index);
B
bellard 已提交
951
            }
952
            ide_transfer_start(s, s->io_buffer + s->io_buffer_index,
B
bellard 已提交
953 954 955 956
                               size, ide_atapi_cmd_reply_end);
            s->packet_transfer_size -= size;
            s->elementary_transfer_size -= size;
            s->io_buffer_index += size;
957
            ide_set_irq(s->bus);
B
bellard 已提交
958 959 960 961 962 963 964 965 966 967 968 969 970 971
#ifdef DEBUG_IDE_ATAPI
            printf("status=0x%x\n", s->status);
#endif
        }
    }
}

/* send a reply of 'size' bytes in s->io_buffer to an ATAPI command */
static void ide_atapi_cmd_reply(IDEState *s, int size, int max_size)
{
    if (size > max_size)
        size = max_size;
    s->lba = -1; /* no sector read */
    s->packet_transfer_size = size;
972
    s->io_buffer_size = size;    /* dma: send the reply data as one chunk */
B
bellard 已提交
973 974 975
    s->elementary_transfer_size = 0;
    s->io_buffer_index = 0;

976
    if (s->atapi_dma) {
A
aliguori 已提交
977
    	s->status = READY_STAT | SEEK_STAT | DRQ_STAT;
978 979
	ide_dma_start(s, ide_atapi_cmd_read_dma_cb);
    } else {
A
aliguori 已提交
980
    	s->status = READY_STAT | SEEK_STAT;
981 982
    	ide_atapi_cmd_reply_end(s);
    }
B
bellard 已提交
983 984 985
}

/* start a CD-CDROM read command */
B
bellard 已提交
986 987
static void ide_atapi_cmd_read_pio(IDEState *s, int lba, int nb_sectors,
                                   int sector_size)
B
bellard 已提交
988 989
{
    s->lba = lba;
B
bellard 已提交
990
    s->packet_transfer_size = nb_sectors * sector_size;
B
bellard 已提交
991
    s->elementary_transfer_size = 0;
B
bellard 已提交
992 993
    s->io_buffer_index = sector_size;
    s->cd_sector_size = sector_size;
B
bellard 已提交
994

A
aliguori 已提交
995
    s->status = READY_STAT | SEEK_STAT;
B
bellard 已提交
996 997 998
    ide_atapi_cmd_reply_end(s);
}

B
bellard 已提交
999
/* ATAPI DMA support */
1000 1001 1002

/* XXX: handle read errors */
static void ide_atapi_cmd_read_dma_cb(void *opaque, int ret)
B
bellard 已提交
1003
{
1004
    BMDMAState *bm = opaque;
G
Gerd Hoffmann 已提交
1005
    IDEState *s = bmdma_active_if(bm);
1006 1007
    int data_offset, n;

B
bellard 已提交
1008 1009 1010 1011 1012
    if (ret < 0) {
        ide_atapi_io_error(s, ret);
        goto eot;
    }

1013
    if (s->io_buffer_size > 0) {
1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
	/*
	 * For a cdrom read sector command (s->lba != -1),
	 * adjust the lba for the next s->io_buffer_size chunk
	 * and dma the current chunk.
	 * For a command != read (s->lba == -1), just transfer
	 * the reply data.
	 */
	if (s->lba != -1) {
	    if (s->cd_sector_size == 2352) {
		n = 1;
		cd_data_to_raw(s->io_buffer, s->lba);
	    } else {
		n = s->io_buffer_size >> 11;
	    }
	    s->lba += n;
	}
1030 1031 1032
        s->packet_transfer_size -= s->io_buffer_size;
        if (dma_buf_rw(bm, 1) == 0)
            goto eot;
B
bellard 已提交
1033
    }
1034

B
bellard 已提交
1035
    if (s->packet_transfer_size <= 0) {
A
aliguori 已提交
1036
        s->status = READY_STAT | SEEK_STAT;
B
bellard 已提交
1037
        s->nsector = (s->nsector & ~7) | ATAPI_INT_REASON_IO | ATAPI_INT_REASON_CD;
1038
        ide_set_irq(s->bus);
1039 1040 1041 1042
    eot:
        bm->status &= ~BM_STATUS_DMAING;
        bm->status |= BM_STATUS_INT;
        bm->dma_cb = NULL;
G
Gerd Hoffmann 已提交
1043
        bm->unit = -1;
1044 1045 1046
        bm->aiocb = NULL;
        return;
    }
1047

1048 1049 1050 1051 1052 1053 1054
    s->io_buffer_index = 0;
    if (s->cd_sector_size == 2352) {
        n = 1;
        s->io_buffer_size = s->cd_sector_size;
        data_offset = 16;
    } else {
        n = s->packet_transfer_size >> 11;
1055 1056
        if (n > (IDE_DMA_BUF_SECTORS / 4))
            n = (IDE_DMA_BUF_SECTORS / 4);
1057 1058
        s->io_buffer_size = n * 2048;
        data_offset = 0;
B
bellard 已提交
1059
    }
1060 1061 1062
#ifdef DEBUG_AIO
    printf("aio_read_cd: lba=%u n=%d\n", s->lba, n);
#endif
1063
    bm->iov.iov_base = (void *)(s->io_buffer + data_offset);
1064 1065 1066 1067
    bm->iov.iov_len = n * 4 * 512;
    qemu_iovec_init_external(&bm->qiov, &bm->iov, 1);
    bm->aiocb = bdrv_aio_readv(s->bs, (int64_t)s->lba << 2, &bm->qiov,
                               n * 4, ide_atapi_cmd_read_dma_cb, bm);
B
bellard 已提交
1068 1069
    if (!bm->aiocb) {
        /* Note: media not present is the most likely case */
1070
        ide_atapi_cmd_error(s, SENSE_NOT_READY,
B
bellard 已提交
1071 1072 1073
                            ASC_MEDIUM_NOT_PRESENT);
        goto eot;
    }
B
bellard 已提交
1074 1075 1076 1077 1078 1079 1080 1081 1082
}

/* start a CD-CDROM read command with DMA */
/* XXX: test if DMA is available */
static void ide_atapi_cmd_read_dma(IDEState *s, int lba, int nb_sectors,
                                   int sector_size)
{
    s->lba = lba;
    s->packet_transfer_size = nb_sectors * sector_size;
1083 1084
    s->io_buffer_index = 0;
    s->io_buffer_size = 0;
B
bellard 已提交
1085 1086
    s->cd_sector_size = sector_size;

1087
    /* XXX: check if BUSY_STAT should be set */
A
aliguori 已提交
1088
    s->status = READY_STAT | SEEK_STAT | DRQ_STAT | BUSY_STAT;
B
bellard 已提交
1089 1090 1091
    ide_dma_start(s, ide_atapi_cmd_read_dma_cb);
}

1092
static void ide_atapi_cmd_read(IDEState *s, int lba, int nb_sectors,
B
bellard 已提交
1093 1094 1095
                               int sector_size)
{
#ifdef DEBUG_IDE_ATAPI
1096 1097
    printf("read %s: LBA=%d nb_sectors=%d\n", s->atapi_dma ? "dma" : "pio",
	lba, nb_sectors);
B
bellard 已提交
1098 1099 1100 1101 1102 1103 1104 1105
#endif
    if (s->atapi_dma) {
        ide_atapi_cmd_read_dma(s, lba, nb_sectors, sector_size);
    } else {
        ide_atapi_cmd_read_pio(s, lba, nb_sectors, sector_size);
    }
}

1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
static inline uint8_t ide_atapi_set_profile(uint8_t *buf, uint8_t *index,
                                            uint16_t profile)
{
    uint8_t *buf_profile = buf + 12; /* start of profiles */

    buf_profile += ((*index) * 4); /* start of indexed profile */
    cpu_to_ube16 (buf_profile, profile);
    buf_profile[2] = ((buf_profile[0] == buf[6]) && (buf_profile[1] == buf[7]));

    /* each profile adds 4 bytes to the response */
    (*index)++;
    buf[11] += 4; /* Additional Length */

    return 4;
}

1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208
static int ide_dvd_read_structure(IDEState *s, int format,
                                  const uint8_t *packet, uint8_t *buf)
{
    switch (format) {
        case 0x0: /* Physical format information */
            {
                int layer = packet[6];
                uint64_t total_sectors;

                if (layer != 0)
                    return -ASC_INV_FIELD_IN_CMD_PACKET;

                bdrv_get_geometry(s->bs, &total_sectors);
                total_sectors >>= 2;
                if (total_sectors == 0)
                    return -ASC_MEDIUM_NOT_PRESENT;

                buf[4] = 1;   /* DVD-ROM, part version 1 */
                buf[5] = 0xf; /* 120mm disc, minimum rate unspecified */
                buf[6] = 1;   /* one layer, read-only (per MMC-2 spec) */
                buf[7] = 0;   /* default densities */

                /* FIXME: 0x30000 per spec? */
                cpu_to_ube32(buf + 8, 0); /* start sector */
                cpu_to_ube32(buf + 12, total_sectors - 1); /* end sector */
                cpu_to_ube32(buf + 16, total_sectors - 1); /* l0 end sector */

                /* Size of buffer, not including 2 byte size field */
                cpu_to_be16wu((uint16_t *)buf, 2048 + 2);

                /* 2k data + 4 byte header */
                return (2048 + 4);
            }

        case 0x01: /* DVD copyright information */
            buf[4] = 0; /* no copyright data */
            buf[5] = 0; /* no region restrictions */

            /* Size of buffer, not including 2 byte size field */
            cpu_to_be16wu((uint16_t *)buf, 4 + 2);

            /* 4 byte header + 4 byte data */
            return (4 + 4);

        case 0x03: /* BCA information - invalid field for no BCA info */
            return -ASC_INV_FIELD_IN_CMD_PACKET;

        case 0x04: /* DVD disc manufacturing information */
            /* Size of buffer, not including 2 byte size field */
            cpu_to_be16wu((uint16_t *)buf, 2048 + 2);

            /* 2k data + 4 byte header */
            return (2048 + 4);

        case 0xff:
            /*
             * This lists all the command capabilities above.  Add new ones
             * in order and update the length and buffer return values.
             */

            buf[4] = 0x00; /* Physical format */
            buf[5] = 0x40; /* Not writable, is readable */
            cpu_to_be16wu((uint16_t *)(buf + 6), 2048 + 4);

            buf[8] = 0x01; /* Copyright info */
            buf[9] = 0x40; /* Not writable, is readable */
            cpu_to_be16wu((uint16_t *)(buf + 10), 4 + 4);

            buf[12] = 0x03; /* BCA info */
            buf[13] = 0x40; /* Not writable, is readable */
            cpu_to_be16wu((uint16_t *)(buf + 14), 188 + 4);

            buf[16] = 0x04; /* Manufacturing info */
            buf[17] = 0x40; /* Not writable, is readable */
            cpu_to_be16wu((uint16_t *)(buf + 18), 2048 + 4);

            /* Size of buffer, not including 2 byte size field */
            cpu_to_be16wu((uint16_t *)buf, 16 + 2);

            /* data written + 4 byte header */
            return (16 + 4);

        default: /* TODO: formats beyond DVD-ROM requires */
            return -ASC_INV_FIELD_IN_CMD_PACKET;
    }
}

B
bellard 已提交
1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226
static void ide_atapi_cmd(IDEState *s)
{
    const uint8_t *packet;
    uint8_t *buf;
    int max_len;

    packet = s->io_buffer;
    buf = s->io_buffer;
#ifdef DEBUG_IDE_ATAPI
    {
        int i;
        printf("ATAPI limit=0x%x packet:", s->lcyl | (s->hcyl << 8));
        for(i = 0; i < ATAPI_PACKET_SIZE; i++) {
            printf(" %02x", packet[i]);
        }
        printf("\n");
    }
#endif
1227 1228 1229 1230 1231 1232 1233 1234
    /* If there's a UNIT_ATTENTION condition pending, only
       REQUEST_SENSE and INQUIRY commands are allowed to complete. */
    if (s->sense_key == SENSE_UNIT_ATTENTION &&
	s->io_buffer[0] != GPCMD_REQUEST_SENSE &&
	s->io_buffer[0] != GPCMD_INQUIRY) {
	ide_atapi_cmd_check_status(s);
	return;
    }
B
bellard 已提交
1235 1236
    switch(s->io_buffer[0]) {
    case GPCMD_TEST_UNIT_READY:
G
Gleb Natapov 已提交
1237
        if (bdrv_is_inserted(s->bs) && !s->cdrom_changed) {
B
bellard 已提交
1238 1239
            ide_atapi_cmd_ok(s);
        } else {
G
Gleb Natapov 已提交
1240
            s->cdrom_changed = 0;
1241
            ide_atapi_cmd_error(s, SENSE_NOT_READY,
B
bellard 已提交
1242 1243 1244
                                ASC_MEDIUM_NOT_PRESENT);
        }
        break;
1245
    case GPCMD_MODE_SENSE_6:
B
bellard 已提交
1246 1247 1248
    case GPCMD_MODE_SENSE_10:
        {
            int action, code;
1249 1250 1251 1252
            if (packet[0] == GPCMD_MODE_SENSE_10)
                max_len = ube16_to_cpu(packet + 7);
            else
                max_len = packet[4];
B
bellard 已提交
1253 1254 1255 1256 1257
            action = packet[2] >> 6;
            code = packet[2] & 0x3f;
            switch(action) {
            case 0: /* current values */
                switch(code) {
1258
                case GPMODE_R_W_ERROR_PAGE: /* error recovery */
B
bellard 已提交
1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276
                    cpu_to_ube16(&buf[0], 16 + 6);
                    buf[2] = 0x70;
                    buf[3] = 0;
                    buf[4] = 0;
                    buf[5] = 0;
                    buf[6] = 0;
                    buf[7] = 0;

                    buf[8] = 0x01;
                    buf[9] = 0x06;
                    buf[10] = 0x00;
                    buf[11] = 0x05;
                    buf[12] = 0x00;
                    buf[13] = 0x00;
                    buf[14] = 0x00;
                    buf[15] = 0x00;
                    ide_atapi_cmd_reply(s, 16, max_len);
                    break;
1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
                case GPMODE_AUDIO_CTL_PAGE:
                    cpu_to_ube16(&buf[0], 24 + 6);
                    buf[2] = 0x70;
                    buf[3] = 0;
                    buf[4] = 0;
                    buf[5] = 0;
                    buf[6] = 0;
                    buf[7] = 0;

                    /* Fill with CDROM audio volume */
                    buf[17] = 0;
                    buf[19] = 0;
                    buf[21] = 0;
                    buf[23] = 0;

                    ide_atapi_cmd_reply(s, 24, max_len);
                    break;
1294
                case GPMODE_CAPABILITIES_PAGE:
B
bellard 已提交
1295 1296 1297 1298 1299 1300 1301 1302 1303 1304
                    cpu_to_ube16(&buf[0], 28 + 6);
                    buf[2] = 0x70;
                    buf[3] = 0;
                    buf[4] = 0;
                    buf[5] = 0;
                    buf[6] = 0;
                    buf[7] = 0;

                    buf[8] = 0x2a;
                    buf[9] = 0x12;
1305
                    buf[10] = 0x00;
B
bellard 已提交
1306
                    buf[11] = 0x00;
1307

1308 1309 1310
                    /* Claim PLAY_AUDIO capability (0x01) since some Linux
                       code checks for this to automount media. */
                    buf[12] = 0x71;
B
bellard 已提交
1311 1312
                    buf[13] = 3 << 5;
                    buf[14] = (1 << 0) | (1 << 3) | (1 << 5);
1313
                    if (bdrv_is_locked(s->bs))
B
bellard 已提交
1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336
                        buf[6] |= 1 << 1;
                    buf[15] = 0x00;
                    cpu_to_ube16(&buf[16], 706);
                    buf[18] = 0;
                    buf[19] = 2;
                    cpu_to_ube16(&buf[20], 512);
                    cpu_to_ube16(&buf[22], 706);
                    buf[24] = 0;
                    buf[25] = 0;
                    buf[26] = 0;
                    buf[27] = 0;
                    ide_atapi_cmd_reply(s, 28, max_len);
                    break;
                default:
                    goto error_cmd;
                }
                break;
            case 1: /* changeable values */
                goto error_cmd;
            case 2: /* default values */
                goto error_cmd;
            default:
            case 3: /* saved values */
1337
                ide_atapi_cmd_error(s, SENSE_ILLEGAL_REQUEST,
B
bellard 已提交
1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349
                                    ASC_SAVING_PARAMETERS_NOT_SUPPORTED);
                break;
            }
        }
        break;
    case GPCMD_REQUEST_SENSE:
        max_len = packet[4];
        memset(buf, 0, 18);
        buf[0] = 0x70 | (1 << 7);
        buf[2] = s->sense_key;
        buf[7] = 10;
        buf[12] = s->asc;
1350 1351
        if (s->sense_key == SENSE_UNIT_ATTENTION)
            s->sense_key = SENSE_NONE;
B
bellard 已提交
1352 1353 1354
        ide_atapi_cmd_reply(s, 18, max_len);
        break;
    case GPCMD_PREVENT_ALLOW_MEDIUM_REMOVAL:
1355 1356
        if (bdrv_is_inserted(s->bs)) {
            bdrv_set_locked(s->bs, packet[4] & 1);
B
bellard 已提交
1357 1358
            ide_atapi_cmd_ok(s);
        } else {
1359
            ide_atapi_cmd_error(s, SENSE_NOT_READY,
B
bellard 已提交
1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376
                                ASC_MEDIUM_NOT_PRESENT);
        }
        break;
    case GPCMD_READ_10:
    case GPCMD_READ_12:
        {
            int nb_sectors, lba;

            if (packet[0] == GPCMD_READ_10)
                nb_sectors = ube16_to_cpu(packet + 7);
            else
                nb_sectors = ube32_to_cpu(packet + 6);
            lba = ube32_to_cpu(packet + 2);
            if (nb_sectors == 0) {
                ide_atapi_cmd_ok(s);
                break;
            }
B
bellard 已提交
1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
            ide_atapi_cmd_read(s, lba, nb_sectors, 2048);
        }
        break;
    case GPCMD_READ_CD:
        {
            int nb_sectors, lba, transfer_request;

            nb_sectors = (packet[6] << 16) | (packet[7] << 8) | packet[8];
            lba = ube32_to_cpu(packet + 2);
            if (nb_sectors == 0) {
                ide_atapi_cmd_ok(s);
                break;
            }
            transfer_request = packet[9];
            switch(transfer_request & 0xf8) {
            case 0x00:
                /* nothing */
                ide_atapi_cmd_ok(s);
                break;
            case 0x10:
                /* normal read */
                ide_atapi_cmd_read(s, lba, nb_sectors, 2048);
                break;
            case 0xf8:
                /* read all data */
                ide_atapi_cmd_read(s, lba, nb_sectors, 2352);
                break;
            default:
1405
                ide_atapi_cmd_error(s, SENSE_ILLEGAL_REQUEST,
B
bellard 已提交
1406 1407 1408
                                    ASC_INV_FIELD_IN_CMD_PACKET);
                break;
            }
B
bellard 已提交
1409 1410 1411 1412
        }
        break;
    case GPCMD_SEEK:
        {
1413 1414
            unsigned int lba;
            uint64_t total_sectors;
B
bellard 已提交
1415 1416 1417

            bdrv_get_geometry(s->bs, &total_sectors);
            total_sectors >>= 2;
1418
            if (total_sectors == 0) {
1419
                ide_atapi_cmd_error(s, SENSE_NOT_READY,
B
bellard 已提交
1420 1421 1422 1423
                                    ASC_MEDIUM_NOT_PRESENT);
                break;
            }
            lba = ube32_to_cpu(packet + 2);
B
bellard 已提交
1424
            if (lba >= total_sectors) {
1425
                ide_atapi_cmd_error(s, SENSE_ILLEGAL_REQUEST,
B
bellard 已提交
1426 1427 1428 1429 1430 1431 1432 1433
                                    ASC_LOGICAL_BLOCK_OOR);
                break;
            }
            ide_atapi_cmd_ok(s);
        }
        break;
    case GPCMD_START_STOP_UNIT:
        {
1434
            int start, eject, err = 0;
B
bellard 已提交
1435 1436
            start = packet[4] & 1;
            eject = (packet[4] >> 1) & 1;
1437

1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453
            if (eject) {
                err = bdrv_eject(s->bs, !start);
            }

            switch (err) {
            case 0:
                ide_atapi_cmd_ok(s);
                break;
            case -EBUSY:
                ide_atapi_cmd_error(s, SENSE_NOT_READY,
                                    ASC_MEDIA_REMOVAL_PREVENTED);
                break;
            default:
                ide_atapi_cmd_error(s, SENSE_NOT_READY,
                                    ASC_MEDIUM_NOT_PRESENT);
                break;
1454
            }
B
bellard 已提交
1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472
        }
        break;
    case GPCMD_MECHANISM_STATUS:
        {
            max_len = ube16_to_cpu(packet + 8);
            cpu_to_ube16(buf, 0);
            /* no current LBA */
            buf[2] = 0;
            buf[3] = 0;
            buf[4] = 0;
            buf[5] = 1;
            cpu_to_ube16(buf + 6, 0);
            ide_atapi_cmd_reply(s, 8, max_len);
        }
        break;
    case GPCMD_READ_TOC_PMA_ATIP:
        {
            int format, msf, start_track, len;
1473
            uint64_t total_sectors;
B
bellard 已提交
1474

B
bellard 已提交
1475 1476
            bdrv_get_geometry(s->bs, &total_sectors);
            total_sectors >>= 2;
1477
            if (total_sectors == 0) {
1478
                ide_atapi_cmd_error(s, SENSE_NOT_READY,
B
bellard 已提交
1479 1480 1481 1482 1483 1484 1485 1486 1487
                                    ASC_MEDIUM_NOT_PRESENT);
                break;
            }
            max_len = ube16_to_cpu(packet + 7);
            format = packet[9] >> 6;
            msf = (packet[1] >> 1) & 1;
            start_track = packet[6];
            switch(format) {
            case 0:
B
bellard 已提交
1488
                len = cdrom_read_toc(total_sectors, buf, msf, start_track);
B
bellard 已提交
1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500
                if (len < 0)
                    goto error_cmd;
                ide_atapi_cmd_reply(s, len, max_len);
                break;
            case 1:
                /* multi session : only a single session defined */
                memset(buf, 0, 12);
                buf[1] = 0x0a;
                buf[2] = 0x01;
                buf[3] = 0x01;
                ide_atapi_cmd_reply(s, 12, max_len);
                break;
B
bellard 已提交
1501
            case 2:
B
bellard 已提交
1502
                len = cdrom_read_toc_raw(total_sectors, buf, msf, start_track);
B
bellard 已提交
1503 1504 1505 1506
                if (len < 0)
                    goto error_cmd;
                ide_atapi_cmd_reply(s, len, max_len);
                break;
B
bellard 已提交
1507
            default:
1508
            error_cmd:
1509
                ide_atapi_cmd_error(s, SENSE_ILLEGAL_REQUEST,
1510 1511
                                    ASC_INV_FIELD_IN_CMD_PACKET);
                break;
B
bellard 已提交
1512 1513 1514 1515
            }
        }
        break;
    case GPCMD_READ_CDVD_CAPACITY:
B
bellard 已提交
1516
        {
1517
            uint64_t total_sectors;
B
bellard 已提交
1518 1519 1520

            bdrv_get_geometry(s->bs, &total_sectors);
            total_sectors >>= 2;
1521
            if (total_sectors == 0) {
1522
                ide_atapi_cmd_error(s, SENSE_NOT_READY,
B
bellard 已提交
1523 1524 1525 1526 1527 1528 1529
                                    ASC_MEDIUM_NOT_PRESENT);
                break;
            }
            /* NOTE: it is really the number of sectors minus 1 */
            cpu_to_ube32(buf, total_sectors - 1);
            cpu_to_ube32(buf + 4, 2048);
            ide_atapi_cmd_reply(s, 8, 8);
B
bellard 已提交
1530 1531
        }
        break;
1532 1533 1534
    case GPCMD_READ_DVD_STRUCTURE:
        {
            int media = packet[1];
1535 1536
            int format = packet[7];
            int ret;
1537

1538
            max_len = ube16_to_cpu(packet + 8);
1539

1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550
            if (format < 0xff) {
                if (media_is_cd(s)) {
                    ide_atapi_cmd_error(s, SENSE_ILLEGAL_REQUEST,
                                        ASC_INCOMPATIBLE_FORMAT);
                    break;
                } else if (!media_present(s)) {
                    ide_atapi_cmd_error(s, SENSE_ILLEGAL_REQUEST,
                                        ASC_INV_FIELD_IN_CMD_PACKET);
                    break;
                }
            }
1551

1552 1553
            memset(buf, 0, max_len > IDE_DMA_BUF_SECTORS * 512 + 4 ?
                   IDE_DMA_BUF_SECTORS * 512 + 4 : max_len);
1554

1555 1556 1557 1558 1559
            switch (format) {
                case 0x00 ... 0x7f:
                case 0xff:
                    if (media == 0) {
                        ret = ide_dvd_read_structure(s, format, packet, buf);
1560

1561 1562 1563 1564
                        if (ret < 0)
                            ide_atapi_cmd_error(s, SENSE_ILLEGAL_REQUEST, -ret);
                        else
                            ide_atapi_cmd_reply(s, ret, max_len);
1565

1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576
                        break;
                    }
                    /* TODO: BD support, fall through for now */

                /* Generic disk structures */
                case 0x80: /* TODO: AACS volume identifier */
                case 0x81: /* TODO: AACS media serial number */
                case 0x82: /* TODO: AACS media identifier */
                case 0x83: /* TODO: AACS media key block */
                case 0x90: /* TODO: List of recognized format layers */
                case 0xc0: /* TODO: Write protection status */
1577 1578 1579 1580 1581 1582 1583 1584 1585 1586
                default:
                    ide_atapi_cmd_error(s, SENSE_ILLEGAL_REQUEST,
                                        ASC_INV_FIELD_IN_CMD_PACKET);
                    break;
            }
        }
        break;
    case GPCMD_SET_SPEED:
        ide_atapi_cmd_ok(s);
        break;
B
bellard 已提交
1587 1588 1589 1590 1591 1592
    case GPCMD_INQUIRY:
        max_len = packet[4];
        buf[0] = 0x05; /* CD-ROM */
        buf[1] = 0x80; /* removable */
        buf[2] = 0x00; /* ISO */
        buf[3] = 0x21; /* ATAPI-2 (XXX: put ATAPI-4 ?) */
T
ths 已提交
1593
        buf[4] = 31; /* additional length */
B
bellard 已提交
1594 1595 1596 1597
        buf[5] = 0; /* reserved */
        buf[6] = 0; /* reserved */
        buf[7] = 0; /* reserved */
        padstr8(buf + 8, 8, "QEMU");
1598
        padstr8(buf + 16, 16, "QEMU DVD-ROM");
G
Gerd Hoffmann 已提交
1599
        padstr8(buf + 32, 4, s->version);
B
bellard 已提交
1600 1601
        ide_atapi_cmd_reply(s, 36, max_len);
        break;
1602 1603
    case GPCMD_GET_CONFIGURATION:
        {
1604
            uint32_t len;
1605
            uint8_t index = 0;
1606 1607 1608 1609 1610 1611 1612

            /* only feature 0 is supported */
            if (packet[2] != 0 || packet[3] != 0) {
                ide_atapi_cmd_error(s, SENSE_ILLEGAL_REQUEST,
                                    ASC_INV_FIELD_IN_CMD_PACKET);
                break;
            }
1613 1614 1615

            /* XXX: could result in alignment problems in some architectures */
            max_len = ube16_to_cpu(packet + 7);
1616

1617
            /*
1618 1619 1620
             * XXX: avoid overflow for io_buffer if max_len is bigger than
             *      the size of that buffer (dimensioned to max number of
             *      sectors to transfer at once)
1621
             *
1622
             *      Only a problem if the feature/profiles grow.
1623 1624 1625 1626 1627 1628 1629 1630 1631
             */
            if (max_len > 512) /* XXX: assume 1 sector */
                max_len = 512;

            memset(buf, 0, max_len);
            /* 
             * the number of sectors from the media tells us which profile
             * to use as current.  0 means there is no media
             */
1632 1633 1634 1635
            if (media_is_dvd(s))
                cpu_to_ube16(buf + 6, MMC_PROFILE_DVD_ROM);
            else if (media_is_cd(s))
                cpu_to_ube16(buf + 6, MMC_PROFILE_CD_ROM);
1636

1637 1638 1639 1640
            buf[10] = 0x02 | 0x01; /* persistent and current */
            len = 12; /* headers: 8 + 4 */
            len += ide_atapi_set_profile(buf, &index, MMC_PROFILE_DVD_ROM);
            len += ide_atapi_set_profile(buf, &index, MMC_PROFILE_CD_ROM);
1641 1642 1643
            cpu_to_ube32(buf, len - 4); /* data length */

            ide_atapi_cmd_reply(s, len, max_len);
1644 1645
            break;
        }
B
bellard 已提交
1646
    default:
1647
        ide_atapi_cmd_error(s, SENSE_ILLEGAL_REQUEST,
1648
                            ASC_ILLEGAL_OPCODE);
B
bellard 已提交
1649 1650 1651 1652
        break;
    }
}

1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705
static void ide_cfata_metadata_inquiry(IDEState *s)
{
    uint16_t *p;
    uint32_t spd;

    p = (uint16_t *) s->io_buffer;
    memset(p, 0, 0x200);
    spd = ((s->mdata_size - 1) >> 9) + 1;

    put_le16(p + 0, 0x0001);			/* Data format revision */
    put_le16(p + 1, 0x0000);			/* Media property: silicon */
    put_le16(p + 2, s->media_changed);		/* Media status */
    put_le16(p + 3, s->mdata_size & 0xffff);	/* Capacity in bytes (low) */
    put_le16(p + 4, s->mdata_size >> 16);	/* Capacity in bytes (high) */
    put_le16(p + 5, spd & 0xffff);		/* Sectors per device (low) */
    put_le16(p + 6, spd >> 16);			/* Sectors per device (high) */
}

static void ide_cfata_metadata_read(IDEState *s)
{
    uint16_t *p;

    if (((s->hcyl << 16) | s->lcyl) << 9 > s->mdata_size + 2) {
        s->status = ERR_STAT;
        s->error = ABRT_ERR;
        return;
    }

    p = (uint16_t *) s->io_buffer;
    memset(p, 0, 0x200);

    put_le16(p + 0, s->media_changed);		/* Media status */
    memcpy(p + 1, s->mdata_storage + (((s->hcyl << 16) | s->lcyl) << 9),
                    MIN(MIN(s->mdata_size - (((s->hcyl << 16) | s->lcyl) << 9),
                                    s->nsector << 9), 0x200 - 2));
}

static void ide_cfata_metadata_write(IDEState *s)
{
    if (((s->hcyl << 16) | s->lcyl) << 9 > s->mdata_size + 2) {
        s->status = ERR_STAT;
        s->error = ABRT_ERR;
        return;
    }

    s->media_changed = 0;

    memcpy(s->mdata_storage + (((s->hcyl << 16) | s->lcyl) << 9),
                    s->io_buffer + 2,
                    MIN(MIN(s->mdata_size - (((s->hcyl << 16) | s->lcyl) << 9),
                                    s->nsector << 9), 0x200 - 2));
}

T
ths 已提交
1706 1707 1708 1709
/* called when the inserted state of the media has changed */
static void cdrom_change_cb(void *opaque)
{
    IDEState *s = opaque;
1710
    uint64_t nb_sectors;
T
ths 已提交
1711 1712 1713

    bdrv_get_geometry(s->bs, &nb_sectors);
    s->nb_sectors = nb_sectors;
1714 1715 1716

    s->sense_key = SENSE_UNIT_ATTENTION;
    s->asc = ASC_MEDIUM_MAY_HAVE_CHANGED;
G
Gleb Natapov 已提交
1717
    s->cdrom_changed = 1;
1718
    ide_set_irq(s->bus);
T
ths 已提交
1719 1720
}

B
bellard 已提交
1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743
static void ide_cmd_lba48_transform(IDEState *s, int lba48)
{
    s->lba48 = lba48;

    /* handle the 'magic' 0 nsector count conversion here. to avoid
     * fiddling with the rest of the read logic, we just store the
     * full sector count in ->nsector and ignore ->hob_nsector from now
     */
    if (!s->lba48) {
	if (!s->nsector)
	    s->nsector = 256;
    } else {
	if (!s->nsector && !s->hob_nsector)
	    s->nsector = 65536;
	else {
	    int lo = s->nsector;
	    int hi = s->hob_nsector;

	    s->nsector = (hi << 8) | lo;
	}
    }
}

G
Gerd Hoffmann 已提交
1744
static void ide_clear_hob(IDEBus *bus)
B
bellard 已提交
1745 1746
{
    /* any write clears HOB high bit of device control register */
G
Gerd Hoffmann 已提交
1747 1748
    bus->ifs[0].select &= ~(1 << 7);
    bus->ifs[1].select &= ~(1 << 7);
B
bellard 已提交
1749 1750
}

G
Gerd Hoffmann 已提交
1751
void ide_ioport_write(void *opaque, uint32_t addr, uint32_t val)
1752
{
G
Gerd Hoffmann 已提交
1753
    IDEBus *bus = opaque;
1754
    IDEState *s;
G
Gerd Hoffmann 已提交
1755
    int n;
B
bellard 已提交
1756
    int lba48 = 0;
B
bellard 已提交
1757 1758 1759 1760

#ifdef DEBUG_IDE
    printf("IDE: write addr=0x%x val=0x%02x\n", addr, val);
#endif
B
bellard 已提交
1761

B
bellard 已提交
1762
    addr &= 7;
1763 1764

    /* ignore writes to command block while busy with previous command */
G
Gerd Hoffmann 已提交
1765
    if (addr != 7 && (idebus_active_if(bus)->status & (BUSY_STAT|DRQ_STAT)))
1766 1767
        return;

B
bellard 已提交
1768 1769 1770 1771
    switch(addr) {
    case 0:
        break;
    case 1:
G
Gerd Hoffmann 已提交
1772
	ide_clear_hob(bus);
1773
        /* NOTE: data is written to the two drives */
G
Gerd Hoffmann 已提交
1774 1775 1776 1777
	bus->ifs[0].hob_feature = bus->ifs[0].feature;
	bus->ifs[1].hob_feature = bus->ifs[1].feature;
        bus->ifs[0].feature = val;
        bus->ifs[1].feature = val;
B
bellard 已提交
1778 1779
        break;
    case 2:
G
Gerd Hoffmann 已提交
1780 1781 1782 1783 1784
	ide_clear_hob(bus);
	bus->ifs[0].hob_nsector = bus->ifs[0].nsector;
	bus->ifs[1].hob_nsector = bus->ifs[1].nsector;
        bus->ifs[0].nsector = val;
        bus->ifs[1].nsector = val;
B
bellard 已提交
1785 1786
        break;
    case 3:
G
Gerd Hoffmann 已提交
1787 1788 1789 1790 1791
	ide_clear_hob(bus);
	bus->ifs[0].hob_sector = bus->ifs[0].sector;
	bus->ifs[1].hob_sector = bus->ifs[1].sector;
        bus->ifs[0].sector = val;
        bus->ifs[1].sector = val;
B
bellard 已提交
1792 1793
        break;
    case 4:
G
Gerd Hoffmann 已提交
1794 1795 1796 1797 1798
	ide_clear_hob(bus);
	bus->ifs[0].hob_lcyl = bus->ifs[0].lcyl;
	bus->ifs[1].hob_lcyl = bus->ifs[1].lcyl;
        bus->ifs[0].lcyl = val;
        bus->ifs[1].lcyl = val;
B
bellard 已提交
1799 1800
        break;
    case 5:
G
Gerd Hoffmann 已提交
1801 1802 1803 1804 1805
	ide_clear_hob(bus);
	bus->ifs[0].hob_hcyl = bus->ifs[0].hcyl;
	bus->ifs[1].hob_hcyl = bus->ifs[1].hcyl;
        bus->ifs[0].hcyl = val;
        bus->ifs[1].hcyl = val;
B
bellard 已提交
1806 1807
        break;
    case 6:
B
bellard 已提交
1808
	/* FIXME: HOB readback uses bit 7 */
G
Gerd Hoffmann 已提交
1809 1810
        bus->ifs[0].select = (val & ~0x10) | 0xa0;
        bus->ifs[1].select = (val | 0x10) | 0xa0;
B
bellard 已提交
1811
        /* select drive */
G
Gerd Hoffmann 已提交
1812
        bus->unit = (val >> 4) & 1;
B
bellard 已提交
1813 1814 1815 1816 1817 1818 1819
        break;
    default:
    case 7:
        /* command */
#if defined(DEBUG_IDE)
        printf("ide: CMD=%02x\n", val);
#endif
G
Gerd Hoffmann 已提交
1820
        s = idebus_active_if(bus);
1821
        /* ignore commands to non existant slave */
G
Gerd Hoffmann 已提交
1822
        if (s != bus->ifs && !s->bs)
1823
            break;
B
bellard 已提交
1824

1825 1826 1827 1828
        /* Only DEVICE RESET is allowed while BSY or/and DRQ are set */
        if ((s->status & (BUSY_STAT|DRQ_STAT)) && val != WIN_DEVICE_RESET)
            break;

B
bellard 已提交
1829 1830
        switch(val) {
        case WIN_IDENTIFY:
1831 1832
            if (s->bs && s->drive_kind != IDE_CD) {
                if (s->drive_kind != IDE_CFATA)
1833 1834 1835
                    ide_identify(s);
                else
                    ide_cfata_identify(s);
1836
                s->status = READY_STAT | SEEK_STAT;
B
bellard 已提交
1837 1838
                ide_transfer_start(s, s->io_buffer, 512, ide_transfer_stop);
            } else {
1839
                if (s->drive_kind == IDE_CD) {
B
bellard 已提交
1840 1841 1842 1843
                    ide_set_signature(s);
                }
                ide_abort_command(s);
            }
1844
            ide_set_irq(s->bus);
B
bellard 已提交
1845 1846 1847
            break;
        case WIN_SPECIFY:
        case WIN_RECAL:
1848
            s->error = 0;
B
bellard 已提交
1849
            s->status = READY_STAT | SEEK_STAT;
1850
            ide_set_irq(s->bus);
B
bellard 已提交
1851 1852
            break;
        case WIN_SETMULT:
1853
            if (s->drive_kind == IDE_CFATA && s->nsector == 0) {
1854 1855
                /* Disable Read and Write Multiple */
                s->mult_sectors = 0;
A
aliguori 已提交
1856
                s->status = READY_STAT | SEEK_STAT;
1857
            } else if ((s->nsector & 0xff) != 0 &&
1858 1859
                ((s->nsector & 0xff) > MAX_MULT_SECTORS ||
                 (s->nsector & (s->nsector - 1)) != 0)) {
B
bellard 已提交
1860 1861
                ide_abort_command(s);
            } else {
T
ths 已提交
1862
                s->mult_sectors = s->nsector & 0xff;
A
aliguori 已提交
1863
                s->status = READY_STAT | SEEK_STAT;
B
bellard 已提交
1864
            }
1865
            ide_set_irq(s->bus);
B
bellard 已提交
1866
            break;
B
bellard 已提交
1867 1868
        case WIN_VERIFY_EXT:
	    lba48 = 1;
B
bellard 已提交
1869 1870 1871
        case WIN_VERIFY:
        case WIN_VERIFY_ONCE:
            /* do sector number check ? */
B
bellard 已提交
1872
	    ide_cmd_lba48_transform(s, lba48);
A
aliguori 已提交
1873
            s->status = READY_STAT | SEEK_STAT;
1874
            ide_set_irq(s->bus);
B
bellard 已提交
1875
            break;
B
bellard 已提交
1876 1877
	case WIN_READ_EXT:
	    lba48 = 1;
B
bellard 已提交
1878 1879
        case WIN_READ:
        case WIN_READ_ONCE:
1880
            if (!s->bs)
B
bellard 已提交
1881
                goto abort_cmd;
B
bellard 已提交
1882
	    ide_cmd_lba48_transform(s, lba48);
B
bellard 已提交
1883 1884 1885
            s->req_nb_sectors = 1;
            ide_sector_read(s);
            break;
B
bellard 已提交
1886 1887
	case WIN_WRITE_EXT:
	    lba48 = 1;
B
bellard 已提交
1888 1889
        case WIN_WRITE:
        case WIN_WRITE_ONCE:
1890 1891
        case CFA_WRITE_SECT_WO_ERASE:
        case WIN_WRITE_VERIFY:
B
bellard 已提交
1892
	    ide_cmd_lba48_transform(s, lba48);
1893
            s->error = 0;
1894
            s->status = SEEK_STAT | READY_STAT;
B
bellard 已提交
1895 1896
            s->req_nb_sectors = 1;
            ide_transfer_start(s, s->io_buffer, 512, ide_sector_write);
1897
            s->media_changed = 1;
B
bellard 已提交
1898
            break;
B
bellard 已提交
1899 1900
	case WIN_MULTREAD_EXT:
	    lba48 = 1;
B
bellard 已提交
1901 1902 1903
        case WIN_MULTREAD:
            if (!s->mult_sectors)
                goto abort_cmd;
B
bellard 已提交
1904
	    ide_cmd_lba48_transform(s, lba48);
B
bellard 已提交
1905 1906 1907
            s->req_nb_sectors = s->mult_sectors;
            ide_sector_read(s);
            break;
B
bellard 已提交
1908 1909
        case WIN_MULTWRITE_EXT:
	    lba48 = 1;
B
bellard 已提交
1910
        case WIN_MULTWRITE:
1911
        case CFA_WRITE_MULTI_WO_ERASE:
B
bellard 已提交
1912 1913
            if (!s->mult_sectors)
                goto abort_cmd;
B
bellard 已提交
1914
	    ide_cmd_lba48_transform(s, lba48);
1915
            s->error = 0;
1916
            s->status = SEEK_STAT | READY_STAT;
B
bellard 已提交
1917 1918 1919 1920 1921
            s->req_nb_sectors = s->mult_sectors;
            n = s->nsector;
            if (n > s->req_nb_sectors)
                n = s->req_nb_sectors;
            ide_transfer_start(s, s->io_buffer, 512 * n, ide_sector_write);
1922
            s->media_changed = 1;
B
bellard 已提交
1923
            break;
B
bellard 已提交
1924 1925
	case WIN_READDMA_EXT:
	    lba48 = 1;
B
bellard 已提交
1926 1927
        case WIN_READDMA:
        case WIN_READDMA_ONCE:
1928
            if (!s->bs)
B
bellard 已提交
1929
                goto abort_cmd;
B
bellard 已提交
1930
	    ide_cmd_lba48_transform(s, lba48);
B
bellard 已提交
1931 1932
            ide_sector_read_dma(s);
            break;
B
bellard 已提交
1933 1934
	case WIN_WRITEDMA_EXT:
	    lba48 = 1;
B
bellard 已提交
1935 1936
        case WIN_WRITEDMA:
        case WIN_WRITEDMA_ONCE:
1937
            if (!s->bs)
B
bellard 已提交
1938
                goto abort_cmd;
B
bellard 已提交
1939
	    ide_cmd_lba48_transform(s, lba48);
B
bellard 已提交
1940
            ide_sector_write_dma(s);
1941
            s->media_changed = 1;
B
bellard 已提交
1942
            break;
B
bellard 已提交
1943 1944
        case WIN_READ_NATIVE_MAX_EXT:
	    lba48 = 1;
B
bellard 已提交
1945
        case WIN_READ_NATIVE_MAX:
B
bellard 已提交
1946
	    ide_cmd_lba48_transform(s, lba48);
B
bellard 已提交
1947
            ide_set_sector(s, s->nb_sectors - 1);
A
aliguori 已提交
1948
            s->status = READY_STAT | SEEK_STAT;
1949
            ide_set_irq(s->bus);
B
bellard 已提交
1950
            break;
1951
        case WIN_CHECKPOWERMODE1:
1952
        case WIN_CHECKPOWERMODE2:
1953
            s->nsector = 0xff; /* device active or idle */
A
aliguori 已提交
1954
            s->status = READY_STAT | SEEK_STAT;
1955
            ide_set_irq(s->bus);
1956
            break;
1957 1958 1959 1960 1961
        case WIN_SETFEATURES:
            if (!s->bs)
                goto abort_cmd;
            /* XXX: valid for CDROM ? */
            switch(s->feature) {
1962 1963
            case 0xcc: /* reverting to power-on defaults enable */
            case 0x66: /* reverting to power-on defaults disable */
1964 1965 1966 1967
            case 0x02: /* write cache enable */
            case 0x82: /* write cache disable */
            case 0xaa: /* read look-ahead enable */
            case 0x55: /* read look-ahead disable */
1968 1969 1970 1971 1972 1973
            case 0x05: /* set advanced power management mode */
            case 0x85: /* disable advanced power management mode */
            case 0x69: /* NOP */
            case 0x67: /* NOP */
            case 0x96: /* NOP */
            case 0x9a: /* NOP */
1974 1975
            case 0x42: /* enable Automatic Acoustic Mode */
            case 0xc2: /* disable Automatic Acoustic Mode */
B
bellard 已提交
1976
                s->status = READY_STAT | SEEK_STAT;
1977
                ide_set_irq(s->bus);
1978
                break;
1979 1980
            case 0x03: { /* set transfer mode */
		uint8_t val = s->nsector & 0x07;
1981
                uint16_t *identify_data = (uint16_t *)s->identify_data;
1982 1983 1984 1985

		switch (s->nsector >> 3) {
		    case 0x00: /* pio default */
		    case 0x01: /* pio mode */
1986 1987 1988
			put_le16(identify_data + 62,0x07);
			put_le16(identify_data + 63,0x07);
			put_le16(identify_data + 88,0x3f);
1989 1990
			break;
                    case 0x02: /* sigle word dma mode*/
1991 1992 1993
			put_le16(identify_data + 62,0x07 | (1 << (val + 8)));
			put_le16(identify_data + 63,0x07);
			put_le16(identify_data + 88,0x3f);
1994 1995
			break;
		    case 0x04: /* mdma mode */
1996 1997 1998
			put_le16(identify_data + 62,0x07);
			put_le16(identify_data + 63,0x07 | (1 << (val + 8)));
			put_le16(identify_data + 88,0x3f);
1999 2000
			break;
		    case 0x08: /* udma mode */
2001 2002 2003
			put_le16(identify_data + 62,0x07);
			put_le16(identify_data + 63,0x07);
			put_le16(identify_data + 88,0x3f | (1 << (val + 8)));
2004 2005 2006 2007 2008
			break;
		    default:
			goto abort_cmd;
		}
                s->status = READY_STAT | SEEK_STAT;
2009
                ide_set_irq(s->bus);
2010 2011
                break;
	    }
2012 2013 2014 2015
            default:
                goto abort_cmd;
            }
            break;
B
bellard 已提交
2016 2017
        case WIN_FLUSH_CACHE:
        case WIN_FLUSH_CACHE_EXT:
P
pbrook 已提交
2018
            if (s->bs)
C
Christoph Hellwig 已提交
2019 2020 2021
                bdrv_aio_flush(s->bs, ide_flush_cb, s);
            else
                ide_flush_cb(s, 0);
P
pbrook 已提交
2022
            break;
2023 2024 2025
        case WIN_STANDBY:
        case WIN_STANDBY2:
        case WIN_STANDBYNOW1:
2026
        case WIN_STANDBYNOW2:
2027
        case WIN_IDLEIMMEDIATE:
2028 2029 2030
        case CFA_IDLEIMMEDIATE:
        case WIN_SETIDLE1:
        case WIN_SETIDLE2:
2031 2032 2033
        case WIN_SLEEPNOW1:
        case WIN_SLEEPNOW2:
            s->status = READY_STAT;
2034
            ide_set_irq(s->bus);
2035
            break;
A
aurel32 已提交
2036
        case WIN_SEEK:
2037
            if(s->drive_kind == IDE_CD)
A
aurel32 已提交
2038 2039 2040
                goto abort_cmd;
            /* XXX: Check that seek is within bounds */
            s->status = READY_STAT | SEEK_STAT;
2041
            ide_set_irq(s->bus);
A
aurel32 已提交
2042
            break;
B
bellard 已提交
2043 2044
            /* ATAPI commands */
        case WIN_PIDENTIFY:
2045
            if (s->drive_kind == IDE_CD) {
B
bellard 已提交
2046
                ide_atapi_identify(s);
B
bellard 已提交
2047
                s->status = READY_STAT | SEEK_STAT;
B
bellard 已提交
2048 2049 2050 2051
                ide_transfer_start(s, s->io_buffer, 512, ide_transfer_stop);
            } else {
                ide_abort_command(s);
            }
2052
            ide_set_irq(s->bus);
B
bellard 已提交
2053
            break;
2054 2055
        case WIN_DIAGNOSE:
            ide_set_signature(s);
2056
            if (s->drive_kind == IDE_CD)
2057 2058 2059 2060 2061 2062 2063 2064
                s->status = 0; /* ATAPI spec (v6) section 9.10 defines packet
                                * devices to return a clear status register
                                * with READY_STAT *not* set. */
            else
                s->status = READY_STAT | SEEK_STAT;
            s->error = 0x01; /* Device 0 passed, Device 1 passed or not
                              * present. 
                              */
2065
            ide_set_irq(s->bus);
2066
            break;
B
bellard 已提交
2067
        case WIN_SRST:
2068
            if (s->drive_kind != IDE_CD)
B
bellard 已提交
2069 2070
                goto abort_cmd;
            ide_set_signature(s);
B
bellard 已提交
2071
            s->status = 0x00; /* NOTE: READY is _not_ set */
B
bellard 已提交
2072 2073 2074
            s->error = 0x01;
            break;
        case WIN_PACKETCMD:
2075
            if (s->drive_kind != IDE_CD)
B
bellard 已提交
2076
                goto abort_cmd;
B
bellard 已提交
2077 2078
            /* overlapping commands not supported */
            if (s->feature & 0x02)
B
bellard 已提交
2079
                goto abort_cmd;
A
aliguori 已提交
2080
            s->status = READY_STAT | SEEK_STAT;
B
bellard 已提交
2081
            s->atapi_dma = s->feature & 1;
B
bellard 已提交
2082
            s->nsector = 1;
2083
            ide_transfer_start(s, s->io_buffer, ATAPI_PACKET_SIZE,
B
bellard 已提交
2084 2085
                               ide_atapi_cmd);
            break;
2086 2087
        /* CF-ATA commands */
        case CFA_REQ_EXT_ERROR_CODE:
2088
            if (s->drive_kind != IDE_CFATA)
2089 2090
                goto abort_cmd;
            s->error = 0x09;    /* miscellaneous error */
A
aliguori 已提交
2091
            s->status = READY_STAT | SEEK_STAT;
2092
            ide_set_irq(s->bus);
2093 2094 2095
            break;
        case CFA_ERASE_SECTORS:
        case CFA_WEAR_LEVEL:
2096
            if (s->drive_kind != IDE_CFATA)
2097 2098 2099 2100 2101 2102
                goto abort_cmd;
            if (val == CFA_WEAR_LEVEL)
                s->nsector = 0;
            if (val == CFA_ERASE_SECTORS)
                s->media_changed = 1;
            s->error = 0x00;
A
aliguori 已提交
2103
            s->status = READY_STAT | SEEK_STAT;
2104
            ide_set_irq(s->bus);
2105 2106
            break;
        case CFA_TRANSLATE_SECTOR:
2107
            if (s->drive_kind != IDE_CFATA)
2108 2109
                goto abort_cmd;
            s->error = 0x00;
A
aliguori 已提交
2110
            s->status = READY_STAT | SEEK_STAT;
2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123
            memset(s->io_buffer, 0, 0x200);
            s->io_buffer[0x00] = s->hcyl;			/* Cyl MSB */
            s->io_buffer[0x01] = s->lcyl;			/* Cyl LSB */
            s->io_buffer[0x02] = s->select;			/* Head */
            s->io_buffer[0x03] = s->sector;			/* Sector */
            s->io_buffer[0x04] = ide_get_sector(s) >> 16;	/* LBA MSB */
            s->io_buffer[0x05] = ide_get_sector(s) >> 8;	/* LBA */
            s->io_buffer[0x06] = ide_get_sector(s) >> 0;	/* LBA LSB */
            s->io_buffer[0x13] = 0x00;				/* Erase flag */
            s->io_buffer[0x18] = 0x00;				/* Hot count */
            s->io_buffer[0x19] = 0x00;				/* Hot count */
            s->io_buffer[0x1a] = 0x01;				/* Hot count */
            ide_transfer_start(s, s->io_buffer, 0x200, ide_transfer_stop);
2124
            ide_set_irq(s->bus);
2125 2126
            break;
        case CFA_ACCESS_METADATA_STORAGE:
2127
            if (s->drive_kind != IDE_CFATA)
2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143
                goto abort_cmd;
            switch (s->feature) {
            case 0x02:	/* Inquiry Metadata Storage */
                ide_cfata_metadata_inquiry(s);
                break;
            case 0x03:	/* Read Metadata Storage */
                ide_cfata_metadata_read(s);
                break;
            case 0x04:	/* Write Metadata Storage */
                ide_cfata_metadata_write(s);
                break;
            default:
                goto abort_cmd;
            }
            ide_transfer_start(s, s->io_buffer, 0x200, ide_transfer_stop);
            s->status = 0x00; /* NOTE: READY is _not_ set */
2144
            ide_set_irq(s->bus);
2145 2146
            break;
        case IBM_SENSE_CONDITION:
2147
            if (s->drive_kind != IDE_CFATA)
2148 2149 2150 2151 2152 2153 2154 2155
                goto abort_cmd;
            switch (s->feature) {
            case 0x01:  /* sense temperature in device */
                s->nsector = 0x50;      /* +20 C */
                break;
            default:
                goto abort_cmd;
            }
A
aliguori 已提交
2156
            s->status = READY_STAT | SEEK_STAT;
2157
            ide_set_irq(s->bus);
2158
            break;
B
Brian Wheeler 已提交
2159 2160

	case WIN_SMART:
2161
	    if (s->drive_kind == IDE_CD)
B
Brian Wheeler 已提交
2162 2163 2164 2165 2166 2167 2168 2169 2170
		goto abort_cmd;
	    if (s->hcyl != 0xc2 || s->lcyl != 0x4f)
		goto abort_cmd;
	    if (!s->smart_enabled && s->feature != SMART_ENABLE)
		goto abort_cmd;
	    switch (s->feature) {
	    case SMART_DISABLE:
		s->smart_enabled = 0;
		s->status = READY_STAT | SEEK_STAT;
2171
		ide_set_irq(s->bus);
B
Brian Wheeler 已提交
2172 2173 2174 2175
		break;
	    case SMART_ENABLE:
		s->smart_enabled = 1;
		s->status = READY_STAT | SEEK_STAT;
2176
		ide_set_irq(s->bus);
B
Brian Wheeler 已提交
2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189
		break;
	    case SMART_ATTR_AUTOSAVE:
		switch (s->sector) {
		case 0x00:
		    s->smart_autosave = 0;
		    break;
		case 0xf1:
		    s->smart_autosave = 1;
		    break;
		default:
		    goto abort_cmd;
		}
		s->status = READY_STAT | SEEK_STAT;
2190
		ide_set_irq(s->bus);
B
Brian Wheeler 已提交
2191 2192 2193 2194 2195 2196 2197 2198 2199 2200
		break;
	    case SMART_STATUS:
		if (!s->smart_errors) {
		    s->hcyl = 0xc2;
		    s->lcyl = 0x4f;
		} else {
		    s->hcyl = 0x2c;
		    s->lcyl = 0xf4;
		}
		s->status = READY_STAT | SEEK_STAT;
2201
		ide_set_irq(s->bus);
B
Brian Wheeler 已提交
2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216
		break;
	    case SMART_READ_THRESH:
		memset(s->io_buffer, 0, 0x200);
		s->io_buffer[0] = 0x01; /* smart struct version */
		for (n=0; n<30; n++) {
		    if (smart_attributes[n][0] == 0)
			break;
		    s->io_buffer[2+0+(n*12)] = smart_attributes[n][0];
		    s->io_buffer[2+1+(n*12)] = smart_attributes[n][4];
		}
		for (n=0; n<511; n++) /* checksum */
		    s->io_buffer[511] += s->io_buffer[n];
		s->io_buffer[511] = 0x100 - s->io_buffer[511];
		s->status = READY_STAT | SEEK_STAT;
		ide_transfer_start(s, s->io_buffer, 0x200, ide_transfer_stop);
2217
		ide_set_irq(s->bus);
B
Brian Wheeler 已提交
2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254
		break;
	    case SMART_READ_DATA:
		memset(s->io_buffer, 0, 0x200);
		s->io_buffer[0] = 0x01; /* smart struct version */
		for (n=0; n<30; n++) {
		    if (smart_attributes[n][0] == 0)
			break;
		    s->io_buffer[2+0+(n*12)] = smart_attributes[n][0];
		    s->io_buffer[2+1+(n*12)] = smart_attributes[n][1];
		    s->io_buffer[2+3+(n*12)] = smart_attributes[n][2];
		    s->io_buffer[2+4+(n*12)] = smart_attributes[n][3];
		}
		s->io_buffer[362] = 0x02 | (s->smart_autosave?0x80:0x00);
		if (s->smart_selftest_count == 0) {
		    s->io_buffer[363] = 0;
		} else {
		    s->io_buffer[363] = 
			s->smart_selftest_data[3 + 
					       (s->smart_selftest_count - 1) * 
					       24];
		}
		s->io_buffer[364] = 0x20; 
		s->io_buffer[365] = 0x01; 
		/* offline data collection capacity: execute + self-test*/
		s->io_buffer[367] = (1<<4 | 1<<3 | 1); 
		s->io_buffer[368] = 0x03; /* smart capability (1) */
		s->io_buffer[369] = 0x00; /* smart capability (2) */
		s->io_buffer[370] = 0x01; /* error logging supported */
		s->io_buffer[372] = 0x02; /* minutes for poll short test */
		s->io_buffer[373] = 0x36; /* minutes for poll ext test */
		s->io_buffer[374] = 0x01; /* minutes for poll conveyance */

		for (n=0; n<511; n++) 
		    s->io_buffer[511] += s->io_buffer[n];
		s->io_buffer[511] = 0x100 - s->io_buffer[511];
		s->status = READY_STAT | SEEK_STAT;
		ide_transfer_start(s, s->io_buffer, 0x200, ide_transfer_stop);
2255
		ide_set_irq(s->bus);
B
Brian Wheeler 已提交
2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288
		break;
	    case SMART_READ_LOG:
		switch (s->sector) {
		case 0x01: /* summary smart error log */
		    memset(s->io_buffer, 0, 0x200);
		    s->io_buffer[0] = 0x01;
		    s->io_buffer[1] = 0x00; /* no error entries */
		    s->io_buffer[452] = s->smart_errors & 0xff;
		    s->io_buffer[453] = (s->smart_errors & 0xff00) >> 8;

		    for (n=0; n<511; n++)
			s->io_buffer[511] += s->io_buffer[n];
		    s->io_buffer[511] = 0x100 - s->io_buffer[511];
		    break;
		case 0x06: /* smart self test log */
		    memset(s->io_buffer, 0, 0x200);
		    s->io_buffer[0] = 0x01; 
		    if (s->smart_selftest_count == 0) {
			s->io_buffer[508] = 0;
		    } else {
			s->io_buffer[508] = s->smart_selftest_count;
			for (n=2; n<506; n++) 
			    s->io_buffer[n] = s->smart_selftest_data[n];
		    }		    
		    for (n=0; n<511; n++)
			s->io_buffer[511] += s->io_buffer[n];
		    s->io_buffer[511] = 0x100 - s->io_buffer[511];
		    break;
		default:
		    goto abort_cmd;
		}
		s->status = READY_STAT | SEEK_STAT;
		ide_transfer_start(s, s->io_buffer, 0x200, ide_transfer_stop);
2289
		ide_set_irq(s->bus);
B
Brian Wheeler 已提交
2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304
		break;
	    case SMART_EXECUTE_OFFLINE:
		switch (s->sector) {
		case 0: /* off-line routine */
		case 1: /* short self test */
		case 2: /* extended self test */
		    s->smart_selftest_count++;
		    if(s->smart_selftest_count > 21)
			s->smart_selftest_count = 0;
		    n = 2 + (s->smart_selftest_count - 1) * 24;
		    s->smart_selftest_data[n] = s->sector;
		    s->smart_selftest_data[n+1] = 0x00; /* OK and finished */
		    s->smart_selftest_data[n+2] = 0x34; /* hour count lsb */
		    s->smart_selftest_data[n+3] = 0x12; /* hour count msb */
		    s->status = READY_STAT | SEEK_STAT;
2305
		    ide_set_irq(s->bus);
B
Brian Wheeler 已提交
2306 2307 2308 2309 2310 2311 2312 2313 2314
		    break;
		default:
		    goto abort_cmd;
		}
		break;
	    default:
		goto abort_cmd;
	    }
	    break;
B
bellard 已提交
2315 2316 2317
        default:
        abort_cmd:
            ide_abort_command(s);
2318
            ide_set_irq(s->bus);
B
bellard 已提交
2319 2320 2321 2322 2323
            break;
        }
    }
}

G
Gerd Hoffmann 已提交
2324
uint32_t ide_ioport_read(void *opaque, uint32_t addr1)
B
bellard 已提交
2325
{
G
Gerd Hoffmann 已提交
2326 2327
    IDEBus *bus = opaque;
    IDEState *s = idebus_active_if(bus);
B
bellard 已提交
2328
    uint32_t addr;
B
bellard 已提交
2329
    int ret, hob;
B
bellard 已提交
2330 2331

    addr = addr1 & 7;
B
bellard 已提交
2332 2333 2334
    /* FIXME: HOB readback uses bit 7, but it's always set right now */
    //hob = s->select & (1 << 7);
    hob = 0;
B
bellard 已提交
2335 2336 2337 2338 2339
    switch(addr) {
    case 0:
        ret = 0xff;
        break;
    case 1:
G
Gerd Hoffmann 已提交
2340 2341
        if ((!bus->ifs[0].bs && !bus->ifs[1].bs) ||
            (s != bus->ifs && !s->bs))
2342
            ret = 0;
B
bellard 已提交
2343
        else if (!hob)
2344
            ret = s->error;
B
bellard 已提交
2345 2346
	else
	    ret = s->hob_feature;
B
bellard 已提交
2347 2348
        break;
    case 2:
G
Gerd Hoffmann 已提交
2349
        if (!bus->ifs[0].bs && !bus->ifs[1].bs)
2350
            ret = 0;
B
bellard 已提交
2351
        else if (!hob)
2352
            ret = s->nsector & 0xff;
B
bellard 已提交
2353 2354
	else
	    ret = s->hob_nsector;
B
bellard 已提交
2355 2356
        break;
    case 3:
G
Gerd Hoffmann 已提交
2357
        if (!bus->ifs[0].bs && !bus->ifs[1].bs)
2358
            ret = 0;
B
bellard 已提交
2359
        else if (!hob)
2360
            ret = s->sector;
B
bellard 已提交
2361 2362
	else
	    ret = s->hob_sector;
B
bellard 已提交
2363 2364
        break;
    case 4:
G
Gerd Hoffmann 已提交
2365
        if (!bus->ifs[0].bs && !bus->ifs[1].bs)
2366
            ret = 0;
B
bellard 已提交
2367
        else if (!hob)
2368
            ret = s->lcyl;
B
bellard 已提交
2369 2370
	else
	    ret = s->hob_lcyl;
B
bellard 已提交
2371 2372
        break;
    case 5:
G
Gerd Hoffmann 已提交
2373
        if (!bus->ifs[0].bs && !bus->ifs[1].bs)
2374
            ret = 0;
B
bellard 已提交
2375
        else if (!hob)
2376
            ret = s->hcyl;
B
bellard 已提交
2377 2378
	else
	    ret = s->hob_hcyl;
B
bellard 已提交
2379 2380
        break;
    case 6:
G
Gerd Hoffmann 已提交
2381
        if (!bus->ifs[0].bs && !bus->ifs[1].bs)
2382 2383
            ret = 0;
        else
B
bellard 已提交
2384
            ret = s->select;
B
bellard 已提交
2385 2386 2387
        break;
    default:
    case 7:
G
Gerd Hoffmann 已提交
2388 2389
        if ((!bus->ifs[0].bs && !bus->ifs[1].bs) ||
            (s != bus->ifs && !s->bs))
2390 2391 2392
            ret = 0;
        else
            ret = s->status;
2393
        qemu_irq_lower(bus->irq);
B
bellard 已提交
2394 2395 2396 2397 2398 2399 2400 2401
        break;
    }
#ifdef DEBUG_IDE
    printf("ide: read addr=0x%x val=%02x\n", addr1, ret);
#endif
    return ret;
}

G
Gerd Hoffmann 已提交
2402
uint32_t ide_status_read(void *opaque, uint32_t addr)
B
bellard 已提交
2403
{
G
Gerd Hoffmann 已提交
2404 2405
    IDEBus *bus = opaque;
    IDEState *s = idebus_active_if(bus);
B
bellard 已提交
2406
    int ret;
B
bellard 已提交
2407

G
Gerd Hoffmann 已提交
2408 2409
    if ((!bus->ifs[0].bs && !bus->ifs[1].bs) ||
        (s != bus->ifs && !s->bs))
B
bellard 已提交
2410 2411 2412
        ret = 0;
    else
        ret = s->status;
B
bellard 已提交
2413 2414 2415 2416 2417 2418
#ifdef DEBUG_IDE
    printf("ide: read status addr=0x%x val=%02x\n", addr, ret);
#endif
    return ret;
}

G
Gerd Hoffmann 已提交
2419
void ide_cmd_write(void *opaque, uint32_t addr, uint32_t val)
B
bellard 已提交
2420
{
G
Gerd Hoffmann 已提交
2421
    IDEBus *bus = opaque;
B
bellard 已提交
2422 2423 2424 2425 2426 2427 2428
    IDEState *s;
    int i;

#ifdef DEBUG_IDE
    printf("ide: write control addr=0x%x val=%02x\n", addr, val);
#endif
    /* common for both drives */
2429
    if (!(bus->cmd & IDE_CMD_RESET) &&
B
bellard 已提交
2430 2431 2432
        (val & IDE_CMD_RESET)) {
        /* reset low to high */
        for(i = 0;i < 2; i++) {
G
Gerd Hoffmann 已提交
2433
            s = &bus->ifs[i];
B
bellard 已提交
2434 2435 2436
            s->status = BUSY_STAT | SEEK_STAT;
            s->error = 0x01;
        }
2437
    } else if ((bus->cmd & IDE_CMD_RESET) &&
B
bellard 已提交
2438 2439 2440
               !(val & IDE_CMD_RESET)) {
        /* high to low */
        for(i = 0;i < 2; i++) {
G
Gerd Hoffmann 已提交
2441
            s = &bus->ifs[i];
2442
            if (s->drive_kind == IDE_CD)
B
bellard 已提交
2443 2444
                s->status = 0x00; /* NOTE: READY is _not_ set */
            else
2445
                s->status = READY_STAT | SEEK_STAT;
B
bellard 已提交
2446 2447 2448 2449
            ide_set_signature(s);
        }
    }

2450
    bus->cmd = val;
B
bellard 已提交
2451 2452
}

G
Gerd Hoffmann 已提交
2453
void ide_data_writew(void *opaque, uint32_t addr, uint32_t val)
B
bellard 已提交
2454
{
G
Gerd Hoffmann 已提交
2455 2456
    IDEBus *bus = opaque;
    IDEState *s = idebus_active_if(bus);
B
bellard 已提交
2457 2458
    uint8_t *p;

2459 2460 2461 2462
    /* PIO data access allowed only when DRQ bit is set */
    if (!(s->status & DRQ_STAT))
        return;

B
bellard 已提交
2463
    p = s->data_ptr;
B
bellard 已提交
2464
    *(uint16_t *)p = le16_to_cpu(val);
B
bellard 已提交
2465 2466 2467 2468 2469 2470
    p += 2;
    s->data_ptr = p;
    if (p >= s->data_end)
        s->end_transfer_func(s);
}

G
Gerd Hoffmann 已提交
2471
uint32_t ide_data_readw(void *opaque, uint32_t addr)
B
bellard 已提交
2472
{
G
Gerd Hoffmann 已提交
2473 2474
    IDEBus *bus = opaque;
    IDEState *s = idebus_active_if(bus);
B
bellard 已提交
2475 2476
    uint8_t *p;
    int ret;
2477 2478 2479 2480 2481

    /* PIO data access allowed only when DRQ bit is set */
    if (!(s->status & DRQ_STAT))
        return 0;

B
bellard 已提交
2482
    p = s->data_ptr;
B
bellard 已提交
2483
    ret = cpu_to_le16(*(uint16_t *)p);
B
bellard 已提交
2484 2485 2486 2487 2488 2489 2490
    p += 2;
    s->data_ptr = p;
    if (p >= s->data_end)
        s->end_transfer_func(s);
    return ret;
}

G
Gerd Hoffmann 已提交
2491
void ide_data_writel(void *opaque, uint32_t addr, uint32_t val)
B
bellard 已提交
2492
{
G
Gerd Hoffmann 已提交
2493 2494
    IDEBus *bus = opaque;
    IDEState *s = idebus_active_if(bus);
B
bellard 已提交
2495 2496
    uint8_t *p;

2497 2498 2499 2500
    /* PIO data access allowed only when DRQ bit is set */
    if (!(s->status & DRQ_STAT))
        return;

B
bellard 已提交
2501
    p = s->data_ptr;
B
bellard 已提交
2502
    *(uint32_t *)p = le32_to_cpu(val);
B
bellard 已提交
2503 2504 2505 2506 2507 2508
    p += 4;
    s->data_ptr = p;
    if (p >= s->data_end)
        s->end_transfer_func(s);
}

G
Gerd Hoffmann 已提交
2509
uint32_t ide_data_readl(void *opaque, uint32_t addr)
B
bellard 已提交
2510
{
G
Gerd Hoffmann 已提交
2511 2512
    IDEBus *bus = opaque;
    IDEState *s = idebus_active_if(bus);
B
bellard 已提交
2513 2514
    uint8_t *p;
    int ret;
2515

2516 2517 2518 2519
    /* PIO data access allowed only when DRQ bit is set */
    if (!(s->status & DRQ_STAT))
        return 0;

B
bellard 已提交
2520
    p = s->data_ptr;
B
bellard 已提交
2521
    ret = cpu_to_le32(*(uint32_t *)p);
B
bellard 已提交
2522 2523 2524 2525 2526 2527 2528
    p += 4;
    s->data_ptr = p;
    if (p >= s->data_end)
        s->end_transfer_func(s);
    return ret;
}

2529 2530 2531 2532 2533 2534 2535 2536 2537 2538
static void ide_dummy_transfer_stop(IDEState *s)
{
    s->data_ptr = s->io_buffer;
    s->data_end = s->io_buffer;
    s->io_buffer[0] = 0xff;
    s->io_buffer[1] = 0xff;
    s->io_buffer[2] = 0xff;
    s->io_buffer[3] = 0xff;
}

B
Blue Swirl 已提交
2539
static void ide_reset(IDEState *s)
B
bellard 已提交
2540
{
B
Blue Swirl 已提交
2541 2542 2543
#ifdef DEBUG_IDE
    printf("ide: reset\n");
#endif
2544
    if (s->drive_kind == IDE_CFATA)
2545 2546 2547
        s->mult_sectors = 0;
    else
        s->mult_sectors = MAX_MULT_SECTORS;
B
Blue Swirl 已提交
2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562
    /* ide regs */
    s->feature = 0;
    s->error = 0;
    s->nsector = 0;
    s->sector = 0;
    s->lcyl = 0;
    s->hcyl = 0;

    /* lba48 */
    s->hob_feature = 0;
    s->hob_sector = 0;
    s->hob_nsector = 0;
    s->hob_lcyl = 0;
    s->hob_hcyl = 0;

B
bellard 已提交
2563
    s->select = 0xa0;
A
aliguori 已提交
2564
    s->status = READY_STAT | SEEK_STAT;
B
Blue Swirl 已提交
2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580

    s->lba48 = 0;

    /* ATAPI specific */
    s->sense_key = 0;
    s->asc = 0;
    s->cdrom_changed = 0;
    s->packet_transfer_size = 0;
    s->elementary_transfer_size = 0;
    s->io_buffer_index = 0;
    s->cd_sector_size = 0;
    s->atapi_dma = 0;
    /* ATA DMA state */
    s->io_buffer_size = 0;
    s->req_nb_sectors = 0;

B
bellard 已提交
2581
    ide_set_signature(s);
2582 2583 2584 2585
    /* init the transfer handler so that 0xffff is returned on data
       accesses */
    s->end_transfer_func = ide_dummy_transfer_stop;
    ide_dummy_transfer_stop(s);
2586
    s->media_changed = 0;
B
bellard 已提交
2587 2588
}

B
Blue Swirl 已提交
2589 2590 2591 2592 2593 2594 2595 2596 2597
void ide_bus_reset(IDEBus *bus)
{
    bus->unit = 0;
    bus->cmd = 0;
    ide_reset(&bus->ifs[0]);
    ide_reset(&bus->ifs[1]);
    ide_clear_hob(bus);
}

2598 2599
int ide_init_drive(IDEState *s, BlockDriverState *bs,
                   const char *version, const char *serial)
2600 2601 2602 2603
{
    int cylinders, heads, secs;
    uint64_t nb_sectors;

2604 2605 2606
    s->bs = bs;
    bdrv_get_geometry(bs, &nb_sectors);
    bdrv_guess_geometry(bs, &cylinders, &heads, &secs);
2607 2608 2609 2610 2611 2612 2613 2614 2615 2616
    s->cylinders = cylinders;
    s->heads = heads;
    s->sectors = secs;
    s->nb_sectors = nb_sectors;
    /* The SMART values should be preserved across power cycles
       but they aren't.  */
    s->smart_enabled = 1;
    s->smart_autosave = 1;
    s->smart_errors = 0;
    s->smart_selftest_count = 0;
2617
    if (bdrv_get_type_hint(bs) == BDRV_TYPE_CDROM) {
2618
        s->drive_kind = IDE_CD;
2619
        bdrv_set_change_cb(bs, cdrom_change_cb, s);
2620 2621 2622 2623 2624
    } else {
        if (bdrv_is_read_only(bs)) {
            error_report("Can't use a read-only drive");
            return -1;
        }
2625
    }
2626
    if (serial) {
2627 2628
        strncpy(s->drive_serial_str, serial, sizeof(s->drive_serial_str));
    } else {
2629 2630
        snprintf(s->drive_serial_str, sizeof(s->drive_serial_str),
                 "QM%05d", s->drive_serial);
2631
    }
G
Gerd Hoffmann 已提交
2632 2633 2634 2635 2636
    if (version) {
        pstrcpy(s->version, sizeof(s->version), version);
    } else {
        pstrcpy(s->version, sizeof(s->version), QEMU_VERSION);
    }
2637
    ide_reset(s);
2638
    bdrv_set_removable(bs, s->drive_kind == IDE_CD);
2639
    return 0;
2640 2641
}

2642
static void ide_init1(IDEBus *bus, int unit)
2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654
{
    static int drive_serial = 1;
    IDEState *s = &bus->ifs[unit];

    s->bus = bus;
    s->unit = unit;
    s->drive_serial = drive_serial++;
    s->io_buffer = qemu_blockalign(s->bs, IDE_DMA_BUF_SECTORS*512 + 4);
    s->io_buffer_total_len = IDE_DMA_BUF_SECTORS*512 + 4;
    s->smart_selftest_data = qemu_blockalign(s->bs, 512);
    s->sector_write_timer = qemu_new_timer(vm_clock,
                                           ide_sector_write_timer_cb, s);
2655 2656 2657 2658 2659 2660 2661 2662 2663
}

void ide_init2(IDEBus *bus, qemu_irq irq)
{
    int i;

    for(i = 0; i < 2; i++) {
        ide_init1(bus, i);
        ide_reset(&bus->ifs[i]);
2664
    }
2665
    bus->irq = irq;
2666 2667
}

2668 2669 2670
/* TODO convert users to qdev and remove */
void ide_init2_with_non_qdev_drives(IDEBus *bus, DriveInfo *hd0,
                                    DriveInfo *hd1, qemu_irq irq)
B
bellard 已提交
2671
{
2672
    int i;
2673
    DriveInfo *dinfo;
B
bellard 已提交
2674

2675
    for(i = 0; i < 2; i++) {
2676 2677 2678
        dinfo = i == 0 ? hd0 : hd1;
        ide_init1(bus, i);
        if (dinfo) {
2679 2680 2681 2682 2683
            if (ide_init_drive(&bus->ifs[i], dinfo->bdrv, NULL,
                               *dinfo->serial ? dinfo->serial : NULL) < 0) {
                error_report("Can't set up IDE drive %s", dinfo->id);
                exit(1);
            }
2684 2685 2686
        } else {
            ide_reset(&bus->ifs[i]);
        }
B
bellard 已提交
2687
    }
2688
    bus->irq = irq;
B
bellard 已提交
2689 2690
}

G
Gerd Hoffmann 已提交
2691
void ide_init_ioport(IDEBus *bus, int iobase, int iobase2)
B
bellard 已提交
2692
{
G
Gerd Hoffmann 已提交
2693 2694
    register_ioport_write(iobase, 8, 1, ide_ioport_write, bus);
    register_ioport_read(iobase, 8, 1, ide_ioport_read, bus);
2695
    if (iobase2) {
G
Gerd Hoffmann 已提交
2696 2697
        register_ioport_read(iobase2, 1, 1, ide_status_read, bus);
        register_ioport_write(iobase2, 1, 1, ide_cmd_write, bus);
B
bellard 已提交
2698
    }
2699

2700
    /* data ports */
G
Gerd Hoffmann 已提交
2701 2702 2703 2704
    register_ioport_write(iobase, 2, 2, ide_data_writew, bus);
    register_ioport_read(iobase, 2, 2, ide_data_readw, bus);
    register_ioport_write(iobase, 4, 4, ide_data_writel, bus);
    register_ioport_read(iobase, 4, 4, ide_data_readl, bus);
B
bellard 已提交
2705
}
B
bellard 已提交
2706

J
Juan Quintela 已提交
2707
static bool is_identify_set(void *opaque, int version_id)
2708
{
J
Juan Quintela 已提交
2709 2710 2711 2712 2713
    IDEState *s = opaque;

    return s->identify_set != 0;
}

2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732
static EndTransferFunc* transfer_end_table[] = {
        ide_sector_read,
        ide_sector_write,
        ide_transfer_stop,
        ide_atapi_cmd_reply_end,
        ide_atapi_cmd,
};

static int transfer_end_table_idx(EndTransferFunc *fn)
{
    int i;

    for (i = 0; i < ARRAY_SIZE(transfer_end_table); i++)
        if (transfer_end_table[i] == fn)
            return i;

    return -1;
}

J
Juan Quintela 已提交
2733
static int ide_drive_post_load(void *opaque, int version_id)
2734
{
J
Juan Quintela 已提交
2735 2736 2737
    IDEState *s = opaque;

    if (version_id < 3) {
G
Gleb Natapov 已提交
2738
        if (s->sense_key == SENSE_UNIT_ATTENTION &&
J
Juan Quintela 已提交
2739
            s->asc == ASC_MEDIUM_MAY_HAVE_CHANGED) {
G
Gleb Natapov 已提交
2740
            s->cdrom_changed = 1;
J
Juan Quintela 已提交
2741
        }
G
Gleb Natapov 已提交
2742
    }
2743 2744 2745 2746 2747 2748 2749

    if (s->cur_io_buffer_len) {
        s->end_transfer_func = transfer_end_table[s->end_transfer_fn_idx];
        s->data_ptr = s->io_buffer + s->cur_io_buffer_offset;
        s->data_end = s->data_ptr + s->cur_io_buffer_len;
    }
        
J
Juan Quintela 已提交
2750
    return 0;
2751 2752
}

2753 2754 2755
static void ide_drive_pre_save(void *opaque)
{
    IDEState *s = opaque;
B
Blue Swirl 已提交
2756
    int idx;
2757 2758 2759 2760 2761 2762 2763 2764 2765

    s->cur_io_buffer_len = 0;

    if (!(s->status & DRQ_STAT))
        return;

    s->cur_io_buffer_offset = s->data_ptr - s->io_buffer;
    s->cur_io_buffer_len = s->data_end - s->data_ptr;

B
Blue Swirl 已提交
2766 2767
    idx = transfer_end_table_idx(s->end_transfer_func);
    if (idx == -1) {
2768 2769 2770
        fprintf(stderr, "%s: invalid end_transfer_func for DRQ_STAT\n",
                        __func__);
        s->end_transfer_fn_idx = 2;
B
Blue Swirl 已提交
2771 2772
    } else {
        s->end_transfer_fn_idx = idx;
2773 2774 2775
    }
}

J
Juan Quintela 已提交
2776 2777
const VMStateDescription vmstate_ide_drive = {
    .name = "ide_drive",
2778
    .version_id = 4,
J
Juan Quintela 已提交
2779 2780
    .minimum_version_id = 0,
    .minimum_version_id_old = 0,
2781
    .pre_save = ide_drive_pre_save,
J
Juan Quintela 已提交
2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803
    .post_load = ide_drive_post_load,
    .fields      = (VMStateField []) {
        VMSTATE_INT32(mult_sectors, IDEState),
        VMSTATE_INT32(identify_set, IDEState),
        VMSTATE_BUFFER_TEST(identify_data, IDEState, is_identify_set),
        VMSTATE_UINT8(feature, IDEState),
        VMSTATE_UINT8(error, IDEState),
        VMSTATE_UINT32(nsector, IDEState),
        VMSTATE_UINT8(sector, IDEState),
        VMSTATE_UINT8(lcyl, IDEState),
        VMSTATE_UINT8(hcyl, IDEState),
        VMSTATE_UINT8(hob_feature, IDEState),
        VMSTATE_UINT8(hob_sector, IDEState),
        VMSTATE_UINT8(hob_nsector, IDEState),
        VMSTATE_UINT8(hob_lcyl, IDEState),
        VMSTATE_UINT8(hob_hcyl, IDEState),
        VMSTATE_UINT8(select, IDEState),
        VMSTATE_UINT8(status, IDEState),
        VMSTATE_UINT8(lba48, IDEState),
        VMSTATE_UINT8(sense_key, IDEState),
        VMSTATE_UINT8(asc, IDEState),
        VMSTATE_UINT8_V(cdrom_changed, IDEState, 3),
2804 2805 2806 2807 2808 2809 2810 2811
        VMSTATE_INT32_V(req_nb_sectors, IDEState, 4),
        VMSTATE_VARRAY_INT32(io_buffer, IDEState, io_buffer_total_len, 4,
			     vmstate_info_uint8, uint8_t),
        VMSTATE_INT32_V(cur_io_buffer_offset, IDEState, 4),
        VMSTATE_INT32_V(cur_io_buffer_len, IDEState, 4),
        VMSTATE_UINT8_V(end_transfer_fn_idx, IDEState, 4),
        VMSTATE_INT32_V(elementary_transfer_size, IDEState, 4),
        VMSTATE_INT32_V(packet_transfer_size, IDEState, 4),
J
Juan Quintela 已提交
2812 2813 2814 2815
        VMSTATE_END_OF_LIST()
    }
};

J
Juan Quintela 已提交
2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827
const VMStateDescription vmstate_ide_bus = {
    .name = "ide_bus",
    .version_id = 1,
    .minimum_version_id = 1,
    .minimum_version_id_old = 1,
    .fields      = (VMStateField []) {
        VMSTATE_UINT8(cmd, IDEBus),
        VMSTATE_UINT8(unit, IDEBus),
        VMSTATE_END_OF_LIST()
    }
};

B
bellard 已提交
2828 2829 2830
/***********************************************************/
/* PCI IDE definitions */

2831
static void ide_dma_start(IDEState *s, BlockDriverCompletionFunc *dma_cb)
B
bellard 已提交
2832
{
G
Gerd Hoffmann 已提交
2833
    BMDMAState *bm = s->bus->bmdma;
B
bellard 已提交
2834 2835
    if(!bm)
        return;
G
Gerd Hoffmann 已提交
2836
    bm->unit = s->unit;
B
bellard 已提交
2837
    bm->dma_cb = dma_cb;
2838 2839 2840
    bm->cur_prd_last = 0;
    bm->cur_prd_addr = 0;
    bm->cur_prd_len = 0;
2841 2842
    bm->sector_num = ide_get_sector(s);
    bm->nsector = s->nsector;
B
bellard 已提交
2843
    if (bm->status & BM_STATUS_DMAING) {
2844
        bm->dma_cb(bm, 0);
B
bellard 已提交
2845 2846 2847
    }
}

K
Kevin Wolf 已提交
2848
static void ide_dma_restart(IDEState *s, int is_read)
2849
{
G
Gerd Hoffmann 已提交
2850
    BMDMAState *bm = s->bus->bmdma;
2851 2852 2853 2854 2855
    ide_set_sector(s, bm->sector_num);
    s->io_buffer_index = 0;
    s->io_buffer_size = 0;
    s->nsector = bm->nsector;
    bm->cur_addr = bm->addr;
K
Kevin Wolf 已提交
2856 2857 2858 2859 2860 2861 2862

    if (is_read) {
        bm->dma_cb = ide_read_dma_cb;
    } else {
        bm->dma_cb = ide_write_dma_cb;
    }

2863 2864 2865
    ide_dma_start(s, bm->dma_cb);
}

G
Gerd Hoffmann 已提交
2866
void ide_dma_cancel(BMDMAState *bm)
2867 2868 2869 2870 2871 2872 2873 2874 2875
{
    if (bm->status & BM_STATUS_DMAING) {
        if (bm->aiocb) {
#ifdef DEBUG_AIO
            printf("aio_cancel\n");
#endif
            bdrv_aio_cancel(bm->aiocb);
            bm->aiocb = NULL;
        }
K
Kevin Wolf 已提交
2876 2877 2878 2879
        bm->status &= ~BM_STATUS_DMAING;
        /* cancel DMA request */
        bm->unit = -1;
        bm->dma_cb = NULL;
2880 2881 2882
    }
}

B
Blue Swirl 已提交
2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898
void ide_dma_reset(BMDMAState *bm)
{
#ifdef DEBUG_IDE
    printf("ide: dma_reset\n");
#endif
    ide_dma_cancel(bm);
    bm->cmd = 0;
    bm->status = 0;
    bm->addr = 0;
    bm->cur_addr = 0;
    bm->cur_prd_last = 0;
    bm->cur_prd_addr = 0;
    bm->cur_prd_len = 0;
    bm->sector_num = 0;
    bm->nsector = 0;
}