macio.c 9.3 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.
 */
25 26
#include "hw/hw.h"
#include "hw/ppc/mac.h"
P
Paolo Bonzini 已提交
27
#include "hw/ppc/mac_dbdma.h"
28
#include "block/block.h"
29
#include "sysemu/dma.h"
G
Gerd Hoffmann 已提交
30 31

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

/***********************************************************/
/* MacIO based PowerPC IDE */

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

G
Gerd Hoffmann 已提交
38 39 40 41 42 43 44 45 46 47
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);

    if (ret < 0) {
        m->aiocb = NULL;
        qemu_sglist_destroy(&s->sg);
        ide_atapi_io_error(s, ret);
48
        goto done;
G
Gerd Hoffmann 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
    }

    if (s->io_buffer_size > 0) {
        m->aiocb = NULL;
        qemu_sglist_destroy(&s->sg);

        s->packet_transfer_size -= s->io_buffer_size;

        s->io_buffer_index += s->io_buffer_size;
	s->lba += s->io_buffer_index >> 11;
        s->io_buffer_index &= 0x7ff;
    }

    if (s->packet_transfer_size <= 0)
        ide_atapi_cmd_ok(s);

    if (io->len == 0) {
66
        goto done;
G
Gerd Hoffmann 已提交
67 68 69 70 71 72
    }

    /* launch next transfer */

    s->io_buffer_size = io->len;

73
    qemu_sglist_init(&s->sg, io->len / MACIO_PAGE_SIZE + 1,
P
Paolo Bonzini 已提交
74
                     &address_space_memory);
G
Gerd Hoffmann 已提交
75 76 77 78 79 80 81
    qemu_sglist_add(&s->sg, io->addr, io->len);
    io->addr += io->len;
    io->len = 0;

    m->aiocb = dma_bdrv_read(s->bs, &s->sg,
                             (int64_t)(s->lba << 2) + (s->io_buffer_index >> 9),
                             pmac_ide_atapi_transfer_cb, io);
82 83 84 85 86
    return;

done:
    bdrv_acct_done(s->bs, &s->acct);
    io->dma_end(opaque);
G
Gerd Hoffmann 已提交
87 88 89 90 91 92 93 94 95 96 97 98 99 100
}

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);
    int n;
    int64_t sector_num;

    if (ret < 0) {
        m->aiocb = NULL;
        qemu_sglist_destroy(&s->sg);
	ide_dma_error(s);
101
        goto done;
G
Gerd Hoffmann 已提交
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
    }

    sector_num = ide_get_sector(s);
    if (s->io_buffer_size > 0) {
        m->aiocb = NULL;
        qemu_sglist_destroy(&s->sg);
        n = (s->io_buffer_size + 0x1ff) >> 9;
        sector_num += n;
        ide_set_sector(s, sector_num);
        s->nsector -= n;
    }

    /* end of transfer ? */
    if (s->nsector == 0) {
        s->status = READY_STAT | SEEK_STAT;
117
        ide_set_irq(s->bus);
G
Gerd Hoffmann 已提交
118 119 120 121
    }

    /* end of DMA ? */
    if (io->len == 0) {
122
        goto done;
G
Gerd Hoffmann 已提交
123 124 125 126 127 128 129
    }

    /* launch next transfer */

    s->io_buffer_index = 0;
    s->io_buffer_size = io->len;

130
    qemu_sglist_init(&s->sg, io->len / MACIO_PAGE_SIZE + 1,
P
Paolo Bonzini 已提交
131
                     &address_space_memory);
G
Gerd Hoffmann 已提交
132 133 134 135
    qemu_sglist_add(&s->sg, io->addr, io->len);
    io->addr += io->len;
    io->len = 0;

136 137
    switch (s->dma_cmd) {
    case IDE_DMA_READ:
G
Gerd Hoffmann 已提交
138 139
        m->aiocb = dma_bdrv_read(s->bs, &s->sg, sector_num,
		                 pmac_ide_transfer_cb, io);
140 141
        break;
    case IDE_DMA_WRITE:
G
Gerd Hoffmann 已提交
142 143
        m->aiocb = dma_bdrv_write(s->bs, &s->sg, sector_num,
		                  pmac_ide_transfer_cb, io);
144
        break;
C
Christoph Hellwig 已提交
145 146
    case IDE_DMA_TRIM:
        m->aiocb = dma_bdrv_io(s->bs, &s->sg, sector_num,
147
                               ide_issue_trim, pmac_ide_transfer_cb, io,
148
                               DMA_DIRECTION_TO_DEVICE);
C
Christoph Hellwig 已提交
149
        break;
150
    }
151
    return;
152

153 154 155 156 157
done:
    if (s->dma_cmd == IDE_DMA_READ || s->dma_cmd == IDE_DMA_WRITE) {
        bdrv_acct_done(s->bs, &s->acct);
    }
    io->dma_end(io);
G
Gerd Hoffmann 已提交
158 159 160 161 162 163 164 165
}

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

    s->io_buffer_size = 0;
166
    if (s->drive_kind == IDE_CD) {
167
        bdrv_acct_start(s->bs, &s->acct, io->len, BDRV_ACCT_READ);
G
Gerd Hoffmann 已提交
168 169 170 171
        pmac_ide_atapi_transfer_cb(io, 0);
        return;
    }

