Statistics
| Branch: | Revision:

root / hw / unin_pci.c @ 7063f49f

History | View | Annotate | Download (12.1 kB)

1 502a5395 pbrook
/*
2 502a5395 pbrook
 * QEMU Uninorth PCI host (for all Mac99 and newer machines)
3 502a5395 pbrook
 *
4 502a5395 pbrook
 * Copyright (c) 2006 Fabrice Bellard
5 5fafdf24 ths
 *
6 502a5395 pbrook
 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 502a5395 pbrook
 * of this software and associated documentation files (the "Software"), to deal
8 502a5395 pbrook
 * in the Software without restriction, including without limitation the rights
9 502a5395 pbrook
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 502a5395 pbrook
 * copies of the Software, and to permit persons to whom the Software is
11 502a5395 pbrook
 * furnished to do so, subject to the following conditions:
12 502a5395 pbrook
 *
13 502a5395 pbrook
 * The above copyright notice and this permission notice shall be included in
14 502a5395 pbrook
 * all copies or substantial portions of the Software.
15 502a5395 pbrook
 *
16 502a5395 pbrook
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 502a5395 pbrook
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 502a5395 pbrook
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 502a5395 pbrook
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 502a5395 pbrook
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 502a5395 pbrook
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 502a5395 pbrook
 * THE SOFTWARE.
23 502a5395 pbrook
 */
