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