Statistics
| Branch: | Revision:

root / hw / pci-host / piix.c @ 2aedfa46

History | View | Annotate | Download (20.1 kB)

1
/*
2
 * QEMU i440FX/PIIX3 PCI Bridge Emulation
3
 *
4
 * Copyright (c) 2006 Fabrice Bellard
5
 *
6
 * Permission is hereby granted, free of charge, to any person obtaining a copy
7
 * of this software and associated documentation files (the "Software"), to deal
8
 * in the Software without restriction, including without limitation the rights
9
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
 * copies of the Software, and to permit persons to whom the Software is
11
 * furnished to do so, subject to the following conditions:
12
 *
13
 * The above copyright notice and this permission notice shall be included in
14
 * all copies or substantial portions of the Software.
15
 *
16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
 * THE SOFTWARE.
23
 */
24

    
25
#include "hw/hw.h"
26
#include "hw/i386/pc.h"
27
#include "hw/pci/pci.h"
28
#include "hw/pci/pci_host.h"
29
#include "hw/isa/isa.h"
30
#include "hw/sysbus.h"
31
#include "qemu/range.h"
32
#include "hw/xen/xen.h"
33
#include "hw/pci-host/pam.h"
34
#include "sysemu/sysemu.h"
35

    
36
/*
37
 * I440FX chipset data sheet.
38
 * http://download.intel.com/design/chipsets/datashts/29054901.pdf
39
 */
40

    
41
typedef struct I440FXState {
42
    PCIHostState parent_obj;
43
} I440FXState;
44

    
45
#define PIIX_NUM_PIC_IRQS       16      /* i8259 * 2 */
46
#define PIIX_NUM_PIRQS          4ULL    /* PIRQ[A-D] */
47
#define XEN_PIIX_NUM_PIRQS      128ULL
48
#define PIIX_PIRQC              0x60
49

    
50
/*
51
 * Reset Control Register: PCI-accessible ISA-Compatible Register at address
52
 * 0xcf9, provided by the PCI/ISA bridge (PIIX3 PCI function 0, 8086:7000).
53
 */
54
#define RCR_IOPORT 0xcf9
55

    
56
typedef struct PIIX3State {
57
    PCIDevice dev;
58

    
59
    /*
60
     * bitmap to track pic levels.
61
     * The pic level is the logical OR of all the PCI irqs mapped to it
62
     * So one PIC level is tracked by PIIX_NUM_PIRQS bits.
63
     *
64
     * PIRQ is mapped to PIC pins, we track it by
65
     * PIIX_NUM_PIRQS * PIIX_NUM_PIC_IRQS = 64 bits with
66
     * pic_irq * PIIX_NUM_PIRQS + pirq
67
     */
68
#if PIIX_NUM_PIC_IRQS * PIIX_NUM_PIRQS > 64
69
#error "unable to encode pic state in 64bit in pic_levels."
70
#endif
71
    uint64_t pic_levels;
72

    
73
    qemu_irq *pic;
74

    
75
    /* This member isn't used. Just for save/load compatibility */
76
    int32_t pci_irq_levels_vmstate[PIIX_NUM_PIRQS];
77

    
78
    /* Reset Control Register contents */
79
    uint8_t rcr;
80

    
81
    /* IO memory region for Reset Control Register (RCR_IOPORT) */
82
    MemoryRegion rcr_mem;
83
} PIIX3State;
84

    
85
#define TYPE_I440FX_PCI_DEVICE "i440FX"
86
#define I440FX_PCI_DEVICE(obj) \
87
    OBJECT_CHECK(PCII440FXState, (obj), TYPE_I440FX_PCI_DEVICE)
