unin_pci.c 9.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

39 40 41 42
typedef struct UNINState {
    SysBusDevice busdev;
    PCIHostState host_state;
} UNINState;
P
pbrook 已提交
43

44 45
/* Don't know if this matches real hardware, but it agrees with OHW.  */
static int pci_unin_map_irq(PCIDevice *pci_dev, int irq_num)
P
pbrook 已提交
46
{
47 48 49
    return (irq_num + (pci_dev->devfn >> 3)) & 3;
}

50
static void pci_unin_set_irq(void *opaque, int irq_num, int level)
51
{
52 53
    qemu_irq *pic = opaque;

P
pbrook 已提交
54
    qemu_set_irq(pic[irq_num + 8], level);
P
pbrook 已提交
55 56
}

57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
static void pci_unin_save(QEMUFile* f, void *opaque)
{
    PCIDevice *d = opaque;

    pci_device_save(d, f);
}

static int pci_unin_load(QEMUFile* f, void *opaque, int version_id)
{
    PCIDevice *d = opaque;

    if (version_id != 1)
        return -EINVAL;

    return pci_device_load(d, f);
}

static void pci_unin_reset(void *opaque)
{
}

78
static int pci_unin_main_init_device(SysBusDevice *dev)
P
pbrook 已提交
79 80 81 82 83 84
{
    UNINState *s;
    int pci_mem_config, pci_mem_data;

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

87 88
    pci_mem_config = pci_host_conf_register_mmio(&s->host_state);
    pci_mem_data = pci_host_data_register_mmio(&s->host_state);
89 90 91 92 93
    sysbus_init_mmio(dev, 0x1000, pci_mem_config);
    sysbus_init_mmio(dev, 0x1000, pci_mem_data);

    register_savevm("uninorth", 0, 1, pci_unin_save, pci_unin_load, &s->host_state);
    qemu_register_reset(pci_unin_reset, &s->host_state);
94
    return 0;
95 96
}

97
static int pci_dec_21154_init_device(SysBusDevice *dev)
98 99 100 101 102 103 104 105
{
    UNINState *s;
    int pci_mem_config, pci_mem_data;

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

    // XXX: s = &pci_bridge[2];
106 107
    pci_mem_config = pci_host_conf_register_mmio_noswap(&s->host_state);
    pci_mem_data = pci_host_data_register_mmio(&s->host_state);
108 109
    sysbus_init_mmio(dev, 0x1000, pci_mem_config);
    sysbus_init_mmio(dev, 0x1000, pci_mem_data);
110
    return 0;
111 112
}

113
static int pci_unin_agp_init_device(SysBusDevice *dev)
114 115 116 117 118 119 120
{
    UNINState *s;
    int pci_mem_config, pci_mem_data;

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

121 122
    pci_mem_config = pci_host_conf_register_mmio_noswap(&s->host_state);
    pci_mem_data = pci_host_data_register_mmio(&s->host_state);
123 124
    sysbus_init_mmio(dev, 0x1000, pci_mem_config);
    sysbus_init_mmio(dev, 0x1000, pci_mem_data);
125
    return 0;
126 127
}

128
static int pci_unin_internal_init_device(SysBusDevice *dev)
129 130 131 132 133 134 135
{
    UNINState *s;
    int pci_mem_config, pci_mem_data;

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

136 137
    pci_mem_config = pci_host_conf_register_mmio_noswap(&s->host_state);
    pci_mem_data = pci_host_data_register_mmio(&s->host_state);
138 139
    sysbus_init_mmio(dev, 0x1000, pci_mem_config);
    sysbus_init_mmio(dev, 0x1000, pci_mem_data);
140
    return 0;
141 142 143 144 145 146 147 148 149 150
}

PCIBus *pci_pmac_init(qemu_irq *pic)
{
    DeviceState *dev;
    SysBusDevice *s;
    UNINState *d;

    /* Use values found on a real PowerMac */
    /* Uninorth main bus */
151
    dev = qdev_create(NULL, "uni-north-main");
M
Markus Armbruster 已提交
152
    qdev_init_nofail(dev);
153 154
    s = sysbus_from_qdev(dev);
    d = FROM_SYSBUS(UNINState, s);
155
    d->host_state.bus = pci_register_bus(&d->busdev.qdev, "pci",
156 157 158
                                         pci_unin_set_irq, pci_unin_map_irq,
                                         pic, 11 << 3, 4);

159
#if 0
160
    pci_create_simple(d->host_state.bus, 11 << 3, "uni-north-main");
161
#endif
162 163 164 165 166 167 168

    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 */
169
    pci_create_simple(d->host_state.bus, 12 << 3, "dec-21154");
170 171 172
#endif

    /* Uninorth AGP bus */
173 174
    pci_create_simple(d->host_state.bus, 11 << 3, "uni-north-AGP");
    dev = qdev_create(NULL, "uni-north-AGP");
175 176 177 178
    qdev_init_nofail(dev);
    s = sysbus_from_qdev(dev);
    sysbus_mmio_map(s, 0, 0xf0800000);
    sysbus_mmio_map(s, 1, 0xf0c00000);
179 180 181 182

    /* Uninorth internal bus */
#if 0
    /* XXX: not needed for now */
183 184
    pci_create_simple(d->host_state.bus, 14 << 3, "uni-north-internal");
    dev = qdev_create(NULL, "uni-north-internal");
185 186 187 188
    qdev_init_nofail(dev);
    s = sysbus_from_qdev(dev);
    sysbus_mmio_map(s, 0, 0xf4800000);
    sysbus_mmio_map(s, 1, 0xf4c00000);
189 190 191 192 193
#endif

    return d->host_state.bus;
}

