macio.c 17.0 KB
Newer Older
G
Gerd Hoffmann 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * QEMU IDE Emulation: MacIO support.
 *
 * Copyright (c) 2003 Fabrice Bellard
 * Copyright (c) 2006 Openedhand Ltd.
 *
 * 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.
 */
P
Peter Maydell 已提交
25
#include "qemu/osdep.h"
26 27
#include "hw/hw.h"
#include "hw/ppc/mac.h"
P
Paolo Bonzini 已提交
28
#include "hw/ppc/mac_dbdma.h"
29
#include "sysemu/block-backend.h"
30
#include "sysemu/dma.h"
G
Gerd Hoffmann 已提交
31 32

#include <hw/ide/internal.h>
G
Gerd Hoffmann 已提交
33

34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
/* debug MACIO */
// #define DEBUG_MACIO

#ifdef DEBUG_MACIO
static const int debug_macio = 1;
#else
static const int debug_macio = 0;
#endif

#define MACIO_DPRINTF(fmt, ...) do { \
        if (debug_macio) { \
            printf(fmt , ## __VA_ARGS__); \
        } \
    } while (0)


G
Gerd Hoffmann 已提交
50 51 52
/***********************************************************/
/* MacIO based PowerPC IDE */

B
Blue Swirl 已提交
53 54
#define MACIO_PAGE_SIZE 4096

55 56 57
/*
 * Unaligned DMA read/write access functions required for OS X/Darwin which
 * don't perform DMA transactions on sector boundaries. These functions are
58 59
 * modelled on bdrv_co_preadv()/bdrv_co_pwritev() and so should be easy to
 * remove if the unaligned block APIs are ever exposed.
60 61
 */

62
static void pmac_dma_read(BlockBackend *blk,
63
                          int64_t offset, unsigned int bytes,
64
                          void (*cb)(void *opaque, int ret), void *opaque)
G
Gerd Hoffmann 已提交
65 66 67 68
{
    DBDMA_io *io = opaque;
    MACIOIDEState *m = io->opaque;
    IDEState *s = idebus_active_if(&m->bus);
69 70
    dma_addr_t dma_addr, dma_len;
    void *mem;
71 72 73 74
    int64_t sector_num;
    int nsector;
    uint64_t align = BDRV_SECTOR_SIZE;
    size_t head_bytes, tail_bytes;
G
Gerd Hoffmann 已提交
75

76 77 78
    qemu_iovec_destroy(&io->iov);
    qemu_iovec_init(&io->iov, io->len / MACIO_PAGE_SIZE + 1);

79 80
    sector_num = (offset >> 9);
    nsector = (io->len >> 9);
81

82 83 84
    MACIO_DPRINTF("--- DMA read transfer (0x%" HWADDR_PRIx ",0x%x): "
                  "sector_num: %" PRId64 ", nsector: %d\n", io->addr, io->len,
                  sector_num, nsector);
85

86 87 88 89
    dma_addr = io->addr;
    dma_len = io->len;
    mem = dma_memory_map(&address_space_memory, dma_addr, &dma_len,
                         DMA_DIRECTION_FROM_DEVICE);
90

91 92
    if (offset & (align - 1)) {
        head_bytes = offset & (align - 1);
93

94 95
        MACIO_DPRINTF("--- DMA unaligned head: sector %" PRId64 ", "
                      "discarding %zu bytes\n", sector_num, head_bytes);
96

97
        qemu_iovec_add(&io->iov, &io->head_remainder, head_bytes);
98

99 100
        bytes += offset & (align - 1);
        offset = offset & ~(align - 1);
G
Gerd Hoffmann 已提交
101 102
    }

103
    qemu_iovec_add(&io->iov, mem, io->len);
104

105 106
    if ((offset + bytes) & (align - 1)) {
        tail_bytes = (offset + bytes) & (align - 1);
107

108 109
        MACIO_DPRINTF("--- DMA unaligned tail: sector %" PRId64 ", "
                      "discarding bytes %zu\n", sector_num, tail_bytes);
110

111
        qemu_iovec_add(&io->iov, &io->tail_remainder, align - tail_bytes);
112
        bytes = ROUND_UP(bytes, align);
G
Gerd Hoffmann 已提交
113 114
    }

115 116
    s->io_buffer_size -= io->len;
    s->io_buffer_index += io->len;
117

118
    io->len = 0;
119

120 121
    MACIO_DPRINTF("--- Block read transfer - sector_num: %" PRIx64 "  "
                  "nsector: %x\n", (offset >> 9), (bytes >> 9));
122

123
    s->bus->dma->aiocb = blk_aio_preadv(blk, offset, &io->iov, 0, cb, io);
124
}
125

