Statistics
| Branch: | Revision:

root / hw / piix_pci.c @ fe57ca82

History | View | Annotate | Download (10.3 kB)

1 502a5395 pbrook
/*
2 502a5395 pbrook
 * QEMU i440FX/PIIX3 PCI Bridge Emulation
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 502a5395 pbrook
25 87ecb68b pbrook
#include "hw.h"
26 87ecb68b pbrook
#include "pc.h"
27 87ecb68b pbrook
#include "pci.h"
28 4f5e19e6 Isaku Yamahata
#include "pci_host.h"
29 f75247f1 Gerd Hoffmann
#include "isa.h"
30 8a14daa5 Gerd Hoffmann
#include "sysbus.h"
31 87ecb68b pbrook
32 502a5395 pbrook
typedef PCIHostState I440FXState;
33 502a5395 pbrook
34 fd37d881 Juan Quintela
typedef struct PIIX3State {
35 fd37d881 Juan Quintela
    PCIDevice dev;
36 8372615d Juan Quintela
    int pci_irq_levels[4];
37 bd7dce87 Juan Quintela
    qemu_irq *pic;
38 7cd9eee0 Gerd Hoffmann
} PIIX3State;
39 bd7dce87 Juan Quintela
40 0a3bacf3 Juan Quintela
struct PCII440FXState {
41 0a3bacf3 Juan Quintela
    PCIDevice dev;
42 c227f099 Anthony Liguori
    target_phys_addr_t isa_page_descs[384 / 4];
43 6c009fa4 Juan Quintela
    uint8_t smm_enabled;
44 7cd9eee0 Gerd Hoffmann
    PIIX3State *piix3;
45 0a3bacf3 Juan Quintela
};
46 0a3bacf3 Juan Quintela
47 5d4e84c8 Juan Quintela
static void piix3_set_irq(void *opaque, int irq_num, int level);
48 d2b59317 pbrook
49 d2b59317 pbrook
/* return the global irq number corresponding to a given device irq
50 d2b59317 pbrook
   pin. We could also use the bus number to have a more precise
51 d2b59317 pbrook
   mapping. */
