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