unin_pci.c 14.2 KB
Newer Older
P
pbrook 已提交
1 2 3 4
/*
 * QEMU Uninorth PCI host (for all Mac99 and newer machines)
 *
 * Copyright (c) 2006 Fabrice Bellard
5
 *
P
pbrook 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 * 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
pbrook 已提交
24 25 26
#include "hw.h"
#include "ppc_mac.h"
#include "pci.h"
27
#include "pci_host.h"
P
pbrook 已提交
28

29 30 31 32
/* debug UniNorth */
//#define DEBUG_UNIN

#ifdef DEBUG_UNIN
33 34
#define UNIN_DPRINTF(fmt, ...)                                  \
    do { printf("UNIN: " fmt , ## __VA_ARGS__); } while (0)
35
#else
36
#define UNIN_DPRINTF(fmt, ...)
37 38
#endif

A
Alexander Graf 已提交
39 40
static const int unin_irq_line[] = { 0x1b, 0x1c, 0x1d, 0x1e };

41 42
typedef struct UNINState {
    PCIHostState host_state;
43 44
    MemoryRegion pci_mmio;
    MemoryRegion pci_hole;
45
} UNINState;
P
pbrook 已提交
46

47
static int pci_unin_map_irq(PCIDevice *pci_dev, int irq_num)
P
pbrook 已提交
48
{
A
Alexander Graf 已提交
49 50 51 52 53 54
    int retval;
    int devfn = pci_dev->devfn & 0x00FFFFFF;

    retval = (((devfn >> 11) & 0x1F) + irq_num) & 3;

    return retval;
55 56
}

57
static void pci_unin_set_irq(void *opaque, int irq_num, int level)
58
{
59 60
    qemu_irq *pic = opaque;

A
Alexander Graf 已提交
61 62 63
    UNIN_DPRINTF("%s: setting INT %d = %d\n", __func__,
                 unin_irq_line[irq_num], level);
    qemu_set_irq(pic[unin_irq_line[irq_num]], level);
P
pbrook 已提交
64 65
}

66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
static uint32_t unin_get_config_reg(uint32_t reg, uint32_t addr)
{
    uint32_t retval;

    if (reg & (1u << 31)) {
        /* XXX OpenBIOS compatibility hack */
        retval = reg | (addr & 3);
    } else if (reg & 1) {
        /* CFA1 style */
        retval = (reg & ~7u) | (addr & 7);
    } else {
        uint32_t slot, func;

        /* Grab CFA0 style values */
        slot = ffs(reg & 0xfffff800) - 1;
        func = (reg >> 8) & 7;

        /* ... and then convert them to x86 format */
        /* config pointer */
        retval = (reg & (0xff - 7)) | (addr & 7);
        /* slot */
        retval |= slot << 11;
        /* fn */
        retval |= func << 8;
    }


    UNIN_DPRINTF("Converted config space accessor %08x/%08x -> %08x\n",
                 reg, addr, retval);

    return retval;
}

99 100
static void unin_data_write(void *opaque, target_phys_addr_t addr,
                            uint64_t val, unsigned len)
101
{
102 103 104
    UNINState *s = opaque;
    UNIN_DPRINTF("write addr %" TARGET_FMT_plx " len %d val %"PRIx64"\n",
                 addr, len, val);
105 106 107 108 109
    pci_data_write(s->host_state.bus,
                   unin_get_config_reg(s->host_state.config_reg, addr),
                   val, len);
}

110 111
static uint64_t unin_data_read(void *opaque, target_phys_addr_t addr,
                               unsigned len)
112
{
113
    UNINState *s = opaque;
114 115 116 117 118
    uint32_t val;

    val = pci_data_read(s->host_state.bus,
                        unin_get_config_reg(s->host_state.config_reg, addr),
                        len);
119 120
    UNIN_DPRINTF("read addr %" TARGET_FMT_plx " len %d val %x\n",
                 addr, len, val);
121 122 123
    return val;
}

124 125 126 127 128 129
static const MemoryRegionOps unin_data_ops = {
    .read = unin_data_read,
    .write = unin_data_write,
    .endianness = DEVICE_LITTLE_ENDIAN,
};

130
static int pci_unin_main_init_device(SysBusDevice *dev)
P
pbrook 已提交
131
{
132
    PCIHostState *h;
P
pbrook 已提交
133 134 135 136
    UNINState *s;

    /* Use values found on a real PowerMac */
    /* Uninorth main bus */
137 138
    h = FROM_SYSBUS(PCIHostState, dev);
    s = DO_UPCAST(UNINState, host_state, h);
P
pbrook 已提交
139

140 141 142 143
    memory_region_init_io(&s->host_state.conf_mem, &pci_host_conf_le_ops,
                          &s->host_state, "pci-conf-idx", 0x1000);
    memory_region_init_io(&s->host_state.data_mem, &unin_data_ops, s,
                          "pci-conf-data", 0x1000);
144 145
    sysbus_init_mmio(dev, &s->host_state.conf_mem);
    sysbus_init_mmio(dev, &s->host_state.data_mem);
146

147
    return 0;
148 149
}

150

A
Alexander Graf 已提交
151 152
static int pci_u3_agp_init_device(SysBusDevice *dev)
{
153
    PCIHostState *h;
A
Alexander Graf 已提交
154 155 156
    UNINState *s;

    /* Uninorth U3 AGP bus */
157 158
    h = FROM_SYSBUS(PCIHostState, dev);
    s = DO_UPCAST(UNINState, host_state, h);
A
Alexander Graf 已提交
159

160 161 162 163
    memory_region_init_io(&s->host_state.conf_mem, &pci_host_conf_le_ops,
                          &s->host_state, "pci-conf-idx", 0x1000);
    memory_region_init_io(&s->host_state.data_mem, &unin_data_ops, s,
                          "pci-conf-data", 0x1000);
164 165
    sysbus_init_mmio(dev, &s->host_state.conf_mem);
    sysbus_init_mmio(dev, &s->host_state.data_mem);
A
Alexander Graf 已提交
166 167 168 169

    return 0;
}

170
static int pci_unin_agp_init_device(SysBusDevice *dev)
171
{
172
    PCIHostState *h;
173 174 175
    UNINState *s;

    /* Uninorth AGP bus */
176 177
    h = FROM_SYSBUS(PCIHostState, dev);
    s = DO_UPCAST(UNINState, host_state, h);
178

179 180 181 182
    memory_region_init_io(&s->host_state.conf_mem, &pci_host_conf_le_ops,
                          &s->host_state, "pci-conf-idx", 0x1000);
    memory_region_init_io(&s->host_state.data_mem, &pci_host_data_le_ops,
                          &s->host_state, "pci-conf-data", 0x1000);
183 184
    sysbus_init_mmio(dev, &s->host_state.conf_mem);
    sysbus_init_mmio(dev, &s->host_state.data_mem);
185
    return 0;
186 187
}

188
static int pci_unin_internal_init_device(SysBusDevice *dev)
189
{
190
    PCIHostState *h;
191 192 193
    UNINState *s;

    /* Uninorth internal bus */
194 195
    h = FROM_SYSBUS(PCIHostState, dev);
    s = DO_UPCAST(UNINState, host_state, h);
196

197 198 199 200
    memory_region_init_io(&s->host_state.conf_mem, &pci_host_conf_le_ops,
                          &s->host_state, "pci-conf-idx", 0x1000);
    memory_region_init_io(&s->host_state.data_mem, &pci_host_data_le_ops,
                          &s->host_state, "pci-conf-data", 0x1000);
201 202
    sysbus_init_mmio(dev, &s->host_state.conf_mem);
    sysbus_init_mmio(dev, &s->host_state.data_mem);
203
    return 0;
204 205
}

206 207 208
PCIBus *pci_pmac_init(qemu_irq *pic,
                      MemoryRegion *address_space_mem,
                      MemoryRegion *address_space_io)
209 210 211
{
    DeviceState *dev;
    SysBusDevice *s;
212
    PCIHostState *h;
213 214 215 216
    UNINState *d;

    /* Use values found on a real PowerMac */
    /* Uninorth main bus */
A
Andreas Färber 已提交
217
    dev = qdev_create(NULL, "uni-north-pci-pcihost");
M
Markus Armbruster 已提交
218
    qdev_init_nofail(dev);
219
    s = sysbus_from_qdev(dev);
220 221
    h = FROM_SYSBUS(PCIHostState, s);
    d = DO_UPCAST(UNINState, host_state, h);
222 223 224 225 226 227
    memory_region_init(&d->pci_mmio, "pci-mmio", 0x100000000ULL);
    memory_region_init_alias(&d->pci_hole, "pci-hole", &d->pci_mmio,
                             0x80000000ULL, 0x70000000ULL);
    memory_region_add_subregion(address_space_mem, 0x80000000ULL,
                                &d->pci_hole);

228
    d->host_state.bus = pci_register_bus(dev, "pci",
229
                                         pci_unin_set_irq, pci_unin_map_irq,
230
                                         pic,
231
                                         &d->pci_mmio,
232
                                         address_space_io,
233
                                         PCI_DEVFN(11, 0), 4);
234

235
#if 0
236
    pci_create_simple(d->host_state.bus, PCI_DEVFN(11, 0), "uni-north");
237
#endif
238 239 240 241 242 243 244

    sysbus_mmio_map(s, 0, 0xf2800000);
    sysbus_mmio_map(s, 1, 0xf2c00000);

    /* DEC 21154 bridge */
#if 0
    /* XXX: not activated as PPC BIOS doesn't handle multiple buses properly */
245
    pci_create_simple(d->host_state.bus, PCI_DEVFN(12, 0), "dec-21154");
246 247 248
#endif

    /* Uninorth AGP bus */
249
    pci_create_simple(d->host_state.bus, PCI_DEVFN(11, 0), "uni-north-agp");
A
Andreas Färber 已提交
250
    dev = qdev_create(NULL, "uni-north-agp-pcihost");
251 252 253 254
    qdev_init_nofail(dev);
    s = sysbus_from_qdev(dev);
    sysbus_mmio_map(s, 0, 0xf0800000);
    sysbus_mmio_map(s, 1, 0xf0c00000);
255 256 257 258

    /* Uninorth internal bus */
#if 0
    /* XXX: not needed for now */
A
Andreas Färber 已提交
259 260 261
    pci_create_simple(d->host_state.bus, PCI_DEVFN(14, 0),
                      "uni-north-internal-pci");
    dev = qdev_create(NULL, "uni-north-internal-pci-pcihost");
262 263 264 265
    qdev_init_nofail(dev);
    s = sysbus_from_qdev(dev);
    sysbus_mmio_map(s, 0, 0xf4800000);
    sysbus_mmio_map(s, 1, 0xf4c00000);
266 267 268 269 270
#endif

    return d->host_state.bus;
}

271 272 273
PCIBus *pci_pmac_u3_init(qemu_irq *pic,
                         MemoryRegion *address_space_mem,
                         MemoryRegion *address_space_io)
A
Alexander Graf 已提交
274 275 276
{
    DeviceState *dev;
    SysBusDevice *s;
277
    PCIHostState *h;
A
Alexander Graf 已提交
278 279 280 281
    UNINState *d;

    /* Uninorth AGP bus */

A
Andreas Färber 已提交
282
    dev = qdev_create(NULL, "u3-agp-pcihost");
A
Alexander Graf 已提交
283 284
    qdev_init_nofail(dev);
    s = sysbus_from_qdev(dev);
285 286
    h = FROM_SYSBUS(PCIHostState, s);
    d = DO_UPCAST(UNINState, host_state, h);
A
Alexander Graf 已提交
287

288 289 290 291 292 293
    memory_region_init(&d->pci_mmio, "pci-mmio", 0x100000000ULL);
    memory_region_init_alias(&d->pci_hole, "pci-hole", &d->pci_mmio,
                             0x80000000ULL, 0x70000000ULL);
    memory_region_add_subregion(address_space_mem, 0x80000000ULL,
                                &d->pci_hole);

294
    d->host_state.bus = pci_register_bus(dev, "pci",
A
Alexander Graf 已提交
295
                                         pci_unin_set_irq, pci_unin_map_irq,
296
                                         pic,
297
                                         &d->pci_mmio,
298
                                         address_space_io,
299
                                         PCI_DEVFN(11, 0), 4);
A
Alexander Graf 已提交
300 301 302 303 304 305 306 307 308

    sysbus_mmio_map(s, 0, 0xf0800000);
    sysbus_mmio_map(s, 1, 0xf0c00000);

    pci_create_simple(d->host_state.bus, 11 << 3, "u3-agp");

    return d->host_state.bus;
}

309
static int unin_main_pci_host_init(PCIDevice *d)
310
{
P
pbrook 已提交
311 312 313
    d->config[0x0C] = 0x08; // cache_line_size
    d->config[0x0D] = 0x10; // latency_timer
    d->config[0x34] = 0x00; // capabilities_pointer
314
    return 0;
315
}
P
pbrook 已提交
316

317
static int unin_agp_pci_host_init(PCIDevice *d)
318
{
P
pbrook 已提交
319 320 321
    d->config[0x0C] = 0x08; // cache_line_size
    d->config[0x0D] = 0x10; // latency_timer
    //    d->config[0x34] = 0x80; // capabilities_pointer
322
    return 0;
323
}
P
pbrook 已提交
324

A
Alexander Graf 已提交
325 326 327 328 329 330 331 332 333
static int u3_agp_pci_host_init(PCIDevice *d)
{
    /* cache line size */
    d->config[0x0C] = 0x08;
    /* latency timer */
    d->config[0x0D] = 0x10;
    return 0;
}

334
static int unin_internal_pci_host_init(PCIDevice *d)
335
{
P
pbrook 已提交
336 337 338
    d->config[0x0C] = 0x08; // cache_line_size
    d->config[0x0D] = 0x10; // latency_timer
    d->config[0x34] = 0x00; // capabilities_pointer
339
    return 0;
340 341
}

342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
static void unin_main_pci_host_class_init(ObjectClass *klass, void *data)
{
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);

    k->init      = unin_main_pci_host_init;
    k->vendor_id = PCI_VENDOR_ID_APPLE;
    k->device_id = PCI_DEVICE_ID_APPLE_UNI_N_PCI;
    k->revision  = 0x00;
    k->class_id  = PCI_CLASS_BRIDGE_HOST;
}

static DeviceInfo unin_main_pci_host_info = {
    .name = "uni-north-pci",
    .size = sizeof(PCIDevice),
    .class_init = unin_main_pci_host_class_init,
357 358
};

359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
static void u3_agp_pci_host_class_init(ObjectClass *klass, void *data)
{
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);

    k->init      = u3_agp_pci_host_init;
    k->vendor_id = PCI_VENDOR_ID_APPLE;
    k->device_id = PCI_DEVICE_ID_APPLE_U3_AGP;
    k->revision  = 0x00;
    k->class_id  = PCI_CLASS_BRIDGE_HOST;
}

