]> git.proxmox.com Git - mirror_qemu.git/blame - hw/pci-host/piix.c
nvdimm: fix header pointer in nvdimm_build_nfit()
[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"
8d211f62 37#include "qemu/error-report.h"
87ecb68b 38
56594fe3
IY
39/*
40 * I440FX chipset data sheet.
41 * http://download.intel.com/design/chipsets/datashts/29054901.pdf
42 */
43
1d0d4aa4
IM
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
b7c69719
GA
94#define TYPE_PIIX3_PCI_DEVICE "pci-piix3"
95#define PIIX3_PCI_DEVICE(obj) \
96 OBJECT_CHECK(PIIX3State, (obj), TYPE_PIIX3_PCI_DEVICE)
97
57a0f0c6
DW
98#define I440FX_PCI_DEVICE(obj) \
99 OBJECT_CHECK(PCII440FXState, (obj), TYPE_I440FX_PCI_DEVICE)
100
0a3bacf3 101struct PCII440FXState {
2aedfa46
HT
102 /*< private >*/
103 PCIDevice parent_obj;
104 /*< public >*/
105
ae0a5466
AK
106 MemoryRegion *system_memory;
107 MemoryRegion *pci_address_space;
108 MemoryRegion *ram_memory;
ae0a5466
AK
109 PAMMemoryRegion pam_regions[13];
110 MemoryRegion smram_region;
fe6567d5 111 MemoryRegion smram, low_smram;
0a3bacf3
JQ
112};
113
f2c688bb
IY
114
115#define I440FX_PAM 0x59
116#define I440FX_PAM_SIZE 7
117#define I440FX_SMRAM 0x72
118
e33d22fa
EH
119/* Older coreboot versions (4.0 and older) read a config register that doesn't
120 * exist in real hardware, to get the RAM size from QEMU.
121 */
122#define I440FX_COREBOOT_RAM_SIZE 0x57
123
ab431c28 124static void piix3_set_irq(void *opaque, int pirq, int level);
3afa9bb4 125static PCIINTxRoute piix3_route_intx_pin_to_irq(void *opaque, int pci_intx);
bf09551a
SS
126static void piix3_write_config_xen(PCIDevice *dev,
127 uint32_t address, uint32_t val, int len);
d2b59317
PB
128
129/* return the global irq number corresponding to a given device irq
130 pin. We could also use the bus number to have a more precise
131 mapping. */
ab431c28 132static int pci_slot_get_pirq(PCIDevice *pci_dev, int pci_intx)
d2b59317
PB
133{
134 int slot_addend;
135 slot_addend = (pci_dev->devfn >> 3) - 1;
ab431c28 136 return (pci_intx + slot_addend) & 3;
d2b59317 137}
502a5395 138
0a3bacf3 139static void i440fx_update_memory_mappings(PCII440FXState *d)
ee0ea1d0 140{
410edd92 141 int i;
2aedfa46 142 PCIDevice *pd = PCI_DEVICE(d);
84631fd7 143
72124c01 144 memory_region_transaction_begin();
410edd92
IY
145 for (i = 0; i < 13; i++) {
146 pam_update(&d->pam_regions[i], i,
2aedfa46 147 pd->config[I440FX_PAM + ((i + 1) / 2)]);
ee0ea1d0 148 }
3de70c08
PB
149 memory_region_set_enabled(&d->smram_region,
150 !(pd->config[I440FX_SMRAM] & SMRAM_D_OPEN));
fe6567d5
PB
151 memory_region_set_enabled(&d->smram,
152 pd->config[I440FX_SMRAM] & SMRAM_G_SMRAME);
72124c01 153 memory_region_transaction_commit();
ee0ea1d0
FB
154}
155
ee0ea1d0 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;
f809c605 175 uint8_t smm_enabled;
ee0ea1d0 176
2aedfa46 177 ret = pci_device_load(pd, f);
ee0ea1d0
FB
178 if (ret < 0)
179 return ret;
180 i440fx_update_memory_mappings(d);
f809c605 181 qemu_get_8s(f, &smm_enabled);
52fc1d83 182
e735b55a
IY
183 if (version_id == 2) {
184 for (i = 0; i < PIIX_NUM_PIRQS; i++) {
185 qemu_get_be32(f); /* dummy load for compatibility */
186 }
187 }
52fc1d83 188
ee0ea1d0
FB
189 return 0;
190}
191
e59fb374 192static int i440fx_post_load(void *opaque, int version_id)
0c7d19e5
JQ
193{
194 PCII440FXState *d = opaque;
195
196 i440fx_update_memory_mappings(d);
197 return 0;
198}
199
200static const VMStateDescription vmstate_i440fx = {
201 .name = "I440FX",
202 .version_id = 3,
203 .minimum_version_id = 3,
204 .minimum_version_id_old = 1,
205 .load_state_old = i440fx_load_old,
752ff2fa 206 .post_load = i440fx_post_load,
d49805ae 207 .fields = (VMStateField[]) {
2aedfa46 208 VMSTATE_PCI_DEVICE(parent_obj, PCII440FXState),
f809c605
PB
209 /* Used to be smm_enabled, which was basically always zero because
210 * SeaBIOS hardly uses SMM. SMRAM is now handled by CPU code.
211 */
212 VMSTATE_UNUSED(1),
0c7d19e5
JQ
213 VMSTATE_END_OF_LIST()
214 }
215};
216
39848901
IM
217static void i440fx_pcihost_get_pci_hole_start(Object *obj, Visitor *v,
218 void *opaque, const char *name,
219 Error **errp)
220{
221 I440FXState *s = I440FX_PCI_HOST_BRIDGE(obj);
222 uint32_t value = s->pci_info.w32.begin;
223
224 visit_type_uint32(v, &value, name, errp);
225}
226
227static void i440fx_pcihost_get_pci_hole_end(Object *obj, Visitor *v,
228 void *opaque, const char *name,
229 Error **errp)
230{
231 I440FXState *s = I440FX_PCI_HOST_BRIDGE(obj);
232 uint32_t value = s->pci_info.w32.end;
233
234 visit_type_uint32(v, &value, name, errp);
235}
236
237static void i440fx_pcihost_get_pci_hole64_start(Object *obj, Visitor *v,
238 void *opaque, const char *name,
239 Error **errp)
240{
2028fdf3
MT
241 PCIHostState *h = PCI_HOST_BRIDGE(obj);
242 Range w64;
243
244 pci_bus_get_w64_range(h->bus, &w64);
39848901 245
2028fdf3 246 visit_type_uint64(v, &w64.begin, name, errp);
39848901
IM
247}
248
249static void i440fx_pcihost_get_pci_hole64_end(Object *obj, Visitor *v,
250 void *opaque, const char *name,
251 Error **errp)
252{
2028fdf3
MT
253 PCIHostState *h = PCI_HOST_BRIDGE(obj);
254 Range w64;
255
256 pci_bus_get_w64_range(h->bus, &w64);
39848901 257
2028fdf3 258 visit_type_uint64(v, &w64.end, name, errp);
39848901
IM
259}
260
a3560fbf 261static void i440fx_pcihost_initfn(Object *obj)
502a5395 262{
a3560fbf 263 PCIHostState *s = PCI_HOST_BRIDGE(obj);
39848901 264 I440FXState *d = I440FX_PCI_HOST_BRIDGE(obj);
502a5395 265
a3560fbf 266 memory_region_init_io(&s->conf_mem, obj, &pci_host_conf_le_ops, s,
d0ed8076 267 "pci-conf-idx", 4);
a3560fbf 268 memory_region_init_io(&s->data_mem, obj, &pci_host_data_le_ops, s,
d0ed8076 269 "pci-conf-data", 4);
39848901
IM
270
271 object_property_add(obj, PCI_HOST_PROP_PCI_HOLE_START, "int",
272 i440fx_pcihost_get_pci_hole_start,
273 NULL, NULL, NULL, NULL);
274
275 object_property_add(obj, PCI_HOST_PROP_PCI_HOLE_END, "int",
276 i440fx_pcihost_get_pci_hole_end,
277 NULL, NULL, NULL, NULL);
278
279 object_property_add(obj, PCI_HOST_PROP_PCI_HOLE64_START, "int",
280 i440fx_pcihost_get_pci_hole64_start,
281 NULL, NULL, NULL, NULL);
282
283 object_property_add(obj, PCI_HOST_PROP_PCI_HOLE64_END, "int",
284 i440fx_pcihost_get_pci_hole64_end,
285 NULL, NULL, NULL, NULL);
286
287 d->pci_info.w32.end = IO_APIC_DEFAULT_ADDRESS;
a3560fbf 288}
502a5395 289
a3560fbf
HT
290static void i440fx_pcihost_realize(DeviceState *dev, Error **errp)
291{
292 PCIHostState *s = PCI_HOST_BRIDGE(dev);
293 SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
294
295 sysbus_add_io(sbd, 0xcf8, &s->conf_mem);
296 sysbus_init_ioports(sbd, 0xcf8, 4);
297
298 sysbus_add_io(sbd, 0xcfc, &s->data_mem);
299 sysbus_init_ioports(sbd, 0xcfc, 4);
8a14daa5 300}
502a5395 301
9af21dbe 302static void i440fx_realize(PCIDevice *dev, Error **errp)
8a14daa5 303{
2aedfa46 304 dev->config[I440FX_SMRAM] = 0x02;
8d211f62
BD
305
306 if (object_property_get_bool(qdev_get_machine(), "iommu", NULL)) {
307 error_report("warning: i440fx doesn't support emulated iommu");
308 }
8a14daa5
GH
309}
310
7bb836e4
MT
311PCIBus *i440fx_init(const char *host_type, const char *pci_type,
312 PCII440FXState **pi440fx_state,
44fc8c5e
IM
313 int *piix3_devfn,
314 ISABus **isa_bus, qemu_irq *pic,
315 MemoryRegion *address_space_mem,
316 MemoryRegion *address_space_io,
317 ram_addr_t ram_size,
ddaaefb4 318 ram_addr_t below_4g_mem_size,
39848901 319 ram_addr_t above_4g_mem_size,
44fc8c5e
IM
320 MemoryRegion *pci_address_space,
321 MemoryRegion *ram_memory)
8a14daa5
GH
322{
323 DeviceState *dev;
324 PCIBus *b;
325 PCIDevice *d;
8558d942 326 PCIHostState *s;
7cd9eee0 327 PIIX3State *piix3;
ae0a5466 328 PCII440FXState *f;
2725aec7 329 unsigned i;
39848901 330 I440FXState *i440fx;
8a14daa5 331
7bb836e4 332 dev = qdev_create(NULL, host_type);
8558d942 333 s = PCI_HOST_BRIDGE(dev);
67c332fd 334 b = pci_bus_new(dev, NULL, pci_address_space,
60a0e443 335 address_space_io, 0, TYPE_PCI_BUS);
8a14daa5 336 s->bus = b;
f05f6b4a 337 object_property_add_child(qdev_get_machine(), "i440fx", OBJECT(dev), NULL);
f424d5c4 338 qdev_init_nofail(dev);
8a14daa5 339
7bb836e4 340 d = pci_create_simple(b, 0, pci_type);
57a0f0c6 341 *pi440fx_state = I440FX_PCI_DEVICE(d);
ae0a5466
AK
342 f = *pi440fx_state;
343 f->system_memory = address_space_mem;
344 f->pci_address_space = pci_address_space;
345 f->ram_memory = ram_memory;
39848901
IM
346
347 i440fx = I440FX_PCI_HOST_BRIDGE(dev);
ddaaefb4 348 i440fx->pci_info.w32.begin = below_4g_mem_size;
39848901 349
83d08f26
MT
350 /* setup pci memory mapping */
351 pc_pci_as_mapping_init(OBJECT(f), f->system_memory,
352 f->pci_address_space);
353
fe6567d5 354 /* if *disabled* show SMRAM to all CPUs */
40c5dce9 355 memory_region_init_alias(&f->smram_region, OBJECT(d), "smram-region",
ae0a5466 356 f->pci_address_space, 0xa0000, 0x20000);
b41e1ed4
AK
357 memory_region_add_subregion_overlap(f->system_memory, 0xa0000,
358 &f->smram_region, 1);
fe6567d5
PB
359 memory_region_set_enabled(&f->smram_region, true);
360
361 /* smram, as seen by SMM CPUs */
362 memory_region_init(&f->smram, OBJECT(d), "smram", 1ull << 32);
363 memory_region_set_enabled(&f->smram, true);
364 memory_region_init_alias(&f->low_smram, OBJECT(d), "smram-low",
f809c605 365 f->ram_memory, 0xa0000, 0x20000);
fe6567d5
PB
366 memory_region_set_enabled(&f->low_smram, true);
367 memory_region_add_subregion(&f->smram, 0xa0000, &f->low_smram);
368 object_property_add_const_link(qdev_get_machine(), "smram",
369 OBJECT(&f->smram), &error_abort);
370
3cd2cf43 371 init_pam(dev, f->ram_memory, f->system_memory, f->pci_address_space,
410edd92 372 &f->pam_regions[0], PAM_BIOS_BASE, PAM_BIOS_SIZE);
2725aec7 373 for (i = 0; i < 12; ++i) {
3cd2cf43 374 init_pam(dev, f->ram_memory, f->system_memory, f->pci_address_space,
410edd92
IY
375 &f->pam_regions[i+1], PAM_EXPAN_BASE + i * PAM_EXPAN_SIZE,
376 PAM_EXPAN_SIZE);
2725aec7 377 }
8a14daa5 378
bf09551a
SS
379 /* Xen supports additional interrupt routes from the PCI devices to
380 * the IOAPIC: the four pins of each PCI device on the bus are also
381 * connected to the IOAPIC directly.
382 * These additional routes can be discovered through ACPI. */
383 if (xen_enabled()) {
b7c69719
GA
384 PCIDevice *pci_dev = pci_create_simple_multifunction(b,
385 -1, true, "PIIX3-xen");
386 piix3 = PIIX3_PCI_DEVICE(pci_dev);
bf09551a
SS
387 pci_bus_irqs(b, xen_piix3_set_irq, xen_pci_slot_get_pirq,
388 piix3, XEN_PIIX_NUM_PIRQS);
389 } else {
b7c69719
GA
390 PCIDevice *pci_dev = pci_create_simple_multifunction(b,
391 -1, true, "PIIX3");
392 piix3 = PIIX3_PCI_DEVICE(pci_dev);
bf09551a
SS
393 pci_bus_irqs(b, piix3_set_irq, pci_slot_get_pirq, piix3,
394 PIIX_NUM_PIRQS);
3afa9bb4 395 pci_bus_set_route_irq_fn(b, piix3_route_intx_pin_to_irq);
bf09551a 396 }
7cd9eee0 397 piix3->pic = pic;
d93a8a43 398 *isa_bus = ISA_BUS(qdev_get_child_bus(DEVICE(piix3), "isa.0"));
41445300 399
7cd9eee0 400 *piix3_devfn = piix3->dev.devfn;
85a750ca 401
ec5f92ce 402 ram_size = ram_size / 8 / 1024 / 1024;
2aedfa46 403 if (ram_size > 255) {
ec5f92ce 404 ram_size = 255;
2aedfa46 405 }
e33d22fa 406 d->config[I440FX_COREBOOT_RAM_SIZE] = ram_size;
ec5f92ce 407
ae0a5466
AK
408 i440fx_update_memory_mappings(f);
409
502a5395
PB
410 return b;
411}
412
277e9340
MT
413PCIBus *find_i440fx(void)
414{
415 PCIHostState *s = OBJECT_CHECK(PCIHostState,
416 object_resolve_path("/machine/i440fx", NULL),
417 TYPE_PCI_HOST_BRIDGE);
418 return s ? s->bus : NULL;
419}
420
502a5395 421/* PIIX3 PCI to ISA bridge */
ab431c28
IY
422static void piix3_set_irq_pic(PIIX3State *piix3, int pic_irq)
423{
424 qemu_set_irq(piix3->pic[pic_irq],
425 !!(piix3->pic_levels &
09de0f46 426 (((1ULL << PIIX_NUM_PIRQS) - 1) <<
ab431c28
IY
427 (pic_irq * PIIX_NUM_PIRQS))));
428}
502a5395 429
2c9ecdeb 430static void piix3_set_irq_level_internal(PIIX3State *piix3, int pirq, int level)
ab431c28
IY
431{
432 int pic_irq;
433 uint64_t mask;
434
435 pic_irq = piix3->dev.config[PIIX_PIRQC + pirq];
436 if (pic_irq >= PIIX_NUM_PIC_IRQS) {
437 return;
438 }
439
440 mask = 1ULL << ((pic_irq * PIIX_NUM_PIRQS) + pirq);
441 piix3->pic_levels &= ~mask;
442 piix3->pic_levels |= mask * !!level;
2c9ecdeb
PD
443}
444
445static void piix3_set_irq_level(PIIX3State *piix3, int pirq, int level)
446{
447 int pic_irq;
448
449 pic_irq = piix3->dev.config[PIIX_PIRQC + pirq];
450 if (pic_irq >= PIIX_NUM_PIC_IRQS) {
451 return;
452 }
453
454 piix3_set_irq_level_internal(piix3, pirq, level);
ab431c28 455
afe3ef1d 456 piix3_set_irq_pic(piix3, pic_irq);
ab431c28
IY
457}
458
459static void piix3_set_irq(void *opaque, int pirq, int level)
502a5395 460{
7cd9eee0 461 PIIX3State *piix3 = opaque;
afe3ef1d 462 piix3_set_irq_level(piix3, pirq, level);
ab431c28 463}
502a5395 464
3afa9bb4
MT
465static PCIINTxRoute piix3_route_intx_pin_to_irq(void *opaque, int pin)
466{
467 PIIX3State *piix3 = opaque;
468 int irq = piix3->dev.config[PIIX_PIRQC + pin];
469 PCIINTxRoute route;
470
471 if (irq < PIIX_NUM_PIC_IRQS) {
472 route.mode = PCI_INTX_ENABLED;
473 route.irq = irq;
474 } else {
475 route.mode = PCI_INTX_DISABLED;
476 route.irq = -1;
477 }
478 return route;
479}
480
ab431c28
IY
481/* irq routing is changed. so rebuild bitmap */
482static void piix3_update_irq_levels(PIIX3State *piix3)
483{
484 int pirq;
485
486 piix3->pic_levels = 0;
487 for (pirq = 0; pirq < PIIX_NUM_PIRQS; pirq++) {
488 piix3_set_irq_level(piix3, pirq,
afe3ef1d 489 pci_bus_get_irq_level(piix3->dev.bus, pirq));
ab431c28
IY
490 }
491}
492
493static void piix3_write_config(PCIDevice *dev,
494 uint32_t address, uint32_t val, int len)
495{
496 pci_default_write_config(dev, address, val, len);
497 if (ranges_overlap(address, len, PIIX_PIRQC, 4)) {
b7c69719 498 PIIX3State *piix3 = PIIX3_PCI_DEVICE(dev);
ab431c28 499 int pic_irq;
0ae16251
JK
500
501 pci_bus_fire_intx_routing_notifier(piix3->dev.bus);
ab431c28
IY
502 piix3_update_irq_levels(piix3);
503 for (pic_irq = 0; pic_irq < PIIX_NUM_PIC_IRQS; pic_irq++) {
504 piix3_set_irq_pic(piix3, pic_irq);
d2b59317 505 }
502a5395
PB
506 }
507}
508
bf09551a
SS
509static void piix3_write_config_xen(PCIDevice *dev,
510 uint32_t address, uint32_t val, int len)
511{
512 xen_piix_pci_write_config_client(address, val, len);
513 piix3_write_config(dev, address, val, len);
514}
515
15a1956a 516static void piix3_reset(void *opaque)
502a5395 517{
fd37d881
JQ
518 PIIX3State *d = opaque;
519 uint8_t *pci_conf = d->dev.config;
502a5395 520
c9721215 521 pci_conf[0x04] = 0x07; /* master, memory and I/O */
502a5395
PB
522 pci_conf[0x05] = 0x00;
523 pci_conf[0x06] = 0x00;
c9721215 524 pci_conf[0x07] = 0x02; /* PCI_status_devsel_medium */
502a5395
PB
525 pci_conf[0x4c] = 0x4d;
526 pci_conf[0x4e] = 0x03;
527 pci_conf[0x4f] = 0x00;
528 pci_conf[0x60] = 0x80;
477afee3
AJ
529 pci_conf[0x61] = 0x80;
530 pci_conf[0x62] = 0x80;
531 pci_conf[0x63] = 0x80;
502a5395
PB
532 pci_conf[0x69] = 0x02;
533 pci_conf[0x70] = 0x80;
534 pci_conf[0x76] = 0x0c;
535 pci_conf[0x77] = 0x0c;
536 pci_conf[0x78] = 0x02;
537 pci_conf[0x79] = 0x00;
538 pci_conf[0x80] = 0x00;
539 pci_conf[0x82] = 0x00;
540 pci_conf[0xa0] = 0x08;
502a5395
PB
541 pci_conf[0xa2] = 0x00;
542 pci_conf[0xa3] = 0x00;
543 pci_conf[0xa4] = 0x00;
544 pci_conf[0xa5] = 0x00;
545 pci_conf[0xa6] = 0x00;
546 pci_conf[0xa7] = 0x00;
547 pci_conf[0xa8] = 0x0f;
548 pci_conf[0xaa] = 0x00;
549 pci_conf[0xab] = 0x00;
550 pci_conf[0xac] = 0x00;
551 pci_conf[0xae] = 0x00;
ab431c28
IY
552
553 d->pic_levels = 0;
1ec4ba74 554 d->rcr = 0;
ab431c28
IY
555}
556
557static int piix3_post_load(void *opaque, int version_id)
558{
559 PIIX3State *piix3 = opaque;
2c9ecdeb
PD
560 int pirq;
561
562 /* Because the i8259 has not been deserialized yet, qemu_irq_raise
563 * might bring the system to a different state than the saved one;
564 * for example, the interrupt could be masked but the i8259 would
565 * not know that yet and would trigger an interrupt in the CPU.
566 *
567 * Here, we update irq levels without raising the interrupt.
568 * Interrupt state will be deserialized separately through the i8259.
569 */
570 piix3->pic_levels = 0;
571 for (pirq = 0; pirq < PIIX_NUM_PIRQS; pirq++) {
572 piix3_set_irq_level_internal(piix3, pirq,
573 pci_bus_get_irq_level(piix3->dev.bus, pirq));
574 }
ab431c28 575 return 0;
e735b55a 576}
15a1956a 577
e735b55a
IY
578static void piix3_pre_save(void *opaque)
579{
580 int i;
581 PIIX3State *piix3 = opaque;
582
583 for (i = 0; i < ARRAY_SIZE(piix3->pci_irq_levels_vmstate); i++) {
584 piix3->pci_irq_levels_vmstate[i] =
585 pci_bus_get_irq_level(piix3->dev.bus, i);
586 }
502a5395
PB
587}
588
1ec4ba74
LE
589static bool piix3_rcr_needed(void *opaque)
590{
591 PIIX3State *piix3 = opaque;
592
593 return (piix3->rcr != 0);
594}
595
596static const VMStateDescription vmstate_piix3_rcr = {
597 .name = "PIIX3/rcr",
598 .version_id = 1,
599 .minimum_version_id = 1,
5cd8cada 600 .needed = piix3_rcr_needed,
d49805ae 601 .fields = (VMStateField[]) {
1ec4ba74
LE
602 VMSTATE_UINT8(rcr, PIIX3State),
603 VMSTATE_END_OF_LIST()
604 }
605};
606
d1f171bd
JQ
607static const VMStateDescription vmstate_piix3 = {
608 .name = "PIIX3",
609 .version_id = 3,
610 .minimum_version_id = 2,
ab431c28 611 .post_load = piix3_post_load,
e735b55a 612 .pre_save = piix3_pre_save,
d49805ae 613 .fields = (VMStateField[]) {
d1f171bd 614 VMSTATE_PCI_DEVICE(dev, PIIX3State),
e735b55a
IY
615 VMSTATE_INT32_ARRAY_V(pci_irq_levels_vmstate, PIIX3State,
616 PIIX_NUM_PIRQS, 3),
d1f171bd 617 VMSTATE_END_OF_LIST()
1ec4ba74 618 },
5cd8cada
JQ
619 .subsections = (const VMStateDescription*[]) {
620 &vmstate_piix3_rcr,
621 NULL
1ec4ba74
LE
622 }
623};
624
625
626static void rcr_write(void *opaque, hwaddr addr, uint64_t val, unsigned len)
627{
628 PIIX3State *d = opaque;
629
630 if (val & 4) {
631 qemu_system_reset_request();
632 return;
da64182c 633 }
1ec4ba74
LE
634 d->rcr = val & 2; /* keep System Reset type only */
635}
636
637static uint64_t rcr_read(void *opaque, hwaddr addr, unsigned len)
638{
639 PIIX3State *d = opaque;
640
641 return d->rcr;
642}
643
644static const MemoryRegionOps rcr_ops = {
645 .read = rcr_read,
646 .write = rcr_write,
647 .endianness = DEVICE_LITTLE_ENDIAN
d1f171bd 648};
1941d19c 649
9af21dbe 650static void piix3_realize(PCIDevice *dev, Error **errp)
502a5395 651{
b7c69719 652 PIIX3State *d = PIIX3_PCI_DEVICE(dev);
502a5395 653
bb2ed009
HP
654 isa_bus_new(DEVICE(d), get_system_memory(),
655 pci_address_space_io(dev));
1ec4ba74 656
40c5dce9
PB
657 memory_region_init_io(&d->rcr_mem, OBJECT(dev), &rcr_ops, d,
658 "piix3-reset-control", 1);
1ec4ba74
LE
659 memory_region_add_subregion_overlap(pci_address_space_io(dev), RCR_IOPORT,
660 &d->rcr_mem, 1);
661
a08d4367 662 qemu_register_reset(piix3_reset, d);
502a5395 663}
5c2b87e3 664
b7c69719 665static void pci_piix3_class_init(ObjectClass *klass, void *data)
40021f08 666{
39bffca2 667 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
668 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
669
39bffca2
AL
670 dc->desc = "ISA bridge";
671 dc->vmsd = &vmstate_piix3;
2897ae02 672 dc->hotpluggable = false;
9af21dbe 673 k->realize = piix3_realize;
40021f08 674 k->vendor_id = PCI_VENDOR_ID_INTEL;
c9721215
DW
675 /* 82371SB PIIX3 PCI-to-ISA bridge (Step A1) */
676 k->device_id = PCI_DEVICE_ID_INTEL_82371SB_0;
40021f08 677 k->class_id = PCI_CLASS_BRIDGE_ISA;
81aab2ff
MA
678 /*
679 * Reason: part of PIIX3 southbridge, needs to be wired up by
680 * pc_piix.c's pc_init1()
681 */
682 dc->cannot_instantiate_with_device_add_yet = true;
40021f08
AL
683}
684
b7c69719
GA
685static const TypeInfo piix3_pci_type_info = {
686 .name = TYPE_PIIX3_PCI_DEVICE,
687 .parent = TYPE_PCI_DEVICE,
688 .instance_size = sizeof(PIIX3State),
689 .abstract = true,
690 .class_init = pci_piix3_class_init,
691};
692
693static void piix3_class_init(ObjectClass *klass, void *data)
694{
695 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
696
697 k->config_write = piix3_write_config;
698}
699
4240abff 700static const TypeInfo piix3_info = {
39bffca2 701 .name = "PIIX3",
b7c69719 702 .parent = TYPE_PIIX3_PCI_DEVICE,
39bffca2 703 .class_init = piix3_class_init,
e855761c
AL
704};
705
40021f08
AL
706static void piix3_xen_class_init(ObjectClass *klass, void *data)
707{
708 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
709
40021f08 710 k->config_write = piix3_write_config_xen;
e855761c
AL
711};
712
4240abff 713static const TypeInfo piix3_xen_info = {
39bffca2 714 .name = "PIIX3-xen",
b7c69719 715 .parent = TYPE_PIIX3_PCI_DEVICE,
39bffca2 716 .class_init = piix3_xen_class_init,
40021f08
AL
717};
718
719static void i440fx_class_init(ObjectClass *klass, void *data)
720{
39bffca2 721 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
722 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
723
9af21dbe 724 k->realize = i440fx_realize;
40021f08
AL
725 k->config_write = i440fx_write_config;
726 k->vendor_id = PCI_VENDOR_ID_INTEL;
727 k->device_id = PCI_DEVICE_ID_INTEL_82441;
728 k->revision = 0x02;
729 k->class_id = PCI_CLASS_BRIDGE_HOST;
39bffca2 730 dc->desc = "Host bridge";
39bffca2 731 dc->vmsd = &vmstate_i440fx;
08c58f92
MA
732 /*
733 * PCI-facing part of the host bridge, not usable without the
734 * host-facing part, which can't be device_add'ed, yet.
735 */
736 dc->cannot_instantiate_with_device_add_yet = true;
2897ae02 737 dc->hotpluggable = false;
40021f08
AL
738}
739
4240abff 740static const TypeInfo i440fx_info = {
57a0f0c6 741 .name = TYPE_I440FX_PCI_DEVICE,
39bffca2
AL
742 .parent = TYPE_PCI_DEVICE,
743 .instance_size = sizeof(PCII440FXState),
744 .class_init = i440fx_class_init,
8a14daa5
GH
745};
746
595a4f07
TC
747/* IGD Passthrough Host Bridge. */
748typedef struct {
749 uint8_t offset;
750 uint8_t len;
751} IGDHostInfo;
752
753/* Here we just expose minimal host bridge offset subset. */
754static const IGDHostInfo igd_host_bridge_infos[] = {
755 {0x08, 2}, /* revision id */
756 {0x2c, 2}, /* sybsystem vendor id */
757 {0x2e, 2}, /* sybsystem id */
758 {0x50, 2}, /* SNB: processor graphics control register */
759 {0x52, 2}, /* processor graphics control register */
760 {0xa4, 4}, /* SNB: graphics base of stolen memory */
761 {0xa8, 4}, /* SNB: base of GTT stolen memory */
762};
763
764static int host_pci_config_read(int pos, int len, uint32_t val)
765{
766 char path[PATH_MAX];
767 int config_fd;
768 ssize_t size = sizeof(path);
769 /* Access real host bridge. */
770 int rc = snprintf(path, size, "/sys/bus/pci/devices/%04x:%02x:%02x.%d/%s",
771 0, 0, 0, 0, "config");
e3fce97c 772 int ret = 0;
595a4f07
TC
773
774 if (rc >= size || rc < 0) {
775 return -ENODEV;
776 }
777
778 config_fd = open(path, O_RDWR);
779 if (config_fd < 0) {
780 return -ENODEV;
781 }
782
783 if (lseek(config_fd, pos, SEEK_SET) != pos) {
e3fce97c
HZ
784 ret = -errno;
785 goto out;
595a4f07
TC
786 }
787 do {
788 rc = read(config_fd, (uint8_t *)&val, len);
789 } while (rc < 0 && (errno == EINTR || errno == EAGAIN));
790 if (rc != len) {
e3fce97c 791 ret = -errno;
595a4f07 792 }
e3fce97c
HZ
793out:
794 close(config_fd);
795 return ret;
595a4f07
TC
796}
797
798static int igd_pt_i440fx_initfn(struct PCIDevice *pci_dev)
799{
800 uint32_t val = 0;
801 int rc, i, num;
802 int pos, len;
803
804 num = ARRAY_SIZE(igd_host_bridge_infos);
805 for (i = 0; i < num; i++) {
806 pos = igd_host_bridge_infos[i].offset;
807 len = igd_host_bridge_infos[i].len;
808 rc = host_pci_config_read(pos, len, val);
809 if (rc) {
810 return -ENODEV;
811 }
812 pci_default_write_config(pci_dev, pos, val, len);
813 }
814
815 return 0;
816}
817
818static void igd_passthrough_i440fx_class_init(ObjectClass *klass, void *data)
819{
820 DeviceClass *dc = DEVICE_CLASS(klass);
821 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
822
823 k->init = igd_pt_i440fx_initfn;
824 dc->desc = "IGD Passthrough Host bridge";
825}
826
827static const TypeInfo igd_passthrough_i440fx_info = {
828 .name = TYPE_IGD_PASSTHROUGH_I440FX_PCI_DEVICE,
829 .parent = TYPE_I440FX_PCI_DEVICE,
830 .instance_size = sizeof(PCII440FXState),
831 .class_init = igd_passthrough_i440fx_class_init,
832};
833
568f0690
DG
834static const char *i440fx_pcihost_root_bus_path(PCIHostState *host_bridge,
835 PCIBus *rootbus)
836{
04c7d8b8
CR
837 I440FXState *s = I440FX_PCI_HOST_BRIDGE(host_bridge);
838
568f0690 839 /* For backwards compat with old device paths */
04c7d8b8
CR
840 if (s->short_root_bus) {
841 return "0000";
842 }
843 return "0000:00";
568f0690
DG
844}
845
39848901
IM
846static Property i440fx_props[] = {
847 DEFINE_PROP_SIZE(PCI_HOST_PROP_PCI_HOLE64_SIZE, I440FXState,
848 pci_hole64_size, DEFAULT_PCI_HOLE64_SIZE),
04c7d8b8 849 DEFINE_PROP_UINT32("short_root_bus", I440FXState, short_root_bus, 0),
39848901
IM
850 DEFINE_PROP_END_OF_LIST(),
851};
852
999e12bb
AL
853static void i440fx_pcihost_class_init(ObjectClass *klass, void *data)
854{
39bffca2 855 DeviceClass *dc = DEVICE_CLASS(klass);
568f0690 856 PCIHostBridgeClass *hc = PCI_HOST_BRIDGE_CLASS(klass);
999e12bb 857
568f0690 858 hc->root_bus_path = i440fx_pcihost_root_bus_path;
a3560fbf 859 dc->realize = i440fx_pcihost_realize;
39bffca2 860 dc->fw_name = "pci";
39848901 861 dc->props = i440fx_props;
999e12bb
AL
862}
863
4240abff 864static const TypeInfo i440fx_pcihost_info = {
1d0d4aa4 865 .name = TYPE_I440FX_PCI_HOST_BRIDGE,
8558d942 866 .parent = TYPE_PCI_HOST_BRIDGE,
39bffca2 867 .instance_size = sizeof(I440FXState),
a3560fbf 868 .instance_init = i440fx_pcihost_initfn,
39bffca2 869 .class_init = i440fx_pcihost_class_init,
8a14daa5
GH
870};
871
83f7d43a 872static void i440fx_register_types(void)
8a14daa5 873{
39bffca2 874 type_register_static(&i440fx_info);
595a4f07 875 type_register_static(&igd_passthrough_i440fx_info);
b7c69719 876 type_register_static(&piix3_pci_type_info);
39bffca2
AL
877 type_register_static(&piix3_info);
878 type_register_static(&piix3_xen_info);
879 type_register_static(&i440fx_pcihost_info);
8a14daa5 880}
83f7d43a
AF
881
882type_init(i440fx_register_types)