unin_pci.c 11.6 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 43 44
typedef struct UNINState {
    SysBusDevice busdev;
    PCIHostState host_state;
} UNINState;
P
pbrook 已提交
45

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

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

    return retval;
54 55
}

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

A
Alexander Graf 已提交
60 61 62
    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 已提交
63 64
}

65 66 67 68
static void pci_unin_reset(void *opaque)
{
}

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 99 100 101
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;
}

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

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

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

127 128 129 130 131 132
static const MemoryRegionOps unin_data_ops = {
    .read = unin_data_read,
    .write = unin_data_write,
    .endianness = DEVICE_LITTLE_ENDIAN,
};

133
static int pci_unin_main_init_device(SysBusDevice *dev)
P
pbrook 已提交
134 135 136 137 138
{
    UNINState *s;

    /* Use values found on a real PowerMac */
    /* Uninorth main bus */
139
    s = FROM_SYSBUS(UNINState, dev);
P
pbrook 已提交
140

141 142 143 144 145 146
    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);
    sysbus_init_mmio_region(dev, &s->host_state.conf_mem);
    sysbus_init_mmio_region(dev, &s->host_state.data_mem);
147 148

    qemu_register_reset(pci_unin_reset, &s->host_state);
149
    return 0;
150 151
}

152

A
Alexander Graf 已提交
153 154 155 156 157 158 159
static int pci_u3_agp_init_device(SysBusDevice *dev)
{
    UNINState *s;

    /* Uninorth U3 AGP bus */
    s = FROM_SYSBUS(UNINState, dev);

160 161 162 163 164 165
    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);
    sysbus_init_mmio_region(dev, &s->host_state.conf_mem);
    sysbus_init_mmio_region(dev, &s->host_state.data_mem);
A
Alexander Graf 已提交
166 167 168 169 170 171

    qemu_register_reset(pci_unin_reset, &s->host_state);

    return 0;
}

172
static int pci_unin_agp_init_device(SysBusDevice *dev)
173 174 175 176 177 178
{
    UNINState *s;

    /* Uninorth AGP bus */
    s = FROM_SYSBUS(UNINState, dev);

179 180 181 182 183 184
    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);
    sysbus_init_mmio_region(dev, &s->host_state.conf_mem);
    sysbus_init_mmio_region(dev, &s->host_state.data_mem);
185
    return 0;
186 187
}

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

    /* Uninorth internal bus */
    s = FROM_SYSBUS(UNINState, dev);

195 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);
    sysbus_init_mmio_region(dev, &s->host_state.conf_mem);
    sysbus_init_mmio_region(dev, &s->host_state.data_mem);
201
    return 0;
202 203
}

204 205 206
PCIBus *pci_pmac_init(qemu_irq *pic,
                      MemoryRegion *address_space_mem,
                      MemoryRegion *address_space_io)
207 208 209 210 211 212 213
{
    DeviceState *dev;
    SysBusDevice *s;
    UNINState *d;

    /* Use values found on a real PowerMac */
    /* Uninorth main bus */
214
    dev = qdev_create(NULL, "uni-north");
M
Markus Armbruster 已提交
215
    qdev_init_nofail(dev);
216 217
    s = sysbus_from_qdev(dev);
    d = FROM_SYSBUS(UNINState, s);
218
    d->host_state.bus = pci_register_bus(&d->busdev.qdev, "pci",
219
                                         pci_unin_set_irq, pci_unin_map_irq,
220 221 222
                                         pic,
                                         address_space_mem,
                                         address_space_io,
223
                                         PCI_DEVFN(11, 0), 4);
224

225
#if 0
226
    pci_create_simple(d->host_state.bus, PCI_DEVFN(11, 0), "uni-north");
227
#endif
228 229 230 231 232 233 234

    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 */
235
    pci_create_simple(d->host_state.bus, PCI_DEVFN(12, 0), "dec-21154");
236 237 238
#endif

    /* Uninorth AGP bus */
239
    pci_create_simple(d->host_state.bus, PCI_DEVFN(11, 0), "uni-north-agp");
240
    dev = qdev_create(NULL, "uni-north-agp");
241 242 243 244
    qdev_init_nofail(dev);
    s = sysbus_from_qdev(dev);
    sysbus_mmio_map(s, 0, 0xf0800000);
    sysbus_mmio_map(s, 1, 0xf0c00000);
245 246 247 248

    /* Uninorth internal bus */
#if 0
    /* XXX: not needed for now */
249
    pci_create_simple(d->host_state.bus, PCI_DEVFN(14, 0), "uni-north-pci");
250
    dev = qdev_create(NULL, "uni-north-pci");
251 252 253 254
    qdev_init_nofail(dev);
    s = sysbus_from_qdev(dev);
    sysbus_mmio_map(s, 0, 0xf4800000);
    sysbus_mmio_map(s, 1, 0xf4c00000);
255 256 257 258 259
#endif

    return d->host_state.bus;
}

