piix.c 8.6 KB
Newer Older
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: PCI PIIX3/4 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.
 */
M
Markus Armbruster 已提交
25

26 27 28 29
#include <hw/hw.h>
#include <hw/pc.h>
#include <hw/pci.h>
#include <hw/isa.h>
M
Markus Armbruster 已提交
30
#include "blockdev.h"
31 32 33 34 35
#include "sysemu.h"
#include "dma.h"

#include <hw/ide/pci.h>

A
Avi Kivity 已提交
36
static uint64_t bmdma_read(void *opaque, target_phys_addr_t addr, unsigned size)
37 38 39 40
{
    BMDMAState *bm = opaque;
    uint32_t val;

A
Avi Kivity 已提交
41 42 43 44
    if (size != 1) {
        return ((uint64_t)1 << (size * 8)) - 1;
    }

45 46 47 48 49 50 51 52 53 54 55 56
    switch(addr & 3) {
    case 0:
        val = bm->cmd;
        break;
    case 2:
        val = bm->status;
        break;
    default:
        val = 0xff;
        break;
    }
#ifdef DEBUG_IDE
57
    printf("bmdma: readb 0x%02x : 0x%02x\n", (uint8_t)addr, val);
58 59 60 61
#endif
    return val;
}

A
Avi Kivity 已提交
62 63
static void bmdma_write(void *opaque, target_phys_addr_t addr,
                        uint64_t val, unsigned size)
64 65
{
    BMDMAState *bm = opaque;
A
Avi Kivity 已提交
66 67 68 69 70

    if (size != 1) {
        return;
    }

71
#ifdef DEBUG_IDE
72
    printf("bmdma: writeb 0x%02x : 0x%02x\n", (uint8_t)addr, (uint8_t)val);
73 74
#endif
    switch(addr & 3) {
A
Avi Kivity 已提交
75 76
    case 0:
        return bmdma_cmd_writeb(bm, val);
77 78 79 80 81 82
    case 2:
        bm->status = (val & 0x60) | (bm->status & 1) | (bm->status & ~val & 0x06);
        break;
    }
}

83
static const MemoryRegionOps piix_bmdma_ops = {
A
Avi Kivity 已提交
84 85 86 87 88
    .read = bmdma_read,
    .write = bmdma_write,
};

static void bmdma_setup_bar(PCIIDEState *d)
89 90 91
{
    int i;

A
Avi Kivity 已提交
92
    memory_region_init(&d->bmdma_bar, "piix-bmdma-container", 16);
93 94 95
    for(i = 0;i < 2; i++) {
        BMDMAState *bm = &d->bmdma[i];

A
Avi Kivity 已提交
96 97 98 99 100 101
        memory_region_init_io(&bm->extra_io, &piix_bmdma_ops, bm,
                              "piix-bmdma", 4);
        memory_region_add_subregion(&d->bmdma_bar, i * 8, &bm->extra_io);
        memory_region_init_io(&bm->addr_ioport, &bmdma_addr_ioport_ops, bm,
                              "bmdma", 4);
        memory_region_add_subregion(&d->bmdma_bar, i * 8 + 4, &bm->addr_ioport);
102 103 104 105 106 107 108 109 110
    }
}

static void piix3_reset(void *opaque)
{
    PCIIDEState *d = opaque;
    uint8_t *pci_conf = d->dev.config;
    int i;

B
Blue Swirl 已提交
111 112 113
    for (i = 0; i < 2; i++) {
        ide_bus_reset(&d->bus[i]);
    }
114

M
Michael S. Tsirkin 已提交
115 116 117 118 119 120 121
    /* TODO: this is the default. do not override. */
    pci_conf[PCI_COMMAND] = 0x00;
    /* TODO: this is the default. do not override. */
    pci_conf[PCI_COMMAND + 1] = 0x00;
    /* TODO: use pci_set_word */
    pci_conf[PCI_STATUS] = PCI_STATUS_FAST_BACK;
    pci_conf[PCI_STATUS + 1] = PCI_STATUS_DEVSEL_MEDIUM >> 8;
122 123 124
    pci_conf[0x20] = 0x01; /* BMIBA: 20-23h */
}