88

    
89
struct PCII440FXState {
90
    /*< private >*/
91
    PCIDevice parent_obj;
92
    /*< public >*/
93

    
94
    MemoryRegion *system_memory;
95
    MemoryRegion *pci_address_space;
96
    MemoryRegion *ram_memory;
97
    MemoryRegion pci_hole;
98
    MemoryRegion pci_hole_64bit;
99
    PAMMemoryRegion pam_regions[13];
100
    MemoryRegion smram_region;
101
    uint8_t smm_enabled;
102
};
103

    
104

    
105
#define I440FX_PAM      0x59
106
#define I440FX_PAM_SIZE 7
107
#define I440FX_SMRAM    0x72
108

    
109
static void piix3_set_irq(void *opaque, int pirq, int level);
110
static PCIINTxRoute piix3_route_intx_pin_to_irq(void *opaque, int pci_intx);
111
static void piix3_write_config_xen(PCIDevice *dev,
112
                               uint32_t address, uint32_t val, int len);
113

    
114
/* return the global irq number corresponding to a given device irq
115
   pin. We could also use the bus number to have a more precise
116
   mapping. */
117
static int pci_slot_get_pirq(PCIDevice *pci_dev, int pci_intx)
118
{
119
    int slot_addend;
120
    slot_addend = (pci_dev->devfn >> 3) - 1;
121
    return (pci_intx + slot_addend) & 3;
122
}
123

    
124
static void i440fx_update_memory_mappings(PCII440FXState *d)
125
{
126
    int i;
127
    PCIDevice *pd = PCI_DEVICE(d);
128

    
129
    memory_region_transaction_begin();
130
    for (i = 0; i < 13; i++) {
131
        pam_update(&d->pam_regions[i], i,
132
                   pd->config[I440FX_PAM + ((i + 1) / 2)]);
133
    }
134
    smram_update(&d->smram_region, pd->config[I440FX_SMRAM], d->smm_enabled);
135
    memory_region_transaction_commit();
136
}
137

    
138
static void i440fx_set_smm(int val, void *arg)
139
{
140
    PCII440FXState *d = arg;
141
    PCIDevice *pd = PCI_DEVICE(d);
142

    
143
    memory_region_transaction_begin();
144
    smram_set_smm(&d->smm_enabled, val, pd->config[I440FX_SMRAM],
145
                  &d->smram_region);
146
    memory_region_transaction_commit();
147
}
148

    
149

    
150
static void i440fx_write_config(PCIDevice *dev,
151
                                uint32_t address, uint32_t val, int len)
152
{
153
    PCII440FXState *d = I440FX_PCI_DEVICE(dev);
154

    
155
    /* XXX: implement SMRAM.D_LOCK */
156
    pci_default_write_config(dev, address, val, len);
157
    if (ranges_overlap(address, len, I440FX_PAM, I440FX_PAM_SIZE) ||
158
        range_covers_byte(address, len, I440FX_SMRAM)) {
159
        i440fx_update_memory_mappings(d);
160
    }
161
}
162

    
163
static int i440fx_load_old(QEMUFile* f, void *opaque, int version_id)
164
{
165
    PCII440FXState *d = opaque;
166
    PCIDevice *pd = PCI_DEVICE(d);
167
    int ret, i;
168

    
169
    ret = pci_device_load(pd, f);
170
    if (ret < 0)
171
        return ret;
172
    i440fx_update_memory_mappings(d);
173
    qemu_get_8s(f, &d->smm_enabled);
174

    
175
    if (version_id == 2) {
176
        for (i = 0; i < PIIX_NUM_PIRQS; i++) {
177
            qemu_get_be32(f); /* dummy load for compatibility */
178
        }
179
    }
180

    
181
    return 0;
182
}
183

    
184
static int i440fx_post_load(void *opaque, int version_id)
185
{
186
    PCII440FXState *d = opaque;
187

    
188
    i440fx_update_memory_mappings(d);
189
    return 0;
190
}
191

    
192
static const VMStateDescription vmstate_i440fx = {
193
    .name = "I440FX",
194
    .version_id = 3,
195
    .minimum_version_id = 3,
196
    .minimum_version_id_old = 1,
197
    .load_state_old = i440fx_load_old,
198
    .post_load = i440fx_post_load,
199
    .fields      = (VMStateField []) {
200
        VMSTATE_PCI_DEVICE(parent_obj, PCII440FXState),
201
        VMSTATE_UINT8(smm_enabled, PCII440FXState),
202
        VMSTATE_END_OF_LIST()
203
    }
204
};
205

    
206
static int i440fx_pcihost_initfn(SysBusDevice *dev)
207
{
208
    PCIHostState *s = PCI_HOST_BRIDGE(dev);
209

    
210
    memory_region_init_io(&s->conf_mem, OBJECT(dev), &pci_host_conf_le_ops, s,
211
                          "pci-conf-idx", 4);
212
    sysbus_add_io(dev, 0xcf8, &s->conf_mem);
213
    sysbus_init_ioports(&s->busdev, 0xcf8, 4);
214

    
215
    memory_region_init_io(&s->data_mem, OBJECT(dev), &pci_host_data_le_ops, s,
216
                          "pci-conf-data", 4);
217
    sysbus_add_io(dev, 0xcfc, &s->data_mem);
218
    sysbus_init_ioports(&s->busdev, 0xcfc, 4);
219

    
220
    return 0;
221
}
222

    
223
static int i440fx_initfn(PCIDevice *dev)
224
{
225
    PCII440FXState *d = I440FX_PCI_DEVICE(dev);
226

    
227
    dev->config[I440FX_SMRAM] = 0x02;
228

    
229
    cpu_smm_register(&i440fx_set_smm, d);
230
    return 0;
231
}
232

    
233
static PCIBus *i440fx_common_init(const char *device_name,
234
                                  PCII440FXState **pi440fx_state,
235
                                  int *piix3_devfn,
236
                                  ISABus **isa_bus, qemu_irq *pic,
237
                                  MemoryRegion *address_space_mem,
238
                                  MemoryRegion *address_space_io,
239
                                  ram_addr_t ram_size,
240
                                  hwaddr pci_hole_start,
241
                                  hwaddr pci_hole_size,
242
                                  hwaddr pci_hole64_start,
243
                                  hwaddr pci_hole64_size,
244
                                  MemoryRegion *pci_address_space,
245
                                  MemoryRegion *ram_memory)