260 261 262
PCIBus *pci_pmac_u3_init(qemu_irq *pic,
                         MemoryRegion *address_space_mem,
                         MemoryRegion *address_space_io)
A
Alexander Graf 已提交
263 264 265 266 267 268 269 270 271 272 273 274 275 276
{
    DeviceState *dev;
    SysBusDevice *s;
    UNINState *d;

    /* Uninorth AGP bus */

    dev = qdev_create(NULL, "u3-agp");
    qdev_init_nofail(dev);
    s = sysbus_from_qdev(dev);
    d = FROM_SYSBUS(UNINState, s);

    d->host_state.bus = pci_register_bus(&d->busdev.qdev, "pci",
                                         pci_unin_set_irq, pci_unin_map_irq,
277 278 279
                                         pic,
                                         address_space_mem,
                                         address_space_io,
280
                                         PCI_DEVFN(11, 0), 4);
A
Alexander Graf 已提交
281 282 283 284 285 286 287 288 289

    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;
}

290
static int unin_main_pci_host_init(PCIDevice *d)
291
{
P
pbrook 已提交
292 293 294
    d->config[0x0C] = 0x08; // cache_line_size
    d->config[0x0D] = 0x10; // latency_timer
    d->config[0x34] = 0x00; // capabilities_pointer
295
    return 0;
296
}
P
pbrook 已提交
297

298
static int unin_agp_pci_host_init(PCIDevice *d)
299
{
P
pbrook 已提交
300 301 302
    d->config[0x0C] = 0x08; // cache_line_size
    d->config[0x0D] = 0x10; // latency_timer
    //    d->config[0x34] = 0x80; // capabilities_pointer
303
    return 0;
304
}
P
pbrook 已提交
305

A
Alexander Graf 已提交
306 307 308 309 310 311 312 313 314
static int u3_agp_pci_host_init(PCIDevice *d)
{
    /* cache line size */
    d->config[0x0C] = 0x08;
    /* latency timer */
    d->config[0x0D] = 0x10;
    return 0;
}

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

static PCIDeviceInfo unin_main_pci_host_info = {
324
    .qdev.name = "uni-north",
325 326
    .qdev.size = sizeof(PCIDevice),
    .init      = unin_main_pci_host_init,
327 328 329 330
    .vendor_id = PCI_VENDOR_ID_APPLE,
    .device_id = PCI_DEVICE_ID_APPLE_UNI_N_PCI,
    .revision  = 0x00,
    .class_id  = PCI_CLASS_BRIDGE_HOST,
331 332
};

A
Alexander Graf 已提交
333 334 335 336
static PCIDeviceInfo u3_agp_pci_host_info = {
    .qdev.name = "u3-agp",
    .qdev.size = sizeof(PCIDevice),
    .init      = u3_agp_pci_host_init,
337 338 339 340
    .vendor_id = PCI_VENDOR_ID_APPLE,
    .device_id = PCI_DEVICE_ID_APPLE_U3_AGP,
    .revision  = 0x00,
    .class_id  = PCI_CLASS_BRIDGE_HOST,
A
Alexander Graf 已提交
341 342
};

343
static PCIDeviceInfo unin_agp_pci_host_info = {
344
    .qdev.name = "uni-north-agp",
345 346
    .qdev.size = sizeof(PCIDevice),
    .init      = unin_agp_pci_host_init,
347 348 349 350
    .vendor_id = PCI_VENDOR_ID_APPLE,
    .device_id = PCI_DEVICE_ID_APPLE_UNI_N_AGP,
    .revision  = 0x00,
    .class_id  = PCI_CLASS_BRIDGE_HOST,
351 352 353
};

static PCIDeviceInfo unin_internal_pci_host_info = {
354
    .qdev.name = "uni-north-pci",
355 356
    .qdev.size = sizeof(PCIDevice),
    .init      = unin_internal_pci_host_init,
357 358 359 360
    .vendor_id = PCI_VENDOR_ID_APPLE,
    .device_id = PCI_DEVICE_ID_APPLE_UNI_N_I_PCI,
    .revision  = 0x00,
    .class_id  = PCI_CLASS_BRIDGE_HOST,
361 362 363 364
};

static void unin_register_devices(void)
{
365
    sysbus_register_dev("uni-north", sizeof(UNINState),
366 367
                        pci_unin_main_init_device);
    pci_qdev_register(&unin_main_pci_host_info);
A
Alexander Graf 已提交
368 369 370
    sysbus_register_dev("u3-agp", sizeof(UNINState),
                        pci_u3_agp_init_device);
    pci_qdev_register(&u3_agp_pci_host_info);
371
    sysbus_register_dev("uni-north-agp", sizeof(UNINState),
372 373
                        pci_unin_agp_init_device);
    pci_qdev_register(&unin_agp_pci_host_info);
374
    sysbus_register_dev("uni-north-pci", sizeof(UNINState),
375 376
                        pci_unin_internal_init_device);
    pci_qdev_register(&unin_internal_pci_host_info);
P
pbrook 已提交
377
}
378 379

device_init(unin_register_devices)