2 * QEMU PIIX4 PCI Bridge Emulation
4 * Copyright (c) 2006 Fabrice Bellard
5 * Copyright (c) 2018 Hervé Poussineau
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #include "qemu/osdep.h"
27 #include "qapi/error.h"
29 #include "hw/southbridge/piix.h"
30 #include "hw/pci/pci.h"
31 #include "hw/isa/isa.h"
32 #include "hw/sysbus.h"
33 #include "hw/intc/i8259.h"
34 #include "hw/dma/i8257.h"
35 #include "hw/timer/i8254.h"
36 #include "hw/rtc/mc146818rtc.h"
37 #include "hw/ide/pci.h"
38 #include "migration/vmstate.h"
39 #include "sysemu/reset.h"
40 #include "sysemu/runstate.h"
44 typedef struct PIIX4State
{
50 /* Reset Control Register */
55 #define PIIX4_PCI_DEVICE(obj) \
56 OBJECT_CHECK(PIIX4State, (obj), TYPE_PIIX4_PCI_DEVICE)
58 static void piix4_isa_reset(DeviceState
*dev
)
60 PIIX4State
*d
= PIIX4_PCI_DEVICE(dev
);
61 uint8_t *pci_conf
= d
->dev
.config
;
63 pci_conf
[0x04] = 0x07; // master, memory and I/O
64 pci_conf
[0x05] = 0x00;
65 pci_conf
[0x06] = 0x00;
66 pci_conf
[0x07] = 0x02; // PCI_status_devsel_medium
67 pci_conf
[0x4c] = 0x4d;
68 pci_conf
[0x4e] = 0x03;
69 pci_conf
[0x4f] = 0x00;
70 pci_conf
[0x60] = 0x0a; // PCI A -> IRQ 10
71 pci_conf
[0x61] = 0x0a; // PCI B -> IRQ 10
72 pci_conf
[0x62] = 0x0b; // PCI C -> IRQ 11
73 pci_conf
[0x63] = 0x0b; // PCI D -> IRQ 11
74 pci_conf
[0x69] = 0x02;
75 pci_conf
[0x70] = 0x80;
76 pci_conf
[0x76] = 0x0c;
77 pci_conf
[0x77] = 0x0c;
78 pci_conf
[0x78] = 0x02;
79 pci_conf
[0x79] = 0x00;
80 pci_conf
[0x80] = 0x00;
81 pci_conf
[0x82] = 0x00;
82 pci_conf
[0xa0] = 0x08;
83 pci_conf
[0xa2] = 0x00;
84 pci_conf
[0xa3] = 0x00;
85 pci_conf
[0xa4] = 0x00;
86 pci_conf
[0xa5] = 0x00;
87 pci_conf
[0xa6] = 0x00;
88 pci_conf
[0xa7] = 0x00;
89 pci_conf
[0xa8] = 0x0f;
90 pci_conf
[0xaa] = 0x00;
91 pci_conf
[0xab] = 0x00;
92 pci_conf
[0xac] = 0x00;
93 pci_conf
[0xae] = 0x00;
96 static const VMStateDescription vmstate_piix4
= {
99 .minimum_version_id
= 2,
100 .fields
= (VMStateField
[]) {
101 VMSTATE_PCI_DEVICE(dev
, PIIX4State
),
102 VMSTATE_END_OF_LIST()
106 static void piix4_request_i8259_irq(void *opaque
, int irq
, int level
)
108 PIIX4State
*s
= opaque
;
109 qemu_set_irq(s
->cpu_intr
, level
);
112 static void piix4_set_i8259_irq(void *opaque
, int irq
, int level
)
114 PIIX4State
*s
= opaque
;
115 qemu_set_irq(s
->isa
[irq
], level
);
118 static void piix4_rcr_write(void *opaque
, hwaddr addr
, uint64_t val
,
121 PIIX4State
*s
= opaque
;
124 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET
);
128 s
->rcr
= val
& 2; /* keep System Reset type only */
131 static uint64_t piix4_rcr_read(void *opaque
, hwaddr addr
, unsigned int len
)
133 PIIX4State
*s
= opaque
;
138 static const MemoryRegionOps piix4_rcr_ops
= {
139 .read
= piix4_rcr_read
,
140 .write
= piix4_rcr_write
,
141 .endianness
= DEVICE_LITTLE_ENDIAN
,
143 .min_access_size
= 1,
144 .max_access_size
= 1,
148 static void piix4_realize(PCIDevice
*dev
, Error
**errp
)
150 PIIX4State
*s
= PIIX4_PCI_DEVICE(dev
);
152 qemu_irq
*i8259_out_irq
;
155 isa_bus
= isa_bus_new(DEVICE(dev
), pci_address_space(dev
),
156 pci_address_space_io(dev
), errp
);
161 qdev_init_gpio_in_named(DEVICE(dev
), piix4_set_i8259_irq
,
162 "isa", ISA_NUM_IRQS
);
163 qdev_init_gpio_out_named(DEVICE(dev
), &s
->cpu_intr
,
166 memory_region_init_io(&s
->rcr_mem
, OBJECT(dev
), &piix4_rcr_ops
, s
,
168 memory_region_add_subregion_overlap(pci_address_space_io(dev
),
169 PIIX_RCR_IOPORT
, &s
->rcr_mem
, 1);
171 /* initialize i8259 pic */
172 i8259_out_irq
= qemu_allocate_irqs(piix4_request_i8259_irq
, s
, 1);
173 s
->isa
= i8259_init(isa_bus
, *i8259_out_irq
);
175 /* initialize ISA irqs */
176 isa_bus_irqs(isa_bus
, s
->isa
);
179 i8254_pit_init(isa_bus
, 0x40, 0, NULL
);
182 i8257_dma_init(isa_bus
, 0);
185 qdev_set_parent_bus(DEVICE(&s
->rtc
), BUS(isa_bus
));
186 qdev_prop_set_int32(DEVICE(&s
->rtc
), "base_year", 2000);
187 object_property_set_bool(OBJECT(&s
->rtc
), true, "realized", &err
);
189 error_propagate(errp
, err
);
192 isa_init_irq(ISA_DEVICE(&s
->rtc
), &s
->rtc
.irq
, RTC_ISA_IRQ
);
197 static void piix4_init(Object
*obj
)
199 PIIX4State
*s
= PIIX4_PCI_DEVICE(obj
);
201 object_initialize(&s
->rtc
, sizeof(s
->rtc
), TYPE_MC146818_RTC
);
204 static void piix4_class_init(ObjectClass
*klass
, void *data
)
206 DeviceClass
*dc
= DEVICE_CLASS(klass
);
207 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
209 k
->realize
= piix4_realize
;
210 k
->vendor_id
= PCI_VENDOR_ID_INTEL
;
211 k
->device_id
= PCI_DEVICE_ID_INTEL_82371AB_0
;
212 k
->class_id
= PCI_CLASS_BRIDGE_ISA
;
213 dc
->reset
= piix4_isa_reset
;
214 dc
->desc
= "ISA bridge";
215 dc
->vmsd
= &vmstate_piix4
;
217 * Reason: part of PIIX4 southbridge, needs to be wired up,
218 * e.g. by mips_malta_init()
220 dc
->user_creatable
= false;
221 dc
->hotpluggable
= false;
224 static const TypeInfo piix4_info
= {
225 .name
= TYPE_PIIX4_PCI_DEVICE
,
226 .parent
= TYPE_PCI_DEVICE
,
227 .instance_size
= sizeof(PIIX4State
),
228 .instance_init
= piix4_init
,
229 .class_init
= piix4_class_init
,
230 .interfaces
= (InterfaceInfo
[]) {
231 { INTERFACE_CONVENTIONAL_PCI_DEVICE
},
236 static void piix4_register_types(void)
238 type_register_static(&piix4_info
);
241 type_init(piix4_register_types
)
243 DeviceState
*piix4_create(PCIBus
*pci_bus
, ISABus
**isa_bus
, I2CBus
**smbus
)
247 int devfn
= PCI_DEVFN(10, 0);
249 pci
= pci_create_simple_multifunction(pci_bus
, devfn
, true,
250 TYPE_PIIX4_PCI_DEVICE
);
253 *isa_bus
= ISA_BUS(qdev_get_child_bus(dev
, "isa.0"));
256 pci
= pci_create_simple(pci_bus
, devfn
+ 1, "piix4-ide");
257 pci_ide_create_devs(pci
);
259 pci_create_simple(pci_bus
, devfn
+ 2, "piix4-usb-uhci");
261 *smbus
= piix4_pm_init(pci_bus
, devfn
+ 3, 0x1100,
262 isa_get_irq(NULL
, 9), NULL
, 0, NULL
);