125
static void pci_piix_init_ports(PCIIDEState *d) {
126
    static const struct {
127 128 129 130 131 132 133
        int iobase;
        int iobase2;
        int isairq;
    } port_info[] = {
        {0x1f0, 0x3f6, 14},
        {0x170, 0x376, 15},
    };
134
    int i;
135 136 137

    for (i = 0; i < 2; i++) {
        ide_bus_new(&d->bus[i], &d->dev.qdev, i);
138 139
        ide_init_ioport(&d->bus[i], NULL, port_info[i].iobase,
                        port_info[i].iobase2);
140
        ide_init2(&d->bus[i], isa_get_irq(NULL, port_info[i].isairq));
141

A
Avi Kivity 已提交
142
        bmdma_init(&d->bus[i], &d->bmdma[i], d);
143 144 145 146 147 148
        d->bmdma[i].bus = &d->bus[i];
        qemu_add_vm_change_state_handler(d->bus[i].dma->ops->restart_cb,
                                         &d->bmdma[i].dma);
    }
}

149
static int pci_piix_ide_initfn(PCIDevice *dev)
150
{
151
    PCIIDEState *d = DO_UPCAST(PCIIDEState, dev, dev);
152 153
    uint8_t *pci_conf = d->dev.config;

M
Michael S. Tsirkin 已提交
154
    pci_conf[PCI_CLASS_PROG] = 0x80; // legacy ATA mode
155 156 157

    qemu_register_reset(piix3_reset, d);

A
Avi Kivity 已提交
158
    bmdma_setup_bar(d);
159
    pci_register_bar(&d->dev, 4, PCI_BASE_ADDRESS_SPACE_IO, &d->bmdma_bar);
160

A
Alex Williamson 已提交
161
    vmstate_register(&d->dev.qdev, 0, &vmstate_ide_pci, d);
162

163
    pci_piix_init_ports(d);
164 165 166 167

    return 0;
}

168 169 170 171 172 173 174 175 176 177 178 179
static int pci_piix3_xen_ide_unplug(DeviceState *dev)
{
    PCIDevice *pci_dev;
    PCIIDEState *pci_ide;
    DriveInfo *di;
    int i = 0;

    pci_dev = DO_UPCAST(PCIDevice, qdev, dev);
    pci_ide = DO_UPCAST(PCIIDEState, dev, pci_dev);

    for (; i < 3; i++) {
        di = drive_get_by_index(IF_IDE, i);
180
        if (di != NULL && !di->media_cd) {
181
            DeviceState *ds = bdrv_get_attached_dev(di->bdrv);
182
            if (ds) {
183
                bdrv_detach_dev(di->bdrv, ds);
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
            }
            bdrv_close(di->bdrv);
            pci_ide->bus[di->bus].ifs[di->unit].bs = NULL;
            drive_put_ref(di);
        }
    }
    qdev_reset_all(&(pci_ide->dev.qdev));
    return 0;
}

PCIDevice *pci_piix3_xen_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn)
{
    PCIDevice *dev;

    dev = pci_create_simple(bus, devfn, "piix3-ide-xen");
    pci_ide_create_devs(dev, hd_table);
    return dev;
}

A
Avi Kivity 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
static int pci_piix_ide_exitfn(PCIDevice *dev)
{
    PCIIDEState *d = DO_UPCAST(PCIIDEState, dev, dev);
    unsigned i;

    for (i = 0; i < 2; ++i) {
        memory_region_del_subregion(&d->bmdma_bar, &d->bmdma[i].extra_io);
        memory_region_destroy(&d->bmdma[i].extra_io);
        memory_region_del_subregion(&d->bmdma_bar, &d->bmdma[i].addr_ioport);
        memory_region_destroy(&d->bmdma[i].addr_ioport);
    }
    memory_region_destroy(&d->bmdma_bar);

    return 0;
}