static DeviceInfo u3_agp_pci_host_info = {
    .name = "u3-agp",
    .size = sizeof(PCIDevice),
    .class_init = u3_agp_pci_host_class_init,
A
Alexander Graf 已提交
374 375
};

376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
static void unin_agp_pci_host_class_init(ObjectClass *klass, void *data)
{
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);

    k->init      = unin_agp_pci_host_init;
    k->vendor_id = PCI_VENDOR_ID_APPLE;
    k->device_id = PCI_DEVICE_ID_APPLE_UNI_N_AGP;
    k->revision  = 0x00;
    k->class_id  = PCI_CLASS_BRIDGE_HOST;
}

static DeviceInfo unin_agp_pci_host_info = {
    .name = "uni-north-agp",
    .size = sizeof(PCIDevice),
    .class_init = unin_agp_pci_host_class_init,
391 392
};

393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
static void unin_internal_pci_host_class_init(ObjectClass *klass, void *data)
{
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);

    k->init      = unin_internal_pci_host_init;
    k->vendor_id = PCI_VENDOR_ID_APPLE;
    k->device_id = PCI_DEVICE_ID_APPLE_UNI_N_I_PCI;
    k->revision  = 0x00;
    k->class_id  = PCI_CLASS_BRIDGE_HOST;
}