24 87ecb68b pbrook
#include "hw.h"
25 87ecb68b pbrook
#include "ppc_mac.h"
26 87ecb68b pbrook
#include "pci.h"
27 4f5e19e6 Isaku Yamahata
#include "pci_host.h"
28 87ecb68b pbrook
29 f3902383 blueswir1
/* debug UniNorth */
30 f3902383 blueswir1
//#define DEBUG_UNIN
31 f3902383 blueswir1
32 f3902383 blueswir1
#ifdef DEBUG_UNIN
33 001faf32 Blue Swirl
#define UNIN_DPRINTF(fmt, ...)                                  \
34 001faf32 Blue Swirl
    do { printf("UNIN: " fmt , ## __VA_ARGS__); } while (0)
35 f3902383 blueswir1
#else
36 001faf32 Blue Swirl
#define UNIN_DPRINTF(fmt, ...)
37 f3902383 blueswir1
#endif
38 f3902383 blueswir1
39 fa0be69a Alexander Graf
static const int unin_irq_line[] = { 0x1b, 0x1c, 0x1d, 0x1e };
40 fa0be69a Alexander Graf
41 2e29bd04 Blue Swirl
typedef struct UNINState {
42 2e29bd04 Blue Swirl
    SysBusDevice busdev;
43 2e29bd04 Blue Swirl
    PCIHostState host_state;
44 d86f0e32 Alexander Graf
    ReadWriteHandler data_handler;
45 2e29bd04 Blue Swirl
} UNINState;
46 502a5395 pbrook
47 d2b59317 pbrook
static int pci_unin_map_irq(PCIDevice *pci_dev, int irq_num)
48 502a5395 pbrook
{
49 fa0be69a Alexander Graf
    int retval;
50 fa0be69a Alexander Graf
    int devfn = pci_dev->devfn & 0x00FFFFFF;
51 fa0be69a Alexander Graf
52 fa0be69a Alexander Graf
    retval = (((devfn >> 11) & 0x1F) + irq_num) & 3;
53 fa0be69a Alexander Graf
54 fa0be69a Alexander Graf
    return retval;
55 d2b59317 pbrook
}
56 d2b59317 pbrook
57 5d4e84c8 Juan Quintela
static void pci_unin_set_irq(void *opaque, int irq_num, int level)
58 d2b59317 pbrook
{
59 5d4e84c8 Juan Quintela
    qemu_irq *pic = opaque;
60 5d4e84c8 Juan Quintela
61 fa0be69a Alexander Graf
    UNIN_DPRINTF("%s: setting INT %d = %d\n", __func__,
62 fa0be69a Alexander Graf
                 unin_irq_line[irq_num], level);
63 fa0be69a Alexander Graf
    qemu_set_irq(pic[unin_irq_line[irq_num]], level);
64 502a5395 pbrook
}
65 502a5395 pbrook
66 f3902383 blueswir1
static void pci_unin_save(QEMUFile* f, void *opaque)
67 f3902383 blueswir1
{
68 f3902383 blueswir1
    PCIDevice *d = opaque;
69 f3902383 blueswir1
70 f3902383 blueswir1
    pci_device_save(d, f);
71 f3902383 blueswir1
}
72 f3902383 blueswir1
73 f3902383 blueswir1
static int pci_unin_load(QEMUFile* f, void *opaque, int version_id)
74 f3902383 blueswir1
{
75 f3902383 blueswir1
    PCIDevice *d = opaque;
76 f3902383 blueswir1
77 f3902383 blueswir1
    if (version_id != 1)
78 f3902383 blueswir1
        return -EINVAL;
79 f3902383 blueswir1
80 f3902383 blueswir1
    return pci_device_load(d, f);
81 f3902383 blueswir1
}
82 f3902383 blueswir1
83 f3902383 blueswir1
static void pci_unin_reset(void *opaque)
84 f3902383 blueswir1
{
85 f3902383 blueswir1
}
86 f3902383 blueswir1
87 d86f0e32 Alexander Graf
static uint32_t unin_get_config_reg(uint32_t reg, uint32_t addr)
88 d86f0e32 Alexander Graf
{
89 d86f0e32 Alexander Graf
    uint32_t retval;
90 d86f0e32 Alexander Graf
91 d86f0e32 Alexander Graf
    if (reg & (1u << 31)) {
92 d86f0e32 Alexander Graf
        /* XXX OpenBIOS compatibility hack */
93 d86f0e32 Alexander Graf
        retval = reg | (addr & 3);
94 d86f0e32 Alexander Graf
    } else if (reg & 1) {
95 d86f0e32 Alexander Graf
        /* CFA1 style */
96 d86f0e32 Alexander Graf
        retval = (reg & ~7u) | (addr & 7);
97 d86f0e32 Alexander Graf
    } else {
98 d86f0e32 Alexander Graf
        uint32_t slot, func;
99 d86f0e32 Alexander Graf
100 d86f0e32 Alexander Graf
        /* Grab CFA0 style values */
101 d86f0e32 Alexander Graf
        slot = ffs(reg & 0xfffff800) - 1;
102 d86f0e32 Alexander Graf
        func = (reg >> 8) & 7;
103 d86f0e32 Alexander Graf
104 d86f0e32 Alexander Graf
        /* ... and then convert them to x86 format */
105 d86f0e32 Alexander Graf
        /* config pointer */
106 d86f0e32 Alexander Graf
        retval = (reg & (0xff - 7)) | (addr & 7);
107 d86f0e32 Alexander Graf
        /* slot */
108 d86f0e32 Alexander Graf
        retval |= slot << 11;
109 d86f0e32 Alexander Graf
        /* fn */
110 d86f0e32 Alexander Graf
        retval |= func << 8;
111 d86f0e32 Alexander Graf
    }
112 d86f0e32 Alexander Graf
113 d86f0e32 Alexander Graf
114 d86f0e32 Alexander Graf
    UNIN_DPRINTF("Converted config space accessor %08x/%08x -> %08x\n",
115 d86f0e32 Alexander Graf
                 reg, addr, retval);
116 d86f0e32 Alexander Graf
117 d86f0e32 Alexander Graf
    return retval;
118 d86f0e32 Alexander Graf
}
119 d86f0e32 Alexander Graf
120 d86f0e32 Alexander Graf
static void unin_data_write(ReadWriteHandler *handler,
121 d86f0e32 Alexander Graf
                            pcibus_t addr, uint32_t val, int len)
122 d86f0e32 Alexander Graf
{
123 d86f0e32 Alexander Graf
    UNINState *s = container_of(handler, UNINState, data_handler);
124 d86f0e32 Alexander Graf
    UNIN_DPRINTF("write addr %" FMT_PCIBUS " len %d val %x\n", addr, len, val);
125 d86f0e32 Alexander Graf
    pci_data_write(s->host_state.bus,
126 d86f0e32 Alexander Graf
                   unin_get_config_reg(s->host_state.config_reg, addr),
127 d86f0e32 Alexander Graf
                   val, len);
128 d86f0e32 Alexander Graf
}
129 d86f0e32 Alexander Graf
130 d86f0e32 Alexander Graf
static uint32_t unin_data_read(ReadWriteHandler *handler,
131 d86f0e32 Alexander Graf
                               pcibus_t addr, int len)
132 d86f0e32 Alexander Graf
{
133 d86f0e32 Alexander Graf
    UNINState *s = container_of(handler, UNINState, data_handler);
134 d86f0e32 Alexander Graf
    uint32_t val;
135 d86f0e32 Alexander Graf
136 d86f0e32 Alexander Graf
    val = pci_data_read(s->host_state.bus,
137 d86f0e32 Alexander Graf
                        unin_get_config_reg(s->host_state.config_reg, addr),
138 d86f0e32 Alexander Graf
                        len);
139 d86f0e32 Alexander Graf
    UNIN_DPRINTF("read addr %" FMT_PCIBUS " len %d val %x\n", addr, len, val);
140 d86f0e32 Alexander Graf
    return val;
141 d86f0e32 Alexander Graf
}
142 d86f0e32 Alexander Graf
143 81a322d4 Gerd Hoffmann
static int pci_unin_main_init_device(SysBusDevice *dev)
144 502a5395 pbrook
{
145 502a5395 pbrook
    UNINState *s;
146 502a5395 pbrook
    int pci_mem_config, pci_mem_data;
147 502a5395 pbrook
148 502a5395 pbrook
    /* Use values found on a real PowerMac */
149 502a5395 pbrook
    /* Uninorth main bus */
150 2e29bd04 Blue Swirl
    s = FROM_SYSBUS(UNINState, dev);
151 502a5395 pbrook
152 6ebf5905 Alexander Graf
    pci_mem_config = pci_host_conf_register_mmio(&s->host_state,
153 6ebf5905 Alexander Graf
                                                 DEVICE_LITTLE_ENDIAN);
154 d86f0e32 Alexander Graf
    s->data_handler.read = unin_data_read;
155 d86f0e32 Alexander Graf
    s->data_handler.write = unin_data_write;
156 6bef0436 Alexander Graf
    pci_mem_data = cpu_register_io_memory_simple(&s->data_handler,
157 f23cea4d Alexander Graf
                                                 DEVICE_LITTLE_ENDIAN);
158 2e29bd04 Blue Swirl
    sysbus_init_mmio(dev, 0x1000, pci_mem_config);
159 2e29bd04 Blue Swirl
    sysbus_init_mmio(dev, 0x1000, pci_mem_data);
160 2e29bd04 Blue Swirl
161 0be71e32 Alex Williamson
    register_savevm(&dev->qdev, "uninorth", 0, 1,
162 0be71e32 Alex Williamson
                    pci_unin_save, pci_unin_load, &s->host_state);
163 2e29bd04 Blue Swirl
    qemu_register_reset(pci_unin_reset, &s->host_state);
164 81a322d4 Gerd Hoffmann
    return 0;
165 2e29bd04 Blue Swirl
}
166 2e29bd04 Blue Swirl
167 0f921197 Alexander Graf
static int pci_u3_agp_init_device(SysBusDevice *dev)
168 0f921197 Alexander Graf
{
169 0f921197 Alexander Graf
    UNINState *s;
170 0f921197 Alexander Graf
    int pci_mem_config, pci_mem_data;
171 0f921197 Alexander Graf
172 0f921197 Alexander Graf
    /* Uninorth U3 AGP bus */
173 0f921197 Alexander Graf
    s = FROM_SYSBUS(UNINState, dev);
174 0f921197 Alexander Graf
175 6ebf5905 Alexander Graf
    pci_mem_config = pci_host_conf_register_mmio(&s->host_state,
176 6ebf5905 Alexander Graf
                                                 DEVICE_LITTLE_ENDIAN);
177 0f921197 Alexander Graf
    s->data_handler.read = unin_data_read;
178 0f921197 Alexander Graf
    s->data_handler.write = unin_data_write;
179 6bef0436 Alexander Graf
    pci_mem_data = cpu_register_io_memory_simple(&s->data_handler,
180 f23cea4d Alexander Graf
                                                 DEVICE_LITTLE_ENDIAN);
181 0f921197 Alexander Graf
    sysbus_init_mmio(dev, 0x1000, pci_mem_config);
182 0f921197 Alexander Graf
    sysbus_init_mmio(dev, 0x1000, pci_mem_data);
183 0f921197 Alexander Graf
184 0be71e32 Alex Williamson
    register_savevm(&dev->qdev, "uninorth", 0, 1,
185 0be71e32 Alex Williamson
                    pci_unin_save, pci_unin_load, &s->host_state);
186 0f921197 Alexander Graf
    qemu_register_reset(pci_unin_reset, &s->host_state);
187 0f921197 Alexander Graf
188 0f921197 Alexander Graf
    return 0;
189 0f921197 Alexander Graf
}
190 0f921197 Alexander Graf
191 81a322d4 Gerd Hoffmann
static int pci_unin_agp_init_device(SysBusDevice *dev)
192 2e29bd04 Blue Swirl
{
193 2e29bd04 Blue Swirl
    UNINState *s;
194 2e29bd04 Blue Swirl
    int pci_mem_config, pci_mem_data;
195 2e29bd04 Blue Swirl
196 2e29bd04 Blue Swirl
    /* Uninorth AGP bus */
197 2e29bd04 Blue Swirl
    s = FROM_SYSBUS(UNINState, dev);
198 2e29bd04 Blue Swirl
199 6ebf5905 Alexander Graf
    pci_mem_config = pci_host_conf_register_mmio(&s->host_state,
200 6ebf5905 Alexander Graf
                                                 DEVICE_LITTLE_ENDIAN);
201 6ebf5905 Alexander Graf
    pci_mem_data = pci_host_data_register_mmio(&s->host_state,
202 6ebf5905 Alexander Graf
                                               DEVICE_LITTLE_ENDIAN);
203 2e29bd04 Blue Swirl
    sysbus_init_mmio(dev, 0x1000, pci_mem_config);
204 2e29bd04 Blue Swirl
    sysbus_init_mmio(dev, 0x1000, pci_mem_data);
205 81a322d4 Gerd Hoffmann
    return 0;
206 2e29bd04 Blue Swirl
}
207 2e29bd04 Blue Swirl
208 81a322d4 Gerd Hoffmann
static int pci_unin_internal_init_device(SysBusDevice *dev)
209 2e29bd04 Blue Swirl
{
210 2e29bd04 Blue Swirl
    UNINState *s;
211 2e29bd04 Blue Swirl
    int pci_mem_config, pci_mem_data;
212 2e29bd04 Blue Swirl
213 2e29bd04 Blue Swirl
    /* Uninorth internal bus */
214 2e29bd04 Blue Swirl
    s = FROM_SYSBUS(UNINState, dev);
215 2e29bd04 Blue Swirl
216 6ebf5905 Alexander Graf
    pci_mem_config = pci_host_conf_register_mmio(&s->host_state,
217 6ebf5905 Alexander Graf
                                                 DEVICE_LITTLE_ENDIAN);
218 6ebf5905 Alexander Graf
    pci_mem_data = pci_host_data_register_mmio(&s->host_state,
219 6ebf5905 Alexander Graf
                                               DEVICE_LITTLE_ENDIAN);
220 2e29bd04 Blue Swirl
    sysbus_init_mmio(dev, 0x1000, pci_mem_config);
221 2e29bd04 Blue Swirl
    sysbus_init_mmio(dev, 0x1000, pci_mem_data);
222 81a322d4 Gerd Hoffmann
    return 0;
223 2e29bd04 Blue Swirl
}
224 2e29bd04 Blue Swirl
225 2e29bd04 Blue Swirl
PCIBus *pci_pmac_init(qemu_irq *pic)
226 2e29bd04 Blue Swirl
{
227 2e29bd04 Blue Swirl
    DeviceState *dev;
228 2e29bd04 Blue Swirl
    SysBusDevice *s;
229 2e29bd04 Blue Swirl
    UNINState *d;
230 2e29bd04 Blue Swirl
231 2e29bd04 Blue Swirl
    /* Use values found on a real PowerMac */
232 2e29bd04 Blue Swirl
    /* Uninorth main bus */
233 18dd19a7 Markus Armbruster
    dev = qdev_create(NULL, "uni-north");
234 e23a1b33 Markus Armbruster
    qdev_init_nofail(dev);
235 2e29bd04 Blue Swirl
    s = sysbus_from_qdev(dev);
236 2e29bd04 Blue Swirl
    d = FROM_SYSBUS(UNINState, s);
237 cdd0935c Blue Swirl
    d->host_state.bus = pci_register_bus(&d->busdev.qdev, "pci",
238 2e29bd04 Blue Swirl
                                         pci_unin_set_irq, pci_unin_map_irq,
239 520128bd Isaku Yamahata
                                         pic, PCI_DEVFN(11, 0), 4);
240 2e29bd04 Blue Swirl
241 60398748 Blue Swirl
#if 0
242 520128bd Isaku Yamahata
    pci_create_simple(d->host_state.bus, PCI_DEVFN(11, 0), "uni-north");
243 60398748 Blue Swirl
#endif
244 2e29bd04 Blue Swirl
245 2e29bd04 Blue Swirl
    sysbus_mmio_map(s, 0, 0xf2800000);
246 2e29bd04 Blue Swirl
    sysbus_mmio_map(s, 1, 0xf2c00000);
247 2e29bd04 Blue Swirl
248 2e29bd04 Blue Swirl
    /* DEC 21154 bridge */
249 2e29bd04 Blue Swirl
#if 0
250 2e29bd04 Blue Swirl
    /* XXX: not activated as PPC BIOS doesn't handle multiple buses properly */
251 520128bd Isaku Yamahata
    pci_create_simple(d->host_state.bus, PCI_DEVFN(12, 0), "dec-21154");
252 2e29bd04 Blue Swirl
#endif
253 2e29bd04 Blue Swirl
254 2e29bd04 Blue Swirl
    /* Uninorth AGP bus */
255 520128bd Isaku Yamahata
    pci_create_simple(d->host_state.bus, PCI_DEVFN(11, 0), "uni-north-agp");
256 18dd19a7 Markus Armbruster
    dev = qdev_create(NULL, "uni-north-agp");
257 d27d06f2 Blue Swirl
    qdev_init_nofail(dev);
258 d27d06f2 Blue Swirl
    s = sysbus_from_qdev(dev);
259 d27d06f2 Blue Swirl
    sysbus_mmio_map(s, 0, 0xf0800000);
260 d27d06f2 Blue Swirl
    sysbus_mmio_map(s, 1, 0xf0c00000);
261 2e29bd04 Blue Swirl
262 2e29bd04 Blue Swirl
    /* Uninorth internal bus */
263 2e29bd04 Blue Swirl
#if 0
264 2e29bd04 Blue Swirl
    /* XXX: not needed for now */
265 520128bd Isaku Yamahata
    pci_create_simple(d->host_state.bus, PCI_DEVFN(14, 0), "uni-north-pci");
266 18dd19a7 Markus Armbruster
    dev = qdev_create(NULL, "uni-north-pci");
267 d27d06f2 Blue Swirl
    qdev_init_nofail(dev);
268 d27d06f2 Blue Swirl
    s = sysbus_from_qdev(dev);
269 d27d06f2 Blue Swirl
    sysbus_mmio_map(s, 0, 0xf4800000);
270 d27d06f2 Blue Swirl
    sysbus_mmio_map(s, 1, 0xf4c00000);
271 2e29bd04 Blue Swirl
#endif
272 2e29bd04 Blue Swirl
273 2e29bd04 Blue Swirl
    return d->host_state.bus;
274 2e29bd04 Blue Swirl
}
275 2e29bd04 Blue Swirl
276 0f921197 Alexander Graf
PCIBus *pci_pmac_u3_init(qemu_irq *pic)
277 0f921197 Alexander Graf
{
278 0f921197 Alexander Graf
    DeviceState *dev;
279 0f921197 Alexander Graf
    SysBusDevice *s;
280 0f921197 Alexander Graf
    UNINState *d;
281 0f921197 Alexander Graf
282 0f921197 Alexander Graf
    /* Uninorth AGP bus */
283 0f921197 Alexander Graf
284 0f921197 Alexander Graf
    dev = qdev_create(NULL, "u3-agp");
285 0f921197 Alexander Graf
    qdev_init_nofail(dev);
286 0f921197 Alexander Graf
    s = sysbus_from_qdev(dev);
287 0f921197 Alexander Graf
    d = FROM_SYSBUS(UNINState, s);
288 0f921197 Alexander Graf
289 0f921197 Alexander Graf
    d->host_state.bus = pci_register_bus(&d->busdev.qdev, "pci",
290 0f921197 Alexander Graf
                                         pci_unin_set_irq, pci_unin_map_irq,
291 520128bd Isaku Yamahata
                                         pic, PCI_DEVFN(11, 0), 4);
292 0f921197 Alexander Graf
293 0f921197 Alexander Graf
    sysbus_mmio_map(s, 0, 0xf0800000);
294 0f921197 Alexander Graf
    sysbus_mmio_map(s, 1, 0xf0c00000);
295 0f921197 Alexander Graf
296 0f921197 Alexander Graf
    pci_create_simple(d->host_state.bus, 11 << 3, "u3-agp");
297 0f921197 Alexander Graf
298 0f921197 Alexander Graf
    return d->host_state.bus;
299 0f921197 Alexander Graf
}
300 0f921197 Alexander Graf
301 81a322d4 Gerd Hoffmann
static int unin_main_pci_host_init(PCIDevice *d)
302 2e29bd04 Blue Swirl
{
303 deb54399 aliguori
    pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_APPLE);
304 4ebcf884 blueswir1
    pci_config_set_device_id(d->config, PCI_DEVICE_ID_APPLE_UNI_N_PCI);
305 502a5395 pbrook
    d->config[0x08] = 0x00; // revision
306 173a543b blueswir1
    pci_config_set_class(d->config, PCI_CLASS_BRIDGE_HOST);
307 502a5395 pbrook
    d->config[0x0C] = 0x08; // cache_line_size
308 502a5395 pbrook
    d->config[0x0D] = 0x10; // latency_timer
309 502a5395 pbrook
    d->config[0x34] = 0x00; // capabilities_pointer
310 81a322d4 Gerd Hoffmann
    return 0;
311 2e29bd04 Blue Swirl
}
312 502a5395 pbrook
313 81a322d4 Gerd Hoffmann
static int unin_agp_pci_host_init(PCIDevice *d)
314 2e29bd04 Blue Swirl
{
315 deb54399 aliguori
    pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_APPLE);
316 deb54399 aliguori
    pci_config_set_device_id(d->config, PCI_DEVICE_ID_APPLE_UNI_N_AGP);
317 502a5395 pbrook
    d->config[0x08] = 0x00; // revision
318 173a543b blueswir1
    pci_config_set_class(d->config, PCI_CLASS_BRIDGE_HOST);
319 502a5395 pbrook
    d->config[0x0C] = 0x08; // cache_line_size
320 502a5395 pbrook
    d->config[0x0D] = 0x10; // latency_timer
321 502a5395 pbrook
    //    d->config[0x34] = 0x80; // capabilities_pointer
322 81a322d4 Gerd Hoffmann
    return 0;
323 2e29bd04 Blue Swirl
}
324 502a5395 pbrook
325 0f921197 Alexander Graf
static int u3_agp_pci_host_init(PCIDevice *d)
326 0f921197 Alexander Graf
{
327 0f921197 Alexander Graf
    pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_APPLE);