246
{
247
    DeviceState *dev;
248
    PCIBus *b;
249
    PCIDevice *d;
250
    PCIHostState *s;
251
    PIIX3State *piix3;
252
    PCII440FXState *f;
253
    unsigned i;
254

    
255
    dev = qdev_create(NULL, "i440FX-pcihost");
256
    s = PCI_HOST_BRIDGE(dev);
257
    b = pci_bus_new(dev, NULL, pci_address_space,
258
                    address_space_io, 0, TYPE_PCI_BUS);
259
    s->bus = b;
260
    object_property_add_child(qdev_get_machine(), "i440fx", OBJECT(dev), NULL);
261
    qdev_init_nofail(dev);
262

    
263
    d = pci_create_simple(b, 0, device_name);
264
    *pi440fx_state = I440FX_PCI_DEVICE(d);
265
    f = *pi440fx_state;
266
    f->system_memory = address_space_mem;
267
    f->pci_address_space = pci_address_space;
268
    f->ram_memory = ram_memory;
269
    memory_region_init_alias(&f->pci_hole, OBJECT(d), "pci-hole", f->pci_address_space,
270
                             pci_hole_start, pci_hole_size);
271
    memory_region_add_subregion(f->system_memory, pci_hole_start, &f->pci_hole);
272
    memory_region_init_alias(&f->pci_hole_64bit, OBJECT(d), "pci-hole64",
273
                             f->pci_address_space,
274
                             pci_hole64_start, pci_hole64_size);
275
    if (pci_hole64_size) {
276
        memory_region_add_subregion(f->system_memory, pci_hole64_start,
277
                                    &f->pci_hole_64bit);
278
    }
279
    memory_region_init_alias(&f->smram_region, OBJECT(d), "smram-region",
280
                             f->pci_address_space, 0xa0000, 0x20000);
281
    memory_region_add_subregion_overlap(f->system_memory, 0xa0000,
282
                                        &f->smram_region, 1);
283
    memory_region_set_enabled(&f->smram_region, false);
284
    init_pam(dev, f->ram_memory, f->system_memory, f->pci_address_space,
285
             &f->pam_regions[0], PAM_BIOS_BASE, PAM_BIOS_SIZE);
286
    for (i = 0; i < 12; ++i) {
287
        init_pam(dev, f->ram_memory, f->system_memory, f->pci_address_space,
288
                 &f->pam_regions[i+1], PAM_EXPAN_BASE + i * PAM_EXPAN_SIZE,
289
                 PAM_EXPAN_SIZE);
290
    }
291

    
292
    /* Xen supports additional interrupt routes from the PCI devices to
293
     * the IOAPIC: the four pins of each PCI device on the bus are also
294
     * connected to the IOAPIC directly.
295
     * These additional routes can be discovered through ACPI. */
296
    if (xen_enabled()) {
297
        piix3 = DO_UPCAST(PIIX3State, dev,
298
                pci_create_simple_multifunction(b, -1, true, "PIIX3-xen"));
299
        pci_bus_irqs(b, xen_piix3_set_irq, xen_pci_slot_get_pirq,
300
                piix3, XEN_PIIX_NUM_PIRQS);
301
    } else {
302
        piix3 = DO_UPCAST(PIIX3State, dev,
303
                pci_create_simple_multifunction(b, -1, true, "PIIX3"));
304
        pci_bus_irqs(b, piix3_set_irq, pci_slot_get_pirq, piix3,
305
                PIIX_NUM_PIRQS);
306
        pci_bus_set_route_irq_fn(b, piix3_route_intx_pin_to_irq);
307
    }
308
    piix3->pic = pic;
309
    *isa_bus = ISA_BUS(qdev_get_child_bus(DEVICE(piix3), "isa.0"));
310

    
311
    *piix3_devfn = piix3->dev.devfn;
312

    
313
    ram_size = ram_size / 8 / 1024 / 1024;
314
    if (ram_size > 255) {
315
        ram_size = 255;
316
    }
317
    d->config[0x57] = ram_size;
318

    
319
    i440fx_update_memory_mappings(f);
320

    
321
    return b;
322
}
323

    
324
PCIBus *i440fx_init(PCII440FXState **pi440fx_state, int *piix3_devfn,
325
                    ISABus **isa_bus, qemu_irq *pic,
326
                    MemoryRegion *address_space_mem,
327
                    MemoryRegion *address_space_io,
328
                    ram_addr_t ram_size,
329
                    hwaddr pci_hole_start,
330
                    hwaddr pci_hole_size,
331
                    hwaddr pci_hole64_start,
332
                    hwaddr pci_hole64_size,
333
                    MemoryRegion *pci_memory, MemoryRegion *ram_memory)
