]> git.proxmox.com Git - mirror_qemu.git/blame - hw/pci-host/piix.c
pci: Permit incremental conversion of device models to realize
[mirror_qemu.git] / hw / pci-host / piix.c
CommitLineData
502a5395
PB
1/*
2 * QEMU i440FX/PIIX3 PCI Bridge Emulation
3 *
4 * Copyright (c) 2006 Fabrice Bellard
5fafdf24 5 *
502a5395
PB
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
83c9f4ca 25#include "hw/hw.h"
0d09e41a 26#include "hw/i386/pc.h"
83c9f4ca
PB
27#include "hw/pci/pci.h"
28#include "hw/pci/pci_host.h"
0d09e41a 29#include "hw/isa/isa.h"
83c9f4ca 30#include "hw/sysbus.h"
1de7afc9 31#include "qemu/range.h"
0d09e41a
PB
32#include "hw/xen/xen.h"
33#include "hw/pci-host/pam.h"
1ec4ba74 34#include "sysemu/sysemu.h"
39848901
IM
35#include "hw/i386/ioapic.h"
36#include "qapi/visitor.h"
87ecb68b 37
56594fe3
IY
38/*
39 * I440FX chipset data sheet.
40 * http://download.intel.com/design/chipsets/datashts/29054901.pdf
41 */
42
1d0d4aa4
IM
43#define TYPE_I440FX_PCI_HOST_BRIDGE "i440FX-pcihost"
44#define I440FX_PCI_HOST_BRIDGE(obj) \
45 OBJECT_CHECK(I440FXState, (obj), TYPE_I440FX_PCI_HOST_BRIDGE)
46
67c332fd
AF
47typedef struct I440FXState {
48 PCIHostState parent_obj;
39848901
IM
49 PcPciInfo pci_info;
50 uint64_t pci_hole64_size;
04c7d8b8 51 uint32_t short_root_bus;
67c332fd 52} I440FXState;
502a5395 53
ab431c28 54#define PIIX_NUM_PIC_IRQS 16 /* i8259 * 2 */
e735b55a 55#define PIIX_NUM_PIRQS 4ULL /* PIRQ[A-D] */
bf09551a 56#define XEN_PIIX_NUM_PIRQS 128ULL
ab431c28 57#define PIIX_PIRQC 0x60
e735b55a 58
1ec4ba74
LE
59/*
60 * Reset Control Register: PCI-accessible ISA-Compatible Register at address
61 * 0xcf9, provided by the PCI/ISA bridge (PIIX3 PCI function 0, 8086:7000).
62 */
63#define RCR_IOPORT 0xcf9
64
fd37d881
JQ
65typedef struct PIIX3State {
66 PCIDevice dev;
ab431c28
IY
67
68 /*
69 * bitmap to track pic levels.
70 * The pic level is the logical OR of all the PCI irqs mapped to it
71 * So one PIC level is tracked by PIIX_NUM_PIRQS bits.
72 *
73 * PIRQ is mapped to PIC pins, we track it by
74 * PIIX_NUM_PIRQS * PIIX_NUM_PIC_IRQS = 64 bits with
75 * pic_irq * PIIX_NUM_PIRQS + pirq
76 */
77#if PIIX_NUM_PIC_IRQS * PIIX_NUM_PIRQS > 64
78#error "unable to encode pic state in 64bit in pic_levels."
79#endif
80 uint64_t pic_levels;
81
bd7dce87 82 qemu_irq *pic;
e735b55a
IY
83
84 /* This member isn't used. Just for save/load compatibility */
85 int32_t pci_irq_levels_vmstate[PIIX_NUM_PIRQS];
1ec4ba74
LE
86
87 /* Reset Control Register contents */
88 uint8_t rcr;
89
90 /* IO memory region for Reset Control Register (RCR_IOPORT) */
91 MemoryRegion rcr_mem;
7cd9eee0 92} PIIX3State;
bd7dce87 93
57a0f0c6
DW
94#define TYPE_I440FX_PCI_DEVICE "i440FX"
95#define I440FX_PCI_DEVICE(obj) \
96 OBJECT_CHECK(PCII440FXState, (obj), TYPE_I440FX_PCI_DEVICE)
97
0a3bacf3 98struct PCII440FXState {
2aedfa46
HT
99 /*< private >*/
100 PCIDevice parent_obj;
101 /*< public >*/
102
ae0a5466
AK
103 MemoryRegion *system_memory;
104 MemoryRegion *pci_address_space;
105 MemoryRegion *ram_memory;
ae0a5466
AK
106 PAMMemoryRegion pam_regions[13];
107 MemoryRegion smram_region;
6c009fa4 108 uint8_t smm_enabled;
0a3bacf3
JQ
109};
110
f2c688bb
IY
111
112#define I440FX_PAM 0x59
113#define I440FX_PAM_SIZE 7
114#define I440FX_SMRAM 0x72
115
ab431c28 116static void piix3_set_irq(void *opaque, int pirq, int level);
3afa9bb4 117static PCIINTxRoute piix3_route_intx_pin_to_irq(void *opaque, int pci_intx);
bf09551a
SS
118static void piix3_write_config_xen(PCIDevice *dev,
119 uint32_t address, uint32_t val, int len);
d2b59317
PB
120
121/* return the global irq number corresponding to a given device irq
122 pin. We could also use the bus number to have a more precise
123 mapping. */
ab431c28 124static int pci_slot_get_pirq(PCIDevice *pci_dev, int pci_intx)
d2b59317
PB
125{
126 int slot_addend;
127 slot_addend = (pci_dev->devfn >> 3) - 1;
ab431c28 128 return (pci_intx + slot_addend) & 3;
d2b59317 129}
502a5395 130
0a3bacf3 131static void i440fx_update_memory_mappings(PCII440FXState *d)
ee0ea1d0 132{
410edd92 133 int i;
2aedfa46 134 PCIDevice *pd = PCI_DEVICE(d);
84631fd7 135
72124c01 136 memory_region_transaction_begin();
410edd92
IY
137 for (i = 0; i < 13; i++) {
138 pam_update(&d->pam_regions[i], i,
2aedfa46 139 pd->config[I440FX_PAM + ((i + 1) / 2)]);
ee0ea1d0 140 }
2aedfa46 141 smram_update(&d->smram_region, pd->config[I440FX_SMRAM], d->smm_enabled);
72124c01 142 memory_region_transaction_commit();
ee0ea1d0
FB
143}
144
f885f1ea 145static void i440fx_set_smm(int val, void *arg)
ee0ea1d0 146{
f885f1ea 147 PCII440FXState *d = arg;
2aedfa46 148 PCIDevice *pd = PCI_DEVICE(d);
f885f1ea 149
410edd92 150 memory_region_transaction_begin();
2aedfa46 151 smram_set_smm(&d->smm_enabled, val, pd->config[I440FX_SMRAM],
410edd92
IY
152 &d->smram_region);
153 memory_region_transaction_commit();
ee0ea1d0
FB
154}
155
156
0a3bacf3 157static void i440fx_write_config(PCIDevice *dev,
ee0ea1d0
FB
158 uint32_t address, uint32_t val, int len)
159{
57a0f0c6 160 PCII440FXState *d = I440FX_PCI_DEVICE(dev);
0a3bacf3 161
ee0ea1d0 162 /* XXX: implement SMRAM.D_LOCK */
0a3bacf3 163 pci_default_write_config(dev, address, val, len);
4da5fcd3
IY
164 if (ranges_overlap(address, len, I440FX_PAM, I440FX_PAM_SIZE) ||
165 range_covers_byte(address, len, I440FX_SMRAM)) {
ee0ea1d0 166 i440fx_update_memory_mappings(d);
4da5fcd3 167 }
ee0ea1d0
FB
168}
169
0c7d19e5 170static int i440fx_load_old(QEMUFile* f, void *opaque, int version_id)
ee0ea1d0 171{
0a3bacf3 172 PCII440FXState *d = opaque;
2aedfa46 173 PCIDevice *pd = PCI_DEVICE(d);
52fc1d83 174 int ret, i;
ee0ea1d0 175
2aedfa46 176 ret = pci_device_load(pd, f);
ee0ea1d0
FB
177 if (ret < 0)
178 return ret;
179 i440fx_update_memory_mappings(d);
6c009fa4 180 qemu_get_8s(f, &d->smm_enabled);
52fc1d83 181
e735b55a
IY
182 if (version_id == 2) {
183 for (i = 0; i < PIIX_NUM_PIRQS; i++) {
184 qemu_get_be32(f); /* dummy load for compatibility */
185 }
186 }
52fc1d83 187
ee0ea1d0
FB
188 return 0;
189}
190
e59fb374 191static int i440fx_post_load(void *opaque, int version_id)
0c7d19e5
JQ
192{
193 PCII440FXState *d = opaque;
194
195 i440fx_update_memory_mappings(d);
196 return 0;
197}
198
199static const VMStateDescription vmstate_i440fx = {
200 .name = "I440FX",
201 .version_id = 3,
202 .minimum_version_id = 3,
203 .minimum_version_id_old = 1,
204 .load_state_old = i440fx_load_old,
752ff2fa 205 .post_load = i440fx_post_load,
d49805ae 206 .fields = (VMStateField[]) {
2aedfa46 207 VMSTATE_PCI_DEVICE(parent_obj, PCII440FXState),
0c7d19e5
JQ
208 VMSTATE_UINT8(smm_enabled, PCII440FXState),
209 VMSTATE_END_OF_LIST()
210 }
211};
212
39848901
IM
213static void i440fx_pcihost_get_pci_hole_start(Object *obj, Visitor *v,
214 void *opaque, const char *name,
215 Error **errp)
216{
217 I440FXState *s = I440FX_PCI_HOST_BRIDGE(obj);
218 uint32_t value = s->pci_info.w32.begin;
219
220 visit_type_uint32(v, &value, name, errp);
221}
222
223static void i440fx_pcihost_get_pci_hole_end(Object *obj, Visitor *v,
224 void *opaque, const char *name,
225 Error **errp)
226{
227 I440FXState *s = I440FX_PCI_HOST_BRIDGE(obj);
228 uint32_t value = s->pci_info.w32.end;
229
230 visit_type_uint32(v, &value, name, errp);
231}
232
233static void i440fx_pcihost_get_pci_hole64_start(Object *obj, Visitor *v,
234 void *opaque, const char *name,
235 Error **errp)
236{
2028fdf3
MT
237 PCIHostState *h = PCI_HOST_BRIDGE(obj);
238 Range w64;
239
240 pci_bus_get_w64_range(h->bus, &w64);
39848901 241
2028fdf3 242 visit_type_uint64(v, &w64.begin, name, errp);
39848901
IM
243}
244
245static void i440fx_pcihost_get_pci_hole64_end(Object *obj, Visitor *v,
246 void *opaque, const char *name,
247 Error **errp)
248{
2028fdf3
MT
249 PCIHostState *h = PCI_HOST_BRIDGE(obj);
250 Range w64;
251
252 pci_bus_get_w64_range(h->bus, &w64);
39848901 253
2028fdf3 254 visit_type_uint64(v, &w64.end, name, errp);
39848901
IM
255}
256
a3560fbf 257static void i440fx_pcihost_initfn(Object *obj)
502a5395 258{
a3560fbf 259 PCIHostState *s = PCI_HOST_BRIDGE(obj);
39848901 260 I440FXState *d = I440FX_PCI_HOST_BRIDGE(obj);
502a5395 261
a3560fbf 262 memory_region_init_io(&s->conf_mem, obj, &pci_host_conf_le_ops, s,
d0ed8076 263 "pci-conf-idx", 4);
a3560fbf 264 memory_region_init_io(&s->data_mem, obj, &pci_host_data_le_ops, s,
d0ed8076 265 "pci-conf-data", 4);
39848901
IM
266
267 object_property_add(obj, PCI_HOST_PROP_PCI_HOLE_START, "int",
268 i440fx_pcihost_get_pci_hole_start,
269 NULL, NULL, NULL, NULL);
270
271 object_property_add(obj, PCI_HOST_PROP_PCI_HOLE_END, "int",
272 i440fx_pcihost_get_pci_hole_end,
273 NULL, NULL, NULL, NULL);
274
275 object_property_add(obj, PCI_HOST_PROP_PCI_HOLE64_START, "int",
276 i440fx_pcihost_get_pci_hole64_start,
277 NULL, NULL, NULL, NULL);
278
279 object_property_add(obj, PCI_HOST_PROP_PCI_HOLE64_END, "int",
280 i440fx_pcihost_get_pci_hole64_end,
281 NULL, NULL, NULL, NULL);
282
283 d->pci_info.w32.end = IO_APIC_DEFAULT_ADDRESS;
a3560fbf 284}
502a5395 285
a3560fbf
HT
286static void i440fx_pcihost_realize(DeviceState *dev, Error **errp)
287{
288 PCIHostState *s = PCI_HOST_BRIDGE(dev);
289 SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
290
291 sysbus_add_io(sbd, 0xcf8, &s->conf_mem);
292 sysbus_init_ioports(sbd, 0xcf8, 4);
293
294 sysbus_add_io(sbd, 0xcfc, &s->data_mem);
295 sysbus_init_ioports(sbd, 0xcfc, 4);
8a14daa5 296}
502a5395 297
0a3bacf3 298static int i440fx_initfn(PCIDevice *dev)
8a14daa5 299{
57a0f0c6 300 PCII440FXState *d = I440FX_PCI_DEVICE(dev);
ee0ea1d0 301
2aedfa46 302 dev->config[I440FX_SMRAM] = 0x02;
ee0ea1d0 303
f885f1ea 304 cpu_smm_register(&i440fx_set_smm, d);
81a322d4 305 return 0;
8a14daa5
GH
306}
307
44fc8c5e
IM
308PCIBus *i440fx_init(PCII440FXState **pi440fx_state,
309 int *piix3_devfn,
310 ISABus **isa_bus, qemu_irq *pic,
311 MemoryRegion *address_space_mem,
312 MemoryRegion *address_space_io,
313 ram_addr_t ram_size,
ddaaefb4 314 ram_addr_t below_4g_mem_size,
39848901 315 ram_addr_t above_4g_mem_size,
44fc8c5e
IM
316 MemoryRegion *pci_address_space,
317 MemoryRegion *ram_memory)
8a14daa5
GH
318{
319 DeviceState *dev;
320 PCIBus *b;
321 PCIDevice *d;
8558d942 322 PCIHostState *s;
7cd9eee0 323 PIIX3State *piix3;
ae0a5466 324 PCII440FXState *f;
2725aec7 325 unsigned i;
39848901 326 I440FXState *i440fx;
8a14daa5 327
1d0d4aa4 328 dev = qdev_create(NULL, TYPE_I440FX_PCI_HOST_BRIDGE);
8558d942 329 s = PCI_HOST_BRIDGE(dev);
67c332fd 330 b = pci_bus_new(dev, NULL, pci_address_space,
60a0e443 331 address_space_io, 0, TYPE_PCI_BUS);
8a14daa5 332 s->bus = b;
f05f6b4a 333 object_property_add_child(qdev_get_machine(), "i440fx", OBJECT(dev), NULL);
f424d5c4 334 qdev_init_nofail(dev);
8a14daa5 335
44fc8c5e 336 d = pci_create_simple(b, 0, TYPE_I440FX_PCI_DEVICE);
57a0f0c6 337 *pi440fx_state = I440FX_PCI_DEVICE(d);
ae0a5466
AK
338 f = *pi440fx_state;
339 f->system_memory = address_space_mem;
340 f->pci_address_space = pci_address_space;
341 f->ram_memory = ram_memory;
39848901
IM
342
343 i440fx = I440FX_PCI_HOST_BRIDGE(dev);
ddaaefb4 344 i440fx->pci_info.w32.begin = below_4g_mem_size;
39848901 345
83d08f26
MT
346 /* setup pci memory mapping */
347 pc_pci_as_mapping_init(OBJECT(f), f->system_memory,
348 f->pci_address_space);
349
40c5dce9 350 memory_region_init_alias(&f->smram_region, OBJECT(d), "smram-region",
ae0a5466 351 f->pci_address_space, 0xa0000, 0x20000);
b41e1ed4
AK
352 memory_region_add_subregion_overlap(f->system_memory, 0xa0000,
353 &f->smram_region, 1);
354 memory_region_set_enabled(&f->smram_region, false);
3cd2cf43 355 init_pam(dev, f->ram_memory, f->system_memory, f->pci_address_space,
410edd92 356 &f->pam_regions[0], PAM_BIOS_BASE, PAM_BIOS_SIZE);
2725aec7 357 for (i = 0; i < 12; ++i) {
3cd2cf43 358 init_pam(dev, f->ram_memory, f->system_memory, f->pci_address_space,
410edd92
IY
359 &f->pam_regions[i+1], PAM_EXPAN_BASE + i * PAM_EXPAN_SIZE,
360 PAM_EXPAN_SIZE);
2725aec7 361 }
8a14daa5 362
bf09551a
SS
363 /* Xen supports additional interrupt routes from the PCI devices to
364 * the IOAPIC: the four pins of each PCI device on the bus are also
365 * connected to the IOAPIC directly.
366 * These additional routes can be discovered through ACPI. */
367 if (xen_enabled()) {
368 piix3 = DO_UPCAST(PIIX3State, dev,
369 pci_create_simple_multifunction(b, -1, true, "PIIX3-xen"));
370 pci_bus_irqs(b, xen_piix3_set_irq, xen_pci_slot_get_pirq,
371 piix3, XEN_PIIX_NUM_PIRQS);
372 } else {
373 piix3 = DO_UPCAST(PIIX3State, dev,
374 pci_create_simple_multifunction(b, -1, true, "PIIX3"));
375 pci_bus_irqs(b, piix3_set_irq, pci_slot_get_pirq, piix3,
376 PIIX_NUM_PIRQS);
3afa9bb4 377 pci_bus_set_route_irq_fn(b, piix3_route_intx_pin_to_irq);
bf09551a 378 }
7cd9eee0 379 piix3->pic = pic;
d93a8a43 380 *isa_bus = ISA_BUS(qdev_get_child_bus(DEVICE(piix3), "isa.0"));
41445300 381
7cd9eee0 382 *piix3_devfn = piix3->dev.devfn;
85a750ca 383
ec5f92ce 384 ram_size = ram_size / 8 / 1024 / 1024;
2aedfa46 385 if (ram_size > 255) {
ec5f92ce 386 ram_size = 255;
2aedfa46
HT
387 }
388 d->config[0x57] = ram_size;
ec5f92ce 389
ae0a5466
AK
390 i440fx_update_memory_mappings(f);
391
502a5395
PB
392 return b;
393}
394
277e9340
MT
395PCIBus *find_i440fx(void)
396{
397 PCIHostState *s = OBJECT_CHECK(PCIHostState,
398 object_resolve_path("/machine/i440fx", NULL),
399 TYPE_PCI_HOST_BRIDGE);
400 return s ? s->bus : NULL;
401}
402
502a5395 403/* PIIX3 PCI to ISA bridge */
ab431c28
IY
404static void piix3_set_irq_pic(PIIX3State *piix3, int pic_irq)
405{
406 qemu_set_irq(piix3->pic[pic_irq],
407 !!(piix3->pic_levels &
09de0f46 408 (((1ULL << PIIX_NUM_PIRQS) - 1) <<
ab431c28
IY
409 (pic_irq * PIIX_NUM_PIRQS))));
410}
502a5395 411
2c9ecdeb 412static void piix3_set_irq_level_internal(PIIX3State *piix3, int pirq, int level)
ab431c28
IY
413{
414 int pic_irq;
415 uint64_t mask;
416
417 pic_irq = piix3->dev.config[PIIX_PIRQC + pirq];
418 if (pic_irq >= PIIX_NUM_PIC_IRQS) {
419 return;
420 }
421
422 mask = 1ULL << ((pic_irq * PIIX_NUM_PIRQS) + pirq);
423 piix3->pic_levels &= ~mask;
424 piix3->pic_levels |= mask * !!level;
2c9ecdeb
PD
425}
426
427static void piix3_set_irq_level(PIIX3State *piix3, int pirq, int level)
428{
429 int pic_irq;
430
431 pic_irq = piix3->dev.config[PIIX_PIRQC + pirq];
432 if (pic_irq >= PIIX_NUM_PIC_IRQS) {
433 return;
434 }
435
436 piix3_set_irq_level_internal(piix3, pirq, level);
ab431c28 437
afe3ef1d 438 piix3_set_irq_pic(piix3, pic_irq);
ab431c28
IY
439}
440
441static void piix3_set_irq(void *opaque, int pirq, int level)
502a5395 442{
7cd9eee0 443 PIIX3State *piix3 = opaque;
afe3ef1d 444 piix3_set_irq_level(piix3, pirq, level);
ab431c28 445}
502a5395 446
3afa9bb4
MT
447static PCIINTxRoute piix3_route_intx_pin_to_irq(void *opaque, int pin)
448{
449 PIIX3State *piix3 = opaque;
450 int irq = piix3->dev.config[PIIX_PIRQC + pin];
451 PCIINTxRoute route;
452
453 if (irq < PIIX_NUM_PIC_IRQS) {
454 route.mode = PCI_INTX_ENABLED;
455 route.irq = irq;
456 } else {
457 route.mode = PCI_INTX_DISABLED;
458 route.irq = -1;
459 }
460 return route;
461}
462
ab431c28
IY
463/* irq routing is changed. so rebuild bitmap */
464static void piix3_update_irq_levels(PIIX3State *piix3)
465{
466 int pirq;
467
468 piix3->pic_levels = 0;
469 for (pirq = 0; pirq < PIIX_NUM_PIRQS; pirq++) {
470 piix3_set_irq_level(piix3, pirq,
afe3ef1d 471 pci_bus_get_irq_level(piix3->dev.bus, pirq));
ab431c28
IY
472 }
473}
474
475static void piix3_write_config(PCIDevice *dev,
476 uint32_t address, uint32_t val, int len)
477{
478 pci_default_write_config(dev, address, val, len);
479 if (ranges_overlap(address, len, PIIX_PIRQC, 4)) {
480 PIIX3State *piix3 = DO_UPCAST(PIIX3State, dev, dev);
481 int pic_irq;
0ae16251
JK
482
483 pci_bus_fire_intx_routing_notifier(piix3->dev.bus);
ab431c28
IY
484 piix3_update_irq_levels(piix3);
485 for (pic_irq = 0; pic_irq < PIIX_NUM_PIC_IRQS; pic_irq++) {
486 piix3_set_irq_pic(piix3, pic_irq);
d2b59317 487 }
502a5395
PB
488 }
489}
490
bf09551a
SS
491static void piix3_write_config_xen(PCIDevice *dev,
492 uint32_t address, uint32_t val, int len)
493{
494 xen_piix_pci_write_config_client(address, val, len);
495 piix3_write_config(dev, address, val, len);
496}
497
15a1956a 498static void piix3_reset(void *opaque)
502a5395 499{
fd37d881
JQ
500 PIIX3State *d = opaque;
501 uint8_t *pci_conf = d->dev.config;
502a5395 502
c9721215 503 pci_conf[0x04] = 0x07; /* master, memory and I/O */
502a5395
PB
504 pci_conf[0x05] = 0x00;
505 pci_conf[0x06] = 0x00;
c9721215 506 pci_conf[0x07] = 0x02; /* PCI_status_devsel_medium */
502a5395
PB
507 pci_conf[0x4c] = 0x4d;
508 pci_conf[0x4e] = 0x03;
509 pci_conf[0x4f] = 0x00;
510 pci_conf[0x60] = 0x80;
477afee3
AJ
511 pci_conf[0x61] = 0x80;
512 pci_conf[0x62] = 0x80;
513 pci_conf[0x63] = 0x80;
502a5395
PB
514 pci_conf[0x69] = 0x02;
515 pci_conf[0x70] = 0x80;
516 pci_conf[0x76] = 0x0c;
517 pci_conf[0x77] = 0x0c;
518 pci_conf[0x78] = 0x02;
519 pci_conf[0x79] = 0x00;
520 pci_conf[0x80] = 0x00;
521 pci_conf[0x82] = 0x00;
522 pci_conf[0xa0] = 0x08;
502a5395
PB
523 pci_conf[0xa2] = 0x00;
524 pci_conf[0xa3] = 0x00;
525 pci_conf[0xa4] = 0x00;
526 pci_conf[0xa5] = 0x00;
527 pci_conf[0xa6] = 0x00;
528 pci_conf[0xa7] = 0x00;
529 pci_conf[0xa8] = 0x0f;
530 pci_conf[0xaa] = 0x00;
531 pci_conf[0xab] = 0x00;
532 pci_conf[0xac] = 0x00;
533 pci_conf[0xae] = 0x00;
ab431c28
IY
534
535 d->pic_levels = 0;
1ec4ba74 536 d->rcr = 0;
ab431c28
IY
537}
538
539static int piix3_post_load(void *opaque, int version_id)
540{
541 PIIX3State *piix3 = opaque;
2c9ecdeb
PD
542 int pirq;
543
544 /* Because the i8259 has not been deserialized yet, qemu_irq_raise
545 * might bring the system to a different state than the saved one;
546 * for example, the interrupt could be masked but the i8259 would
547 * not know that yet and would trigger an interrupt in the CPU.
548 *
549 * Here, we update irq levels without raising the interrupt.
550 * Interrupt state will be deserialized separately through the i8259.
551 */
552 piix3->pic_levels = 0;
553 for (pirq = 0; pirq < PIIX_NUM_PIRQS; pirq++) {
554 piix3_set_irq_level_internal(piix3, pirq,
555 pci_bus_get_irq_level(piix3->dev.bus, pirq));
556 }
ab431c28 557 return 0;
e735b55a 558}
15a1956a 559
e735b55a
IY
560static void piix3_pre_save(void *opaque)
561{
562 int i;
563 PIIX3State *piix3 = opaque;
564
565 for (i = 0; i < ARRAY_SIZE(piix3->pci_irq_levels_vmstate); i++) {
566 piix3->pci_irq_levels_vmstate[i] =
567 pci_bus_get_irq_level(piix3->dev.bus, i);
568 }
502a5395
PB
569}
570
1ec4ba74
LE
571static bool piix3_rcr_needed(void *opaque)
572{
573 PIIX3State *piix3 = opaque;
574
575 return (piix3->rcr != 0);
576}
577
578static const VMStateDescription vmstate_piix3_rcr = {
579 .name = "PIIX3/rcr",
580 .version_id = 1,
581 .minimum_version_id = 1,
d49805ae 582 .fields = (VMStateField[]) {
1ec4ba74
LE
583 VMSTATE_UINT8(rcr, PIIX3State),
584 VMSTATE_END_OF_LIST()
585 }
586};
587
d1f171bd
JQ
588static const VMStateDescription vmstate_piix3 = {
589 .name = "PIIX3",
590 .version_id = 3,
591 .minimum_version_id = 2,
ab431c28 592 .post_load = piix3_post_load,
e735b55a 593 .pre_save = piix3_pre_save,
d49805ae 594 .fields = (VMStateField[]) {
d1f171bd 595 VMSTATE_PCI_DEVICE(dev, PIIX3State),
e735b55a
IY
596 VMSTATE_INT32_ARRAY_V(pci_irq_levels_vmstate, PIIX3State,
597 PIIX_NUM_PIRQS, 3),
d1f171bd 598 VMSTATE_END_OF_LIST()
1ec4ba74
LE
599 },
600 .subsections = (VMStateSubsection[]) {
601 {
602 .vmsd = &vmstate_piix3_rcr,
603 .needed = piix3_rcr_needed,
604 },
605 { 0 }
606 }
607};
608
609
610static void rcr_write(void *opaque, hwaddr addr, uint64_t val, unsigned len)
611{
612 PIIX3State *d = opaque;
613
614 if (val & 4) {
615 qemu_system_reset_request();
616 return;
da64182c 617 }
1ec4ba74
LE
618 d->rcr = val & 2; /* keep System Reset type only */
619}
620
621static uint64_t rcr_read(void *opaque, hwaddr addr, unsigned len)
622{
623 PIIX3State *d = opaque;
624
625 return d->rcr;
626}
627
628static const MemoryRegionOps rcr_ops = {
629 .read = rcr_read,
630 .write = rcr_write,
631 .endianness = DEVICE_LITTLE_ENDIAN
d1f171bd 632};
1941d19c 633
fd37d881 634static int piix3_initfn(PCIDevice *dev)
502a5395 635{
fd37d881 636 PIIX3State *d = DO_UPCAST(PIIX3State, dev, dev);
502a5395 637
bb2ed009
HP
638 isa_bus_new(DEVICE(d), get_system_memory(),
639 pci_address_space_io(dev));
1ec4ba74 640
40c5dce9
PB
641 memory_region_init_io(&d->rcr_mem, OBJECT(dev), &rcr_ops, d,
642 "piix3-reset-control", 1);
1ec4ba74
LE
643 memory_region_add_subregion_overlap(pci_address_space_io(dev), RCR_IOPORT,
644 &d->rcr_mem, 1);
645
a08d4367 646 qemu_register_reset(piix3_reset, d);
81a322d4 647 return 0;
502a5395 648}
5c2b87e3 649
40021f08
AL
650static void piix3_class_init(ObjectClass *klass, void *data)
651{
39bffca2 652 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
653 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
654
39bffca2
AL
655 dc->desc = "ISA bridge";
656 dc->vmsd = &vmstate_piix3;
2897ae02 657 dc->hotpluggable = false;
40021f08
AL
658 k->init = piix3_initfn;
659 k->config_write = piix3_write_config;
660 k->vendor_id = PCI_VENDOR_ID_INTEL;
c9721215
DW
661 /* 82371SB PIIX3 PCI-to-ISA bridge (Step A1) */
662 k->device_id = PCI_DEVICE_ID_INTEL_82371SB_0;
40021f08 663 k->class_id = PCI_CLASS_BRIDGE_ISA;
81aab2ff
MA
664 /*
665 * Reason: part of PIIX3 southbridge, needs to be wired up by
666 * pc_piix.c's pc_init1()
667 */
668 dc->cannot_instantiate_with_device_add_yet = true;
40021f08
AL
669}
670
4240abff 671static const TypeInfo piix3_info = {
39bffca2
AL
672 .name = "PIIX3",
673 .parent = TYPE_PCI_DEVICE,
674 .instance_size = sizeof(PIIX3State),
675 .class_init = piix3_class_init,
e855761c
AL
676};
677
40021f08
AL
678static void piix3_xen_class_init(ObjectClass *klass, void *data)
679{
39bffca2 680 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
681 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
682
39bffca2
AL
683 dc->desc = "ISA bridge";
684 dc->vmsd = &vmstate_piix3;
2897ae02 685 dc->hotpluggable = false;
40021f08
AL
686 k->init = piix3_initfn;
687 k->config_write = piix3_write_config_xen;
688 k->vendor_id = PCI_VENDOR_ID_INTEL;
c9721215
DW
689 /* 82371SB PIIX3 PCI-to-ISA bridge (Step A1) */
690 k->device_id = PCI_DEVICE_ID_INTEL_82371SB_0;
40021f08 691 k->class_id = PCI_CLASS_BRIDGE_ISA;
81aab2ff
MA
692 /*
693 * Reason: part of PIIX3 southbridge, needs to be wired up by
694 * pc_piix.c's pc_init1()
695 */
696 dc->cannot_instantiate_with_device_add_yet = true;
e855761c
AL
697};
698
4240abff 699static const TypeInfo piix3_xen_info = {
39bffca2
AL
700 .name = "PIIX3-xen",
701 .parent = TYPE_PCI_DEVICE,
702 .instance_size = sizeof(PIIX3State),
703 .class_init = piix3_xen_class_init,
40021f08
AL
704};
705
706static void i440fx_class_init(ObjectClass *klass, void *data)
707{
39bffca2 708 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
709 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
710
40021f08
AL
711 k->init = i440fx_initfn;
712 k->config_write = i440fx_write_config;
713 k->vendor_id = PCI_VENDOR_ID_INTEL;
714 k->device_id = PCI_DEVICE_ID_INTEL_82441;
715 k->revision = 0x02;
716 k->class_id = PCI_CLASS_BRIDGE_HOST;
39bffca2 717 dc->desc = "Host bridge";
39bffca2 718 dc->vmsd = &vmstate_i440fx;
08c58f92
MA
719 /*
720 * PCI-facing part of the host bridge, not usable without the
721 * host-facing part, which can't be device_add'ed, yet.
722 */
723 dc->cannot_instantiate_with_device_add_yet = true;
2897ae02 724 dc->hotpluggable = false;
40021f08
AL
725}
726
4240abff 727static const TypeInfo i440fx_info = {
57a0f0c6 728 .name = TYPE_I440FX_PCI_DEVICE,
39bffca2
AL
729 .parent = TYPE_PCI_DEVICE,
730 .instance_size = sizeof(PCII440FXState),
731 .class_init = i440fx_class_init,
8a14daa5
GH
732};
733
568f0690
DG
734static const char *i440fx_pcihost_root_bus_path(PCIHostState *host_bridge,
735 PCIBus *rootbus)
736{
04c7d8b8
CR
737 I440FXState *s = I440FX_PCI_HOST_BRIDGE(host_bridge);
738
568f0690 739 /* For backwards compat with old device paths */
04c7d8b8
CR
740 if (s->short_root_bus) {
741 return "0000";
742 }
743 return "0000:00";
568f0690
DG
744}
745
39848901
IM
746static Property i440fx_props[] = {
747 DEFINE_PROP_SIZE(PCI_HOST_PROP_PCI_HOLE64_SIZE, I440FXState,
748 pci_hole64_size, DEFAULT_PCI_HOLE64_SIZE),
04c7d8b8 749 DEFINE_PROP_UINT32("short_root_bus", I440FXState, short_root_bus, 0),
39848901
IM
750 DEFINE_PROP_END_OF_LIST(),
751};
752
999e12bb
AL
753static void i440fx_pcihost_class_init(ObjectClass *klass, void *data)
754{
39bffca2 755 DeviceClass *dc = DEVICE_CLASS(klass);
568f0690 756 PCIHostBridgeClass *hc = PCI_HOST_BRIDGE_CLASS(klass);
999e12bb 757
568f0690 758 hc->root_bus_path = i440fx_pcihost_root_bus_path;
a3560fbf 759 dc->realize = i440fx_pcihost_realize;
39bffca2 760 dc->fw_name = "pci";
39848901 761 dc->props = i440fx_props;
999e12bb
AL
762}
763
4240abff 764static const TypeInfo i440fx_pcihost_info = {
1d0d4aa4 765 .name = TYPE_I440FX_PCI_HOST_BRIDGE,
8558d942 766 .parent = TYPE_PCI_HOST_BRIDGE,
39bffca2 767 .instance_size = sizeof(I440FXState),
a3560fbf 768 .instance_init = i440fx_pcihost_initfn,
39bffca2 769 .class_init = i440fx_pcihost_class_init,
8a14daa5
GH
770};
771
83f7d43a 772static void i440fx_register_types(void)
8a14daa5 773{
39bffca2
AL
774 type_register_static(&i440fx_info);
775 type_register_static(&piix3_info);
776 type_register_static(&piix3_xen_info);
777 type_register_static(&i440fx_pcihost_info);
8a14daa5 778}
83f7d43a
AF
779
780type_init(i440fx_register_types)