]> git.proxmox.com Git - mirror_qemu.git/blame - hw/isa/piix4.c
qdev: Use returned bool to check for qdev_realize() etc. failure
[mirror_qemu.git] / hw / isa / piix4.c
CommitLineData
823e675a
JQ
1/*
2 * QEMU PIIX4 PCI Bridge Emulation
3 *
4 * Copyright (c) 2006 Fabrice Bellard
5790b757 5 * Copyright (c) 2018 Hervé Poussineau
823e675a
JQ
6 *
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:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
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
23 * THE SOFTWARE.
24 */
25
b6a0aa05 26#include "qemu/osdep.h"
fff123b8 27#include "qapi/error.h"
078778c5 28#include "hw/irq.h"
e29f2379 29#include "hw/southbridge/piix.h"
83c9f4ca 30#include "hw/pci/pci.h"
0d09e41a 31#include "hw/isa/isa.h"
83c9f4ca 32#include "hw/sysbus.h"
852c27e2 33#include "hw/intc/i8259.h"
135bfcc1 34#include "hw/dma/i8257.h"
f9b3cd56 35#include "hw/timer/i8254.h"
fff123b8 36#include "hw/rtc/mc146818rtc.h"
f42b65b8 37#include "hw/ide/pci.h"
d6454270 38#include "migration/vmstate.h"
5790b757
HP
39#include "sysemu/reset.h"
40#include "sysemu/runstate.h"
823e675a
JQ
41
42PCIDevice *piix4_dev;
43
1fc7cee0
JQ
44typedef struct PIIX4State {
45 PCIDevice dev;
078778c5
HP
46 qemu_irq cpu_intr;
47 qemu_irq *isa;
5790b757 48
fff123b8 49 RTCState rtc;
5790b757
HP
50 /* Reset Control Register */
51 MemoryRegion rcr_mem;
52 uint8_t rcr;
1fc7cee0
JQ
53} PIIX4State;
54
acff3e48
GA
55#define PIIX4_PCI_DEVICE(obj) \
56 OBJECT_CHECK(PIIX4State, (obj), TYPE_PIIX4_PCI_DEVICE)
57
fd52c20f 58static void piix4_isa_reset(DeviceState *dev)
823e675a 59{
fd52c20f 60 PIIX4State *d = PIIX4_PCI_DEVICE(dev);
1fc7cee0 61 uint8_t *pci_conf = d->dev.config;
823e675a
JQ
62
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;
94}
95
9039d78e
JQ
96static const VMStateDescription vmstate_piix4 = {
97 .name = "PIIX4",
98 .version_id = 2,
99 .minimum_version_id = 2,
d49805ae 100 .fields = (VMStateField[]) {
9039d78e
JQ
101 VMSTATE_PCI_DEVICE(dev, PIIX4State),
102 VMSTATE_END_OF_LIST()
103 }
104};
823e675a 105
078778c5
HP
106static void piix4_request_i8259_irq(void *opaque, int irq, int level)
107{
108 PIIX4State *s = opaque;
109 qemu_set_irq(s->cpu_intr, level);
110}
111
112static void piix4_set_i8259_irq(void *opaque, int irq, int level)
113{
114 PIIX4State *s = opaque;
115 qemu_set_irq(s->isa[irq], level);
116}
117
5790b757
HP
118static void piix4_rcr_write(void *opaque, hwaddr addr, uint64_t val,
119 unsigned int len)
120{
121 PIIX4State *s = opaque;
122
123 if (val & 4) {
124 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET);
125 return;
126 }
127
128 s->rcr = val & 2; /* keep System Reset type only */
129}
130
131static uint64_t piix4_rcr_read(void *opaque, hwaddr addr, unsigned int len)
132{
133 PIIX4State *s = opaque;
134
135 return s->rcr;
136}
137
138static const MemoryRegionOps piix4_rcr_ops = {
139 .read = piix4_rcr_read,
140 .write = piix4_rcr_write,
141 .endianness = DEVICE_LITTLE_ENDIAN,
142 .impl = {
143 .min_access_size = 1,
144 .max_access_size = 1,
145 },
146};
147
9af21dbe 148static void piix4_realize(PCIDevice *dev, Error **errp)
823e675a 149{
5790b757 150 PIIX4State *s = PIIX4_PCI_DEVICE(dev);
078778c5
HP
151 ISABus *isa_bus;
152 qemu_irq *i8259_out_irq;
fff123b8 153 Error *err = NULL;
823e675a 154
078778c5
HP
155 isa_bus = isa_bus_new(DEVICE(dev), pci_address_space(dev),
156 pci_address_space_io(dev), errp);
157 if (!isa_bus) {
d10e5432
MA
158 return;
159 }
5790b757 160
078778c5
HP
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,
164 "intr", 1);
165
5790b757
HP
166 memory_region_init_io(&s->rcr_mem, OBJECT(dev), &piix4_rcr_ops, s,
167 "reset-control", 1);
168 memory_region_add_subregion_overlap(pci_address_space_io(dev),
0063454a 169 PIIX_RCR_IOPORT, &s->rcr_mem, 1);
5790b757 170
078778c5
HP
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);
823e675a 174
078778c5
HP
175 /* initialize ISA irqs */
176 isa_bus_irqs(isa_bus, s->isa);
823e675a 177
f9b3cd56
HP
178 /* initialize pit */
179 i8254_pit_init(isa_bus, 0x40, 0, NULL);
180
135bfcc1
HP
181 /* DMA */
182 i8257_dma_init(isa_bus, 0);
183
fff123b8 184 /* RTC */
fff123b8 185 qdev_prop_set_int32(DEVICE(&s->rtc), "base_year", 2000);
118bfd76 186 if (!qdev_realize(DEVICE(&s->rtc), BUS(isa_bus), &err)) {
fff123b8
PMD
187 error_propagate(errp, err);
188 return;
189 }
190 isa_init_irq(ISA_DEVICE(&s->rtc), &s->rtc.irq, RTC_ISA_IRQ);
191
078778c5 192 piix4_dev = dev;
823e675a
JQ
193}
194
fff123b8
PMD
195static void piix4_init(Object *obj)
196{
197 PIIX4State *s = PIIX4_PCI_DEVICE(obj);
198
199 object_initialize(&s->rtc, sizeof(s->rtc), TYPE_MC146818_RTC);
200}
201
40021f08
AL
202static void piix4_class_init(ObjectClass *klass, void *data)
203{
39bffca2 204 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
205 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
206
9af21dbe 207 k->realize = piix4_realize;
40021f08
AL
208 k->vendor_id = PCI_VENDOR_ID_INTEL;
209 k->device_id = PCI_DEVICE_ID_INTEL_82371AB_0;
210 k->class_id = PCI_CLASS_BRIDGE_ISA;
fd52c20f 211 dc->reset = piix4_isa_reset;
39bffca2 212 dc->desc = "ISA bridge";
39bffca2 213 dc->vmsd = &vmstate_piix4;
81aab2ff
MA
214 /*
215 * Reason: part of PIIX4 southbridge, needs to be wired up,
216 * e.g. by mips_malta_init()
217 */
e90f2a8c 218 dc->user_creatable = false;
2897ae02 219 dc->hotpluggable = false;
40021f08
AL
220}
221
8c43a6f0 222static const TypeInfo piix4_info = {
acff3e48 223 .name = TYPE_PIIX4_PCI_DEVICE,
39bffca2
AL
224 .parent = TYPE_PCI_DEVICE,
225 .instance_size = sizeof(PIIX4State),
fff123b8 226 .instance_init = piix4_init,
39bffca2 227 .class_init = piix4_class_init,
fd3b02c8
EH
228 .interfaces = (InterfaceInfo[]) {
229 { INTERFACE_CONVENTIONAL_PCI_DEVICE },
230 { },
231 },
823e675a
JQ
232};
233
83f7d43a 234static void piix4_register_types(void)
823e675a 235{
39bffca2 236 type_register_static(&piix4_info);
823e675a 237}
83f7d43a
AF
238
239type_init(piix4_register_types)
e29f2379 240
be1765f3 241DeviceState *piix4_create(PCIBus *pci_bus, ISABus **isa_bus, I2CBus **smbus)
e29f2379 242{
e29f2379
PMD
243 PCIDevice *pci;
244 DeviceState *dev;
902283c1 245 int devfn = PCI_DEVFN(10, 0);
e29f2379 246
902283c1
BZ
247 pci = pci_create_simple_multifunction(pci_bus, devfn, true,
248 TYPE_PIIX4_PCI_DEVICE);
e29f2379
PMD
249 dev = DEVICE(pci);
250 if (isa_bus) {
251 *isa_bus = ISA_BUS(qdev_get_child_bus(dev, "isa.0"));
252 }
253
f42b65b8 254 pci = pci_create_simple(pci_bus, devfn + 1, "piix4-ide");
be1765f3 255 pci_ide_create_devs(pci);
902283c1
BZ
256
257 pci_create_simple(pci_bus, devfn + 2, "piix4-usb-uhci");
e29f2379 258 if (smbus) {
902283c1 259 *smbus = piix4_pm_init(pci_bus, devfn + 3, 0x1100,
e29f2379
PMD
260 isa_get_irq(NULL, 9), NULL, 0, NULL);
261 }
262
263 return dev;
264}