macio.c 17.1 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 58 59 60 61
/*
 * Unaligned DMA read/write access functions required for OS X/Darwin which
 * don't perform DMA transactions on sector boundaries. These functions are
 * modelled on bdrv_co_do_preadv()/bdrv_co_do_pwritev() and so should be
 * easy to remove if the unaligned block APIs are ever exposed.
 */

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 124
    s->bus->dma->aiocb = blk_aio_readv(blk, (offset >> 9), &io->iov,
                             (bytes >> 9), cb, io);
125
}
126

127
static void pmac_dma_write(BlockBackend *blk,
128
                         int64_t offset, int bytes,
129 130 131 132 133 134 135
                         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;
136 137 138 139 140
    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;
141 142 143 144

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

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

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

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

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

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

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

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

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

        unaligned_head = true;
173 174
    }

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

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

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

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

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

191
        bytes = ROUND_UP(bytes, align);
192

193
        unaligned_tail = true;
194 195
    }

196 197 198 199 200 201
    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;
202 203 204

    io->len = 0;

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

208 209
    s->bus->dma->aiocb = blk_aio_writev(blk, (offset >> 9), &io->iov,
                             (bytes >> 9), cb, io);
210 211
}

A
Aurelien Jarno 已提交
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
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;

235 236
    s->bus->dma->aiocb = ide_issue_trim(blk, (offset >> 9), &io->iov,
                             (bytes >> 9), cb, io);
A
Aurelien Jarno 已提交
237 238
}

239 240 241 242 243
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);
244
    int64_t offset;
245

246
    MACIO_DPRINTF("pmac_ide_atapi_transfer_cb\n");
247 248

    if (ret < 0) {
249
        MACIO_DPRINTF("DMA error: %d\n", ret);
250 251 252 253 254 255 256 257 258
        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;
259 260 261
        return;
    }

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

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

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

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

    pmac_dma_read(s->blk, offset, io->len, pmac_ide_atapi_transfer_cb, io);
287 288 289
    return;

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

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

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);
305
    int64_t offset;
306 307

    MACIO_DPRINTF("pmac_ide_transfer_cb\n");
G
Gerd Hoffmann 已提交
308 309

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

315 316 317 318 319 320 321 322
    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;
    }

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

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

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

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

353
    return;
354

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

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

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

373 374
    MACIO_DPRINTF("\n");

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

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

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

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

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

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

/* PowerMac IDE memory IO */
static void pmac_ide_writeb (void *opaque,
A
Avi Kivity 已提交
411
                             hwaddr addr, uint32_t val)
G
Gerd Hoffmann 已提交
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
{
    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 已提交
429
static uint32_t pmac_ide_readb (void *opaque,hwaddr addr)
G
Gerd Hoffmann 已提交
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
{
    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 已提交
451
                             hwaddr addr, uint32_t val)
G
Gerd Hoffmann 已提交
452 453 454 455 456 457 458 459 460 461
{
    MACIOIDEState *d = opaque;

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

A
Avi Kivity 已提交
462
static uint32_t pmac_ide_readw (void *opaque,hwaddr addr)
G
Gerd Hoffmann 已提交
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
{
    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 已提交
478
                             hwaddr addr, uint32_t val)
G
Gerd Hoffmann 已提交
479 480 481 482 483 484 485 486 487 488
{
    MACIOIDEState *d = opaque;

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

A
Avi Kivity 已提交
489
static uint32_t pmac_ide_readl (void *opaque,hwaddr addr)
G
Gerd Hoffmann 已提交
490 491 492 493 494 495 496 497 498 499 500 501 502 503
{
    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;
}

504
static const MemoryRegionOps pmac_ide_ops = {
A
Avi Kivity 已提交
505 506 507 508 509 510 511 512 513 514 515 516 517
    .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 已提交
518 519
};

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

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

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

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

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

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

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

561 562 563 564 565
    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");
566

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

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

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

    ide_init2(&s->bus, s->irq);
582 583 584 585

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

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

593
    ide_bus_new(&s->bus, sizeof(s->bus), DEVICE(obj), 0, 2);
594
    memory_region_init_io(&s->mem, obj, &pmac_ide_ops, s, "pmac-ide", 0x1000);
A
Andreas Färber 已提交
595 596 597 598 599 600 601 602 603 604 605 606
    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;
607
    set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
A
Andreas Färber 已提交
608
}
G
Gerd Hoffmann 已提交
609

A
Andreas Färber 已提交
610 611 612 613 614 615 616
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 已提交
617

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

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

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

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

type_init(macio_ide_register_types)