52 d2b59317 pbrook
static int pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num)
53 d2b59317 pbrook
{
54 d2b59317 pbrook
    int slot_addend;
55 d2b59317 pbrook
    slot_addend = (pci_dev->devfn >> 3) - 1;
56 d2b59317 pbrook
    return (irq_num + slot_addend) & 3;
57 d2b59317 pbrook
}
58 502a5395 pbrook
59 0a3bacf3 Juan Quintela
static void update_pam(PCII440FXState *d, uint32_t start, uint32_t end, int r)
60 84631fd7 bellard
{
61 84631fd7 bellard
    uint32_t addr;
62 84631fd7 bellard
63 84631fd7 bellard
    //    printf("ISA mapping %08x-0x%08x: %d\n", start, end, r);
64 84631fd7 bellard
    switch(r) {
65 84631fd7 bellard
    case 3:
66 84631fd7 bellard
        /* RAM */
67 5fafdf24 ths
        cpu_register_physical_memory(start, end - start,
68 84631fd7 bellard
                                     start);
69 84631fd7 bellard
        break;
70 84631fd7 bellard
    case 1:
71 84631fd7 bellard
        /* ROM (XXX: not quite correct) */
72 5fafdf24 ths
        cpu_register_physical_memory(start, end - start,
73 84631fd7 bellard
                                     start | IO_MEM_ROM);
74 84631fd7 bellard
        break;
75 84631fd7 bellard
    case 2:
76 84631fd7 bellard
    case 0:
77 84631fd7 bellard
        /* XXX: should distinguish read/write cases */
78 84631fd7 bellard
        for(addr = start; addr < end; addr += 4096) {
79 5fafdf24 ths
            cpu_register_physical_memory(addr, 4096,
80 6c009fa4 Juan Quintela
                                         d->isa_page_descs[(addr - 0xa0000) >> 12]);
81 84631fd7 bellard
        }
82 84631fd7 bellard
        break;
83 84631fd7 bellard
    }
84 84631fd7 bellard
}
85 ee0ea1d0 bellard
86 0a3bacf3 Juan Quintela
static void i440fx_update_memory_mappings(PCII440FXState *d)
87 ee0ea1d0 bellard
{
88 ee0ea1d0 bellard
    int i, r;
89 84631fd7 bellard
    uint32_t smram, addr;
90 84631fd7 bellard
91 0a3bacf3 Juan Quintela
    update_pam(d, 0xf0000, 0x100000, (d->dev.config[0x59] >> 4) & 3);
92 84631fd7 bellard
    for(i = 0; i < 12; i++) {
93 0a3bacf3 Juan Quintela
        r = (d->dev.config[(i >> 1) + 0x5a] >> ((i & 1) * 4)) & 3;
94 84631fd7 bellard
        update_pam(d, 0xc0000 + 0x4000 * i, 0xc0000 + 0x4000 * (i + 1), r);
95 ee0ea1d0 bellard
    }
96 0a3bacf3 Juan Quintela
    smram = d->dev.config[0x72];
97 6c009fa4 Juan Quintela
    if ((d->smm_enabled && (smram & 0x08)) || (smram & 0x40)) {
98 84631fd7 bellard
        cpu_register_physical_memory(0xa0000, 0x20000, 0xa0000);
99 84631fd7 bellard
    } else {
100 84631fd7 bellard
        for(addr = 0xa0000; addr < 0xc0000; addr += 4096) {
101 5fafdf24 ths
            cpu_register_physical_memory(addr, 4096,
102 6c009fa4 Juan Quintela
                                         d->isa_page_descs[(addr - 0xa0000) >> 12]);
103 ee0ea1d0 bellard
        }
104 ee0ea1d0 bellard
    }
105 ee0ea1d0 bellard
}
106 ee0ea1d0 bellard
107 0a3bacf3 Juan Quintela
void i440fx_set_smm(PCII440FXState *d, int val)
108 ee0ea1d0 bellard
{
109 ee0ea1d0 bellard
    val = (val != 0);
110 6c009fa4 Juan Quintela
    if (d->smm_enabled != val) {
111 6c009fa4 Juan Quintela
        d->smm_enabled = val;
112 ee0ea1d0 bellard
        i440fx_update_memory_mappings(d);
113 ee0ea1d0 bellard
    }
114 ee0ea1d0 bellard
}
115 ee0ea1d0 bellard
116 ee0ea1d0 bellard
117 ee0ea1d0 bellard
/* XXX: suppress when better memory API. We make the assumption that
118 ee0ea1d0 bellard
   no device (in particular the VGA) changes the memory mappings in
119 ee0ea1d0 bellard
   the 0xa0000-0x100000 range */
120 0a3bacf3 Juan Quintela
void i440fx_init_memory_mappings(PCII440FXState *d)
121 ee0ea1d0 bellard
{
122 ee0ea1d0 bellard
    int i;
123 ee0ea1d0 bellard
    for(i = 0; i < 96; i++) {
124 6c009fa4 Juan Quintela
        d->isa_page_descs[i] = cpu_get_physical_page_desc(0xa0000 + i * 0x1000);
125 ee0ea1d0 bellard
    }
126 ee0ea1d0 bellard
}
127 ee0ea1d0 bellard
128 0a3bacf3 Juan Quintela
static void i440fx_write_config(PCIDevice *dev,
129 ee0ea1d0 bellard
                                uint32_t address, uint32_t val, int len)
