via.c 7.2 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 25 26
/*
 * QEMU IDE Emulation: PCI VIA82C686B support.
 *
 * Copyright (c) 2003 Fabrice Bellard
 * Copyright (c) 2006 Openedhand Ltd.
 * Copyright (c) 2010 Huacai Chen <zltjiangshi@gmail.com>
 *
 * 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.
 */
#include <hw/hw.h>
P
Paolo Bonzini 已提交
27
#include <hw/i386/pc.h>
28
#include <hw/pci/pci.h>
P
Paolo Bonzini 已提交
29
#include <hw/isa/isa.h>
30
#include "block/block.h"
31 32
#include "sysemu/sysemu.h"
#include "sysemu/dma.h"
33 34 35

#include <hw/ide/pci.h>

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

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

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

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

    if (size != 1) {
        return;
    }

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

86
static const MemoryRegionOps via_bmdma_ops = {
A
Avi Kivity 已提交
87 88 89 90 91
    .read = bmdma_read,
    .write = bmdma_write,
};

static void bmdma_setup_bar(PCIIDEState *d)
92 93 94
{
    int i;

95
    memory_region_init(&d->bmdma_bar, OBJECT(d), "via-bmdma-container", 16);
96 97 98
    for(i = 0;i < 2; i++) {
        BMDMAState *bm = &d->bmdma[i];

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

static void via_reset(void *opaque)
{
    PCIIDEState *d = opaque;
111 112
    PCIDevice *pd = PCI_DEVICE(d);
    uint8_t *pci_conf = pd->config;
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
    int i;

    for (i = 0; i < 2; i++) {
        ide_bus_reset(&d->bus[i]);
    }

    pci_set_word(pci_conf + PCI_COMMAND, PCI_COMMAND_WAIT);
    pci_set_word(pci_conf + PCI_STATUS, PCI_STATUS_FAST_BACK |
                 PCI_STATUS_DEVSEL_MEDIUM);

    pci_set_long(pci_conf + PCI_BASE_ADDRESS_0, 0x000001f0);
    pci_set_long(pci_conf + PCI_BASE_ADDRESS_1, 0x000003f4);
    pci_set_long(pci_conf + PCI_BASE_ADDRESS_2, 0x00000170);
    pci_set_long(pci_conf + PCI_BASE_ADDRESS_3, 0x00000374);
    pci_set_long(pci_conf + PCI_BASE_ADDRESS_4, 0x0000cc01); /* BMIBA: 20-23h */
    pci_set_long(pci_conf + PCI_INTERRUPT_LINE, 0x0000010e);

    /* IDE chip enable, IDE configuration 1/2, IDE FIFO Configuration*/
    pci_set_long(pci_conf + 0x40, 0x0a090600);
    /* IDE misc configuration 1/2/3 */
    pci_set_long(pci_conf + 0x44, 0x00c00068);
    /* IDE Timing control */
    pci_set_long(pci_conf + 0x48, 0xa8a8a8a8);
    /* IDE Address Setup Time */
    pci_set_long(pci_conf + 0x4c, 0x000000ff);
    /* UltraDMA Extended Timing Control*/
    pci_set_long(pci_conf + 0x50, 0x07070707);
    /* UltraDMA FIFO Control */
    pci_set_long(pci_conf + 0x54, 0x00000004);
    /* IDE primary sector size */
    pci_set_long(pci_conf + 0x60, 0x00000200);
    /* IDE secondary sector size */
    pci_set_long(pci_conf + 0x68, 0x00000200);
    /* PCI PM Block */
    pci_set_long(pci_conf + 0xc0, 0x00020001);
}

150
static void vt82c686b_init_ports(PCIIDEState *d) {
151
    static const struct {
152 153 154 155 156 157 158
        int iobase;
        int iobase2;
        int isairq;
    } port_info[] = {
        {0x1f0, 0x3f6, 14},
        {0x170, 0x376, 15},
    };
159
    int i;
160 161

    for (i = 0; i < 2; i++) {
162
        ide_bus_new(&d->bus[i], sizeof(d->bus[i]), DEVICE(d), i, 2);
163 164
        ide_init_ioport(&d->bus[i], NULL, port_info[i].iobase,
                        port_info[i].iobase2);
165
        ide_init2(&d->bus[i], isa_get_irq(NULL, port_info[i].isairq));
166

A
Avi Kivity 已提交
167
        bmdma_init(&d->bus[i], &d->bmdma[i], d);
168 169
        d->bmdma[i].bus = &d->bus[i];
        qemu_add_vm_change_state_handler(d->bus[i].dma->ops->restart_cb,
K
Kevin Wolf 已提交
170
                                         &d->bmdma[i].dma);
171 172 173
    }
}

174 175 176
/* via ide func */
static int vt82c686b_ide_initfn(PCIDevice *dev)
{
177 178
    PCIIDEState *d = PCI_IDE(dev);
    uint8_t *pci_conf = dev->config;
179 180 181 182 183

    pci_config_set_prog_interface(pci_conf, 0x8a); /* legacy ATA mode */
    pci_set_long(pci_conf + PCI_CAPABILITY_LIST, 0x000000c0);

    qemu_register_reset(via_reset, d);
A
Avi Kivity 已提交
184
    bmdma_setup_bar(d);
185
    pci_register_bar(dev, 4, PCI_BASE_ADDRESS_SPACE_IO, &d->bmdma_bar);
186

187
    vmstate_register(DEVICE(dev), 0, &vmstate_ide_pci, d);
188

189
    vt82c686b_init_ports(d);
190 191 192 193

    return 0;
}

194
static void vt82c686b_ide_exitfn(PCIDevice *dev)
A
Avi Kivity 已提交
195
{
196
    PCIIDEState *d = PCI_IDE(dev);
A
Avi Kivity 已提交
197 198 199 200 201 202 203 204 205 206 207
    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);
}

208 209 210 211 212 213 214 215
void vt82c686b_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn)
{
    PCIDevice *dev;

    dev = pci_create_simple(bus, devfn, "via-ide");
    pci_ide_create_devs(dev, hd_table);
}

216 217
static void via_ide_class_init(ObjectClass *klass, void *data)
{
218
    DeviceClass *dc = DEVICE_CLASS(klass);
219 220 221 222 223 224 225 226
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);

    k->init = vt82c686b_ide_initfn;
    k->exit = vt82c686b_ide_exitfn;
    k->vendor_id = PCI_VENDOR_ID_VIA;
    k->device_id = PCI_DEVICE_ID_VIA_IDE;
    k->revision = 0x06;
    k->class_id = PCI_CLASS_STORAGE_IDE;
227
    set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
228
    dc->no_user = 1;
229 230
}

231
static const TypeInfo via_ide_info = {
232
    .name          = "via-ide",
233
    .parent        = TYPE_PCI_IDE,
234
    .class_init    = via_ide_class_init,
235 236
};

A
Andreas Färber 已提交
237
static void via_ide_register_types(void)
238
{
239
    type_register_static(&via_ide_info);
240
}
A
Andreas Färber 已提交
241 242

type_init(via_ide_register_types)