126
static void pmac_dma_write(BlockBackend *blk,
127
                         int64_t offset, int bytes,
128 129 130 131 132 133 134
                         void (*cb)(void *opaque, int ret), void *opaque)
{
    DBDMA_io *io = opaque;
    MACIOIDEState *m = io->opaque;
    IDEState *s = idebus_active_if(&m->bus);
    dma_addr_t dma_addr, dma_len;
    void *mem;
135 136 137 138 139
    int64_t sector_num;
    int nsector;
    uint64_t align = BDRV_SECTOR_SIZE;
    size_t head_bytes, tail_bytes;
    bool unaligned_head = false, unaligned_tail = false;
140 141 142 143

    qemu_iovec_destroy(&io->iov);
    qemu_iovec_init(&io->iov, io->len / MACIO_PAGE_SIZE + 1);

144 145
    sector_num = (offset >> 9);
    nsector = (io->len >> 9);
146

147 148 149
    MACIO_DPRINTF("--- DMA write transfer (0x%" HWADDR_PRIx ",0x%x): "
                  "sector_num: %" PRId64 ", nsector: %d\n", io->addr, io->len,
                  sector_num, nsector);
150

151 152 153 154
    dma_addr = io->addr;
    dma_len = io->len;
    mem = dma_memory_map(&address_space_memory, dma_addr, &dma_len,
                         DMA_DIRECTION_TO_DEVICE);
155

156 157 158
    if (offset & (align - 1)) {
        head_bytes = offset & (align - 1);
        sector_num = ((offset & ~(align - 1)) >> 9);
159

160 161
        MACIO_DPRINTF("--- DMA unaligned head: pre-reading head sector %"
                      PRId64 "\n", sector_num);
162

163
        blk_pread(s->blk, (sector_num << 9), &io->head_remainder, align);
164

165 166
        qemu_iovec_add(&io->iov, &io->head_remainder, head_bytes);
        qemu_iovec_add(&io->iov, mem, io->len);
167

168 169 170 171
        bytes += offset & (align - 1);
        offset = offset & ~(align - 1);

        unaligned_head = true;
172 173
    }

174 175 176
    if ((offset + bytes) & (align - 1)) {
        tail_bytes = (offset + bytes) & (align - 1);
        sector_num = (((offset + bytes) & ~(align - 1)) >> 9);
177

178 179
        MACIO_DPRINTF("--- DMA unaligned tail: pre-reading tail sector %"
                      PRId64 "\n", sector_num);
180

181
        blk_pread(s->blk, (sector_num << 9), &io->tail_remainder, align);
182

183 184 185
        if (!unaligned_head) {
            qemu_iovec_add(&io->iov, mem, io->len);
        }
186

187 188
        qemu_iovec_add(&io->iov, &io->tail_remainder + tail_bytes,
                       align - tail_bytes);
189

190
        bytes = ROUND_UP(bytes, align);
191

192
        unaligned_tail = true;
193 194
    }

195 196 197 198 199 200
    if (!unaligned_head && !unaligned_tail) {
        qemu_iovec_add(&io->iov, mem, io->len);
    }

    s->io_buffer_size -= io->len;
    s->io_buffer_index += io->len;
201 202 203

    io->len = 0;

204 205
    MACIO_DPRINTF("--- Block write transfer - sector_num: %" PRIx64 "  "
                  "nsector: %x\n", (offset >> 9), (bytes >> 9));
206

207
    s->bus->dma->aiocb = blk_aio_pwritev(blk, offset, &io->iov, 0, cb, io);
208 209
}