328 0f921197 Alexander Graf
    pci_config_set_device_id(d->config, PCI_DEVICE_ID_APPLE_U3_AGP);
329 0f921197 Alexander Graf
    /* revision */
330 0f921197 Alexander Graf
    d->config[0x08] = 0x00;
331 0f921197 Alexander Graf
    pci_config_set_class(d->config, PCI_CLASS_BRIDGE_HOST);
332 0f921197 Alexander Graf
    /* cache line size */
333 0f921197 Alexander Graf
    d->config[0x0C] = 0x08;
334 0f921197 Alexander Graf
    /* latency timer */
335 0f921197 Alexander Graf
    d->config[0x0D] = 0x10;
336 0f921197 Alexander Graf
    return 0;
337 0f921197 Alexander Graf
}
338 0f921197 Alexander Graf
339 81a322d4 Gerd Hoffmann
static int unin_internal_pci_host_init(PCIDevice *d)
340 2e29bd04 Blue Swirl
{
341 deb54399 aliguori
    pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_APPLE);
342 4ebcf884 blueswir1
    pci_config_set_device_id(d->config, PCI_DEVICE_ID_APPLE_UNI_N_I_PCI);
343 502a5395 pbrook
    d->config[0x08] = 0x00; // revision
344 173a543b blueswir1
    pci_config_set_class(d->config, PCI_CLASS_BRIDGE_HOST);
