]> git.proxmox.com Git - mirror_qemu.git/blame - hw/acpi/piix4.c
accel: Move Xen accelerator code under accel/xen/
[mirror_qemu.git] / hw / acpi / piix4.c
CommitLineData
93d89f63
IY
1/*
2 * ACPI implementation
3 *
4 * Copyright (c) 2006 Fabrice Bellard
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License version 2 as published by the Free Software Foundation.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, see <http://www.gnu.org/licenses/>
6b620ca3
PB
17 *
18 * Contributions after 2012-01-13 are licensed under the terms of the
19 * GNU GPL, version 2 or (at your option) any later version.
93d89f63 20 */
71e8a915 21
b6a0aa05 22#include "qemu/osdep.h"
0d09e41a 23#include "hw/i386/pc.h"
fff123b8 24#include "hw/southbridge/piix.h"
64552b6b 25#include "hw/irq.h"
0d09e41a
PB
26#include "hw/isa/apm.h"
27#include "hw/i2c/pm_smbus.h"
83c9f4ca 28#include "hw/pci/pci.h"
a27bd6c7 29#include "hw/qdev-properties.h"
0d09e41a 30#include "hw/acpi/acpi.h"
54d31236 31#include "sysemu/runstate.h"
9c17d615 32#include "sysemu/sysemu.h"
da278d58 33#include "sysemu/xen.h"
da34e65c 34#include "qapi/error.h"
1de7afc9 35#include "qemu/range.h"
022c62cb 36#include "exec/address-spaces.h"
9e047b98 37#include "hw/acpi/pcihp.h"
81cea5e7 38#include "hw/acpi/cpu_hotplug.h"
5e1b5d93 39#include "hw/acpi/cpu.h"
c24d5e0b 40#include "hw/hotplug.h"
34774320 41#include "hw/mem/pc-dimm.h"
132a908b 42#include "hw/mem/nvdimm.h"
34774320 43#include "hw/acpi/memory_hotplug.h"
43f50410 44#include "hw/acpi/acpi_dev_interface.h"
d6454270 45#include "migration/vmstate.h"
2e5b09fd 46#include "hw/core/cpu.h"
b37d56ec 47#include "trace.h"
50d8ff8b 48
ac404095 49#define GPE_BASE 0xafe0
23910d3f 50#define GPE_LEN 4
c177684c 51
ac404095 52struct pci_status {
7faa8075 53 uint32_t up; /* deprecated, maintained for migration compatibility */
ac404095
IY
54 uint32_t down;
55};
56
93d89f63 57typedef struct PIIX4PMState {
6a6b5580
AF
58 /*< private >*/
59 PCIDevice parent_obj;
60 /*< public >*/
56e5b2a1 61
af11110b 62 MemoryRegion io;
277e9340
MT
63 uint32_t io_base;
64
b65b93f2 65 MemoryRegion io_gpe;
355bf2e5 66 ACPIREGS ar;
93d89f63
IY
67
68 APMState apm;
69
93d89f63 70 PMSMBus smb;
e8ec0571 71 uint32_t smb_io_base;
93d89f63
IY
72
73 qemu_irq irq;
93d89f63 74 qemu_irq smi_irq;
61e66c62 75 int smm_enabled;
6141dbfe 76 Notifier machine_ready;
d010f91c 77 Notifier powerdown_notifier;
ac404095 78
9e047b98
MT
79 AcpiPciHpState acpi_pci_hotplug;
80 bool use_acpi_pci_hotplug;
81
459ae5ea
GN
82 uint8_t disable_s3;
83 uint8_t disable_s4;
84 uint8_t s4_val;
b8622725 85
16bcab97 86 bool cpu_hotplug_legacy;
81cea5e7 87 AcpiCpuHotplug gpe_cpu;
5e1b5d93 88 CPUHotplugState cpuhp_state;
34774320
IM
89
90 MemHotplugState acpi_memory_hotplug;
93d89f63
IY
91} PIIX4PMState;
92
74e445f6
PC
93#define PIIX4_PM(obj) \
94 OBJECT_CHECK(PIIX4PMState, (obj), TYPE_PIIX4_PM)
95
56e5b2a1
GH
96static void piix4_acpi_system_hot_add_init(MemoryRegion *parent,
97 PCIBus *bus, PIIX4PMState *s);
ac404095 98
93d89f63
IY
99#define ACPI_ENABLE 0xf1
100#define ACPI_DISABLE 0xf0
101
355bf2e5 102static void pm_tmr_timer(ACPIREGS *ar)
93d89f63 103{
355bf2e5 104 PIIX4PMState *s = container_of(ar, PIIX4PMState, ar);
06313503 105 acpi_update_sci(&s->ar, s->irq);
93d89f63
IY
106}
107
93d89f63
IY
108static void apm_ctrl_changed(uint32_t val, void *arg)
109{
110 PIIX4PMState *s = arg;
6a6b5580 111 PCIDevice *d = PCI_DEVICE(s);
93d89f63
IY
112
113 /* ACPI specs 3.0, 4.7.2.5 */
355bf2e5 114 acpi_pm1_cnt_update(&s->ar, val == ACPI_ENABLE, val == ACPI_DISABLE);
afd6895b
PB
115 if (val == ACPI_ENABLE || val == ACPI_DISABLE) {
116 return;
117 }
93d89f63 118
6a6b5580 119 if (d->config[0x5b] & (1 << 1)) {
93d89f63
IY
120 if (s->smi_irq) {
121 qemu_irq_raise(s->smi_irq);
122 }
123 }
124}
125
93d89f63
IY
126static void pm_io_space_update(PIIX4PMState *s)
127{
6a6b5580 128 PCIDevice *d = PCI_DEVICE(s);
93d89f63 129
277e9340
MT
130 s->io_base = le32_to_cpu(*(uint32_t *)(d->config + 0x40));
131 s->io_base &= 0xffc0;
93d89f63 132
af11110b 133 memory_region_transaction_begin();
6a6b5580 134 memory_region_set_enabled(&s->io, d->config[0x80] & 1);
277e9340 135 memory_region_set_address(&s->io, s->io_base);
af11110b 136 memory_region_transaction_commit();
93d89f63
IY
137}
138
24fe083d
GH
139static void smbus_io_space_update(PIIX4PMState *s)
140{
6a6b5580
AF
141 PCIDevice *d = PCI_DEVICE(s);
142
143 s->smb_io_base = le32_to_cpu(*(uint32_t *)(d->config + 0x90));
24fe083d
GH
144 s->smb_io_base &= 0xffc0;
145
146 memory_region_transaction_begin();
6a6b5580 147 memory_region_set_enabled(&s->smb.io, d->config[0xd2] & 1);
24fe083d
GH
148 memory_region_set_address(&s->smb.io, s->smb_io_base);
149 memory_region_transaction_commit();
93d89f63
IY
150}
151
152static void pm_write_config(PCIDevice *d,
153 uint32_t address, uint32_t val, int len)
154{
155 pci_default_write_config(d, address, val, len);
24fe083d
GH
156 if (range_covers_byte(address, len, 0x80) ||
157 ranges_overlap(address, len, 0x40, 4)) {
93d89f63 158 pm_io_space_update((PIIX4PMState *)d);
24fe083d
GH
159 }
160 if (range_covers_byte(address, len, 0xd2) ||
161 ranges_overlap(address, len, 0x90, 4)) {
162 smbus_io_space_update((PIIX4PMState *)d);
163 }
93d89f63
IY
164}
165
166static int vmstate_acpi_post_load(void *opaque, int version_id)
167{
168 PIIX4PMState *s = opaque;
169
170 pm_io_space_update(s);
2b4e573c 171 smbus_io_space_update(s);
93d89f63
IY
172 return 0;
173}
174
23910d3f
IY
175#define VMSTATE_GPE_ARRAY(_field, _state) \
176 { \
177 .name = (stringify(_field)), \
178 .version_id = 0, \
23910d3f
IY
179 .info = &vmstate_info_uint16, \
180 .size = sizeof(uint16_t), \
b0b873a0 181 .flags = VMS_SINGLE | VMS_POINTER, \
23910d3f
IY
182 .offset = vmstate_offset_pointer(_state, _field, uint8_t), \
183 }
184
4cf3e6f3
AW
185static const VMStateDescription vmstate_gpe = {
186 .name = "gpe",
187 .version_id = 1,
188 .minimum_version_id = 1,
d49805ae 189 .fields = (VMStateField[]) {
23910d3f
IY
190 VMSTATE_GPE_ARRAY(sts, ACPIGPE),
191 VMSTATE_GPE_ARRAY(en, ACPIGPE),
4cf3e6f3
AW
192 VMSTATE_END_OF_LIST()
193 }
194};
195
196static const VMStateDescription vmstate_pci_status = {
197 .name = "pci_status",
198 .version_id = 1,
199 .minimum_version_id = 1,
d49805ae 200 .fields = (VMStateField[]) {
e358edc8
IM
201 VMSTATE_UINT32(up, struct AcpiPciHpPciStatus),
202 VMSTATE_UINT32(down, struct AcpiPciHpPciStatus),
4cf3e6f3
AW
203 VMSTATE_END_OF_LIST()
204 }
205};
206
9e047b98
MT
207static bool vmstate_test_use_acpi_pci_hotplug(void *opaque, int version_id)
208{
209 PIIX4PMState *s = opaque;
210 return s->use_acpi_pci_hotplug;
211}
212
213static bool vmstate_test_no_use_acpi_pci_hotplug(void *opaque, int version_id)
214{
215 PIIX4PMState *s = opaque;
216 return !s->use_acpi_pci_hotplug;
217}
218
f816a62d
IM
219static bool vmstate_test_use_memhp(void *opaque)
220{
221 PIIX4PMState *s = opaque;
222 return s->acpi_memory_hotplug.is_enabled;
223}
224
225static const VMStateDescription vmstate_memhp_state = {
226 .name = "piix4_pm/memhp",
227 .version_id = 1,
228 .minimum_version_id = 1,
229 .minimum_version_id_old = 1,
5cd8cada 230 .needed = vmstate_test_use_memhp,
f816a62d
IM
231 .fields = (VMStateField[]) {
232 VMSTATE_MEMORY_HOTPLUG(acpi_memory_hotplug, PIIX4PMState),
233 VMSTATE_END_OF_LIST()
234 }
235};
236
679dd1a9
IM
237static bool vmstate_test_use_cpuhp(void *opaque)
238{
239 PIIX4PMState *s = opaque;
240 return !s->cpu_hotplug_legacy;
241}
242
243static int vmstate_cpuhp_pre_load(void *opaque)
244{
245 Object *obj = OBJECT(opaque);
246 object_property_set_bool(obj, false, "cpu-hotplug-legacy", &error_abort);
247 return 0;
248}
249
250static const VMStateDescription vmstate_cpuhp_state = {
251 .name = "piix4_pm/cpuhp",
252 .version_id = 1,
253 .minimum_version_id = 1,
254 .minimum_version_id_old = 1,
255 .needed = vmstate_test_use_cpuhp,
256 .pre_load = vmstate_cpuhp_pre_load,
257 .fields = (VMStateField[]) {
258 VMSTATE_CPU_HOTPLUG(cpuhp_state, PIIX4PMState),
259 VMSTATE_END_OF_LIST()
260 }
261};
262
4ab2f2a8
CM
263static bool piix4_vmstate_need_smbus(void *opaque, int version_id)
264{
265 return pm_smbus_vmstate_needed();
266}
267
b0b873a0
MT
268/* qemu-kvm 1.2 uses version 3 but advertised as 2
269 * To support incoming qemu-kvm 1.2 migration, change version_id
270 * and minimum_version_id to 2 below (which breaks migration from
271 * qemu 1.2).
272 *
273 */
93d89f63
IY
274static const VMStateDescription vmstate_acpi = {
275 .name = "piix4_pm",
b0b873a0
MT
276 .version_id = 3,
277 .minimum_version_id = 3,
93d89f63 278 .post_load = vmstate_acpi_post_load,
d49805ae 279 .fields = (VMStateField[]) {
6a6b5580 280 VMSTATE_PCI_DEVICE(parent_obj, PIIX4PMState),
355bf2e5
GH
281 VMSTATE_UINT16(ar.pm1.evt.sts, PIIX4PMState),
282 VMSTATE_UINT16(ar.pm1.evt.en, PIIX4PMState),
283 VMSTATE_UINT16(ar.pm1.cnt.cnt, PIIX4PMState),
93d89f63 284 VMSTATE_STRUCT(apm, PIIX4PMState, 0, vmstate_apm, APMState),
4ab2f2a8
CM
285 VMSTATE_STRUCT_TEST(smb, PIIX4PMState, piix4_vmstate_need_smbus, 3,
286 pmsmb_vmstate, PMSMBus),
e720677e 287 VMSTATE_TIMER_PTR(ar.tmr.timer, PIIX4PMState),
355bf2e5
GH
288 VMSTATE_INT64(ar.tmr.overflow_time, PIIX4PMState),
289 VMSTATE_STRUCT(ar.gpe, PIIX4PMState, 2, vmstate_gpe, ACPIGPE),
e358edc8
IM
290 VMSTATE_STRUCT_TEST(
291 acpi_pci_hotplug.acpi_pcihp_pci_status[ACPI_PCIHP_BSEL_DEFAULT],
292 PIIX4PMState,
293 vmstate_test_no_use_acpi_pci_hotplug,
294 2, vmstate_pci_status,
295 struct AcpiPciHpPciStatus),
9e047b98
MT
296 VMSTATE_PCI_HOTPLUG(acpi_pci_hotplug, PIIX4PMState,
297 vmstate_test_use_acpi_pci_hotplug),
93d89f63 298 VMSTATE_END_OF_LIST()
f816a62d 299 },
5cd8cada
JQ
300 .subsections = (const VMStateDescription*[]) {
301 &vmstate_memhp_state,
679dd1a9 302 &vmstate_cpuhp_state,
5cd8cada 303 NULL
93d89f63
IY
304 }
305};
306
217e8ef9 307static void piix4_pm_reset(DeviceState *dev)
93d89f63 308{
217e8ef9 309 PIIX4PMState *s = PIIX4_PM(dev);
6a6b5580
AF
310 PCIDevice *d = PCI_DEVICE(s);
311 uint8_t *pci_conf = d->config;
93d89f63
IY
312
313 pci_conf[0x58] = 0;
314 pci_conf[0x59] = 0;
315 pci_conf[0x5a] = 0;
316 pci_conf[0x5b] = 0;
317
4d09d37c
GN
318 pci_conf[0x40] = 0x01; /* PM io base read only bit */
319 pci_conf[0x80] = 0;
320
61e66c62 321 if (!s->smm_enabled) {
93d89f63
IY
322 /* Mark SMM as already inited (until KVM supports SMM). */
323 pci_conf[0x5B] = 0x02;
324 }
c046e8c4 325 pm_io_space_update(s);
e358edc8 326 acpi_pcihp_reset(&s->acpi_pci_hotplug);
93d89f63
IY
327}
328
d010f91c 329static void piix4_pm_powerdown_req(Notifier *n, void *opaque)
93d89f63 330{
d010f91c 331 PIIX4PMState *s = container_of(n, PIIX4PMState, powerdown_notifier);
93d89f63 332
355bf2e5
GH
333 assert(s != NULL);
334 acpi_pm1_evt_power_down(&s->ar);
93d89f63
IY
335}
336
ec266f40
DH
337static void piix4_device_pre_plug_cb(HotplugHandler *hotplug_dev,
338 DeviceState *dev, Error **errp)
339{
9040e6df
WY
340 PIIX4PMState *s = PIIX4_PM(hotplug_dev);
341
ec266f40
DH
342 if (object_dynamic_cast(OBJECT(dev), TYPE_PCI_DEVICE)) {
343 acpi_pcihp_device_pre_plug_cb(hotplug_dev, dev, errp);
9040e6df
WY
344 } else if (object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) {
345 if (!s->acpi_memory_hotplug.is_enabled) {
346 error_setg(errp,
347 "memory hotplug is not enabled: %s.memory-hotplug-support "
348 "is not set", object_get_typename(OBJECT(s)));
349 }
350 } else if (
ec266f40
DH
351 !object_dynamic_cast(OBJECT(dev), TYPE_CPU)) {
352 error_setg(errp, "acpi: device pre plug request for not supported"
353 " device type: %s", object_get_typename(OBJECT(dev)));
354 }
355}
356
f1adc360
IM
357static void piix4_device_plug_cb(HotplugHandler *hotplug_dev,
358 DeviceState *dev, Error **errp)
9e047b98 359{
c24d5e0b 360 PIIX4PMState *s = PIIX4_PM(hotplug_dev);
f1adc360 361
9040e6df 362 if (object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) {
75f27498
XG
363 if (object_dynamic_cast(OBJECT(dev), TYPE_NVDIMM)) {
364 nvdimm_acpi_plug_cb(hotplug_dev, dev);
365 } else {
366 acpi_memory_plug_cb(hotplug_dev, &s->acpi_memory_hotplug,
367 dev, errp);
368 }
34774320 369 } else if (object_dynamic_cast(OBJECT(dev), TYPE_PCI_DEVICE)) {
2bed1ba7 370 acpi_pcihp_device_plug_cb(hotplug_dev, &s->acpi_pci_hotplug, dev, errp);
5e1b5d93
IM
371 } else if (object_dynamic_cast(OBJECT(dev), TYPE_CPU)) {
372 if (s->cpu_hotplug_legacy) {
373 legacy_acpi_cpu_plug_cb(hotplug_dev, &s->gpe_cpu, dev, errp);
374 } else {
375 acpi_cpu_plug_cb(hotplug_dev, &s->cpuhp_state, dev, errp);
376 }
f1adc360 377 } else {
ec266f40 378 g_assert_not_reached();
f1adc360 379 }
c24d5e0b 380}
9e047b98 381
14d5a28f
IM
382static void piix4_device_unplug_request_cb(HotplugHandler *hotplug_dev,
383 DeviceState *dev, Error **errp)
c24d5e0b
IM
384{
385 PIIX4PMState *s = PIIX4_PM(hotplug_dev);
f1adc360 386
64fec58e
TC
387 if (s->acpi_memory_hotplug.is_enabled &&
388 object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) {
0058c082 389 acpi_memory_unplug_request_cb(hotplug_dev, &s->acpi_memory_hotplug,
64fec58e
TC
390 dev, errp);
391 } else if (object_dynamic_cast(OBJECT(dev), TYPE_PCI_DEVICE)) {
c97adf3c
DH
392 acpi_pcihp_device_unplug_request_cb(hotplug_dev, &s->acpi_pci_hotplug,
393 dev, errp);
8872c25a
IM
394 } else if (object_dynamic_cast(OBJECT(dev), TYPE_CPU) &&
395 !s->cpu_hotplug_legacy) {
396 acpi_cpu_unplug_request_cb(hotplug_dev, &s->cpuhp_state, dev, errp);
f1adc360
IM
397 } else {
398 error_setg(errp, "acpi: device unplug request for not supported device"
399 " type: %s", object_get_typename(OBJECT(dev)));
400 }
9e047b98
MT
401}
402
c0e57a60
TC
403static void piix4_device_unplug_cb(HotplugHandler *hotplug_dev,
404 DeviceState *dev, Error **errp)
405{
f7d3e29d
TC
406 PIIX4PMState *s = PIIX4_PM(hotplug_dev);
407
408 if (s->acpi_memory_hotplug.is_enabled &&
409 object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) {
410 acpi_memory_unplug_cb(&s->acpi_memory_hotplug, dev, errp);
c97adf3c
DH
411 } else if (object_dynamic_cast(OBJECT(dev), TYPE_PCI_DEVICE)) {
412 acpi_pcihp_device_unplug_cb(hotplug_dev, &s->acpi_pci_hotplug, dev,
413 errp);
8872c25a
IM
414 } else if (object_dynamic_cast(OBJECT(dev), TYPE_CPU) &&
415 !s->cpu_hotplug_legacy) {
416 acpi_cpu_unplug_cb(&s->cpuhp_state, dev, errp);
f7d3e29d
TC
417 } else {
418 error_setg(errp, "acpi: device unplug for not supported device"
419 " type: %s", object_get_typename(OBJECT(dev)));
420 }
c0e57a60
TC
421}
422
9e8dd451 423static void piix4_pm_machine_ready(Notifier *n, void *opaque)
6141dbfe
PB
424{
425 PIIX4PMState *s = container_of(n, PIIX4PMState, machine_ready);
6a6b5580
AF
426 PCIDevice *d = PCI_DEVICE(s);
427 MemoryRegion *io_as = pci_address_space_io(d);
6141dbfe
PB
428 uint8_t *pci_conf;
429
6a6b5580 430 pci_conf = d->config;
b6f32962 431 pci_conf[0x5f] = 0x10 |
3ce10901 432 (memory_region_present(io_as, 0x378) ? 0x80 : 0);
6141dbfe 433 pci_conf[0x63] = 0x60;
3ce10901
PB
434 pci_conf[0x67] = (memory_region_present(io_as, 0x3f8) ? 0x08 : 0) |
435 (memory_region_present(io_as, 0x2f8) ? 0x90 : 0);
6141dbfe
PB
436}
437
277e9340
MT
438static void piix4_pm_add_propeties(PIIX4PMState *s)
439{
440 static const uint8_t acpi_enable_cmd = ACPI_ENABLE;
441 static const uint8_t acpi_disable_cmd = ACPI_DISABLE;
442 static const uint32_t gpe0_blk = GPE_BASE;
443 static const uint32_t gpe0_blk_len = GPE_LEN;
444 static const uint16_t sci_int = 9;
445
446 object_property_add_uint8_ptr(OBJECT(s), ACPI_PM_PROP_ACPI_ENABLE_CMD,
d2623129 447 &acpi_enable_cmd, OBJ_PROP_FLAG_READ);
277e9340 448 object_property_add_uint8_ptr(OBJECT(s), ACPI_PM_PROP_ACPI_DISABLE_CMD,
d2623129 449 &acpi_disable_cmd, OBJ_PROP_FLAG_READ);
277e9340 450 object_property_add_uint32_ptr(OBJECT(s), ACPI_PM_PROP_GPE0_BLK,
d2623129 451 &gpe0_blk, OBJ_PROP_FLAG_READ);
277e9340 452 object_property_add_uint32_ptr(OBJECT(s), ACPI_PM_PROP_GPE0_BLK_LEN,
d2623129 453 &gpe0_blk_len, OBJ_PROP_FLAG_READ);
277e9340 454 object_property_add_uint16_ptr(OBJECT(s), ACPI_PM_PROP_SCI_INT,
d2623129 455 &sci_int, OBJ_PROP_FLAG_READ);
277e9340 456 object_property_add_uint32_ptr(OBJECT(s), ACPI_PM_PROP_PM_IO_BASE,
d2623129 457 &s->io_base, OBJ_PROP_FLAG_READ);
277e9340
MT
458}
459
9af21dbe 460static void piix4_pm_realize(PCIDevice *dev, Error **errp)
93d89f63 461{
74e445f6 462 PIIX4PMState *s = PIIX4_PM(dev);
93d89f63
IY
463 uint8_t *pci_conf;
464
6a6b5580 465 pci_conf = dev->config;
93d89f63
IY
466 pci_conf[0x06] = 0x80;
467 pci_conf[0x07] = 0x02;
93d89f63 468 pci_conf[0x09] = 0x00;
93d89f63
IY
469 pci_conf[0x3d] = 0x01; // interrupt pin 1
470
93d89f63 471 /* APM */
42d8a3cf 472 apm_init(dev, &s->apm, apm_ctrl_changed, s);
93d89f63 473
61e66c62 474 if (!s->smm_enabled) {
93d89f63
IY
475 /* Mark SMM as already inited to prevent SMM from running. KVM does not
476 * support SMM mode. */
477 pci_conf[0x5B] = 0x02;
478 }
479
480 /* XXX: which specification is used ? The i82731AB has different
481 mappings */
e8ec0571
IY
482 pci_conf[0x90] = s->smb_io_base | 1;
483 pci_conf[0x91] = s->smb_io_base >> 8;
93d89f63 484 pci_conf[0xd2] = 0x09;
45726b6e 485 pm_smbus_init(DEVICE(dev), &s->smb, true);
24fe083d 486 memory_region_set_enabled(&s->smb.io, pci_conf[0xd2] & 1);
56e5b2a1
GH
487 memory_region_add_subregion(pci_address_space_io(dev),
488 s->smb_io_base, &s->smb.io);
93d89f63 489
64bde0f3 490 memory_region_init(&s->io, OBJECT(s), "piix4-pm", 64);
af11110b 491 memory_region_set_enabled(&s->io, false);
56e5b2a1
GH
492 memory_region_add_subregion(pci_address_space_io(dev),
493 0, &s->io);
93d89f63 494
77d58b1e 495 acpi_pm_tmr_init(&s->ar, pm_tmr_timer, &s->io);
b5a7c024 496 acpi_pm1_evt_init(&s->ar, pm_tmr_timer, &s->io);
9a10bbb4 497 acpi_pm1_cnt_init(&s->ar, &s->io, s->disable_s3, s->disable_s4, s->s4_val);
355bf2e5 498 acpi_gpe_init(&s->ar, GPE_LEN);
93d89f63 499
d010f91c
IM
500 s->powerdown_notifier.notify = piix4_pm_powerdown_req;
501 qemu_register_powerdown_notifier(&s->powerdown_notifier);
93d89f63 502
6141dbfe
PB
503 s->machine_ready.notify = piix4_pm_machine_ready;
504 qemu_add_machine_init_done_notifier(&s->machine_ready);
56e5b2a1 505
fd56e061
DG
506 piix4_acpi_system_hot_add_init(pci_address_space_io(dev),
507 pci_get_bus(dev), s);
94d1cc5f 508 qbus_set_hotplug_handler(BUS(pci_get_bus(dev)), OBJECT(s), &error_abort);
e8ec0571 509
277e9340 510 piix4_pm_add_propeties(s);
e8ec0571
IY
511}
512
a5c82852
AF
513I2CBus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
514 qemu_irq sci_irq, qemu_irq smi_irq,
61e66c62 515 int smm_enabled, DeviceState **piix4_pm)
e8ec0571 516{
74e445f6 517 DeviceState *dev;
e8ec0571
IY
518 PIIX4PMState *s;
519
74e445f6
PC
520 dev = DEVICE(pci_create(bus, devfn, TYPE_PIIX4_PM));
521 qdev_prop_set_uint32(dev, "smb_io_base", smb_io_base);
781bbd6b
IM
522 if (piix4_pm) {
523 *piix4_pm = dev;
524 }
93d89f63 525
74e445f6 526 s = PIIX4_PM(dev);
93d89f63 527 s->irq = sci_irq;
93d89f63 528 s->smi_irq = smi_irq;
61e66c62 529 s->smm_enabled = smm_enabled;
91ab2ed7
IM
530 if (xen_enabled()) {
531 s->use_acpi_pci_hotplug = false;
532 }
e8ec0571 533
74e445f6 534 qdev_init_nofail(dev);
93d89f63
IY
535
536 return s->smb.smbus;
537}
538
b65b93f2 539static uint64_t gpe_readb(void *opaque, hwaddr addr, unsigned width)
93d89f63 540{
633aa0ac 541 PIIX4PMState *s = opaque;
355bf2e5 542 uint32_t val = acpi_gpe_ioport_readb(&s->ar, addr);
93d89f63 543
b37d56ec 544 trace_piix4_gpe_readb(addr, width, val);
93d89f63
IY
545 return val;
546}
547
b65b93f2
GH
548static void gpe_writeb(void *opaque, hwaddr addr, uint64_t val,
549 unsigned width)
93d89f63 550{
633aa0ac 551 PIIX4PMState *s = opaque;
633aa0ac 552
b37d56ec 553 trace_piix4_gpe_writeb(addr, width, val);
355bf2e5 554 acpi_gpe_ioport_writeb(&s->ar, addr, val);
06313503 555 acpi_update_sci(&s->ar, s->irq);
93d89f63
IY
556}
557
b65b93f2
GH
558static const MemoryRegionOps piix4_gpe_ops = {
559 .read = gpe_readb,
560 .write = gpe_writeb,
561 .valid.min_access_size = 1,
562 .valid.max_access_size = 4,
563 .impl.min_access_size = 1,
564 .impl.max_access_size = 1,
565 .endianness = DEVICE_LITTLE_ENDIAN,
566};
567
16bcab97
IM
568
569static bool piix4_get_cpu_hotplug_legacy(Object *obj, Error **errp)
570{
571 PIIX4PMState *s = PIIX4_PM(obj);
572
573 return s->cpu_hotplug_legacy;
574}
575
576static void piix4_set_cpu_hotplug_legacy(Object *obj, bool value, Error **errp)
577{
578 PIIX4PMState *s = PIIX4_PM(obj);
579
679dd1a9
IM
580 assert(!value);
581 if (s->cpu_hotplug_legacy && value == false) {
582 acpi_switch_to_modern_cphp(&s->gpe_cpu, &s->cpuhp_state,
583 PIIX4_CPU_HOTPLUG_IO_BASE);
584 }
16bcab97
IM
585 s->cpu_hotplug_legacy = value;
586}
587
56e5b2a1
GH
588static void piix4_acpi_system_hot_add_init(MemoryRegion *parent,
589 PCIBus *bus, PIIX4PMState *s)
93d89f63 590{
64bde0f3
PB
591 memory_region_init_io(&s->io_gpe, OBJECT(s), &piix4_gpe_ops, s,
592 "acpi-gpe0", GPE_LEN);
56e5b2a1 593 memory_region_add_subregion(parent, GPE_BASE, &s->io_gpe);
ac404095 594
78c2d872 595 acpi_pcihp_init(OBJECT(s), &s->acpi_pci_hotplug, bus, parent,
e358edc8 596 s->use_acpi_pci_hotplug);
b8622725 597
16bcab97
IM
598 s->cpu_hotplug_legacy = true;
599 object_property_add_bool(OBJECT(s), "cpu-hotplug-legacy",
600 piix4_get_cpu_hotplug_legacy,
d2623129 601 piix4_set_cpu_hotplug_legacy);
96e3e12b
IM
602 legacy_acpi_cpu_hotplug_init(parent, OBJECT(s), &s->gpe_cpu,
603 PIIX4_CPU_HOTPLUG_IO_BASE);
34774320
IM
604
605 if (s->acpi_memory_hotplug.is_enabled) {
80db0e78
IM
606 acpi_memory_hotplug_init(parent, OBJECT(s), &s->acpi_memory_hotplug,
607 ACPI_MEMORY_HOTPLUG_BASE);
34774320 608 }
93d89f63 609}
5fdae20c 610
43f50410
IM
611static void piix4_ospm_status(AcpiDeviceIf *adev, ACPIOSTInfoList ***list)
612{
613 PIIX4PMState *s = PIIX4_PM(adev);
614
615 acpi_memory_ospm_status(&s->acpi_memory_hotplug, list);
76623d00
IM
616 if (!s->cpu_hotplug_legacy) {
617 acpi_cpu_ospm_status(&s->cpuhp_state, list);
618 }
43f50410
IM
619}
620
eaf23bf7
IM
621static void piix4_send_gpe(AcpiDeviceIf *adev, AcpiEventStatusBits ev)
622{
623 PIIX4PMState *s = PIIX4_PM(adev);
624
625 acpi_send_gpe_event(&s->ar, s->irq, ev);
626}
627
5fdae20c
IM
628static Property piix4_pm_properties[] = {
629 DEFINE_PROP_UINT32("smb_io_base", PIIX4PMState, smb_io_base, 0),
630 DEFINE_PROP_UINT8(ACPI_PM_PROP_S3_DISABLED, PIIX4PMState, disable_s3, 0),
631 DEFINE_PROP_UINT8(ACPI_PM_PROP_S4_DISABLED, PIIX4PMState, disable_s4, 0),
632 DEFINE_PROP_UINT8(ACPI_PM_PROP_S4_VAL, PIIX4PMState, s4_val, 2),
633 DEFINE_PROP_BOOL("acpi-pci-hotplug-with-bridge-support", PIIX4PMState,
634 use_acpi_pci_hotplug, true),
34774320
IM
635 DEFINE_PROP_BOOL("memory-hotplug-support", PIIX4PMState,
636 acpi_memory_hotplug.is_enabled, true),
5fdae20c
IM
637 DEFINE_PROP_END_OF_LIST(),
638};
639
640static void piix4_pm_class_init(ObjectClass *klass, void *data)
641{
642 DeviceClass *dc = DEVICE_CLASS(klass);
643 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
c24d5e0b 644 HotplugHandlerClass *hc = HOTPLUG_HANDLER_CLASS(klass);
43f50410 645 AcpiDeviceIfClass *adevc = ACPI_DEVICE_IF_CLASS(klass);
5fdae20c 646
9af21dbe 647 k->realize = piix4_pm_realize;
5fdae20c
IM
648 k->config_write = pm_write_config;
649 k->vendor_id = PCI_VENDOR_ID_INTEL;
650 k->device_id = PCI_DEVICE_ID_INTEL_82371AB_3;
651 k->revision = 0x03;
652 k->class_id = PCI_CLASS_BRIDGE_OTHER;
217e8ef9 653 dc->reset = piix4_pm_reset;
5fdae20c
IM
654 dc->desc = "PM";
655 dc->vmsd = &vmstate_acpi;
4f67d30b 656 device_class_set_props(dc, piix4_pm_properties);
5fdae20c
IM
657 /*
658 * Reason: part of PIIX4 southbridge, needs to be wired up,
659 * e.g. by mips_malta_init()
660 */
e90f2a8c 661 dc->user_creatable = false;
2897ae02 662 dc->hotpluggable = false;
ec266f40 663 hc->pre_plug = piix4_device_pre_plug_cb;
f1adc360 664 hc->plug = piix4_device_plug_cb;
14d5a28f 665 hc->unplug_request = piix4_device_unplug_request_cb;
c0e57a60 666 hc->unplug = piix4_device_unplug_cb;
43f50410 667 adevc->ospm_status = piix4_ospm_status;
eaf23bf7 668 adevc->send_event = piix4_send_gpe;
ac35f13b 669 adevc->madt_cpu = pc_madt_cpu_entry;
5fdae20c
IM
670}
671
672static const TypeInfo piix4_pm_info = {
673 .name = TYPE_PIIX4_PM,
674 .parent = TYPE_PCI_DEVICE,
675 .instance_size = sizeof(PIIX4PMState),
676 .class_init = piix4_pm_class_init,
c24d5e0b
IM
677 .interfaces = (InterfaceInfo[]) {
678 { TYPE_HOTPLUG_HANDLER },
43f50410 679 { TYPE_ACPI_DEVICE_IF },
fd3b02c8 680 { INTERFACE_CONVENTIONAL_PCI_DEVICE },
c24d5e0b
IM
681 { }
682 }
5fdae20c
IM
683};
684
685static void piix4_pm_register_types(void)
686{
687 type_register_static(&piix4_pm_info);
688}
689
690type_init(piix4_pm_register_types)