130 ee0ea1d0 bellard
{
131 0a3bacf3 Juan Quintela
    PCII440FXState *d = DO_UPCAST(PCII440FXState, dev, dev);
132 0a3bacf3 Juan Quintela
133 ee0ea1d0 bellard
    /* XXX: implement SMRAM.D_LOCK */
134 0a3bacf3 Juan Quintela
    pci_default_write_config(dev, address, val, len);
135 84631fd7 bellard
    if ((address >= 0x59 && address <= 0x5f) || address == 0x72)
136 ee0ea1d0 bellard
        i440fx_update_memory_mappings(d);
137 ee0ea1d0 bellard
}
138 ee0ea1d0 bellard
139 0c7d19e5 Juan Quintela
static int i440fx_load_old(QEMUFile* f, void *opaque, int version_id)
140 ee0ea1d0 bellard
{
141 0a3bacf3 Juan Quintela
    PCII440FXState *d = opaque;
142 52fc1d83 balrog
    int ret, i;
143 ee0ea1d0 bellard
144 0a3bacf3 Juan Quintela
    ret = pci_device_load(&d->dev, f);
145 ee0ea1d0 bellard
    if (ret < 0)
146 ee0ea1d0 bellard
        return ret;
147 ee0ea1d0 bellard
    i440fx_update_memory_mappings(d);
148 6c009fa4 Juan Quintela
    qemu_get_8s(f, &d->smm_enabled);
149 52fc1d83 balrog
150 da64182c Juan Quintela
    if (version_id == 2)
151 52fc1d83 balrog
        for (i = 0; i < 4; i++)
152 7cd9eee0 Gerd Hoffmann
            d->piix3->pci_irq_levels[i] = qemu_get_be32(f);
153 52fc1d83 balrog
154 ee0ea1d0 bellard
    return 0;
155 ee0ea1d0 bellard
}
156 ee0ea1d0 bellard
157 e59fb374 Juan Quintela
static int i440fx_post_load(void *opaque, int version_id)
158 0c7d19e5 Juan Quintela
{
159 0c7d19e5 Juan Quintela
    PCII440FXState *d = opaque;
160 0c7d19e5 Juan Quintela
161 0c7d19e5 Juan Quintela
    i440fx_update_memory_mappings(d);
162 0c7d19e5 Juan Quintela
    return 0;
163 0c7d19e5 Juan Quintela
}
164 0c7d19e5 Juan Quintela
165 0c7d19e5 Juan Quintela
static const VMStateDescription vmstate_i440fx = {
166 0c7d19e5 Juan Quintela
    .name = "I440FX",
167 0c7d19e5 Juan Quintela
    .version_id = 3,
168 0c7d19e5 Juan Quintela
    .minimum_version_id = 3,
169 0c7d19e5 Juan Quintela
    .minimum_version_id_old = 1,
170 0c7d19e5 Juan Quintela
    .load_state_old = i440fx_load_old,
171 752ff2fa Juan Quintela
    .post_load = i440fx_post_load,
172 0c7d19e5 Juan Quintela
    .fields      = (VMStateField []) {
173 0c7d19e5 Juan Quintela
        VMSTATE_PCI_DEVICE(dev, PCII440FXState),
174 0c7d19e5 Juan Quintela
        VMSTATE_UINT8(smm_enabled, PCII440FXState),
175 0c7d19e5 Juan Quintela
        VMSTATE_END_OF_LIST()
176 0c7d19e5 Juan Quintela
    }
177 0c7d19e5 Juan Quintela
};
178 0c7d19e5 Juan Quintela
179 81a322d4 Gerd Hoffmann
static int i440fx_pcihost_initfn(SysBusDevice *dev)
180 502a5395 pbrook
{
181 8a14daa5 Gerd Hoffmann
    I440FXState *s = FROM_SYSBUS(I440FXState, dev);
182 502a5395 pbrook
183 f08b32fe Isaku Yamahata
    pci_host_conf_register_ioport(0xcf8, s);
184 502a5395 pbrook
185 4f5e19e6 Isaku Yamahata
    pci_host_data_register_ioport(0xcfc, s);
186 81a322d4 Gerd Hoffmann
    return 0;
187 8a14daa5 Gerd Hoffmann
}
188 502a5395 pbrook
189 0a3bacf3 Juan Quintela
static int i440fx_initfn(PCIDevice *dev)
190 8a14daa5 Gerd Hoffmann
{
191 0a3bacf3 Juan Quintela
    PCII440FXState *d = DO_UPCAST(PCII440FXState, dev, dev);
192 ee0ea1d0 bellard
193 0a3bacf3 Juan Quintela
    pci_config_set_vendor_id(d->dev.config, PCI_VENDOR_ID_INTEL);
194 0a3bacf3 Juan Quintela
    pci_config_set_device_id(d->dev.config, PCI_DEVICE_ID_INTEL_82441);
195 0a3bacf3 Juan Quintela
    d->dev.config[0x08] = 0x02; // revision
196 0a3bacf3 Juan Quintela
    pci_config_set_class(d->dev.config, PCI_CLASS_BRIDGE_HOST);
197 0a3bacf3 Juan Quintela
    d->dev.config[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
198 0a3bacf3 Juan Quintela
199 0a3bacf3 Juan Quintela
    d->dev.config[0x72] = 0x02; /* SMRAM */
200 ee0ea1d0 bellard
201 81a322d4 Gerd Hoffmann
    return 0;
202 8a14daa5 Gerd Hoffmann
}
203 8a14daa5 Gerd Hoffmann
204 85a750ca Juan Quintela
PCIBus *i440fx_init(PCII440FXState **pi440fx_state, int *piix3_devfn, qemu_irq *pic)
205 8a14daa5 Gerd Hoffmann
{
206 8a14daa5 Gerd Hoffmann
    DeviceState *dev;
207 8a14daa5 Gerd Hoffmann
    PCIBus *b;
208 8a14daa5 Gerd Hoffmann
    PCIDevice *d;
209 8a14daa5 Gerd Hoffmann
    I440FXState *s;
210 7cd9eee0 Gerd Hoffmann
    PIIX3State *piix3;
211 8a14daa5 Gerd Hoffmann
212 8a14daa5 Gerd Hoffmann
    dev = qdev_create(NULL, "i440FX-pcihost");
213 8a14daa5 Gerd Hoffmann
    s = FROM_SYSBUS(I440FXState, sysbus_from_qdev(dev));
214 7cd9eee0 Gerd Hoffmann
    b = pci_bus_new(&s->busdev.qdev, NULL, 0);
215 8a14daa5 Gerd Hoffmann
    s->bus = b;
216 e23a1b33 Markus Armbruster
    qdev_init_nofail(dev);
217 8a14daa5 Gerd Hoffmann
218 8a14daa5 Gerd Hoffmann
    d = pci_create_simple(b, 0, "i440FX");
219 0a3bacf3 Juan Quintela
    *pi440fx_state = DO_UPCAST(PCII440FXState, dev, d);
220 8a14daa5 Gerd Hoffmann
221 7cd9eee0 Gerd Hoffmann
    piix3 = DO_UPCAST(PIIX3State, dev,
222 fd83e9b9 Juan Quintela
                                 pci_create_simple(b, -1, "PIIX3"));
223 7cd9eee0 Gerd Hoffmann
    piix3->pic = pic;
224 7cd9eee0 Gerd Hoffmann
    pci_bus_irqs(b, piix3_set_irq, pci_slot_get_pirq, piix3, 4);
225 7cd9eee0 Gerd Hoffmann
    (*pi440fx_state)->piix3 = piix3;
226 7cd9eee0 Gerd Hoffmann
227 7cd9eee0 Gerd Hoffmann
    *piix3_devfn = piix3->dev.devfn;
228 85a750ca Juan Quintela
229 502a5395 pbrook
    return b;
230 502a5395 pbrook
}
231 502a5395 pbrook
232 502a5395 pbrook
/* PIIX3 PCI to ISA bridge */
233 502a5395 pbrook
234 5d4e84c8 Juan Quintela
static void piix3_set_irq(void *opaque, int irq_num, int level)
235 502a5395 pbrook
{
236 d2b59317 pbrook
    int i, pic_irq, pic_level;
237 7cd9eee0 Gerd Hoffmann
    PIIX3State *piix3 = opaque;
238 502a5395 pbrook
239 7cd9eee0 Gerd Hoffmann
    piix3->pci_irq_levels[irq_num] = level;
240 502a5395 pbrook
241 502a5395 pbrook
    /* now we change the pic irq level according to the piix irq mappings */
242 502a5395 pbrook
    /* XXX: optimize */
243 7cd9eee0 Gerd Hoffmann
    pic_irq = piix3->dev.config[0x60 + irq_num];
244 502a5395 pbrook
    if (pic_irq < 16) {
245 d2b59317 pbrook
        /* The pic level is the logical OR of all the PCI irqs mapped
246 502a5395 pbrook
           to it */
247 502a5395 pbrook
        pic_level = 0;
248 d2b59317 pbrook
        for (i = 0; i < 4; i++) {
249 7cd9eee0 Gerd Hoffmann
            if (pic_irq == piix3->dev.config[0x60 + i])
250 7cd9eee0 Gerd Hoffmann
                pic_level |= piix3->pci_irq_levels[i];
251 d2b59317 pbrook
        }
252 7cd9eee0 Gerd Hoffmann
        qemu_set_irq(piix3->pic[pic_irq], pic_level);
253 502a5395 pbrook
    }
254 502a5395 pbrook
}
255 502a5395 pbrook
256 15a1956a Gleb Natapov
static void piix3_reset(void *opaque)
257 502a5395 pbrook
{
258 fd37d881 Juan Quintela
    PIIX3State *d = opaque;
259 fd37d881 Juan Quintela
    uint8_t *pci_conf = d->dev.config;
260 502a5395 pbrook
261 502a5395 pbrook
    pci_conf[0x04] = 0x07; // master, memory and I/O
262 502a5395 pbrook
    pci_conf[0x05] = 0x00;
263 502a5395 pbrook
    pci_conf[0x06] = 0x00;
264 502a5395 pbrook
    pci_conf[0x07] = 0x02; // PCI_status_devsel_medium
265 502a5395 pbrook
    pci_conf[0x4c] = 0x4d;
266 502a5395 pbrook
    pci_conf[0x4e] = 0x03;
267 502a5395 pbrook
    pci_conf[0x4f] = 0x00;
268 502a5395 pbrook
    pci_conf[0x60] = 0x80;
269 477afee3 aurel32
    pci_conf[0x61] = 0x80;
270 477afee3 aurel32
    pci_conf[0x62] = 0x80;
271 477afee3 aurel32
    pci_conf[0x63] = 0x80;
272 502a5395 pbrook
    pci_conf[0x69] = 0x02;
273 502a5395 pbrook
    pci_conf[0x70] = 0x80;
274 502a5395 pbrook
    pci_conf[0x76] = 0x0c;
275 502a5395 pbrook
    pci_conf[0x77] = 0x0c;
276 502a5395 pbrook
    pci_conf[0x78] = 0x02;
277 502a5395 pbrook
    pci_conf[0x79] = 0x00;
278 502a5395 pbrook
    pci_conf[0x80] = 0x00;
279 502a5395 pbrook
    pci_conf[0x82] = 0x00;
280 502a5395 pbrook
    pci_conf[0xa0] = 0x08;
281 502a5395 pbrook
    pci_conf[0xa2] = 0x00;
282 502a5395 pbrook
    pci_conf[0xa3] = 0x00;
283 502a5395 pbrook
    pci_conf[0xa4] = 0x00;
284 502a5395 pbrook
    pci_conf[0xa5] = 0x00;
285 502a5395 pbrook
    pci_conf[0xa6] = 0x00;
286 502a5395 pbrook
    pci_conf[0xa7] = 0x00;
287 502a5395 pbrook
    pci_conf[0xa8] = 0x0f;
288 502a5395 pbrook
    pci_conf[0xaa] = 0x00;
289 502a5395 pbrook
    pci_conf[0xab] = 0x00;
290 502a5395 pbrook
    pci_conf[0xac] = 0x00;
291 502a5395 pbrook
    pci_conf[0xae] = 0x00;
292 15a1956a Gleb Natapov
293 8372615d Juan Quintela
    memset(d->pci_irq_levels, 0, sizeof(d->pci_irq_levels));
294 502a5395 pbrook
}
295 502a5395 pbrook
296 d1f171bd Juan Quintela
static const VMStateDescription vmstate_piix3 = {
297 d1f171bd Juan Quintela
    .name = "PIIX3",
298 d1f171bd Juan Quintela
    .version_id = 3,
299 d1f171bd Juan Quintela
    .minimum_version_id = 2,
300 d1f171bd Juan Quintela
    .minimum_version_id_old = 2,
301 d1f171bd Juan Quintela
    .fields      = (VMStateField []) {
302 d1f171bd Juan Quintela
        VMSTATE_PCI_DEVICE(dev, PIIX3State),
303 d1f171bd Juan Quintela
        VMSTATE_INT32_ARRAY_V(pci_irq_levels, PIIX3State, 4, 3),
304 d1f171bd Juan Quintela
        VMSTATE_END_OF_LIST()
305 da64182c Juan Quintela
    }
306 d1f171bd Juan Quintela
};
307 1941d19c bellard
308 fd37d881 Juan Quintela
static int piix3_initfn(PCIDevice *dev)
309 502a5395 pbrook
{
310 fd37d881 Juan Quintela
    PIIX3State *d = DO_UPCAST(PIIX3State, dev, dev);
311 502a5395 pbrook
    uint8_t *pci_conf;
312 502a5395 pbrook
313 fd37d881 Juan Quintela
    isa_bus_new(&d->dev.qdev);
314 502a5395 pbrook
315 fd37d881 Juan Quintela
    pci_conf = d->dev.config;
316 deb54399 aliguori
    pci_config_set_vendor_id(pci_conf, PCI_VENDOR_ID_INTEL);
317 deb54399 aliguori
    pci_config_set_device_id(pci_conf, PCI_DEVICE_ID_INTEL_82371SB_0); // 82371SB PIIX3 PCI-to-ISA bridge (Step A1)
318 173a543b blueswir1
    pci_config_set_class(pci_conf, PCI_CLASS_BRIDGE_ISA);
319 6407f373 Isaku Yamahata
    pci_conf[PCI_HEADER_TYPE] =
320 6407f373 Isaku Yamahata
        PCI_HEADER_TYPE_NORMAL | PCI_HEADER_TYPE_MULTI_FUNCTION; // header_type = PCI_multifunction, generic
321 502a5395 pbrook
322 a08d4367 Jan Kiszka
    qemu_register_reset(piix3_reset, d);
323 81a322d4 Gerd Hoffmann
    return 0;
324 502a5395 pbrook
}
325 5c2b87e3 ths
326 8a14daa5 Gerd Hoffmann
static PCIDeviceInfo i440fx_info[] = {
327 8a14daa5 Gerd Hoffmann
    {
328 8a14daa5 Gerd Hoffmann
        .qdev.name    = "i440FX",
329 8a14daa5 Gerd Hoffmann
        .qdev.desc    = "Host bridge",
330 0a3bacf3 Juan Quintela
        .qdev.size    = sizeof(PCII440FXState),
331 be73cfe2 Juan Quintela
        .qdev.vmsd    = &vmstate_i440fx,
332 8a14daa5 Gerd Hoffmann
        .qdev.no_user = 1,
333 8a14daa5 Gerd Hoffmann
        .init         = i440fx_initfn,
334 8a14daa5 Gerd Hoffmann
        .config_write = i440fx_write_config,
335 8a14daa5 Gerd Hoffmann
    },{
336 8a14daa5 Gerd Hoffmann
        .qdev.name    = "PIIX3",
337 8a14daa5 Gerd Hoffmann
        .qdev.desc    = "ISA bridge",
338 fd37d881 Juan Quintela
        .qdev.size    = sizeof(PIIX3State),
339 be73cfe2 Juan Quintela
        .qdev.vmsd    = &vmstate_piix3,
340 8a14daa5 Gerd Hoffmann
        .qdev.no_user = 1,
341 8a14daa5 Gerd Hoffmann
        .init         = piix3_initfn,
342 8a14daa5 Gerd Hoffmann
    },{
343 8a14daa5 Gerd Hoffmann
        /* end of list */
344 8a14daa5 Gerd Hoffmann
    }
345 8a14daa5 Gerd Hoffmann
};
346 8a14daa5 Gerd Hoffmann
347 8a14daa5 Gerd Hoffmann
static SysBusDeviceInfo i440fx_pcihost_info = {
348 8a14daa5 Gerd Hoffmann
    .init         = i440fx_pcihost_initfn,
349 8a14daa5 Gerd Hoffmann
    .qdev.name    = "i440FX-pcihost",
350 8a14daa5 Gerd Hoffmann
    .qdev.size    = sizeof(I440FXState),
351 8a14daa5 Gerd Hoffmann
    .qdev.no_user = 1,
352 8a14daa5 Gerd Hoffmann
};
353 8a14daa5 Gerd Hoffmann
354 8a14daa5 Gerd Hoffmann
static void i440fx_register(void)
355 8a14daa5 Gerd Hoffmann
{
356 8a14daa5 Gerd Hoffmann
    sysbus_register_withprop(&i440fx_pcihost_info);
357 8a14daa5 Gerd Hoffmann
    pci_qdev_register_many(i440fx_info);
358 8a14daa5 Gerd Hoffmann
}
359 8a14daa5 Gerd Hoffmann
device_init(i440fx_register);