345 502a5395 pbrook
    d->config[0x0C] = 0x08; // cache_line_size
346 502a5395 pbrook
    d->config[0x0D] = 0x10; // latency_timer
347 502a5395 pbrook
    d->config[0x34] = 0x00; // capabilities_pointer
348 81a322d4 Gerd Hoffmann
    return 0;
349 2e29bd04 Blue Swirl
}
350 2e29bd04 Blue Swirl
351 2e29bd04 Blue Swirl
static PCIDeviceInfo unin_main_pci_host_info = {
352 18dd19a7 Markus Armbruster
    .qdev.name = "uni-north",
353 2e29bd04 Blue Swirl
    .qdev.size = sizeof(PCIDevice),
354 2e29bd04 Blue Swirl
    .init      = unin_main_pci_host_init,
355 2e29bd04 Blue Swirl
};
356 2e29bd04 Blue Swirl
357 0f921197 Alexander Graf
static PCIDeviceInfo u3_agp_pci_host_info = {
358 0f921197 Alexander Graf
    .qdev.name = "u3-agp",
359 0f921197 Alexander Graf
    .qdev.size = sizeof(PCIDevice),
360 0f921197 Alexander Graf
    .init      = u3_agp_pci_host_init,
361 0f921197 Alexander Graf
};
362 0f921197 Alexander Graf
363 2e29bd04 Blue Swirl
static PCIDeviceInfo unin_agp_pci_host_info = {
364 18dd19a7 Markus Armbruster
    .qdev.name = "uni-north-agp",
365 2e29bd04 Blue Swirl
    .qdev.size = sizeof(PCIDevice),
366 2e29bd04 Blue Swirl
    .init      = unin_agp_pci_host_init,
367 2e29bd04 Blue Swirl
};
368 2e29bd04 Blue Swirl
369 2e29bd04 Blue Swirl
static PCIDeviceInfo unin_internal_pci_host_info = {
370 18dd19a7 Markus Armbruster
    .qdev.name = "uni-north-pci",
371 2e29bd04 Blue Swirl
    .qdev.size = sizeof(PCIDevice),
372 2e29bd04 Blue Swirl
    .init      = unin_internal_pci_host_init,
373 2e29bd04 Blue Swirl
};
374 2e29bd04 Blue Swirl
375 2e29bd04 Blue Swirl
static void unin_register_devices(void)
376 2e29bd04 Blue Swirl
{
377 18dd19a7 Markus Armbruster
    sysbus_register_dev("uni-north", sizeof(UNINState),
378 2e29bd04 Blue Swirl
                        pci_unin_main_init_device);
379 2e29bd04 Blue Swirl
    pci_qdev_register(&unin_main_pci_host_info);
380 0f921197 Alexander Graf
    sysbus_register_dev("u3-agp", sizeof(UNINState),
381 0f921197 Alexander Graf
                        pci_u3_agp_init_device);
382 0f921197 Alexander Graf
    pci_qdev_register(&u3_agp_pci_host_info);
383 18dd19a7 Markus Armbruster
    sysbus_register_dev("uni-north-agp", sizeof(UNINState),
384 2e29bd04 Blue Swirl
                        pci_unin_agp_init_device);
385 2e29bd04 Blue Swirl
    pci_qdev_register(&unin_agp_pci_host_info);
386 18dd19a7 Markus Armbruster
    sysbus_register_dev("uni-north-pci", sizeof(UNINState),
387 2e29bd04 Blue Swirl
                        pci_unin_internal_init_device);
388 2e29bd04 Blue Swirl
    pci_qdev_register(&unin_internal_pci_host_info);
389 502a5395 pbrook
}
390 2e29bd04 Blue Swirl
391 2e29bd04 Blue Swirl
device_init(unin_register_devices)