334

    
335
{
336
    PCIBus *b;
337

    
338
    b = i440fx_common_init(TYPE_I440FX_PCI_DEVICE, pi440fx_state,
339
                           piix3_devfn, isa_bus, pic,
340
                           address_space_mem, address_space_io, ram_size,
341
                           pci_hole_start, pci_hole_size,
342
                           pci_hole64_start, pci_hole64_size,
343
                           pci_memory, ram_memory);
344
    return b;
345
}
346

    
347
/* PIIX3 PCI to ISA bridge */
348
static void piix3_set_irq_pic(PIIX3State *piix3, int pic_irq)
349
{
350
    qemu_set_irq(piix3->pic[pic_irq],
351
                 !!(piix3->pic_levels &
352
                    (((1ULL << PIIX_NUM_PIRQS) - 1) <<
353
                     (pic_irq * PIIX_NUM_PIRQS))));
354
}
355

    
356
static void piix3_set_irq_level(PIIX3State *piix3, int pirq, int level)
357
{
358
    int pic_irq;
359
    uint64_t mask;
360

    
361
    pic_irq = piix3->dev.config[PIIX_PIRQC + pirq];
362
    if (pic_irq >= PIIX_NUM_PIC_IRQS) {
363
        return;
364
    }
365

    
366
    mask = 1ULL << ((pic_irq * PIIX_NUM_PIRQS) + pirq);
367
    piix3->pic_levels &= ~mask;
368
    piix3->pic_levels |= mask * !!level;
369

    
370
    piix3_set_irq_pic(piix3, pic_irq);
371
}
372

    
373
static void piix3_set_irq(void *opaque, int pirq, int level)
374
{
375
    PIIX3State *piix3 = opaque;
376
    piix3_set_irq_level(piix3, pirq, level);
377
}
378

    
379
static PCIINTxRoute piix3_route_intx_pin_to_irq(void *opaque, int pin)
380
{
381
    PIIX3State *piix3 = opaque;
382
    int irq = piix3->dev.config[PIIX_PIRQC + pin];
383
    PCIINTxRoute route;
384

    
385
    if (irq < PIIX_NUM_PIC_IRQS) {
386
        route.mode = PCI_INTX_ENABLED;
387
        route.irq = irq;
388
    } else {
389
        route.mode = PCI_INTX_DISABLED;
390
        route.irq = -1;
391
    }
392
    return route;
393
}
394

    
395
/* irq routing is changed. so rebuild bitmap */
396
static void piix3_update_irq_levels(PIIX3State *piix3)
397
{
398
    int pirq;
399

    
400
    piix3->pic_levels = 0;
401
    for (pirq = 0; pirq < PIIX_NUM_PIRQS; pirq++) {
402
        piix3_set_irq_level(piix3, pirq,
403
                            pci_bus_get_irq_level(piix3->dev.bus, pirq));
404
    }
405
}
406

    
407
static void piix3_write_config(PCIDevice *dev,
408
                               uint32_t address, uint32_t val, int len)
