3 * Copyright (c) 2018 Intel Corporation
4 * Copyright (c) 2019 Huawei Technologies R & D (UK) Ltd
5 * Written by Samuel Ortiz, Shameer Kolothum
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,
9 * version 2 or later, as published by the Free Software Foundation.
12 #include "qemu/osdep.h"
13 #include "qapi/error.h"
14 #include "exec/address-spaces.h"
15 #include "hw/acpi/acpi.h"
16 #include "hw/acpi/generic_event_device.h"
18 #include "hw/mem/pc-dimm.h"
19 #include "hw/mem/nvdimm.h"
20 #include "hw/qdev-properties.h"
21 #include "migration/vmstate.h"
22 #include "qemu/error-report.h"
23 #include "sysemu/runstate.h"
25 static const uint32_t ged_supported_events
[] = {
26 ACPI_GED_MEM_HOTPLUG_EVT
,
27 ACPI_GED_PWR_DOWN_EVT
,
28 ACPI_GED_NVDIMM_HOTPLUG_EVT
,
32 * The ACPI Generic Event Device (GED) is a hardware-reduced specific
33 * device[ACPI v6.1 Section 5.6.9] that handles all platform events,
34 * including the hotplug ones. Platforms need to specify their own
35 * GED Event bitmap to describe what kind of events they want to support
36 * through GED. This routine uses a single interrupt for the GED device,
37 * relying on IO memory region to communicate the type of device
38 * affected by the interrupt. This way, we can support up to 32 events
39 * with a unique interrupt.
41 void build_ged_aml(Aml
*table
, const char *name
, HotplugHandler
*hotplug_dev
,
42 uint32_t ged_irq
, AmlRegionSpace rs
, hwaddr ged_base
)
44 AcpiGedState
*s
= ACPI_GED(hotplug_dev
);
45 Aml
*crs
= aml_resource_template();
47 Aml
*dev
= aml_device("%s", name
);
48 Aml
*evt_sel
= aml_local(0);
49 Aml
*esel
= aml_name(AML_GED_EVT_SEL
);
52 aml_append(crs
, aml_interrupt(AML_CONSUMER
, AML_EDGE
, AML_ACTIVE_HIGH
,
53 AML_EXCLUSIVE
, &ged_irq
, 1));
55 aml_append(dev
, aml_name_decl("_HID", aml_string("ACPI0013")));
56 aml_append(dev
, aml_name_decl("_UID", aml_string(GED_DEVICE
)));
57 aml_append(dev
, aml_name_decl("_CRS", crs
));
59 /* Append IO region */
60 aml_append(dev
, aml_operation_region(AML_GED_EVT_REG
, rs
,
61 aml_int(ged_base
+ ACPI_GED_EVT_SEL_OFFSET
),
62 ACPI_GED_EVT_SEL_LEN
));
63 field
= aml_field(AML_GED_EVT_REG
, AML_DWORD_ACC
, AML_NOLOCK
,
65 aml_append(field
, aml_named_field(AML_GED_EVT_SEL
,
66 ACPI_GED_EVT_SEL_LEN
* BITS_PER_BYTE
));
67 aml_append(dev
, field
);
70 * For each GED event we:
71 * - Add a conditional block for each event, inside a loop.
72 * - Call a method for each supported GED event type.
74 * The resulting ASL code looks like:
77 * If ((Local0 & One) == One)
82 * If ((Local0 & 0x2) == 0x2)
88 evt
= aml_method("_EVT", 1, AML_SERIALIZED
);
92 uint32_t ged_events
= ctpop32(s
->ged_event_bitmap
);
95 aml_append(evt
, aml_store(esel
, evt_sel
));
97 for (i
= 0; i
< ARRAY_SIZE(ged_supported_events
) && ged_events
; i
++) {
98 uint32_t event
= s
->ged_event_bitmap
& ged_supported_events
[i
];
104 if_ctx
= aml_if(aml_equal(aml_and(evt_sel
, aml_int(event
), NULL
),
107 case ACPI_GED_MEM_HOTPLUG_EVT
:
108 aml_append(if_ctx
, aml_call0(MEMORY_DEVICES_CONTAINER
"."
109 MEMORY_SLOT_SCAN_METHOD
));
111 case ACPI_GED_PWR_DOWN_EVT
:
113 aml_notify(aml_name(ACPI_POWER_BUTTON_DEVICE
),
116 case ACPI_GED_NVDIMM_HOTPLUG_EVT
:
118 aml_notify(aml_name("\\_SB.NVDR"),
123 * Please make sure all the events in ged_supported_events[]
126 g_assert_not_reached();
129 aml_append(evt
, if_ctx
);
134 error_report("Unsupported events specified");
139 /* Append _EVT method */
140 aml_append(dev
, evt
);
142 aml_append(table
, dev
);
145 void acpi_dsdt_add_power_button(Aml
*scope
)
147 Aml
*dev
= aml_device(ACPI_POWER_BUTTON_DEVICE
);
148 aml_append(dev
, aml_name_decl("_HID", aml_string("PNP0C0C")));
149 aml_append(dev
, aml_name_decl("_UID", aml_int(0)));
150 aml_append(scope
, dev
);
153 /* Memory read by the GED _EVT AML dynamic method */
154 static uint64_t ged_evt_read(void *opaque
, hwaddr addr
, unsigned size
)
157 GEDState
*ged_st
= opaque
;
160 case ACPI_GED_EVT_SEL_OFFSET
:
161 /* Read the selector value and reset it */
172 /* Nothing is expected to be written to the GED memory region */
173 static void ged_evt_write(void *opaque
, hwaddr addr
, uint64_t data
,
178 static const MemoryRegionOps ged_evt_ops
= {
179 .read
= ged_evt_read
,
180 .write
= ged_evt_write
,
181 .endianness
= DEVICE_LITTLE_ENDIAN
,
183 .min_access_size
= 4,
184 .max_access_size
= 4,
188 static uint64_t ged_regs_read(void *opaque
, hwaddr addr
, unsigned size
)
193 static void ged_regs_write(void *opaque
, hwaddr addr
, uint64_t data
,
200 case ACPI_GED_REG_SLEEP_CTL
:
201 slp_typ
= (data
>> 2) & 0x07;
202 slp_en
= (data
>> 5) & 0x01;
203 if (slp_en
&& slp_typ
== 5) {
204 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_SHUTDOWN
);
207 case ACPI_GED_REG_SLEEP_STS
:
209 case ACPI_GED_REG_RESET
:
210 if (data
== ACPI_GED_RESET_VALUE
) {
211 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_SHUTDOWN
);
217 static const MemoryRegionOps ged_regs_ops
= {
218 .read
= ged_regs_read
,
219 .write
= ged_regs_write
,
220 .endianness
= DEVICE_LITTLE_ENDIAN
,
222 .min_access_size
= 1,
223 .max_access_size
= 1,
227 static void acpi_ged_device_plug_cb(HotplugHandler
*hotplug_dev
,
228 DeviceState
*dev
, Error
**errp
)
230 AcpiGedState
*s
= ACPI_GED(hotplug_dev
);
232 if (object_dynamic_cast(OBJECT(dev
), TYPE_PC_DIMM
)) {
233 if (object_dynamic_cast(OBJECT(dev
), TYPE_NVDIMM
)) {
234 nvdimm_acpi_plug_cb(hotplug_dev
, dev
);
236 acpi_memory_plug_cb(hotplug_dev
, &s
->memhp_state
, dev
, errp
);
239 error_setg(errp
, "virt: device plug request for unsupported device"
240 " type: %s", object_get_typename(OBJECT(dev
)));
244 static void acpi_ged_unplug_request_cb(HotplugHandler
*hotplug_dev
,
245 DeviceState
*dev
, Error
**errp
)
247 AcpiGedState
*s
= ACPI_GED(hotplug_dev
);
249 if ((object_dynamic_cast(OBJECT(dev
), TYPE_PC_DIMM
) &&
250 !(object_dynamic_cast(OBJECT(dev
), TYPE_NVDIMM
)))) {
251 acpi_memory_unplug_request_cb(hotplug_dev
, &s
->memhp_state
, dev
, errp
);
253 error_setg(errp
, "acpi: device unplug request for unsupported device"
254 " type: %s", object_get_typename(OBJECT(dev
)));
258 static void acpi_ged_unplug_cb(HotplugHandler
*hotplug_dev
,
259 DeviceState
*dev
, Error
**errp
)
261 AcpiGedState
*s
= ACPI_GED(hotplug_dev
);
263 if (object_dynamic_cast(OBJECT(dev
), TYPE_PC_DIMM
)) {
264 acpi_memory_unplug_cb(&s
->memhp_state
, dev
, errp
);
266 error_setg(errp
, "acpi: device unplug for unsupported device"
267 " type: %s", object_get_typename(OBJECT(dev
)));
271 static void acpi_ged_send_event(AcpiDeviceIf
*adev
, AcpiEventStatusBits ev
)
273 AcpiGedState
*s
= ACPI_GED(adev
);
274 GEDState
*ged_st
= &s
->ged_state
;
277 if (ev
& ACPI_MEMORY_HOTPLUG_STATUS
) {
278 sel
= ACPI_GED_MEM_HOTPLUG_EVT
;
279 } else if (ev
& ACPI_POWER_DOWN_STATUS
) {
280 sel
= ACPI_GED_PWR_DOWN_EVT
;
281 } else if (ev
& ACPI_NVDIMM_HOTPLUG_STATUS
) {
282 sel
= ACPI_GED_NVDIMM_HOTPLUG_EVT
;
284 /* Unknown event. Return without generating interrupt. */
285 warn_report("GED: Unsupported event %d. No irq injected", ev
);
290 * Set the GED selector field to communicate the event type.
291 * This will be read by GED aml code to select the appropriate
296 /* Trigger the event by sending an interrupt to the guest. */
297 qemu_irq_pulse(s
->irq
);
300 static Property acpi_ged_properties
[] = {
301 DEFINE_PROP_UINT32("ged-event", AcpiGedState
, ged_event_bitmap
, 0),
302 DEFINE_PROP_END_OF_LIST(),
305 static const VMStateDescription vmstate_memhp_state
= {
306 .name
= "acpi-ged/memhp",
308 .minimum_version_id
= 1,
309 .fields
= (VMStateField
[]) {
310 VMSTATE_MEMORY_HOTPLUG(memhp_state
, AcpiGedState
),
311 VMSTATE_END_OF_LIST()
315 static const VMStateDescription vmstate_ged_state
= {
316 .name
= "acpi-ged-state",
318 .minimum_version_id
= 1,
319 .fields
= (VMStateField
[]) {
320 VMSTATE_UINT32(sel
, GEDState
),
321 VMSTATE_END_OF_LIST()
325 static bool ghes_needed(void *opaque
)
327 AcpiGedState
*s
= opaque
;
328 return s
->ghes_state
.ghes_addr_le
;
331 static const VMStateDescription vmstate_ghes_state
= {
332 .name
= "acpi-ged/ghes",
334 .minimum_version_id
= 1,
335 .needed
= ghes_needed
,
336 .fields
= (VMStateField
[]) {
337 VMSTATE_STRUCT(ghes_state
, AcpiGedState
, 1,
338 vmstate_ghes_state
, AcpiGhesState
),
339 VMSTATE_END_OF_LIST()
343 static const VMStateDescription vmstate_acpi_ged
= {
346 .minimum_version_id
= 1,
347 .fields
= (VMStateField
[]) {
348 VMSTATE_STRUCT(ged_state
, AcpiGedState
, 1, vmstate_ged_state
, GEDState
),
349 VMSTATE_END_OF_LIST(),
351 .subsections
= (const VMStateDescription
* []) {
352 &vmstate_memhp_state
,
358 static void acpi_ged_initfn(Object
*obj
)
360 DeviceState
*dev
= DEVICE(obj
);
361 AcpiGedState
*s
= ACPI_GED(dev
);
362 SysBusDevice
*sbd
= SYS_BUS_DEVICE(obj
);
363 GEDState
*ged_st
= &s
->ged_state
;
365 memory_region_init_io(&ged_st
->evt
, obj
, &ged_evt_ops
, ged_st
,
366 TYPE_ACPI_GED
, ACPI_GED_EVT_SEL_LEN
);
367 sysbus_init_mmio(sbd
, &ged_st
->evt
);
369 sysbus_init_irq(sbd
, &s
->irq
);
371 s
->memhp_state
.is_enabled
= true;
373 * GED handles memory hotplug event and acpi-mem-hotplug
374 * memory region gets initialized here. Create an exclusive
375 * container for memory hotplug IO and expose it as GED sysbus
376 * MMIO so that boards can map it separately.
378 memory_region_init(&s
->container_memhp
, OBJECT(dev
), "memhp container",
379 MEMORY_HOTPLUG_IO_LEN
);
380 sysbus_init_mmio(sbd
, &s
->container_memhp
);
381 acpi_memory_hotplug_init(&s
->container_memhp
, OBJECT(dev
),
384 memory_region_init_io(&ged_st
->regs
, obj
, &ged_regs_ops
, ged_st
,
385 TYPE_ACPI_GED
"-regs", ACPI_GED_REG_COUNT
);
386 sysbus_init_mmio(sbd
, &ged_st
->regs
);
389 static void acpi_ged_class_init(ObjectClass
*class, void *data
)
391 DeviceClass
*dc
= DEVICE_CLASS(class);
392 HotplugHandlerClass
*hc
= HOTPLUG_HANDLER_CLASS(class);
393 AcpiDeviceIfClass
*adevc
= ACPI_DEVICE_IF_CLASS(class);
395 dc
->desc
= "ACPI Generic Event Device";
396 device_class_set_props(dc
, acpi_ged_properties
);
397 dc
->vmsd
= &vmstate_acpi_ged
;
399 hc
->plug
= acpi_ged_device_plug_cb
;
400 hc
->unplug_request
= acpi_ged_unplug_request_cb
;
401 hc
->unplug
= acpi_ged_unplug_cb
;
403 adevc
->send_event
= acpi_ged_send_event
;
406 static const TypeInfo acpi_ged_info
= {
407 .name
= TYPE_ACPI_GED
,
408 .parent
= TYPE_SYS_BUS_DEVICE
,
409 .instance_size
= sizeof(AcpiGedState
),
410 .instance_init
= acpi_ged_initfn
,
411 .class_init
= acpi_ged_class_init
,
412 .interfaces
= (InterfaceInfo
[]) {
413 { TYPE_HOTPLUG_HANDLER
},
414 { TYPE_ACPI_DEVICE_IF
},
419 static void acpi_ged_register_types(void)
421 type_register_static(&acpi_ged_info
);
424 type_init(acpi_ged_register_types
)