]> git.ipfire.org Git - thirdparty/qemu.git/blame - hw/pci-host/piix.c
ohci: Use QOM realize for OHCI
[thirdparty/qemu.git] / hw / pci-host / piix.c
CommitLineData
502a5395
PB
1/*
2 * QEMU i440FX/PIIX3 PCI Bridge Emulation
3 *
4 * Copyright (c) 2006 Fabrice Bellard
5fafdf24 5 *
502a5395
PB
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
83c9f4ca 25#include "hw/hw.h"
0d09e41a 26#include "hw/i386/pc.h"
83c9f4ca
PB
27#include "hw/pci/pci.h"
28#include "hw/pci/pci_host.h"
0d09e41a 29#include "hw/isa/isa.h"
83c9f4ca 30#include "hw/sysbus.h"
1de7afc9 31#include "qemu/range.h"
0d09e41a
PB
32#include "hw/xen/xen.h"
33#include "hw/pci-host/pam.h"
1ec4ba74 34#include "sysemu/sysemu.h"
87ecb68b 35
56594fe3
IY
36/*
37 * I440FX chipset data sheet.
38 * http://download.intel.com/design/chipsets/datashts/29054901.pdf
39 */
40
67c332fd
AF
41typedef struct I440FXState {
42 PCIHostState parent_obj;
43} I440FXState;
502a5395 44
ab431c28 45#define PIIX_NUM_PIC_IRQS 16 /* i8259 * 2 */
e735b55a 46#define PIIX_NUM_PIRQS 4ULL /* PIRQ[A-D] */
bf09551a 47#define XEN_PIIX_NUM_PIRQS 128ULL
ab431c28 48#define PIIX_PIRQC 0x60
e735b55a 49
1ec4ba74
LE
50/*
51 * Reset Control Register: PCI-accessible ISA-Compatible Register at address
52 * 0xcf9, provided by the PCI/ISA bridge (PIIX3 PCI function 0, 8086:7000).
53 */
54#define RCR_IOPORT 0xcf9
55
fd37d881
JQ
56typedef struct PIIX3State {
57 PCIDevice dev;
ab431c28
IY
58
59 /*
60 * bitmap to track pic levels.
61 * The pic level is the logical OR of all the PCI irqs mapped to it
62 * So one PIC level is tracked by PIIX_NUM_PIRQS bits.
63 *
64 * PIRQ is mapped to PIC pins, we track it by
65 * PIIX_NUM_PIRQS * PIIX_NUM_PIC_IRQS = 64 bits with
66 * pic_irq * PIIX_NUM_PIRQS + pirq
67 */
68#if PIIX_NUM_PIC_IRQS * PIIX_NUM_PIRQS > 64
69#error "unable to encode pic state in 64bit in pic_levels."
70#endif
71 uint64_t pic_levels;
72
bd7dce87 73 qemu_irq *pic;
e735b55a
IY
74
75 /* This member isn't used. Just for save/load compatibility */
76 int32_t pci_irq_levels_vmstate[PIIX_NUM_PIRQS];
1ec4ba74
LE
77
78 /* Reset Control Register contents */
79 uint8_t rcr;
80
81 /* IO memory region for Reset Control Register (RCR_IOPORT) */
82 MemoryRegion rcr_mem;
7cd9eee0 83} PIIX3State;
bd7dce87 84
57a0f0c6
DW
85#define TYPE_I440FX_PCI_DEVICE "i440FX"
86#define I440FX_PCI_DEVICE(obj) \
87 OBJECT_CHECK(PCII440FXState, (obj), TYPE_I440FX_PCI_DEVICE)
88
0a3bacf3
JQ
89struct PCII440FXState {
90 PCIDevice dev;
ae0a5466
AK
91 MemoryRegion *system_memory;
92 MemoryRegion *pci_address_space;
93 MemoryRegion *ram_memory;
94 MemoryRegion pci_hole;
95 MemoryRegion pci_hole_64bit;
96 PAMMemoryRegion pam_regions[13];
97 MemoryRegion smram_region;
6c009fa4 98 uint8_t smm_enabled;
0a3bacf3
JQ
99};
100
f2c688bb
IY
101
102#define I440FX_PAM 0x59
103#define I440FX_PAM_SIZE 7
104#define I440FX_SMRAM 0x72
105
ab431c28 106static void piix3_set_irq(void *opaque, int pirq, int level);
3afa9bb4 107static PCIINTxRoute piix3_route_intx_pin_to_irq(void *opaque, int pci_intx);
bf09551a
SS
108static void piix3_write_config_xen(PCIDevice *dev,
109 uint32_t address, uint32_t val, int len);
d2b59317
PB
110
111/* return the global irq number corresponding to a given device irq
112 pin. We could also use the bus number to have a more precise
113 mapping. */
ab431c28 114static int pci_slot_get_pirq(PCIDevice *pci_dev, int pci_intx)
d2b59317
PB
115{
116 int slot_addend;
117 slot_addend = (pci_dev->devfn >> 3) - 1;
ab431c28 118 return (pci_intx + slot_addend) & 3;
d2b59317 119}
502a5395 120
0a3bacf3 121static void i440fx_update_memory_mappings(PCII440FXState *d)
ee0ea1d0 122{
410edd92 123 int i;
84631fd7 124
72124c01 125 memory_region_transaction_begin();
410edd92
IY
126 for (i = 0; i < 13; i++) {
127 pam_update(&d->pam_regions[i], i,
128 d->dev.config[I440FX_PAM + ((i + 1) / 2)]);
ee0ea1d0 129 }
410edd92 130 smram_update(&d->smram_region, d->dev.config[I440FX_SMRAM], d->smm_enabled);
72124c01 131 memory_region_transaction_commit();
ee0ea1d0
FB
132}
133
f885f1ea 134static void i440fx_set_smm(int val, void *arg)
ee0ea1d0 135{
f885f1ea
IY
136 PCII440FXState *d = arg;
137
410edd92
IY
138 memory_region_transaction_begin();
139 smram_set_smm(&d->smm_enabled, val, d->dev.config[I440FX_SMRAM],
140 &d->smram_region);
141 memory_region_transaction_commit();
ee0ea1d0
FB
142}
143
144
0a3bacf3 145static void i440fx_write_config(PCIDevice *dev,
ee0ea1d0
FB
146 uint32_t address, uint32_t val, int len)
147{
57a0f0c6 148 PCII440FXState *d = I440FX_PCI_DEVICE(dev);
0a3bacf3 149
ee0ea1d0 150 /* XXX: implement SMRAM.D_LOCK */
0a3bacf3 151 pci_default_write_config(dev, address, val, len);
4da5fcd3
IY
152 if (ranges_overlap(address, len, I440FX_PAM, I440FX_PAM_SIZE) ||
153 range_covers_byte(address, len, I440FX_SMRAM)) {
ee0ea1d0 154 i440fx_update_memory_mappings(d);
4da5fcd3 155 }
ee0ea1d0
FB
156}
157
0c7d19e5 158static int i440fx_load_old(QEMUFile* f, void *opaque, int version_id)
ee0ea1d0 159{
0a3bacf3 160 PCII440FXState *d = opaque;
52fc1d83 161 int ret, i;
ee0ea1d0 162
0a3bacf3 163 ret = pci_device_load(&d->dev, f);
ee0ea1d0
FB
164 if (ret < 0)
165 return ret;
166 i440fx_update_memory_mappings(d);
6c009fa4 167 qemu_get_8s(f, &d->smm_enabled);
52fc1d83 168
e735b55a
IY
169 if (version_id == 2) {
170 for (i = 0; i < PIIX_NUM_PIRQS; i++) {
171 qemu_get_be32(f); /* dummy load for compatibility */
172 }
173 }
52fc1d83 174
ee0ea1d0
FB
175 return 0;
176}
177
e59fb374 178static int i440fx_post_load(void *opaque, int version_id)
0c7d19e5
JQ
179{
180 PCII440FXState *d = opaque;
181
182 i440fx_update_memory_mappings(d);
183 return 0;
184}
185
186static const VMStateDescription vmstate_i440fx = {
187 .name = "I440FX",
188 .version_id = 3,
189 .minimum_version_id = 3,
190 .minimum_version_id_old = 1,
191 .load_state_old = i440fx_load_old,
752ff2fa 192 .post_load = i440fx_post_load,
0c7d19e5
JQ
193 .fields = (VMStateField []) {
194 VMSTATE_PCI_DEVICE(dev, PCII440FXState),
195 VMSTATE_UINT8(smm_enabled, PCII440FXState),
196 VMSTATE_END_OF_LIST()
197 }
198};
199
81a322d4 200static int i440fx_pcihost_initfn(SysBusDevice *dev)
502a5395 201{
8558d942 202 PCIHostState *s = PCI_HOST_BRIDGE(dev);
502a5395 203
40c5dce9 204 memory_region_init_io(&s->conf_mem, OBJECT(dev), &pci_host_conf_le_ops, s,
d0ed8076
AK
205 "pci-conf-idx", 4);
206 sysbus_add_io(dev, 0xcf8, &s->conf_mem);
207 sysbus_init_ioports(&s->busdev, 0xcf8, 4);
208
40c5dce9 209 memory_region_init_io(&s->data_mem, OBJECT(dev), &pci_host_data_le_ops, s,
d0ed8076
AK
210 "pci-conf-data", 4);
211 sysbus_add_io(dev, 0xcfc, &s->data_mem);
212 sysbus_init_ioports(&s->busdev, 0xcfc, 4);
502a5395 213
81a322d4 214 return 0;
8a14daa5 215}
502a5395 216
0a3bacf3 217static int i440fx_initfn(PCIDevice *dev)
8a14daa5 218{
57a0f0c6 219 PCII440FXState *d = I440FX_PCI_DEVICE(dev);
ee0ea1d0 220
f2c688bb 221 d->dev.config[I440FX_SMRAM] = 0x02;
ee0ea1d0 222
f885f1ea 223 cpu_smm_register(&i440fx_set_smm, d);
81a322d4 224 return 0;
8a14daa5
GH
225}
226
41445300
AP
227static PCIBus *i440fx_common_init(const char *device_name,
228 PCII440FXState **pi440fx_state,
229 int *piix3_devfn,
60573079 230 ISABus **isa_bus, qemu_irq *pic,
aee97b84
AK
231 MemoryRegion *address_space_mem,
232 MemoryRegion *address_space_io,
ae0a5466 233 ram_addr_t ram_size,
a8170e5e
AK
234 hwaddr pci_hole_start,
235 hwaddr pci_hole_size,
236 hwaddr pci_hole64_start,
237 hwaddr pci_hole64_size,
ae0a5466
AK
238 MemoryRegion *pci_address_space,
239 MemoryRegion *ram_memory)
8a14daa5
GH
240{
241 DeviceState *dev;
242 PCIBus *b;
243 PCIDevice *d;
8558d942 244 PCIHostState *s;
7cd9eee0 245 PIIX3State *piix3;
ae0a5466 246 PCII440FXState *f;
2725aec7 247 unsigned i;
8a14daa5
GH
248
249 dev = qdev_create(NULL, "i440FX-pcihost");
8558d942 250 s = PCI_HOST_BRIDGE(dev);
67c332fd 251 b = pci_bus_new(dev, NULL, pci_address_space,
60a0e443 252 address_space_io, 0, TYPE_PCI_BUS);
8a14daa5 253 s->bus = b;
f05f6b4a 254 object_property_add_child(qdev_get_machine(), "i440fx", OBJECT(dev), NULL);
f424d5c4 255 qdev_init_nofail(dev);
8a14daa5 256
41445300 257 d = pci_create_simple(b, 0, device_name);
57a0f0c6 258 *pi440fx_state = I440FX_PCI_DEVICE(d);
ae0a5466
AK
259 f = *pi440fx_state;
260 f->system_memory = address_space_mem;
261 f->pci_address_space = pci_address_space;
262 f->ram_memory = ram_memory;
40c5dce9 263 memory_region_init_alias(&f->pci_hole, OBJECT(d), "pci-hole", f->pci_address_space,
ae0a5466
AK
264 pci_hole_start, pci_hole_size);
265 memory_region_add_subregion(f->system_memory, pci_hole_start, &f->pci_hole);
40c5dce9 266 memory_region_init_alias(&f->pci_hole_64bit, OBJECT(d), "pci-hole64",
ae0a5466
AK
267 f->pci_address_space,
268 pci_hole64_start, pci_hole64_size);
269 if (pci_hole64_size) {
270 memory_region_add_subregion(f->system_memory, pci_hole64_start,
271 &f->pci_hole_64bit);
272 }
40c5dce9 273 memory_region_init_alias(&f->smram_region, OBJECT(d), "smram-region",
ae0a5466 274 f->pci_address_space, 0xa0000, 0x20000);
b41e1ed4
AK
275 memory_region_add_subregion_overlap(f->system_memory, 0xa0000,
276 &f->smram_region, 1);
277 memory_region_set_enabled(&f->smram_region, false);
3cd2cf43 278 init_pam(dev, f->ram_memory, f->system_memory, f->pci_address_space,
410edd92 279 &f->pam_regions[0], PAM_BIOS_BASE, PAM_BIOS_SIZE);
2725aec7 280 for (i = 0; i < 12; ++i) {
3cd2cf43 281 init_pam(dev, f->ram_memory, f->system_memory, f->pci_address_space,
410edd92
IY
282 &f->pam_regions[i+1], PAM_EXPAN_BASE + i * PAM_EXPAN_SIZE,
283 PAM_EXPAN_SIZE);
2725aec7 284 }
8a14daa5 285
bf09551a
SS
286 /* Xen supports additional interrupt routes from the PCI devices to
287 * the IOAPIC: the four pins of each PCI device on the bus are also
288 * connected to the IOAPIC directly.
289 * These additional routes can be discovered through ACPI. */
290 if (xen_enabled()) {
291 piix3 = DO_UPCAST(PIIX3State, dev,
292 pci_create_simple_multifunction(b, -1, true, "PIIX3-xen"));
293 pci_bus_irqs(b, xen_piix3_set_irq, xen_pci_slot_get_pirq,
294 piix3, XEN_PIIX_NUM_PIRQS);
295 } else {
296 piix3 = DO_UPCAST(PIIX3State, dev,
297 pci_create_simple_multifunction(b, -1, true, "PIIX3"));
298 pci_bus_irqs(b, piix3_set_irq, pci_slot_get_pirq, piix3,
299 PIIX_NUM_PIRQS);
3afa9bb4 300 pci_bus_set_route_irq_fn(b, piix3_route_intx_pin_to_irq);
bf09551a 301 }
7cd9eee0 302 piix3->pic = pic;
d93a8a43 303 *isa_bus = ISA_BUS(qdev_get_child_bus(DEVICE(piix3), "isa.0"));
41445300 304
7cd9eee0 305 *piix3_devfn = piix3->dev.devfn;
85a750ca 306
ec5f92ce
BW
307 ram_size = ram_size / 8 / 1024 / 1024;
308 if (ram_size > 255)
309 ram_size = 255;
310 (*pi440fx_state)->dev.config[0x57]=ram_size;
311
ae0a5466
AK
312 i440fx_update_memory_mappings(f);
313
502a5395
PB
314 return b;
315}
316
41445300 317PCIBus *i440fx_init(PCII440FXState **pi440fx_state, int *piix3_devfn,
60573079 318 ISABus **isa_bus, qemu_irq *pic,
aee97b84
AK
319 MemoryRegion *address_space_mem,
320 MemoryRegion *address_space_io,
ae0a5466 321 ram_addr_t ram_size,
a8170e5e
AK
322 hwaddr pci_hole_start,
323 hwaddr pci_hole_size,
324 hwaddr pci_hole64_start,
325 hwaddr pci_hole64_size,
ae0a5466
AK
326 MemoryRegion *pci_memory, MemoryRegion *ram_memory)
327
41445300
AP
328{
329 PCIBus *b;
330
57a0f0c6
DW
331 b = i440fx_common_init(TYPE_I440FX_PCI_DEVICE, pi440fx_state,
332 piix3_devfn, isa_bus, pic,
ae0a5466
AK
333 address_space_mem, address_space_io, ram_size,
334 pci_hole_start, pci_hole_size,
d50c6c8b 335 pci_hole64_start, pci_hole64_size,
ae0a5466 336 pci_memory, ram_memory);
41445300
AP
337 return b;
338}
339
502a5395 340/* PIIX3 PCI to ISA bridge */
ab431c28
IY
341static void piix3_set_irq_pic(PIIX3State *piix3, int pic_irq)
342{
343 qemu_set_irq(piix3->pic[pic_irq],
344 !!(piix3->pic_levels &
09de0f46 345 (((1ULL << PIIX_NUM_PIRQS) - 1) <<
ab431c28
IY
346 (pic_irq * PIIX_NUM_PIRQS))));
347}
502a5395 348
afe3ef1d 349static void piix3_set_irq_level(PIIX3State *piix3, int pirq, int level)
ab431c28
IY
350{
351 int pic_irq;
352 uint64_t mask;
353
354 pic_irq = piix3->dev.config[PIIX_PIRQC + pirq];
355 if (pic_irq >= PIIX_NUM_PIC_IRQS) {
356 return;
357 }
358
359 mask = 1ULL << ((pic_irq * PIIX_NUM_PIRQS) + pirq);
360 piix3->pic_levels &= ~mask;
361 piix3->pic_levels |= mask * !!level;
362
afe3ef1d 363 piix3_set_irq_pic(piix3, pic_irq);
ab431c28
IY
364}
365
366static void piix3_set_irq(void *opaque, int pirq, int level)
502a5395 367{
7cd9eee0 368 PIIX3State *piix3 = opaque;
afe3ef1d 369 piix3_set_irq_level(piix3, pirq, level);
ab431c28 370}
502a5395 371
3afa9bb4
MT
372static PCIINTxRoute piix3_route_intx_pin_to_irq(void *opaque, int pin)
373{
374 PIIX3State *piix3 = opaque;
375 int irq = piix3->dev.config[PIIX_PIRQC + pin];
376 PCIINTxRoute route;
377
378 if (irq < PIIX_NUM_PIC_IRQS) {
379 route.mode = PCI_INTX_ENABLED;
380 route.irq = irq;
381 } else {
382 route.mode = PCI_INTX_DISABLED;
383 route.irq = -1;
384 }
385 return route;
386}
387
ab431c28
IY
388/* irq routing is changed. so rebuild bitmap */
389static void piix3_update_irq_levels(PIIX3State *piix3)
390{
391 int pirq;
392
393 piix3->pic_levels = 0;
394 for (pirq = 0; pirq < PIIX_NUM_PIRQS; pirq++) {
395 piix3_set_irq_level(piix3, pirq,
afe3ef1d 396 pci_bus_get_irq_level(piix3->dev.bus, pirq));
ab431c28
IY
397 }
398}
399
400static void piix3_write_config(PCIDevice *dev,
401 uint32_t address, uint32_t val, int len)
402{
403 pci_default_write_config(dev, address, val, len);
404 if (ranges_overlap(address, len, PIIX_PIRQC, 4)) {
405 PIIX3State *piix3 = DO_UPCAST(PIIX3State, dev, dev);
406 int pic_irq;
0ae16251
JK
407
408 pci_bus_fire_intx_routing_notifier(piix3->dev.bus);
ab431c28
IY
409 piix3_update_irq_levels(piix3);
410 for (pic_irq = 0; pic_irq < PIIX_NUM_PIC_IRQS; pic_irq++) {
411 piix3_set_irq_pic(piix3, pic_irq);
d2b59317 412 }
502a5395
PB
413 }
414}
415
bf09551a
SS
416static void piix3_write_config_xen(PCIDevice *dev,
417 uint32_t address, uint32_t val, int len)
418{
419 xen_piix_pci_write_config_client(address, val, len);
420 piix3_write_config(dev, address, val, len);
421}
422
15a1956a 423static void piix3_reset(void *opaque)
502a5395 424{
fd37d881
JQ
425 PIIX3State *d = opaque;
426 uint8_t *pci_conf = d->dev.config;
502a5395 427
c9721215 428 pci_conf[0x04] = 0x07; /* master, memory and I/O */
502a5395
PB
429 pci_conf[0x05] = 0x00;
430 pci_conf[0x06] = 0x00;
c9721215 431 pci_conf[0x07] = 0x02; /* PCI_status_devsel_medium */
502a5395
PB
432 pci_conf[0x4c] = 0x4d;
433 pci_conf[0x4e] = 0x03;
434 pci_conf[0x4f] = 0x00;
435 pci_conf[0x60] = 0x80;
477afee3
AJ
436 pci_conf[0x61] = 0x80;
437 pci_conf[0x62] = 0x80;
438 pci_conf[0x63] = 0x80;
502a5395
PB
439 pci_conf[0x69] = 0x02;
440 pci_conf[0x70] = 0x80;
441 pci_conf[0x76] = 0x0c;
442 pci_conf[0x77] = 0x0c;
443 pci_conf[0x78] = 0x02;
444 pci_conf[0x79] = 0x00;
445 pci_conf[0x80] = 0x00;
446 pci_conf[0x82] = 0x00;
447 pci_conf[0xa0] = 0x08;
502a5395
PB
448 pci_conf[0xa2] = 0x00;
449 pci_conf[0xa3] = 0x00;
450 pci_conf[0xa4] = 0x00;
451 pci_conf[0xa5] = 0x00;
452 pci_conf[0xa6] = 0x00;
453 pci_conf[0xa7] = 0x00;
454 pci_conf[0xa8] = 0x0f;
455 pci_conf[0xaa] = 0x00;
456 pci_conf[0xab] = 0x00;
457 pci_conf[0xac] = 0x00;
458 pci_conf[0xae] = 0x00;
ab431c28
IY
459
460 d->pic_levels = 0;
1ec4ba74 461 d->rcr = 0;
ab431c28
IY
462}
463
464static int piix3_post_load(void *opaque, int version_id)
465{
466 PIIX3State *piix3 = opaque;
467 piix3_update_irq_levels(piix3);
468 return 0;
e735b55a 469}
15a1956a 470
e735b55a
IY
471static void piix3_pre_save(void *opaque)
472{
473 int i;
474 PIIX3State *piix3 = opaque;
475
476 for (i = 0; i < ARRAY_SIZE(piix3->pci_irq_levels_vmstate); i++) {
477 piix3->pci_irq_levels_vmstate[i] =
478 pci_bus_get_irq_level(piix3->dev.bus, i);
479 }
502a5395
PB
480}
481
1ec4ba74
LE
482static bool piix3_rcr_needed(void *opaque)
483{
484 PIIX3State *piix3 = opaque;
485
486 return (piix3->rcr != 0);
487}
488
489static const VMStateDescription vmstate_piix3_rcr = {
490 .name = "PIIX3/rcr",
491 .version_id = 1,
492 .minimum_version_id = 1,
493 .fields = (VMStateField []) {
494 VMSTATE_UINT8(rcr, PIIX3State),
495 VMSTATE_END_OF_LIST()
496 }
497};
498
d1f171bd
JQ
499static const VMStateDescription vmstate_piix3 = {
500 .name = "PIIX3",
501 .version_id = 3,
502 .minimum_version_id = 2,
503 .minimum_version_id_old = 2,
ab431c28 504 .post_load = piix3_post_load,
e735b55a 505 .pre_save = piix3_pre_save,
1ec4ba74 506 .fields = (VMStateField[]) {
d1f171bd 507 VMSTATE_PCI_DEVICE(dev, PIIX3State),
e735b55a
IY
508 VMSTATE_INT32_ARRAY_V(pci_irq_levels_vmstate, PIIX3State,
509 PIIX_NUM_PIRQS, 3),
d1f171bd 510 VMSTATE_END_OF_LIST()
1ec4ba74
LE
511 },
512 .subsections = (VMStateSubsection[]) {
513 {
514 .vmsd = &vmstate_piix3_rcr,
515 .needed = piix3_rcr_needed,
516 },
517 { 0 }
518 }
519};
520
521
522static void rcr_write(void *opaque, hwaddr addr, uint64_t val, unsigned len)
523{
524 PIIX3State *d = opaque;
525
526 if (val & 4) {
527 qemu_system_reset_request();
528 return;
da64182c 529 }
1ec4ba74
LE
530 d->rcr = val & 2; /* keep System Reset type only */
531}
532
533static uint64_t rcr_read(void *opaque, hwaddr addr, unsigned len)
534{
535 PIIX3State *d = opaque;
536
537 return d->rcr;
538}
539
540static const MemoryRegionOps rcr_ops = {
541 .read = rcr_read,
542 .write = rcr_write,
543 .endianness = DEVICE_LITTLE_ENDIAN
d1f171bd 544};
1941d19c 545
fd37d881 546static int piix3_initfn(PCIDevice *dev)
502a5395 547{
fd37d881 548 PIIX3State *d = DO_UPCAST(PIIX3State, dev, dev);
502a5395 549
d93a8a43 550 isa_bus_new(DEVICE(d), pci_address_space_io(dev));
1ec4ba74 551
40c5dce9
PB
552 memory_region_init_io(&d->rcr_mem, OBJECT(dev), &rcr_ops, d,
553 "piix3-reset-control", 1);
1ec4ba74
LE
554 memory_region_add_subregion_overlap(pci_address_space_io(dev), RCR_IOPORT,
555 &d->rcr_mem, 1);
556
a08d4367 557 qemu_register_reset(piix3_reset, d);
81a322d4 558 return 0;
502a5395 559}
5c2b87e3 560
40021f08
AL
561static void piix3_class_init(ObjectClass *klass, void *data)
562{
39bffca2 563 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
564 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
565
39bffca2
AL
566 dc->desc = "ISA bridge";
567 dc->vmsd = &vmstate_piix3;
568 dc->no_user = 1,
40021f08
AL
569 k->no_hotplug = 1;
570 k->init = piix3_initfn;
571 k->config_write = piix3_write_config;
572 k->vendor_id = PCI_VENDOR_ID_INTEL;
c9721215
DW
573 /* 82371SB PIIX3 PCI-to-ISA bridge (Step A1) */
574 k->device_id = PCI_DEVICE_ID_INTEL_82371SB_0;
40021f08
AL
575 k->class_id = PCI_CLASS_BRIDGE_ISA;
576}
577
4240abff 578static const TypeInfo piix3_info = {
39bffca2
AL
579 .name = "PIIX3",
580 .parent = TYPE_PCI_DEVICE,
581 .instance_size = sizeof(PIIX3State),
582 .class_init = piix3_class_init,
e855761c
AL
583};
584
40021f08
AL
585static void piix3_xen_class_init(ObjectClass *klass, void *data)
586{
39bffca2 587 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
588 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
589
39bffca2
AL
590 dc->desc = "ISA bridge";
591 dc->vmsd = &vmstate_piix3;
592 dc->no_user = 1;
40021f08
AL
593 k->no_hotplug = 1;
594 k->init = piix3_initfn;
595 k->config_write = piix3_write_config_xen;
596 k->vendor_id = PCI_VENDOR_ID_INTEL;
c9721215
DW
597 /* 82371SB PIIX3 PCI-to-ISA bridge (Step A1) */
598 k->device_id = PCI_DEVICE_ID_INTEL_82371SB_0;
40021f08 599 k->class_id = PCI_CLASS_BRIDGE_ISA;
e855761c
AL
600};
601
4240abff 602static const TypeInfo piix3_xen_info = {
39bffca2
AL
603 .name = "PIIX3-xen",
604 .parent = TYPE_PCI_DEVICE,
605 .instance_size = sizeof(PIIX3State),
606 .class_init = piix3_xen_class_init,
40021f08
AL
607};
608
609static void i440fx_class_init(ObjectClass *klass, void *data)
610{
39bffca2 611 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
612 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
613
614 k->no_hotplug = 1;
615 k->init = i440fx_initfn;
616 k->config_write = i440fx_write_config;
617 k->vendor_id = PCI_VENDOR_ID_INTEL;
618 k->device_id = PCI_DEVICE_ID_INTEL_82441;
619 k->revision = 0x02;
620 k->class_id = PCI_CLASS_BRIDGE_HOST;
39bffca2
AL
621 dc->desc = "Host bridge";
622 dc->no_user = 1;
623 dc->vmsd = &vmstate_i440fx;
40021f08
AL
624}
625
4240abff 626static const TypeInfo i440fx_info = {
57a0f0c6 627 .name = TYPE_I440FX_PCI_DEVICE,
39bffca2
AL
628 .parent = TYPE_PCI_DEVICE,
629 .instance_size = sizeof(PCII440FXState),
630 .class_init = i440fx_class_init,
8a14daa5
GH
631};
632
568f0690
DG
633static const char *i440fx_pcihost_root_bus_path(PCIHostState *host_bridge,
634 PCIBus *rootbus)
635{
636 /* For backwards compat with old device paths */
637 return "0000";
638}
639
999e12bb
AL
640static void i440fx_pcihost_class_init(ObjectClass *klass, void *data)
641{
39bffca2 642 DeviceClass *dc = DEVICE_CLASS(klass);
999e12bb 643 SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);
568f0690 644 PCIHostBridgeClass *hc = PCI_HOST_BRIDGE_CLASS(klass);
999e12bb 645
568f0690 646 hc->root_bus_path = i440fx_pcihost_root_bus_path;
999e12bb 647 k->init = i440fx_pcihost_initfn;
39bffca2
AL
648 dc->fw_name = "pci";
649 dc->no_user = 1;
999e12bb
AL
650}
651
4240abff 652static const TypeInfo i440fx_pcihost_info = {
39bffca2 653 .name = "i440FX-pcihost",
8558d942 654 .parent = TYPE_PCI_HOST_BRIDGE,
39bffca2
AL
655 .instance_size = sizeof(I440FXState),
656 .class_init = i440fx_pcihost_class_init,
8a14daa5
GH
657};
658
83f7d43a 659static void i440fx_register_types(void)
8a14daa5 660{
39bffca2
AL
661 type_register_static(&i440fx_info);
662 type_register_static(&piix3_info);
663 type_register_static(&piix3_xen_info);
664 type_register_static(&i440fx_pcihost_info);
8a14daa5 665}
83f7d43a
AF
666
667type_init(i440fx_register_types)