219 220
/* hd_table must contain 4 block drivers */
/* NOTE: for the PIIX3, the IRQs and IOports are hardcoded */
221
PCIDevice *pci_piix3_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn)
222 223 224
{
    PCIDevice *dev;

225
    dev = pci_create_simple(bus, devfn, "piix3-ide");
226
    pci_ide_create_devs(dev, hd_table);
227
    return dev;
228 229 230 231
}

/* hd_table must contain 4 block drivers */
/* NOTE: for the PIIX4, the IRQs and IOports are hardcoded */
232
PCIDevice *pci_piix4_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn)
233 234 235
{
    PCIDevice *dev;

236
    dev = pci_create_simple(bus, devfn, "piix4-ide");
237
    pci_ide_create_devs(dev, hd_table);
238
    return dev;
239 240
}

241 242
static void piix3_ide_class_init(ObjectClass *klass, void *data)
{
243
    DeviceClass *dc = DEVICE_CLASS(klass);
244 245 246 247 248 249 250 251
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);

    k->no_hotplug = 1;
    k->init = pci_piix_ide_initfn;
    k->exit = pci_piix_ide_exitfn;
    k->vendor_id = PCI_VENDOR_ID_INTEL;
    k->device_id = PCI_DEVICE_ID_INTEL_82371SB_1;
    k->class_id = PCI_CLASS_STORAGE_IDE;
252
    dc->no_user = 1;
253 254
}

255 256 257 258 259
static TypeInfo piix3_ide_info = {
    .name          = "piix3-ide",
    .parent        = TYPE_PCI_DEVICE,
    .instance_size = sizeof(PCIIDEState),
    .class_init    = piix3_ide_class_init,
260 261
};

262 263
static void piix3_ide_xen_class_init(ObjectClass *klass, void *data)
{
264
    DeviceClass *dc = DEVICE_CLASS(klass);
265 266 267 268 269 270
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);

    k->init = pci_piix_ide_initfn;
    k->vendor_id = PCI_VENDOR_ID_INTEL;
    k->device_id = PCI_DEVICE_ID_INTEL_82371SB_1;
    k->class_id = PCI_CLASS_STORAGE_IDE;
271 272
    dc->no_user = 1;
    dc->unplug = pci_piix3_xen_ide_unplug;
273 274
}

275 276 277 278 279
static TypeInfo piix3_ide_xen_info = {
    .name          = "piix3-ide-xen",
    .parent        = TYPE_PCI_DEVICE,
    .instance_size = sizeof(PCIIDEState),
    .class_init    = piix3_ide_xen_class_init,
280 281
};

282 283
static void piix4_ide_class_init(ObjectClass *klass, void *data)
{
284
    DeviceClass *dc = DEVICE_CLASS(klass);
285 286 287 288 289 290 291 292
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);

    k->no_hotplug = 1;
    k->init = pci_piix_ide_initfn;
    k->exit = pci_piix_ide_exitfn;
    k->vendor_id = PCI_VENDOR_ID_INTEL;
    k->device_id = PCI_DEVICE_ID_INTEL_82371AB;
    k->class_id = PCI_CLASS_STORAGE_IDE;
293
    dc->no_user = 1;
294 295
}

296 297 298 299 300
static TypeInfo piix4_ide_info = {
    .name          = "piix4-ide",
    .parent        = TYPE_PCI_DEVICE,
    .instance_size = sizeof(PCIIDEState),
    .class_init    = piix4_ide_class_init,
301 302
};

A
Andreas Färber 已提交
303
static void piix_ide_register_types(void)
304
{
305 306 307
    type_register_static(&piix3_ide_info);
    type_register_static(&piix3_ide_xen_info);
    type_register_static(&piix4_ide_info);
308
}
A
Andreas Färber 已提交
309 310

type_init(piix_ide_register_types)