409
{
410
    pci_default_write_config(dev, address, val, len);
411
    if (ranges_overlap(address, len, PIIX_PIRQC, 4)) {
412
        PIIX3State *piix3 = DO_UPCAST(PIIX3State, dev, dev);
413
        int pic_irq;
414

    
415
        pci_bus_fire_intx_routing_notifier(piix3->dev.bus);
416
        piix3_update_irq_levels(piix3);
417
        for (pic_irq = 0; pic_irq < PIIX_NUM_PIC_IRQS; pic_irq++) {
418
            piix3_set_irq_pic(piix3, pic_irq);
419
        }
420
    }
421
}
422

    
423
static void piix3_write_config_xen(PCIDevice *dev,
424
                               uint32_t address, uint32_t val, int len)
425
{
426
    xen_piix_pci_write_config_client(address, val, len);
427
    piix3_write_config(dev, address, val, len);
428
}
429

    
430
static void piix3_reset(void *opaque)
431
{
432
    PIIX3State *d = opaque;
433
    uint8_t *pci_conf = d->dev.config;
434

    
435
    pci_conf[0x04] = 0x07; /* master, memory and I/O */
436
    pci_conf[0x05] = 0x00;
437
    pci_conf[0x06] = 0x00;
438
    pci_conf[0x07] = 0x02; /* PCI_status_devsel_medium */
439
    pci_conf[0x4c] = 0x4d;
440
    pci_conf[0x4e] = 0x03;
441
    pci_conf[0x4f] = 0x00;
442
    pci_conf[0x60] = 0x80;
443
    pci_conf[0x61] = 0x80;
444
    pci_conf[0x62] = 0x80;
445
    pci_conf[0x63] = 0x80;
446
    pci_conf[0x69] = 0x02;
447
    pci_conf[0x70] = 0x80;
448
    pci_conf[0x76] = 0x0c;
449
    pci_conf[0x77] = 0x0c;
450
    pci_conf[0x78] = 0x02;
451
    pci_conf[0x79] = 0x00;
452
    pci_conf[0x80] = 0x00;
453
    pci_conf[0x82] = 0x00;
454
    pci_conf[0xa0] = 0x08;
455
    pci_conf[0xa2] = 0x00;
456
    pci_conf[0xa3] = 0x00;
457
    pci_conf[0xa4] = 0x00;
458
    pci_conf[0xa5] = 0x00;
459
    pci_conf[0xa6] = 0x00;
460
    pci_conf[0xa7] = 0x00;
461
    pci_conf[0xa8] = 0x0f;
462
    pci_conf[0xaa] = 0x00;
463
    pci_conf[0xab] = 0x00;
464
    pci_conf[0xac] = 0x00;
465
    pci_conf[0xae] = 0x00;
466

    
467
    d->pic_levels = 0;
468
    d->rcr = 0;
469
}
470

    
471
static int piix3_post_load(void *opaque, int version_id)
472
{
473
    PIIX3State *piix3 = opaque;
474
    piix3_update_irq_levels(piix3);
475
    return 0;
476
}
477

    
478
static void piix3_pre_save(void *opaque)
479
{
480
    int i;
481
    PIIX3State *piix3 = opaque;
482

    
483
    for (i = 0; i < ARRAY_SIZE(piix3->pci_irq_levels_vmstate); i++) {
484
        piix3->pci_irq_levels_vmstate[i] =
485
            pci_bus_get_irq_level(piix3->dev.bus, i);
486
    }
487
}
488

    
489
static bool piix3_rcr_needed(void *opaque)
490
{
491
    PIIX3State *piix3 = opaque;
492

    
493
    return (piix3->rcr != 0);
494
}
495

    
496
static const VMStateDescription vmstate_piix3_rcr = {
497
    .name = "PIIX3/rcr",
498
    .version_id = 1,
499
    .minimum_version_id = 1,
500
    .fields = (VMStateField []) {
501
        VMSTATE_UINT8(rcr, PIIX3State),
502
        VMSTATE_END_OF_LIST()
503
    }
504
};
505

    
506
static const VMStateDescription vmstate_piix3 = {
507
    .name = "PIIX3",
508
    .version_id = 3,
509
    .minimum_version_id = 2,
510
    .minimum_version_id_old = 2,
511
    .post_load = piix3_post_load,
512
    .pre_save = piix3_pre_save,
513
    .fields      = (VMStateField[]) {
514
        VMSTATE_PCI_DEVICE(dev, PIIX3State),
515
        VMSTATE_INT32_ARRAY_V(pci_irq_levels_vmstate, PIIX3State,
516
                              PIIX_NUM_PIRQS, 3),
517
        VMSTATE_END_OF_LIST()
518
    },
519
    .subsections = (VMStateSubsection[]) {
520
        {
521
            .vmsd = &vmstate_piix3_rcr,
522
            .needed = piix3_rcr_needed,
523
        },
524
        { 0 }
525
    }
526
};
527

    
528

    
529
static void rcr_write(void *opaque, hwaddr addr, uint64_t val, unsigned len)
530
{
531
    PIIX3State *d = opaque;
532

    
533
    if (val & 4) {
534
        qemu_system_reset_request();
535
        return;
536
    }
537
    d->rcr = val & 2; /* keep System Reset type only */
538
}
539

    
540
static uint64_t rcr_read(void *opaque, hwaddr addr, unsigned len)
541
{
542
    PIIX3State *d = opaque;
543

    
544
    return d->rcr;
545
}
546

    
547
static const MemoryRegionOps rcr_ops = {
548
    .read = rcr_read,
549
    .write = rcr_write,
550
    .endianness = DEVICE_LITTLE_ENDIAN
551
};
552

    
553
static int piix3_initfn(PCIDevice *dev)
554
{
555
    PIIX3State *d = DO_UPCAST(PIIX3State, dev, dev);
556

    
557
    isa_bus_new(DEVICE(d), pci_address_space_io(dev));
558

    
559
    memory_region_init_io(&d->rcr_mem, OBJECT(dev), &rcr_ops, d,
560
                          "piix3-reset-control", 1);
561
    memory_region_add_subregion_overlap(pci_address_space_io(dev), RCR_IOPORT,
562
                                        &d->rcr_mem, 1);
563

    
564
    qemu_register_reset(piix3_reset, d);
565
    return 0;
566
}
567

    
568
static void piix3_class_init(ObjectClass *klass, void *data)
569
{
570
    DeviceClass *dc = DEVICE_CLASS(klass);
571
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
572

    
573
    dc->desc        = "ISA bridge";
574
    dc->vmsd        = &vmstate_piix3;
575
    dc->no_user     = 1,
576
    k->no_hotplug   = 1;
577
    k->init         = piix3_initfn;
578
    k->config_write = piix3_write_config;
579
    k->vendor_id    = PCI_VENDOR_ID_INTEL;
580
    /* 82371SB PIIX3 PCI-to-ISA bridge (Step A1) */
581
    k->device_id    = PCI_DEVICE_ID_INTEL_82371SB_0;
582
    k->class_id     = PCI_CLASS_BRIDGE_ISA;
583
}
584

    
585
static const TypeInfo piix3_info = {
586
    .name          = "PIIX3",
587
    .parent        = TYPE_PCI_DEVICE,
588
    .instance_size = sizeof(PIIX3State),
589
    .class_init    = piix3_class_init,
590
};
591

    
592
static void piix3_xen_class_init(ObjectClass *klass, void *data)
593
{
594
    DeviceClass *dc = DEVICE_CLASS(klass);
595
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
596

    
597
    dc->desc        = "ISA bridge";
598
    dc->vmsd        = &vmstate_piix3;
599
    dc->no_user     = 1;
600
    k->no_hotplug   = 1;
601
    k->init         = piix3_initfn;
602
    k->config_write = piix3_write_config_xen;
603
    k->vendor_id    = PCI_VENDOR_ID_INTEL;
604
    /* 82371SB PIIX3 PCI-to-ISA bridge (Step A1) */
605
    k->device_id    = PCI_DEVICE_ID_INTEL_82371SB_0;
606
    k->class_id     = PCI_CLASS_BRIDGE_ISA;
607
};
608

    
609
static const TypeInfo piix3_xen_info = {
610
    .name          = "PIIX3-xen",
611
    .parent        = TYPE_PCI_DEVICE,
612
    .instance_size = sizeof(PIIX3State),
613
    .class_init    = piix3_xen_class_init,
614
};
615

    
616
static void i440fx_class_init(ObjectClass *klass, void *data)
617
{
618
    DeviceClass *dc = DEVICE_CLASS(klass);
619
    PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
620

    
621
    k->no_hotplug = 1;
622
    k->init = i440fx_initfn;
623
    k->config_write = i440fx_write_config;
624
    k->vendor_id = PCI_VENDOR_ID_INTEL;
625
    k->device_id = PCI_DEVICE_ID_INTEL_82441;
626
    k->revision = 0x02;
627
    k->class_id = PCI_CLASS_BRIDGE_HOST;
628
    dc->desc = "Host bridge";
629
    dc->no_user = 1;
630
    dc->vmsd = &vmstate_i440fx;
631
}
632

    
633
static const TypeInfo i440fx_info = {
634
    .name          = TYPE_I440FX_PCI_DEVICE,
635
    .parent        = TYPE_PCI_DEVICE,
636
    .instance_size = sizeof(PCII440FXState),
637
    .class_init    = i440fx_class_init,
638
};
639

    
640
static const char *i440fx_pcihost_root_bus_path(PCIHostState *host_bridge,
641
                                                PCIBus *rootbus)
642
{
643
    /* For backwards compat with old device paths */
644
    return "0000";
645
}
646

    
647
static void i440fx_pcihost_class_init(ObjectClass *klass, void *data)
648
{
649
    DeviceClass *dc = DEVICE_CLASS(klass);
650
    SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
651
    PCIHostBridgeClass *hc = PCI_HOST_BRIDGE_CLASS(klass);
652

    
653
    hc->root_bus_path = i440fx_pcihost_root_bus_path;
654
    k->init = i440fx_pcihost_initfn;
655
    dc->fw_name = "pci";
656
    dc->no_user = 1;
657
}
658

    
659
static const TypeInfo i440fx_pcihost_info = {
660
    .name          = "i440FX-pcihost",
661
    .parent        = TYPE_PCI_HOST_BRIDGE,
662
    .instance_size = sizeof(I440FXState),
663
    .class_init    = i440fx_pcihost_class_init,
664
};
665

    
666
static void i440fx_register_types(void)
667
{
668
    type_register_static(&i440fx_info);
669
    type_register_static(&piix3_info);
670
    type_register_static(&piix3_xen_info);
671
    type_register_static(&i440fx_pcihost_info);
672
}
673

    
674
type_init(i440fx_register_types)