A
Aurelien Jarno 已提交
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
static void pmac_dma_trim(BlockBackend *blk,
                        int64_t offset, int bytes,
                        void (*cb)(void *opaque, int ret), void *opaque)
{
    DBDMA_io *io = opaque;
    MACIOIDEState *m = io->opaque;
    IDEState *s = idebus_active_if(&m->bus);
    dma_addr_t dma_addr, dma_len;
    void *mem;

    qemu_iovec_destroy(&io->iov);
    qemu_iovec_init(&io->iov, io->len / MACIO_PAGE_SIZE + 1);

    dma_addr = io->addr;
    dma_len = io->len;
    mem = dma_memory_map(&address_space_memory, dma_addr, &dma_len,
                         DMA_DIRECTION_TO_DEVICE);

    qemu_iovec_add(&io->iov, mem, io->len);
    s->io_buffer_size -= io->len;
    s->io_buffer_index += io->len;
    io->len = 0;

233
    s->bus->dma->aiocb = ide_issue_trim(offset, &io->iov, cb, io, blk);
A
Aurelien Jarno 已提交
234 235
}

236 237 238 239 240
static void pmac_ide_atapi_transfer_cb(void *opaque, int ret)
{
    DBDMA_io *io = opaque;
    MACIOIDEState *m = io->opaque;
    IDEState *s = idebus_active_if(&m->bus);
241
    int64_t offset;
242

243
    MACIO_DPRINTF("pmac_ide_atapi_transfer_cb\n");
244 245

    if (ret < 0) {
246
        MACIO_DPRINTF("DMA error: %d\n", ret);
247 248 249 250 251 252 253 254 255
        ide_atapi_io_error(s, ret);
        goto done;
    }

    if (!m->dma_active) {
        MACIO_DPRINTF("waiting for data (%#x - %#x - %x)\n",
                      s->nsector, io->len, s->status);
        /* data not ready yet, wait for the channel to get restarted */
        io->processing = false;
256 257 258
        return;
    }

259
    if (s->io_buffer_size <= 0) {
260
        MACIO_DPRINTF("End of IDE transfer\n");
G
Gerd Hoffmann 已提交
261
        ide_atapi_cmd_ok(s);
262
        m->dma_active = false;
263
        goto done;
264
    }
G
Gerd Hoffmann 已提交
265 266

    if (io->len == 0) {
267
        MACIO_DPRINTF("End of DMA transfer\n");
268
        goto done;
G
Gerd Hoffmann 已提交
269 270
    }

271 272 273
    if (s->lba == -1) {
        /* Non-block ATAPI transfer - just copy to RAM */
        s->io_buffer_size = MIN(s->io_buffer_size, io->len);
274 275
        dma_memory_write(&address_space_memory, io->addr, s->io_buffer,
                         s->io_buffer_size);
276 277 278
        ide_atapi_cmd_ok(s);
        m->dma_active = false;
        goto done;
279 280
    }

281
    /* Calculate current offset */
282
    offset = ((int64_t)s->lba << 11) + s->io_buffer_index;
283 284

    pmac_dma_read(s->blk, offset, io->len, pmac_ide_atapi_transfer_cb, io);
285 286 287
    return;

done:
288 289 290 291 292
    if (ret < 0) {
        block_acct_failed(blk_get_stats(s->blk), &s->acct);
    } else {
        block_acct_done(blk_get_stats(s->blk), &s->acct);
    }
293 294

    ide_set_inactive(s, false);
295
    io->dma_end(opaque);
G
Gerd Hoffmann 已提交
296 297 298 299 300 301 302
}