194
static int unin_main_pci_host_init(PCIDevice *d)
195
{
196
    pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_APPLE);
197
    pci_config_set_device_id(d->config, PCI_DEVICE_ID_APPLE_UNI_N_PCI);
P
pbrook 已提交
198
    d->config[0x08] = 0x00; // revision
199
    pci_config_set_class(d->config, PCI_CLASS_BRIDGE_HOST);
P
pbrook 已提交
200 201
    d->config[0x0C] = 0x08; // cache_line_size
    d->config[0x0D] = 0x10; // latency_timer
I
Isaku Yamahata 已提交
202
    d->config[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
P
pbrook 已提交
203
    d->config[0x34] = 0x00; // capabilities_pointer
204
    return 0;
205
}
P
pbrook 已提交
206

207
static int dec_21154_pci_host_init(PCIDevice *d)
208
{
P
pbrook 已提交
209
    /* pci-to-pci bridge */
210 211
    pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_DEC);
    pci_config_set_device_id(d->config, PCI_DEVICE_ID_DEC_21154);
P
pbrook 已提交
212
    d->config[0x08] = 0x05; // revision
213
    pci_config_set_class(d->config, PCI_CLASS_BRIDGE_PCI);
P
pbrook 已提交
214 215
    d->config[0x0C] = 0x08; // cache_line_size
    d->config[0x0D] = 0x20; // latency_timer
I
Isaku Yamahata 已提交
216
    d->config[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_BRIDGE; // header_type
P
pbrook 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232

    d->config[0x18] = 0x01; // primary_bus
    d->config[0x19] = 0x02; // secondary_bus
    d->config[0x1A] = 0x02; // subordinate_bus
    d->config[0x1B] = 0x20; // secondary_latency_timer
    d->config[0x1C] = 0x11; // io_base
    d->config[0x1D] = 0x01; // io_limit
    d->config[0x20] = 0x00; // memory_base
    d->config[0x21] = 0x80;
    d->config[0x22] = 0x00; // memory_limit
    d->config[0x23] = 0x80;
    d->config[0x24] = 0x01; // prefetchable_memory_base
    d->config[0x25] = 0x80;
    d->config[0x26] = 0xF1; // prefectchable_memory_limit
    d->config[0x27] = 0x7F;
    // d->config[0x34] = 0xdc // capabilities_pointer
233
    return 0;
234
}
P
pbrook 已提交
235

236
static int unin_agp_pci_host_init(PCIDevice *d)
237
{
238 239
    pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_APPLE);
    pci_config_set_device_id(d->config, PCI_DEVICE_ID_APPLE_UNI_N_AGP);
P
pbrook 已提交
240
    d->config[0x08] = 0x00; // revision
241
    pci_config_set_class(d->config, PCI_CLASS_BRIDGE_HOST);
P
pbrook 已提交
242 243
    d->config[0x0C] = 0x08; // cache_line_size
    d->config[0x0D] = 0x10; // latency_timer
I
Isaku Yamahata 已提交
244
    d->config[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
P
pbrook 已提交
245
    //    d->config[0x34] = 0x80; // capabilities_pointer
246
    return 0;
247
}
P
pbrook 已提交
248

249
static int unin_internal_pci_host_init(PCIDevice *d)
250
{
251
    pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_APPLE);
252
    pci_config_set_device_id(d->config, PCI_DEVICE_ID_APPLE_UNI_N_I_PCI);
P
pbrook 已提交
253
    d->config[0x08] = 0x00; // revision
254
    pci_config_set_class(d->config, PCI_CLASS_BRIDGE_HOST);
P
pbrook 已提交
255 256
    d->config[0x0C] = 0x08; // cache_line_size
    d->config[0x0D] = 0x10; // latency_timer
I
Isaku Yamahata 已提交
257
    d->config[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
P
pbrook 已提交
258
    d->config[0x34] = 0x00; // capabilities_pointer
259
    return 0;
260 261 262
}

static PCIDeviceInfo unin_main_pci_host_info = {
263
    .qdev.name = "uni-north-main",
264 265 266 267 268
    .qdev.size = sizeof(PCIDevice),
    .init      = unin_main_pci_host_init,
};

static PCIDeviceInfo dec_21154_pci_host_info = {
269
    .qdev.name = "dec-21154",
270 271 272
    .qdev.size = sizeof(PCIDevice),
    .init      = dec_21154_pci_host_init,
};
273

274
static PCIDeviceInfo unin_agp_pci_host_info = {
275
    .qdev.name = "uni-north-AGP",
276 277 278 279 280
    .qdev.size = sizeof(PCIDevice),
    .init      = unin_agp_pci_host_init,
};

static PCIDeviceInfo unin_internal_pci_host_info = {
281
    .qdev.name = "uni-north-internal",
282 283 284 285 286 287
    .qdev.size = sizeof(PCIDevice),
    .init      = unin_internal_pci_host_init,
};

static void unin_register_devices(void)
{
288
    sysbus_register_dev("uni-north-main", sizeof(UNINState),
289 290
                        pci_unin_main_init_device);
    pci_qdev_register(&unin_main_pci_host_info);
291
    sysbus_register_dev("dec-21154", sizeof(UNINState),
292 293
                        pci_dec_21154_init_device);
    pci_qdev_register(&dec_21154_pci_host_info);
294
    sysbus_register_dev("uni-north-AGP", sizeof(UNINState),
295 296
                        pci_unin_agp_init_device);
    pci_qdev_register(&unin_agp_pci_host_info);
297
    sysbus_register_dev("uni-north-internal", sizeof(UNINState),
298 299
                        pci_unin_internal_init_device);
    pci_qdev_register(&unin_internal_pci_host_info);
P
pbrook 已提交
300
}
301 302

device_init(unin_register_devices)