static DeviceInfo unin_internal_pci_host_info = {
    .name = "uni-north-internal-pci",
    .size = sizeof(PCIDevice),
    .class_init = unin_internal_pci_host_class_init,
408 409
};

410 411 412 413 414 415 416 417
static void pci_unin_main_class_init(ObjectClass *klass, void *data)
{
    SysBusDeviceClass *sbc = SYS_BUS_DEVICE_CLASS(klass);

    sbc->init = pci_unin_main_init_device;
}

static DeviceInfo pci_unin_main_info = {
418
    .name = "uni-north-pci-pcihost",
419 420
    .size = sizeof(UNINState),
    .class_init = pci_unin_main_class_init,
A
Andreas Färber 已提交
421 422
};

423 424 425 426 427 428 429 430 431 432 433
static void pci_u3_agp_class_init(ObjectClass *klass, void *data)
{
    SysBusDeviceClass *sbc = SYS_BUS_DEVICE_CLASS(klass);

    sbc->init = pci_u3_agp_init_device;
}

static DeviceInfo pci_u3_agp_info = {
    .name = "u3-agp-pcihost",
    .size = sizeof(UNINState),
    .class_init = pci_u3_agp_class_init,
A
Andreas Färber 已提交
434 435
};

436 437 438 439 440 441 442 443 444 445 446
static void pci_unin_agp_class_init(ObjectClass *klass, void *data)
{
    SysBusDeviceClass *sbc = SYS_BUS_DEVICE_CLASS(klass);

    sbc->init = pci_unin_agp_init_device;
}

