4 * Copyright (c) 2006 Fabrice Bellard
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.1 as published by the Free Software Foundation.
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.
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/>
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.
22 #include "qemu/osdep.h"
23 #include "hw/i386/pc.h"
24 #include "hw/southbridge/piix.h"
26 #include "hw/isa/apm.h"
27 #include "hw/i2c/pm_smbus.h"
28 #include "hw/pci/pci.h"
29 #include "hw/qdev-properties.h"
30 #include "hw/acpi/acpi.h"
31 #include "sysemu/runstate.h"
32 #include "sysemu/sysemu.h"
33 #include "sysemu/xen.h"
34 #include "qapi/error.h"
35 #include "qemu/range.h"
36 #include "exec/address-spaces.h"
37 #include "hw/acpi/pcihp.h"
38 #include "hw/acpi/cpu_hotplug.h"
39 #include "hw/acpi/cpu.h"
40 #include "hw/hotplug.h"
41 #include "hw/mem/pc-dimm.h"
42 #include "hw/mem/nvdimm.h"
43 #include "hw/acpi/memory_hotplug.h"
44 #include "hw/acpi/acpi_dev_interface.h"
45 #include "migration/vmstate.h"
46 #include "hw/core/cpu.h"
48 #include "qom/object.h"
50 #define GPE_BASE 0xafe0
54 uint32_t up
; /* deprecated, maintained for migration compatibility */
78 Notifier machine_ready
;
79 Notifier powerdown_notifier
;
81 AcpiPciHpState acpi_pci_hotplug
;
82 bool use_acpi_hotplug_bridge
;
83 bool use_acpi_root_pci_hotplug
;
89 bool cpu_hotplug_legacy
;
90 AcpiCpuHotplug gpe_cpu
;
91 CPUHotplugState cpuhp_state
;
93 MemHotplugState acpi_memory_hotplug
;
96 OBJECT_DECLARE_SIMPLE_TYPE(PIIX4PMState
, PIIX4_PM
)
98 static void piix4_acpi_system_hot_add_init(MemoryRegion
*parent
,
99 PCIBus
*bus
, PIIX4PMState
*s
);
101 #define ACPI_ENABLE 0xf1
102 #define ACPI_DISABLE 0xf0
104 static void pm_tmr_timer(ACPIREGS
*ar
)
106 PIIX4PMState
*s
= container_of(ar
, PIIX4PMState
, ar
);
107 acpi_update_sci(&s
->ar
, s
->irq
);
110 static void apm_ctrl_changed(uint32_t val
, void *arg
)
112 PIIX4PMState
*s
= arg
;
113 PCIDevice
*d
= PCI_DEVICE(s
);
115 /* ACPI specs 3.0, 4.7.2.5 */
116 acpi_pm1_cnt_update(&s
->ar
, val
== ACPI_ENABLE
, val
== ACPI_DISABLE
);
117 if (val
== ACPI_ENABLE
|| val
== ACPI_DISABLE
) {
121 if (d
->config
[0x5b] & (1 << 1)) {
123 qemu_irq_raise(s
->smi_irq
);
128 static void pm_io_space_update(PIIX4PMState
*s
)
130 PCIDevice
*d
= PCI_DEVICE(s
);
132 s
->io_base
= le32_to_cpu(*(uint32_t *)(d
->config
+ 0x40));
133 s
->io_base
&= 0xffc0;
135 memory_region_transaction_begin();
136 memory_region_set_enabled(&s
->io
, d
->config
[0x80] & 1);
137 memory_region_set_address(&s
->io
, s
->io_base
);
138 memory_region_transaction_commit();
141 static void smbus_io_space_update(PIIX4PMState
*s
)
143 PCIDevice
*d
= PCI_DEVICE(s
);
145 s
->smb_io_base
= le32_to_cpu(*(uint32_t *)(d
->config
+ 0x90));
146 s
->smb_io_base
&= 0xffc0;
148 memory_region_transaction_begin();
149 memory_region_set_enabled(&s
->smb
.io
, d
->config
[0xd2] & 1);
150 memory_region_set_address(&s
->smb
.io
, s
->smb_io_base
);
151 memory_region_transaction_commit();
154 static void pm_write_config(PCIDevice
*d
,
155 uint32_t address
, uint32_t val
, int len
)
157 pci_default_write_config(d
, address
, val
, len
);
158 if (range_covers_byte(address
, len
, 0x80) ||
159 ranges_overlap(address
, len
, 0x40, 4)) {
160 pm_io_space_update((PIIX4PMState
*)d
);
162 if (range_covers_byte(address
, len
, 0xd2) ||
163 ranges_overlap(address
, len
, 0x90, 4)) {
164 smbus_io_space_update((PIIX4PMState
*)d
);
168 static int vmstate_acpi_post_load(void *opaque
, int version_id
)
170 PIIX4PMState
*s
= opaque
;
172 pm_io_space_update(s
);
173 smbus_io_space_update(s
);
177 #define VMSTATE_GPE_ARRAY(_field, _state) \
179 .name = (stringify(_field)), \
181 .info = &vmstate_info_uint16, \
182 .size = sizeof(uint16_t), \
183 .flags = VMS_SINGLE | VMS_POINTER, \
184 .offset = vmstate_offset_pointer(_state, _field, uint8_t), \
187 static const VMStateDescription vmstate_gpe
= {
190 .minimum_version_id
= 1,
191 .fields
= (VMStateField
[]) {
192 VMSTATE_GPE_ARRAY(sts
, ACPIGPE
),
193 VMSTATE_GPE_ARRAY(en
, ACPIGPE
),
194 VMSTATE_END_OF_LIST()
198 static const VMStateDescription vmstate_pci_status
= {
199 .name
= "pci_status",
201 .minimum_version_id
= 1,
202 .fields
= (VMStateField
[]) {
203 VMSTATE_UINT32(up
, struct AcpiPciHpPciStatus
),
204 VMSTATE_UINT32(down
, struct AcpiPciHpPciStatus
),
205 VMSTATE_END_OF_LIST()
209 static bool vmstate_test_use_acpi_hotplug_bridge(void *opaque
, int version_id
)
211 PIIX4PMState
*s
= opaque
;
212 return s
->use_acpi_hotplug_bridge
;
215 static bool vmstate_test_no_use_acpi_hotplug_bridge(void *opaque
,
218 PIIX4PMState
*s
= opaque
;
219 return !s
->use_acpi_hotplug_bridge
;
222 static bool vmstate_test_use_memhp(void *opaque
)
224 PIIX4PMState
*s
= opaque
;
225 return s
->acpi_memory_hotplug
.is_enabled
;
228 static const VMStateDescription vmstate_memhp_state
= {
229 .name
= "piix4_pm/memhp",
231 .minimum_version_id
= 1,
232 .minimum_version_id_old
= 1,
233 .needed
= vmstate_test_use_memhp
,
234 .fields
= (VMStateField
[]) {
235 VMSTATE_MEMORY_HOTPLUG(acpi_memory_hotplug
, PIIX4PMState
),
236 VMSTATE_END_OF_LIST()
240 static bool vmstate_test_use_cpuhp(void *opaque
)
242 PIIX4PMState
*s
= opaque
;
243 return !s
->cpu_hotplug_legacy
;
246 static int vmstate_cpuhp_pre_load(void *opaque
)
248 Object
*obj
= OBJECT(opaque
);
249 object_property_set_bool(obj
, "cpu-hotplug-legacy", false, &error_abort
);
253 static const VMStateDescription vmstate_cpuhp_state
= {
254 .name
= "piix4_pm/cpuhp",
256 .minimum_version_id
= 1,
257 .minimum_version_id_old
= 1,
258 .needed
= vmstate_test_use_cpuhp
,
259 .pre_load
= vmstate_cpuhp_pre_load
,
260 .fields
= (VMStateField
[]) {
261 VMSTATE_CPU_HOTPLUG(cpuhp_state
, PIIX4PMState
),
262 VMSTATE_END_OF_LIST()
266 static bool piix4_vmstate_need_smbus(void *opaque
, int version_id
)
268 return pm_smbus_vmstate_needed();
271 /* qemu-kvm 1.2 uses version 3 but advertised as 2
272 * To support incoming qemu-kvm 1.2 migration, change version_id
273 * and minimum_version_id to 2 below (which breaks migration from
277 static const VMStateDescription vmstate_acpi
= {
280 .minimum_version_id
= 3,
281 .post_load
= vmstate_acpi_post_load
,
282 .fields
= (VMStateField
[]) {
283 VMSTATE_PCI_DEVICE(parent_obj
, PIIX4PMState
),
284 VMSTATE_UINT16(ar
.pm1
.evt
.sts
, PIIX4PMState
),
285 VMSTATE_UINT16(ar
.pm1
.evt
.en
, PIIX4PMState
),
286 VMSTATE_UINT16(ar
.pm1
.cnt
.cnt
, PIIX4PMState
),
287 VMSTATE_STRUCT(apm
, PIIX4PMState
, 0, vmstate_apm
, APMState
),
288 VMSTATE_STRUCT_TEST(smb
, PIIX4PMState
, piix4_vmstate_need_smbus
, 3,
289 pmsmb_vmstate
, PMSMBus
),
290 VMSTATE_TIMER_PTR(ar
.tmr
.timer
, PIIX4PMState
),
291 VMSTATE_INT64(ar
.tmr
.overflow_time
, PIIX4PMState
),
292 VMSTATE_STRUCT(ar
.gpe
, PIIX4PMState
, 2, vmstate_gpe
, ACPIGPE
),
294 acpi_pci_hotplug
.acpi_pcihp_pci_status
[ACPI_PCIHP_BSEL_DEFAULT
],
296 vmstate_test_no_use_acpi_hotplug_bridge
,
297 2, vmstate_pci_status
,
298 struct AcpiPciHpPciStatus
),
299 VMSTATE_PCI_HOTPLUG(acpi_pci_hotplug
, PIIX4PMState
,
300 vmstate_test_use_acpi_hotplug_bridge
,
301 vmstate_acpi_pcihp_use_acpi_index
),
302 VMSTATE_END_OF_LIST()
304 .subsections
= (const VMStateDescription
*[]) {
305 &vmstate_memhp_state
,
306 &vmstate_cpuhp_state
,
311 static void piix4_pm_reset(DeviceState
*dev
)
313 PIIX4PMState
*s
= PIIX4_PM(dev
);
314 PCIDevice
*d
= PCI_DEVICE(s
);
315 uint8_t *pci_conf
= d
->config
;
322 pci_conf
[0x40] = 0x01; /* PM io base read only bit */
325 if (!s
->smm_enabled
) {
326 /* Mark SMM as already inited (until KVM supports SMM). */
327 pci_conf
[0x5B] = 0x02;
330 acpi_pm1_evt_reset(&s
->ar
);
331 acpi_pm1_cnt_reset(&s
->ar
);
332 acpi_pm_tmr_reset(&s
->ar
);
333 acpi_gpe_reset(&s
->ar
);
334 acpi_update_sci(&s
->ar
, s
->irq
);
336 pm_io_space_update(s
);
337 acpi_pcihp_reset(&s
->acpi_pci_hotplug
, !s
->use_acpi_root_pci_hotplug
);
340 static void piix4_pm_powerdown_req(Notifier
*n
, void *opaque
)
342 PIIX4PMState
*s
= container_of(n
, PIIX4PMState
, powerdown_notifier
);
345 acpi_pm1_evt_power_down(&s
->ar
);
348 static void piix4_device_pre_plug_cb(HotplugHandler
*hotplug_dev
,
349 DeviceState
*dev
, Error
**errp
)
351 PIIX4PMState
*s
= PIIX4_PM(hotplug_dev
);
353 if (object_dynamic_cast(OBJECT(dev
), TYPE_PCI_DEVICE
)) {
354 acpi_pcihp_device_pre_plug_cb(hotplug_dev
, dev
, errp
);
355 } else if (object_dynamic_cast(OBJECT(dev
), TYPE_PC_DIMM
)) {
356 if (!s
->acpi_memory_hotplug
.is_enabled
) {
358 "memory hotplug is not enabled: %s.memory-hotplug-support "
359 "is not set", object_get_typename(OBJECT(s
)));
362 !object_dynamic_cast(OBJECT(dev
), TYPE_CPU
)) {
363 error_setg(errp
, "acpi: device pre plug request for not supported"
364 " device type: %s", object_get_typename(OBJECT(dev
)));
368 static void piix4_device_plug_cb(HotplugHandler
*hotplug_dev
,
369 DeviceState
*dev
, Error
**errp
)
371 PIIX4PMState
*s
= PIIX4_PM(hotplug_dev
);
373 if (object_dynamic_cast(OBJECT(dev
), TYPE_PC_DIMM
)) {
374 if (object_dynamic_cast(OBJECT(dev
), TYPE_NVDIMM
)) {
375 nvdimm_acpi_plug_cb(hotplug_dev
, dev
);
377 acpi_memory_plug_cb(hotplug_dev
, &s
->acpi_memory_hotplug
,
380 } else if (object_dynamic_cast(OBJECT(dev
), TYPE_PCI_DEVICE
)) {
381 acpi_pcihp_device_plug_cb(hotplug_dev
, &s
->acpi_pci_hotplug
, dev
, errp
);
382 } else if (object_dynamic_cast(OBJECT(dev
), TYPE_CPU
)) {
383 if (s
->cpu_hotplug_legacy
) {
384 legacy_acpi_cpu_plug_cb(hotplug_dev
, &s
->gpe_cpu
, dev
, errp
);
386 acpi_cpu_plug_cb(hotplug_dev
, &s
->cpuhp_state
, dev
, errp
);
389 g_assert_not_reached();
393 static void piix4_device_unplug_request_cb(HotplugHandler
*hotplug_dev
,
394 DeviceState
*dev
, Error
**errp
)
396 PIIX4PMState
*s
= PIIX4_PM(hotplug_dev
);
398 if (s
->acpi_memory_hotplug
.is_enabled
&&
399 object_dynamic_cast(OBJECT(dev
), TYPE_PC_DIMM
)) {
400 acpi_memory_unplug_request_cb(hotplug_dev
, &s
->acpi_memory_hotplug
,
402 } else if (object_dynamic_cast(OBJECT(dev
), TYPE_PCI_DEVICE
)) {
403 acpi_pcihp_device_unplug_request_cb(hotplug_dev
, &s
->acpi_pci_hotplug
,
405 } else if (object_dynamic_cast(OBJECT(dev
), TYPE_CPU
) &&
406 !s
->cpu_hotplug_legacy
) {
407 acpi_cpu_unplug_request_cb(hotplug_dev
, &s
->cpuhp_state
, dev
, errp
);
409 error_setg(errp
, "acpi: device unplug request for not supported device"
410 " type: %s", object_get_typename(OBJECT(dev
)));
414 static void piix4_device_unplug_cb(HotplugHandler
*hotplug_dev
,
415 DeviceState
*dev
, Error
**errp
)
417 PIIX4PMState
*s
= PIIX4_PM(hotplug_dev
);
419 if (s
->acpi_memory_hotplug
.is_enabled
&&
420 object_dynamic_cast(OBJECT(dev
), TYPE_PC_DIMM
)) {
421 acpi_memory_unplug_cb(&s
->acpi_memory_hotplug
, dev
, errp
);
422 } else if (object_dynamic_cast(OBJECT(dev
), TYPE_PCI_DEVICE
)) {
423 acpi_pcihp_device_unplug_cb(hotplug_dev
, &s
->acpi_pci_hotplug
, dev
,
425 } else if (object_dynamic_cast(OBJECT(dev
), TYPE_CPU
) &&
426 !s
->cpu_hotplug_legacy
) {
427 acpi_cpu_unplug_cb(&s
->cpuhp_state
, dev
, errp
);
429 error_setg(errp
, "acpi: device unplug for not supported device"
430 " type: %s", object_get_typename(OBJECT(dev
)));
434 static void piix4_pm_machine_ready(Notifier
*n
, void *opaque
)
436 PIIX4PMState
*s
= container_of(n
, PIIX4PMState
, machine_ready
);
437 PCIDevice
*d
= PCI_DEVICE(s
);
438 MemoryRegion
*io_as
= pci_address_space_io(d
);
441 pci_conf
= d
->config
;
442 pci_conf
[0x5f] = 0x10 |
443 (memory_region_present(io_as
, 0x378) ? 0x80 : 0);
444 pci_conf
[0x63] = 0x60;
445 pci_conf
[0x67] = (memory_region_present(io_as
, 0x3f8) ? 0x08 : 0) |
446 (memory_region_present(io_as
, 0x2f8) ? 0x90 : 0);
449 static void piix4_pm_add_properties(PIIX4PMState
*s
)
451 static const uint8_t acpi_enable_cmd
= ACPI_ENABLE
;
452 static const uint8_t acpi_disable_cmd
= ACPI_DISABLE
;
453 static const uint32_t gpe0_blk
= GPE_BASE
;
454 static const uint32_t gpe0_blk_len
= GPE_LEN
;
455 static const uint16_t sci_int
= 9;
457 object_property_add_uint8_ptr(OBJECT(s
), ACPI_PM_PROP_ACPI_ENABLE_CMD
,
458 &acpi_enable_cmd
, OBJ_PROP_FLAG_READ
);
459 object_property_add_uint8_ptr(OBJECT(s
), ACPI_PM_PROP_ACPI_DISABLE_CMD
,
460 &acpi_disable_cmd
, OBJ_PROP_FLAG_READ
);
461 object_property_add_uint32_ptr(OBJECT(s
), ACPI_PM_PROP_GPE0_BLK
,
462 &gpe0_blk
, OBJ_PROP_FLAG_READ
);
463 object_property_add_uint32_ptr(OBJECT(s
), ACPI_PM_PROP_GPE0_BLK_LEN
,
464 &gpe0_blk_len
, OBJ_PROP_FLAG_READ
);
465 object_property_add_uint16_ptr(OBJECT(s
), ACPI_PM_PROP_SCI_INT
,
466 &sci_int
, OBJ_PROP_FLAG_READ
);
467 object_property_add_uint32_ptr(OBJECT(s
), ACPI_PM_PROP_PM_IO_BASE
,
468 &s
->io_base
, OBJ_PROP_FLAG_READ
);
471 static void piix4_pm_realize(PCIDevice
*dev
, Error
**errp
)
473 PIIX4PMState
*s
= PIIX4_PM(dev
);
476 pci_conf
= dev
->config
;
477 pci_conf
[0x06] = 0x80;
478 pci_conf
[0x07] = 0x02;
479 pci_conf
[0x09] = 0x00;
480 pci_conf
[0x3d] = 0x01; // interrupt pin 1
483 apm_init(dev
, &s
->apm
, apm_ctrl_changed
, s
);
485 if (!s
->smm_enabled
) {
486 /* Mark SMM as already inited to prevent SMM from running. KVM does not
487 * support SMM mode. */
488 pci_conf
[0x5B] = 0x02;
491 /* XXX: which specification is used ? The i82731AB has different
493 pci_conf
[0x90] = s
->smb_io_base
| 1;
494 pci_conf
[0x91] = s
->smb_io_base
>> 8;
495 pci_conf
[0xd2] = 0x09;
496 pm_smbus_init(DEVICE(dev
), &s
->smb
, true);
497 memory_region_set_enabled(&s
->smb
.io
, pci_conf
[0xd2] & 1);
498 memory_region_add_subregion(pci_address_space_io(dev
),
499 s
->smb_io_base
, &s
->smb
.io
);
501 memory_region_init(&s
->io
, OBJECT(s
), "piix4-pm", 64);
502 memory_region_set_enabled(&s
->io
, false);
503 memory_region_add_subregion(pci_address_space_io(dev
),
506 acpi_pm_tmr_init(&s
->ar
, pm_tmr_timer
, &s
->io
);
507 acpi_pm1_evt_init(&s
->ar
, pm_tmr_timer
, &s
->io
);
508 acpi_pm1_cnt_init(&s
->ar
, &s
->io
, s
->disable_s3
, s
->disable_s4
, s
->s4_val
,
509 !s
->smm_compat
&& !s
->smm_enabled
);
510 acpi_gpe_init(&s
->ar
, GPE_LEN
);
512 s
->powerdown_notifier
.notify
= piix4_pm_powerdown_req
;
513 qemu_register_powerdown_notifier(&s
->powerdown_notifier
);
515 s
->machine_ready
.notify
= piix4_pm_machine_ready
;
516 qemu_add_machine_init_done_notifier(&s
->machine_ready
);
518 piix4_acpi_system_hot_add_init(pci_address_space_io(dev
),
519 pci_get_bus(dev
), s
);
520 qbus_set_hotplug_handler(BUS(pci_get_bus(dev
)), OBJECT(s
));
522 piix4_pm_add_properties(s
);
525 I2CBus
*piix4_pm_init(PCIBus
*bus
, int devfn
, uint32_t smb_io_base
,
526 qemu_irq sci_irq
, qemu_irq smi_irq
,
527 int smm_enabled
, DeviceState
**piix4_pm
)
533 pci_dev
= pci_new(devfn
, TYPE_PIIX4_PM
);
534 dev
= DEVICE(pci_dev
);
535 qdev_prop_set_uint32(dev
, "smb_io_base", smb_io_base
);
542 s
->smi_irq
= smi_irq
;
543 s
->smm_enabled
= smm_enabled
;
545 s
->use_acpi_hotplug_bridge
= false;
548 pci_realize_and_unref(pci_dev
, bus
, &error_fatal
);
553 static uint64_t gpe_readb(void *opaque
, hwaddr addr
, unsigned width
)
555 PIIX4PMState
*s
= opaque
;
556 uint32_t val
= acpi_gpe_ioport_readb(&s
->ar
, addr
);
558 trace_piix4_gpe_readb(addr
, width
, val
);
562 static void gpe_writeb(void *opaque
, hwaddr addr
, uint64_t val
,
565 PIIX4PMState
*s
= opaque
;
567 trace_piix4_gpe_writeb(addr
, width
, val
);
568 acpi_gpe_ioport_writeb(&s
->ar
, addr
, val
);
569 acpi_update_sci(&s
->ar
, s
->irq
);
572 static const MemoryRegionOps piix4_gpe_ops
= {
575 .valid
.min_access_size
= 1,
576 .valid
.max_access_size
= 4,
577 .impl
.min_access_size
= 1,
578 .impl
.max_access_size
= 1,
579 .endianness
= DEVICE_LITTLE_ENDIAN
,
583 static bool piix4_get_cpu_hotplug_legacy(Object
*obj
, Error
**errp
)
585 PIIX4PMState
*s
= PIIX4_PM(obj
);
587 return s
->cpu_hotplug_legacy
;
590 static void piix4_set_cpu_hotplug_legacy(Object
*obj
, bool value
, Error
**errp
)
592 PIIX4PMState
*s
= PIIX4_PM(obj
);
595 if (s
->cpu_hotplug_legacy
&& value
== false) {
596 acpi_switch_to_modern_cphp(&s
->gpe_cpu
, &s
->cpuhp_state
,
597 PIIX4_CPU_HOTPLUG_IO_BASE
);
599 s
->cpu_hotplug_legacy
= value
;
602 static void piix4_acpi_system_hot_add_init(MemoryRegion
*parent
,
603 PCIBus
*bus
, PIIX4PMState
*s
)
605 memory_region_init_io(&s
->io_gpe
, OBJECT(s
), &piix4_gpe_ops
, s
,
606 "acpi-gpe0", GPE_LEN
);
607 memory_region_add_subregion(parent
, GPE_BASE
, &s
->io_gpe
);
609 if (s
->use_acpi_hotplug_bridge
|| s
->use_acpi_root_pci_hotplug
) {
610 acpi_pcihp_init(OBJECT(s
), &s
->acpi_pci_hotplug
, bus
, parent
,
611 s
->use_acpi_hotplug_bridge
);
614 s
->cpu_hotplug_legacy
= true;
615 object_property_add_bool(OBJECT(s
), "cpu-hotplug-legacy",
616 piix4_get_cpu_hotplug_legacy
,
617 piix4_set_cpu_hotplug_legacy
);
618 legacy_acpi_cpu_hotplug_init(parent
, OBJECT(s
), &s
->gpe_cpu
,
619 PIIX4_CPU_HOTPLUG_IO_BASE
);
621 if (s
->acpi_memory_hotplug
.is_enabled
) {
622 acpi_memory_hotplug_init(parent
, OBJECT(s
), &s
->acpi_memory_hotplug
,
623 ACPI_MEMORY_HOTPLUG_BASE
);
627 static void piix4_ospm_status(AcpiDeviceIf
*adev
, ACPIOSTInfoList
***list
)
629 PIIX4PMState
*s
= PIIX4_PM(adev
);
631 acpi_memory_ospm_status(&s
->acpi_memory_hotplug
, list
);
632 if (!s
->cpu_hotplug_legacy
) {
633 acpi_cpu_ospm_status(&s
->cpuhp_state
, list
);
637 static void piix4_send_gpe(AcpiDeviceIf
*adev
, AcpiEventStatusBits ev
)
639 PIIX4PMState
*s
= PIIX4_PM(adev
);
641 acpi_send_gpe_event(&s
->ar
, s
->irq
, ev
);
644 static Property piix4_pm_properties
[] = {
645 DEFINE_PROP_UINT32("smb_io_base", PIIX4PMState
, smb_io_base
, 0),
646 DEFINE_PROP_UINT8(ACPI_PM_PROP_S3_DISABLED
, PIIX4PMState
, disable_s3
, 0),
647 DEFINE_PROP_UINT8(ACPI_PM_PROP_S4_DISABLED
, PIIX4PMState
, disable_s4
, 0),
648 DEFINE_PROP_UINT8(ACPI_PM_PROP_S4_VAL
, PIIX4PMState
, s4_val
, 2),
649 DEFINE_PROP_BOOL("acpi-pci-hotplug-with-bridge-support", PIIX4PMState
,
650 use_acpi_hotplug_bridge
, true),
651 DEFINE_PROP_BOOL("acpi-root-pci-hotplug", PIIX4PMState
,
652 use_acpi_root_pci_hotplug
, true),
653 DEFINE_PROP_BOOL("memory-hotplug-support", PIIX4PMState
,
654 acpi_memory_hotplug
.is_enabled
, true),
655 DEFINE_PROP_BOOL("smm-compat", PIIX4PMState
, smm_compat
, false),
656 DEFINE_PROP_END_OF_LIST(),
659 static void piix4_pm_class_init(ObjectClass
*klass
, void *data
)
661 DeviceClass
*dc
= DEVICE_CLASS(klass
);
662 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
663 HotplugHandlerClass
*hc
= HOTPLUG_HANDLER_CLASS(klass
);
664 AcpiDeviceIfClass
*adevc
= ACPI_DEVICE_IF_CLASS(klass
);
666 k
->realize
= piix4_pm_realize
;
667 k
->config_write
= pm_write_config
;
668 k
->vendor_id
= PCI_VENDOR_ID_INTEL
;
669 k
->device_id
= PCI_DEVICE_ID_INTEL_82371AB_3
;
671 k
->class_id
= PCI_CLASS_BRIDGE_OTHER
;
672 dc
->reset
= piix4_pm_reset
;
674 dc
->vmsd
= &vmstate_acpi
;
675 device_class_set_props(dc
, piix4_pm_properties
);
677 * Reason: part of PIIX4 southbridge, needs to be wired up,
678 * e.g. by mips_malta_init()
680 dc
->user_creatable
= false;
681 dc
->hotpluggable
= false;
682 hc
->pre_plug
= piix4_device_pre_plug_cb
;
683 hc
->plug
= piix4_device_plug_cb
;
684 hc
->unplug_request
= piix4_device_unplug_request_cb
;
685 hc
->unplug
= piix4_device_unplug_cb
;
686 adevc
->ospm_status
= piix4_ospm_status
;
687 adevc
->send_event
= piix4_send_gpe
;
688 adevc
->madt_cpu
= pc_madt_cpu_entry
;
691 static const TypeInfo piix4_pm_info
= {
692 .name
= TYPE_PIIX4_PM
,
693 .parent
= TYPE_PCI_DEVICE
,
694 .instance_size
= sizeof(PIIX4PMState
),
695 .class_init
= piix4_pm_class_init
,
696 .interfaces
= (InterfaceInfo
[]) {
697 { TYPE_HOTPLUG_HANDLER
},
698 { TYPE_ACPI_DEVICE_IF
},
699 { INTERFACE_CONVENTIONAL_PCI_DEVICE
},
704 static void piix4_pm_register_types(void)
706 type_register_static(&piix4_pm_info
);
709 type_init(piix4_pm_register_types
)