static void pmac_ide_transfer_cb(void *opaque, int ret)
{
    DBDMA_io *io = opaque;
    MACIOIDEState *m = io->opaque;
    IDEState *s = idebus_active_if(&m->bus);
303
    int64_t offset;
304 305

    MACIO_DPRINTF("pmac_ide_transfer_cb\n");
G
Gerd Hoffmann 已提交
306 307

    if (ret < 0) {
308
        MACIO_DPRINTF("DMA error: %d\n", ret);
309
        ide_dma_error(s);
310
        goto done;
G
Gerd Hoffmann 已提交
311 312
    }

313 314 315 316 317 318 319 320
    if (!m->dma_active) {
        MACIO_DPRINTF("waiting for data (%#x - %#x - %x)\n",
                      s->nsector, io->len, s->status);
        /* data not ready yet, wait for the channel to get restarted */
        io->processing = false;
        return;
    }

321
    if (s->io_buffer_size <= 0) {
322
        MACIO_DPRINTF("End of IDE transfer\n");
G
Gerd Hoffmann 已提交
323
        s->status = READY_STAT | SEEK_STAT;
324
        ide_set_irq(s->bus);
325
        m->dma_active = false;
326
        goto done;
G
Gerd Hoffmann 已提交
327 328 329
    }

    if (io->len == 0) {
330
        MACIO_DPRINTF("End of DMA transfer\n");
331
        goto done;
G
Gerd Hoffmann 已提交
332 333
    }

334
    /* Calculate number of sectors */
335
    offset = (ide_get_sector(s) << 9) + s->io_buffer_index;
336

337 338
    switch (s->dma_cmd) {
    case IDE_DMA_READ:
339
        pmac_dma_read(s->blk, offset, io->len, pmac_ide_transfer_cb, io);
340 341
        break;
    case IDE_DMA_WRITE:
342
        pmac_dma_write(s->blk, offset, io->len, pmac_ide_transfer_cb, io);
343
        break;
C
Christoph Hellwig 已提交
344
    case IDE_DMA_TRIM:
A
Aurelien Jarno 已提交
345
        pmac_dma_trim(s->blk, offset, io->len, pmac_ide_transfer_cb, io);
C
Christoph Hellwig 已提交
346
        break;
347 348
    default:
        abort();
349
    }
350

351
    return;
352

353 354
done:
    if (s->dma_cmd == IDE_DMA_READ || s->dma_cmd == IDE_DMA_WRITE) {
355 356 357 358 359
        if (ret < 0) {
            block_acct_failed(blk_get_stats(s->blk), &s->acct);
        } else {
            block_acct_done(blk_get_stats(s->blk), &s->acct);
        }
360
    }
361 362

    ide_set_inactive(s, false);
363
    io->dma_end(opaque);
G
Gerd Hoffmann 已提交
364 365 366 367 368 369 370
}

static void pmac_ide_transfer(DBDMA_io *io)
{
    MACIOIDEState *m = io->opaque;
    IDEState *s = idebus_active_if(&m->bus);

371 372
    MACIO_DPRINTF("\n");

373
    if (s->drive_kind == IDE_CD) {
374
        block_acct_start(blk_get_stats(s->blk), &s->acct, io->len,
375
                         BLOCK_ACCT_READ);
376

G
Gerd Hoffmann 已提交
377 378 379 380
        pmac_ide_atapi_transfer_cb(io, 0);
        return;
    }

381 382
    switch (s->dma_cmd) {
    case IDE_DMA_READ:
383
        block_acct_start(blk_get_stats(s->blk), &s->acct, io->len,
384
                         BLOCK_ACCT_READ);
385 386
        break;
    case IDE_DMA_WRITE:
387
        block_acct_start(blk_get_stats(s->blk), &s->acct, io->len,
388
                         BLOCK_ACCT_WRITE);
389 390 391 392 393
        break;
    default:
        break;
    }

G
Gerd Hoffmann 已提交
394 395 396 397 398 399
    pmac_ide_transfer_cb(io, 0);
}

static void pmac_ide_flush(DBDMA_io *io)
{
    MACIOIDEState *m = io->opaque;
400
    IDEState *s = idebus_active_if(&m->bus);
G
Gerd Hoffmann 已提交
401

402
    if (s->bus->dma->aiocb) {
403
        blk_drain_all();
404
    }
G
Gerd Hoffmann 已提交
405 406 407 408
}

/* PowerMac IDE memory IO */
static void pmac_ide_writeb (void *opaque,
A
Avi Kivity 已提交
409
                             hwaddr addr, uint32_t val)
G
Gerd Hoffmann 已提交
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
{
    MACIOIDEState *d = opaque;

    addr = (addr & 0xFFF) >> 4;
    switch (addr) {
    case 1 ... 7:
        ide_ioport_write(&d->bus, addr, val);
        break;
    case 8:
    case 22:
        ide_cmd_write(&d->bus, 0, val);
        break;
    default:
        break;
    }
}

A
Avi Kivity 已提交
427
static uint32_t pmac_ide_readb (void *opaque,hwaddr addr)
G
Gerd Hoffmann 已提交
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
{
    uint8_t retval;
    MACIOIDEState *d = opaque;

    addr = (addr & 0xFFF) >> 4;
    switch (addr) {
    case 1 ... 7:
        retval = ide_ioport_read(&d->bus, addr);
        break;
    case 8:
    case 22:
        retval = ide_status_read(&d->bus, 0);
        break;
    default:
        retval = 0xFF;
        break;
    }
    return retval;
}