static DeviceInfo pci_unin_agp_info = {
    .name = "uni-north-agp-pcihost",
    .size = sizeof(UNINState),
    .class_init = pci_unin_agp_class_init,
A
Andreas Färber 已提交
447 448
};

449 450 451 452 453 454 455 456
static void pci_unin_internal_class_init(ObjectClass *klass, void *data)
{
    SysBusDeviceClass *sbc = SYS_BUS_DEVICE_CLASS(klass);

    sbc->init = pci_unin_internal_init_device;
}

static DeviceInfo pci_unin_internal_info = {
457
    .name = "uni-north-internal-pci-pcihost",
458 459
    .size = sizeof(UNINState),
    .class_init = pci_unin_internal_class_init,
A
Andreas Färber 已提交
460 461
};

462 463 464
static void unin_register_devices(void)
{
    pci_qdev_register(&unin_main_pci_host_info);
A
Alexander Graf 已提交
465
    pci_qdev_register(&u3_agp_pci_host_info);
466 467
    pci_qdev_register(&unin_agp_pci_host_info);
    pci_qdev_register(&unin_internal_pci_host_info);
468 469 470 471 472

    sysbus_register_withprop(&pci_unin_main_info);
    sysbus_register_withprop(&pci_u3_agp_info);
    sysbus_register_withprop(&pci_unin_agp_info);
    sysbus_register_withprop(&pci_unin_internal_info);
P
pbrook 已提交
473
}
474 475

device_init(unin_register_devices)