Statistics
| Branch: | Revision:

root / hw / unin_pci.c @ ac8dae67

History | View | Annotate | Download (11.8 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
#ifdef TARGET_WORDS_BIGENDIAN
125 d86f0e32 Alexander Graf
    val = qemu_bswap_len(val, len);
126 d86f0e32 Alexander Graf
#endif
127 d86f0e32 Alexander Graf
    UNIN_DPRINTF("write addr %" FMT_PCIBUS " len %d val %x\n", addr, len, val);
128 d86f0e32 Alexander Graf
    pci_data_write(s->host_state.bus,
129 d86f0e32 Alexander Graf
                   unin_get_config_reg(s->host_state.config_reg, addr),
130 d86f0e32 Alexander Graf
                   val, len);
131 d86f0e32 Alexander Graf
}
132 d86f0e32 Alexander Graf
133 d86f0e32 Alexander Graf
static uint32_t unin_data_read(ReadWriteHandler *handler,
134 d86f0e32 Alexander Graf
                               pcibus_t addr, int len)
135 d86f0e32 Alexander Graf
{
136 d86f0e32 Alexander Graf
    UNINState *s = container_of(handler, UNINState, data_handler);
137 d86f0e32 Alexander Graf
    uint32_t val;
138 d86f0e32 Alexander Graf
139 d86f0e32 Alexander Graf
    val = pci_data_read(s->host_state.bus,
140 d86f0e32 Alexander Graf
                        unin_get_config_reg(s->host_state.config_reg, addr),
141 d86f0e32 Alexander Graf
                        len);
142 d86f0e32 Alexander Graf
    UNIN_DPRINTF("read addr %" FMT_PCIBUS " len %d val %x\n", addr, len, val);
143 d86f0e32 Alexander Graf
#ifdef TARGET_WORDS_BIGENDIAN
144 d86f0e32 Alexander Graf
    val = qemu_bswap_len(val, len);
145 d86f0e32 Alexander Graf
#endif
146 d86f0e32 Alexander Graf
    return val;
147 d86f0e32 Alexander Graf
}
148 d86f0e32 Alexander Graf
149 81a322d4 Gerd Hoffmann
static int pci_unin_main_init_device(SysBusDevice *dev)
150 502a5395 pbrook
{
151 502a5395 pbrook
    UNINState *s;
152 502a5395 pbrook
    int pci_mem_config, pci_mem_data;
153 502a5395 pbrook
154 502a5395 pbrook
    /* Use values found on a real PowerMac */
155 502a5395 pbrook
    /* Uninorth main bus */
156 2e29bd04 Blue Swirl
    s = FROM_SYSBUS(UNINState, dev);
157 502a5395 pbrook
158 f08b32fe Isaku Yamahata
    pci_mem_config = pci_host_conf_register_mmio(&s->host_state);
159 d86f0e32 Alexander Graf
    s->data_handler.read = unin_data_read;
160 d86f0e32 Alexander Graf
    s->data_handler.write = unin_data_write;
161 d86f0e32 Alexander Graf
    pci_mem_data = cpu_register_io_memory_simple(&s->data_handler);
162 2e29bd04 Blue Swirl
    sysbus_init_mmio(dev, 0x1000, pci_mem_config);
163 2e29bd04 Blue Swirl
    sysbus_init_mmio(dev, 0x1000, pci_mem_data);
164 2e29bd04 Blue Swirl
165 2e29bd04 Blue Swirl
    register_savevm("uninorth", 0, 1, pci_unin_save, pci_unin_load, &s->host_state);
166 2e29bd04 Blue Swirl
    qemu_register_reset(pci_unin_reset, &s->host_state);
167 81a322d4 Gerd Hoffmann
    return 0;
168 2e29bd04 Blue Swirl
}
169 2e29bd04 Blue Swirl
170 0f921197 Alexander Graf
static int pci_u3_agp_init_device(SysBusDevice *dev)
171 0f921197 Alexander Graf
{
172 0f921197 Alexander Graf
    UNINState *s;
173 0f921197 Alexander Graf
    int pci_mem_config, pci_mem_data;
174 0f921197 Alexander Graf
175 0f921197 Alexander Graf
    /* Uninorth U3 AGP bus */
176 0f921197 Alexander Graf
    s = FROM_SYSBUS(UNINState, dev);
177 0f921197 Alexander Graf
178 0f921197 Alexander Graf
    pci_mem_config = pci_host_conf_register_mmio(&s->host_state);
179 0f921197 Alexander Graf
    s->data_handler.read = unin_data_read;
180 0f921197 Alexander Graf
    s->data_handler.write = unin_data_write;
181 0f921197 Alexander Graf
    pci_mem_data = cpu_register_io_memory_simple(&s->data_handler);
182 0f921197 Alexander Graf
    sysbus_init_mmio(dev, 0x1000, pci_mem_config);
183 0f921197 Alexander Graf
    sysbus_init_mmio(dev, 0x1000, pci_mem_data);
184 0f921197 Alexander Graf
185 0f921197 Alexander Graf
    register_savevm("uninorth", 0, 1, 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 f08b32fe Isaku Yamahata
    pci_mem_config = pci_host_conf_register_mmio_noswap(&s->host_state);
200 f08b32fe Isaku Yamahata
    pci_mem_data = pci_host_data_register_mmio(&s->host_state);
201 2e29bd04 Blue Swirl
    sysbus_init_mmio(dev, 0x1000, pci_mem_config);
202 2e29bd04 Blue Swirl
    sysbus_init_mmio(dev, 0x1000, pci_mem_data);
203 81a322d4 Gerd Hoffmann
    return 0;
204 2e29bd04 Blue Swirl
}
205 2e29bd04 Blue Swirl
206 81a322d4 Gerd Hoffmann
static int pci_unin_internal_init_device(SysBusDevice *dev)
207 2e29bd04 Blue Swirl
{
208 2e29bd04 Blue Swirl
    UNINState *s;
209 2e29bd04 Blue Swirl
    int pci_mem_config, pci_mem_data;
210 2e29bd04 Blue Swirl
211 2e29bd04 Blue Swirl
    /* Uninorth internal bus */
212 2e29bd04 Blue Swirl
    s = FROM_SYSBUS(UNINState, dev);
213 2e29bd04 Blue Swirl
214 f08b32fe Isaku Yamahata
    pci_mem_config = pci_host_conf_register_mmio_noswap(&s->host_state);
215 f08b32fe Isaku Yamahata
    pci_mem_data = pci_host_data_register_mmio(&s->host_state);
216 2e29bd04 Blue Swirl
    sysbus_init_mmio(dev, 0x1000, pci_mem_config);
217 2e29bd04 Blue Swirl
    sysbus_init_mmio(dev, 0x1000, pci_mem_data);
218 81a322d4 Gerd Hoffmann
    return 0;
219 2e29bd04 Blue Swirl
}
220 2e29bd04 Blue Swirl
221 2e29bd04 Blue Swirl
PCIBus *pci_pmac_init(qemu_irq *pic)
222 2e29bd04 Blue Swirl
{
223 2e29bd04 Blue Swirl
    DeviceState *dev;
224 2e29bd04 Blue Swirl
    SysBusDevice *s;
225 2e29bd04 Blue Swirl
    UNINState *d;
226 2e29bd04 Blue Swirl
227 2e29bd04 Blue Swirl
    /* Use values found on a real PowerMac */
228 2e29bd04 Blue Swirl
    /* Uninorth main bus */
229 18dd19a7 Markus Armbruster
    dev = qdev_create(NULL, "uni-north");
230 e23a1b33 Markus Armbruster
    qdev_init_nofail(dev);
231 2e29bd04 Blue Swirl
    s = sysbus_from_qdev(dev);
232 2e29bd04 Blue Swirl
    d = FROM_SYSBUS(UNINState, s);
233 cdd0935c Blue Swirl
    d->host_state.bus = pci_register_bus(&d->busdev.qdev, "pci",
234 2e29bd04 Blue Swirl
                                         pci_unin_set_irq, pci_unin_map_irq,
235 2e29bd04 Blue Swirl
                                         pic, 11 << 3, 4);
236 2e29bd04 Blue Swirl
237 60398748 Blue Swirl
#if 0
238 18dd19a7 Markus Armbruster
    pci_create_simple(d->host_state.bus, 11 << 3, "uni-north");
239 60398748 Blue Swirl
#endif
240 2e29bd04 Blue Swirl
241 2e29bd04 Blue Swirl
    sysbus_mmio_map(s, 0, 0xf2800000);
242 2e29bd04 Blue Swirl
    sysbus_mmio_map(s, 1, 0xf2c00000);
243 2e29bd04 Blue Swirl
244 2e29bd04 Blue Swirl
    /* DEC 21154 bridge */
245 2e29bd04 Blue Swirl
#if 0
246 2e29bd04 Blue Swirl
    /* XXX: not activated as PPC BIOS doesn't handle multiple buses properly */
247 556cd098 Markus Armbruster
    pci_create_simple(d->host_state.bus, 12 << 3, "dec-21154");
248 2e29bd04 Blue Swirl
#endif
249 2e29bd04 Blue Swirl
250 2e29bd04 Blue Swirl
    /* Uninorth AGP bus */
251 18dd19a7 Markus Armbruster
    pci_create_simple(d->host_state.bus, 11 << 3, "uni-north-agp");
252 18dd19a7 Markus Armbruster
    dev = qdev_create(NULL, "uni-north-agp");
253 d27d06f2 Blue Swirl
    qdev_init_nofail(dev);
254 d27d06f2 Blue Swirl
    s = sysbus_from_qdev(dev);
255 d27d06f2 Blue Swirl
    sysbus_mmio_map(s, 0, 0xf0800000);
256 d27d06f2 Blue Swirl
    sysbus_mmio_map(s, 1, 0xf0c00000);
257 2e29bd04 Blue Swirl
258 2e29bd04 Blue Swirl
    /* Uninorth internal bus */
259 2e29bd04 Blue Swirl
#if 0
260 2e29bd04 Blue Swirl
    /* XXX: not needed for now */
261 18dd19a7 Markus Armbruster
    pci_create_simple(d->host_state.bus, 14 << 3, "uni-north-pci");
262 18dd19a7 Markus Armbruster
    dev = qdev_create(NULL, "uni-north-pci");
263 d27d06f2 Blue Swirl
    qdev_init_nofail(dev);
264 d27d06f2 Blue Swirl
    s = sysbus_from_qdev(dev);
265 d27d06f2 Blue Swirl
    sysbus_mmio_map(s, 0, 0xf4800000);
266 d27d06f2 Blue Swirl
    sysbus_mmio_map(s, 1, 0xf4c00000);
267 2e29bd04 Blue Swirl
#endif
268 2e29bd04 Blue Swirl
269 2e29bd04 Blue Swirl
    return d->host_state.bus;
270 2e29bd04 Blue Swirl
}
271 2e29bd04 Blue Swirl
272 0f921197 Alexander Graf
PCIBus *pci_pmac_u3_init(qemu_irq *pic)
273 0f921197 Alexander Graf
{
274 0f921197 Alexander Graf
    DeviceState *dev;
275 0f921197 Alexander Graf
    SysBusDevice *s;
276 0f921197 Alexander Graf
    UNINState *d;
277 0f921197 Alexander Graf
278 0f921197 Alexander Graf
    /* Uninorth AGP bus */
279 0f921197 Alexander Graf
280 0f921197 Alexander Graf
    dev = qdev_create(NULL, "u3-agp");
281 0f921197 Alexander Graf
    qdev_init_nofail(dev);
282 0f921197 Alexander Graf
    s = sysbus_from_qdev(dev);
283 0f921197 Alexander Graf
    d = FROM_SYSBUS(UNINState, s);
284 0f921197 Alexander Graf
285 0f921197 Alexander Graf
    d->host_state.bus = pci_register_bus(&d->busdev.qdev, "pci",
286 0f921197 Alexander Graf
                                         pci_unin_set_irq, pci_unin_map_irq,
287 0f921197 Alexander Graf
                                         pic, 11 << 3, 4);
288 0f921197 Alexander Graf
289 0f921197 Alexander Graf
    sysbus_mmio_map(s, 0, 0xf0800000);
290 0f921197 Alexander Graf
    sysbus_mmio_map(s, 1, 0xf0c00000);
291 0f921197 Alexander Graf
292 0f921197 Alexander Graf
    pci_create_simple(d->host_state.bus, 11 << 3, "u3-agp");
293 0f921197 Alexander Graf
294 0f921197 Alexander Graf
    return d->host_state.bus;
295 0f921197 Alexander Graf
}
296 0f921197 Alexander Graf
297 81a322d4 Gerd Hoffmann
static int unin_main_pci_host_init(PCIDevice *d)
298 2e29bd04 Blue Swirl
{
299 deb54399 aliguori
    pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_APPLE);
300 4ebcf884 blueswir1
    pci_config_set_device_id(d->config, PCI_DEVICE_ID_APPLE_UNI_N_PCI);
301 502a5395 pbrook
    d->config[0x08] = 0x00; // revision
302 173a543b blueswir1
    pci_config_set_class(d->config, PCI_CLASS_BRIDGE_HOST);
303 502a5395 pbrook
    d->config[0x0C] = 0x08; // cache_line_size
304 502a5395 pbrook
    d->config[0x0D] = 0x10; // latency_timer
305 6407f373 Isaku Yamahata
    d->config[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
306 502a5395 pbrook
    d->config[0x34] = 0x00; // capabilities_pointer
307 81a322d4 Gerd Hoffmann
    return 0;
308 2e29bd04 Blue Swirl
}
309 502a5395 pbrook
310 81a322d4 Gerd Hoffmann
static int unin_agp_pci_host_init(PCIDevice *d)
311 2e29bd04 Blue Swirl
{
312 deb54399 aliguori
    pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_APPLE);
313 deb54399 aliguori
    pci_config_set_device_id(d->config, PCI_DEVICE_ID_APPLE_UNI_N_AGP);
314 502a5395 pbrook
    d->config[0x08] = 0x00; // revision
315 173a543b blueswir1
    pci_config_set_class(d->config, PCI_CLASS_BRIDGE_HOST);
316 502a5395 pbrook
    d->config[0x0C] = 0x08; // cache_line_size
317 502a5395 pbrook
    d->config[0x0D] = 0x10; // latency_timer
318 6407f373 Isaku Yamahata
    d->config[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
319 502a5395 pbrook
    //    d->config[0x34] = 0x80; // capabilities_pointer
320 81a322d4 Gerd Hoffmann
    return 0;
321 2e29bd04 Blue Swirl
}
322 502a5395 pbrook
323 0f921197 Alexander Graf
static int u3_agp_pci_host_init(PCIDevice *d)
324 0f921197 Alexander Graf
{
325 0f921197 Alexander Graf
    pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_APPLE);
326 0f921197 Alexander Graf
    pci_config_set_device_id(d->config, PCI_DEVICE_ID_APPLE_U3_AGP);
327 0f921197 Alexander Graf
    /* revision */
328 0f921197 Alexander Graf
    d->config[0x08] = 0x00;
329 0f921197 Alexander Graf
    pci_config_set_class(d->config, PCI_CLASS_BRIDGE_HOST);
330 0f921197 Alexander Graf
    /* cache line size */
331 0f921197 Alexander Graf
    d->config[0x0C] = 0x08;
332 0f921197 Alexander Graf
    /* latency timer */
333 0f921197 Alexander Graf
    d->config[0x0D] = 0x10;
334 0f921197 Alexander Graf
    d->config[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL;
335 0f921197 Alexander Graf
    return 0;
336 0f921197 Alexander Graf
}
337 0f921197 Alexander Graf
338 81a322d4 Gerd Hoffmann
static int unin_internal_pci_host_init(PCIDevice *d)
339 2e29bd04 Blue Swirl
{
340 deb54399 aliguori
    pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_APPLE);
341 4ebcf884 blueswir1
    pci_config_set_device_id(d->config, PCI_DEVICE_ID_APPLE_UNI_N_I_PCI);
342 502a5395 pbrook
    d->config[0x08] = 0x00; // revision
343 173a543b blueswir1
    pci_config_set_class(d->config, PCI_CLASS_BRIDGE_HOST);
344 502a5395 pbrook
    d->config[0x0C] = 0x08; // cache_line_size
345 502a5395 pbrook
    d->config[0x0D] = 0x10; // latency_timer
346 6407f373 Isaku Yamahata
    d->config[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
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)