static void pmac_ide_writew (void *opaque,
A
Avi Kivity 已提交
449
                             hwaddr addr, uint32_t val)
G
Gerd Hoffmann 已提交
450 451 452 453 454 455 456 457 458 459
{
    MACIOIDEState *d = opaque;

    addr = (addr & 0xFFF) >> 4;
    val = bswap16(val);
    if (addr == 0) {
        ide_data_writew(&d->bus, 0, val);
    }
}

A
Avi Kivity 已提交
460
static uint32_t pmac_ide_readw (void *opaque,hwaddr addr)
G
Gerd Hoffmann 已提交
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
{
    uint16_t retval;
    MACIOIDEState *d = opaque;

    addr = (addr & 0xFFF) >> 4;
    if (addr == 0) {
        retval = ide_data_readw(&d->bus, 0);
    } else {
        retval = 0xFFFF;
    }
    retval = bswap16(retval);
    return retval;
}

static void pmac_ide_writel (void *opaque,
A
Avi Kivity 已提交
476
                             hwaddr addr, uint32_t val)
G
Gerd Hoffmann 已提交
477 478 479 480 481 482 483 484 485 486
{
    MACIOIDEState *d = opaque;

    addr = (addr & 0xFFF) >> 4;
    val = bswap32(val);
    if (addr == 0) {
        ide_data_writel(&d->bus, 0, val);
    }
}

A
Avi Kivity 已提交
487
static uint32_t pmac_ide_readl (void *opaque,hwaddr addr)
G
Gerd Hoffmann 已提交
488 489 490 491 492 493 494 495 496 497 498 499 500 501
{
    uint32_t retval;
    MACIOIDEState *d = opaque;

    addr = (addr & 0xFFF) >> 4;
    if (addr == 0) {
        retval = ide_data_readl(&d->bus, 0);
    } else {
        retval = 0xFFFFFFFF;
    }
    retval = bswap32(retval);
    return retval;
}

502
static const MemoryRegionOps pmac_ide_ops = {
A
Avi Kivity 已提交
503 504 505 506 507 508 509 510 511 512 513 514 515
    .old_mmio = {
        .write = {
            pmac_ide_writeb,
            pmac_ide_writew,
            pmac_ide_writel,
        },
        .read = {
            pmac_ide_readb,
            pmac_ide_readw,
            pmac_ide_readl,
        },
    },
    .endianness = DEVICE_NATIVE_ENDIAN,
G
Gerd Hoffmann 已提交
516 517
};

J
Juan Quintela 已提交
518 519
static const VMStateDescription vmstate_pmac = {
    .name = "ide",
520
    .version_id = 4,
J
Juan Quintela 已提交
521
    .minimum_version_id = 0,
522
    .fields = (VMStateField[]) {
J
Juan Quintela 已提交
523 524
        VMSTATE_IDE_BUS(bus, MACIOIDEState),
        VMSTATE_IDE_DRIVES(bus.ifs, MACIOIDEState),
525
        VMSTATE_BOOL(dma_active, MACIOIDEState),
J
Juan Quintela 已提交
526
        VMSTATE_END_OF_LIST()
G
Gerd Hoffmann 已提交
527
    }
J
Juan Quintela 已提交
528
};
G
Gerd Hoffmann 已提交
529

A
Andreas Färber 已提交
530
static void macio_ide_reset(DeviceState *dev)
G
Gerd Hoffmann 已提交
531
{
A
Andreas Färber 已提交
532
    MACIOIDEState *d = MACIO_IDE(dev);
G
Gerd Hoffmann 已提交
533

B
Blue Swirl 已提交
534
    ide_bus_reset(&d->bus);
G
Gerd Hoffmann 已提交
535 536
}

537 538 539 540 541
static int ide_nop_int(IDEDMA *dma, int x)
{
    return 0;
}

J
John Snow 已提交
542
static int32_t ide_nop_int32(IDEDMA *dma, int32_t l)
543 544 545 546
{
    return 0;
}

547
static void ide_dbdma_start(IDEDMA *dma, IDEState *s,
548
                            BlockCompletionFunc *cb)