172 173 174 175 176 177 178 179 180 181 182
    switch (s->dma_cmd) {
    case IDE_DMA_READ:
        bdrv_acct_start(s->bs, &s->acct, io->len, BDRV_ACCT_READ);
        break;
    case IDE_DMA_WRITE:
        bdrv_acct_start(s->bs, &s->acct, io->len, BDRV_ACCT_WRITE);
        break;
    default:
        break;
    }

G
Gerd Hoffmann 已提交
183 184 185 186 187 188 189
    pmac_ide_transfer_cb(io, 0);
}

static void pmac_ide_flush(DBDMA_io *io)
{
    MACIOIDEState *m = io->opaque;

190 191 192
    if (m->aiocb) {
        bdrv_drain_all();
    }
G
Gerd Hoffmann 已提交
193 194 195 196
}

/* PowerMac IDE memory IO */
static void pmac_ide_writeb (void *opaque,
A
Avi Kivity 已提交
197
                             hwaddr addr, uint32_t val)
G
Gerd Hoffmann 已提交
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
{
    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 已提交
215
static uint32_t pmac_ide_readb (void *opaque,hwaddr addr)
G
Gerd Hoffmann 已提交
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
{
    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 已提交
237
                             hwaddr addr, uint32_t val)
G
Gerd Hoffmann 已提交
238 239 240 241 242 243 244 245 246 247
{
    MACIOIDEState *d = opaque;

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

A
Avi Kivity 已提交
248
static uint32_t pmac_ide_readw (void *opaque,hwaddr addr)
G
Gerd Hoffmann 已提交
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
{
    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 已提交
264
                             hwaddr addr, uint32_t val)
G
Gerd Hoffmann 已提交
265 266 267 268 269 270 271 272 273 274
{
    MACIOIDEState *d = opaque;

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

A
Avi Kivity 已提交
275
static uint32_t pmac_ide_readl (void *opaque,hwaddr addr)
G
Gerd Hoffmann 已提交
276 277 278 279 280 281 282 283 284 285 286 287 288 289
{
    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;
}

290
static const MemoryRegionOps pmac_ide_ops = {
A
Avi Kivity 已提交
291 292 293 294 295 296 297 298 299 300 301 302 303
    .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 已提交
304 305
};

J
Juan Quintela 已提交
306 307 308 309 310 311 312 313 314
static const VMStateDescription vmstate_pmac = {
    .name = "ide",
    .version_id = 3,
    .minimum_version_id = 0,
    .minimum_version_id_old = 0,
    .fields      = (VMStateField []) {
        VMSTATE_IDE_BUS(bus, MACIOIDEState),
        VMSTATE_IDE_DRIVES(bus.ifs, MACIOIDEState),
        VMSTATE_END_OF_LIST()
G
Gerd Hoffmann 已提交
315
    }
J
Juan Quintela 已提交
316
};
G
Gerd Hoffmann 已提交
317

A
Andreas Färber 已提交
318
static void macio_ide_reset(DeviceState *dev)
G
Gerd Hoffmann 已提交
319
{
A
Andreas Färber 已提交
320
    MACIOIDEState *d = MACIO_IDE(dev);
G
Gerd Hoffmann 已提交
321

B
Blue Swirl 已提交
322
    ide_bus_reset(&d->bus);
G
Gerd Hoffmann 已提交
323 324
}

A
Andreas Färber 已提交
325
static void macio_ide_realizefn(DeviceState *dev, Error **errp)
G
Gerd Hoffmann 已提交
326
{
A
Andreas Färber 已提交
327 328 329 330 331 332 333 334 335 336
    MACIOIDEState *s = MACIO_IDE(dev);

    ide_init2(&s->bus, s->irq);
}

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

337
    ide_bus_new(&s->bus, DEVICE(obj), 0, 2);
A
Andreas Färber 已提交
338 339 340 341 342 343 344 345 346 347 348 349 350 351
    memory_region_init_io(&s->mem, &pmac_ide_ops, s, "pmac-ide", 0x1000);
    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;
}
G
Gerd Hoffmann 已提交
352

A
Andreas Färber 已提交
353 354 355 356 357 358 359
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 已提交
360

A
Andreas Färber 已提交
361 362 363 364
static void macio_ide_register_types(void)
{
    type_register_static(&macio_ide_type_info);
}
G
Gerd Hoffmann 已提交
365

A
Andreas Färber 已提交
366 367 368 369
/* hd_table must contain 4 block drivers */
void macio_ide_init_drives(MACIOIDEState *s, DriveInfo **hd_table)
{
    int i;
G
Gerd Hoffmann 已提交
370

A
Andreas Färber 已提交
371 372 373 374 375
    for (i = 0; i < 2; i++) {
        if (hd_table[i]) {
            ide_create_drive(&s->bus, i, hd_table[i]);
        }
    }
G
Gerd Hoffmann 已提交
376
}
A
Andreas Färber 已提交
377 378 379 380 381 382 383 384

void macio_ide_register_dma(MACIOIDEState *s, void *dbdma, int channel)
{
    DBDMA_register_channel(dbdma, channel, s->dma_irq,
                           pmac_ide_transfer, pmac_ide_flush, s);
}

type_init(macio_ide_register_types)