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