549 550
{
    MACIOIDEState *m = container_of(dma, MACIOIDEState, dma);
551

552
    s->io_buffer_index = 0;
553 554
    if (s->drive_kind == IDE_CD) {
        s->io_buffer_size = s->packet_transfer_size;
555
    } else {
556
        s->io_buffer_size = s->nsector * BDRV_SECTOR_SIZE;
557
    }
558

559 560 561 562 563
    MACIO_DPRINTF("\n\n------------ IDE transfer\n");
    MACIO_DPRINTF("buffer_size: %x   buffer_index: %x\n",
                  s->io_buffer_size, s->io_buffer_index);
    MACIO_DPRINTF("lba: %x    size: %x\n", s->lba, s->io_buffer_size);
    MACIO_DPRINTF("-------------------------\n");
564

565
    m->dma_active = true;
566 567 568 569 570
    DBDMA_kick(m->dbdma);
}

static const IDEDMAOps dbdma_ops = {
    .start_dma      = ide_dbdma_start,
571
    .prepare_buf    = ide_nop_int32,
572 573 574
    .rw_buf         = ide_nop_int,
};

A
Andreas Färber 已提交
575
static void macio_ide_realizefn(DeviceState *dev, Error **errp)
G
Gerd Hoffmann 已提交
576
{
A
Andreas Färber 已提交
577 578 579
    MACIOIDEState *s = MACIO_IDE(dev);

    ide_init2(&s->bus, s->irq);
580 581 582 583

    /* Register DMA callbacks */
    s->dma.ops = &dbdma_ops;
    s->bus.dma = &s->dma;
A
Andreas Färber 已提交
584 585 586 587 588 589 590
}

static void macio_ide_initfn(Object *obj)
{
    SysBusDevice *d = SYS_BUS_DEVICE(obj);
    MACIOIDEState *s = MACIO_IDE(obj);

591
    ide_bus_new(&s->bus, sizeof(s->bus), DEVICE(obj), 0, 2);
592
    memory_region_init_io(&s->mem, obj, &pmac_ide_ops, s, "pmac-ide", 0x1000);
A
Andreas Färber 已提交
593 594 595 596 597 598 599 600 601 602 603 604
    sysbus_init_mmio(d, &s->mem);
    sysbus_init_irq(d, &s->irq);
    sysbus_init_irq(d, &s->dma_irq);
}

static void macio_ide_class_init(ObjectClass *oc, void *data)
{
    DeviceClass *dc = DEVICE_CLASS(oc);

    dc->realize = macio_ide_realizefn;
    dc->reset = macio_ide_reset;
    dc->vmsd = &vmstate_pmac;
605
    set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
A
Andreas Färber 已提交
606
}
G
Gerd Hoffmann 已提交
607

A
Andreas Färber 已提交
608 609 610 611 612 613 614
static const TypeInfo macio_ide_type_info = {
    .name = TYPE_MACIO_IDE,
    .parent = TYPE_SYS_BUS_DEVICE,
    .instance_size = sizeof(MACIOIDEState),
    .instance_init = macio_ide_initfn,
    .class_init = macio_ide_class_init,
};
G
Gerd Hoffmann 已提交
615

A
Andreas Färber 已提交
616 617 618 619
static void macio_ide_register_types(void)
{
    type_register_static(&macio_ide_type_info);
}
G
Gerd Hoffmann 已提交
620

621
/* hd_table must contain 2 block drivers */
A
Andreas Färber 已提交
622 623 624
void macio_ide_init_drives(MACIOIDEState *s, DriveInfo **hd_table)
{
    int i;
G
Gerd Hoffmann 已提交
625

A
Andreas Färber 已提交
626 627 628 629 630
    for (i = 0; i < 2; i++) {
        if (hd_table[i]) {
            ide_create_drive(&s->bus, i, hd_table[i]);
        }
    }
G
Gerd Hoffmann 已提交
631
}
A
Andreas Färber 已提交
632 633 634

void macio_ide_register_dma(MACIOIDEState *s, void *dbdma, int channel)
{
635
    s->dbdma = dbdma;
A
Andreas Färber 已提交
636 637 638 639 640
    DBDMA_register_channel(dbdma, channel, s->dma_irq,
                           pmac_ide_transfer, pmac_ide_flush, s);
}

type_init(macio_ide_register_types)