@@ -511,6 +511,9 @@ void ich9_pm_device_unplug_request_cb(HotplugHandler *hotplug_dev,
if (lpc->pm.acpi_memory_hotplug.is_enabled &&
object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) {
+ PCDIMMDeviceClass *ddc = PC_DIMM_GET_CLASS(dev);
+
+ ddc->prepare_unplug(dev);
acpi_memory_unplug_request_cb(hotplug_dev,
&lpc->pm.acpi_memory_hotplug, dev,
errp);
@@ -355,6 +355,15 @@ static GArray *nvdimm_build_device_structure(GSList *device_list)
for (; device_list; device_list = device_list->next) {
DeviceState *dev = device_list->data;
+ NVDIMMDevice *nvdimm = NVDIMM(dev);
+
+ /*
+ * the nvdimm device which is being removed should not be included
+ * in nfit/fit.
+ */
+ if (nvdimm->is_removing) {
+ continue;
+ }
/* build System Physical Address Range Structure. */
nvdimm_build_structure_spa(structures, dev);
@@ -400,6 +400,9 @@ static void piix4_device_unplug_request_cb(HotplugHandler *hotplug_dev,
if (s->acpi_memory_hotplug.is_enabled &&
object_dynamic_cast(OBJECT(dev), TYPE_PC_DIMM)) {
+ PCDIMMDeviceClass *ddc = PC_DIMM_GET_CLASS(dev);
+
+ ddc->prepare_unplug(dev);
acpi_memory_unplug_request_cb(hotplug_dev, &s->acpi_memory_hotplug,
dev, errp);
} else if (object_dynamic_cast(OBJECT(dev), TYPE_PCI_DEVICE)) {
@@ -145,6 +145,13 @@ static MemoryRegion *nvdimm_get_vmstate_memory_region(PCDIMMDevice *dimm)
return host_memory_backend_get_memory(dimm->hostmem, &error_abort);
}
+static void nvdimm_prepare_unplug(DeviceState *dev)
+{
+ NVDIMMDevice *nvdimm = NVDIMM(dev);
+
+ nvdimm->is_removing = true;
+}
+
static void nvdimm_class_init(ObjectClass *oc, void *data)
{
DeviceClass *dc = DEVICE_CLASS(oc);
@@ -157,6 +164,7 @@ static void nvdimm_class_init(ObjectClass *oc, void *data)
ddc->realize = nvdimm_realize;
ddc->get_memory_region = nvdimm_get_memory_region;
ddc->get_vmstate_memory_region = nvdimm_get_vmstate_memory_region;
+ ddc->prepare_unplug = nvdimm_prepare_unplug;
nvc->read_label_data = nvdimm_read_label_data;
nvc->write_label_data = nvdimm_write_label_data;
@@ -433,6 +433,10 @@ static MemoryRegion *pc_dimm_get_vmstate_memory_region(PCDIMMDevice *dimm)
return host_memory_backend_get_memory(dimm->hostmem, &error_abort);
}
+static void pc_dimm_prepare_unplug(DeviceState *dev)
+{
+}
+
static void pc_dimm_class_init(ObjectClass *oc, void *data)
{
DeviceClass *dc = DEVICE_CLASS(oc);
@@ -444,6 +448,7 @@ static void pc_dimm_class_init(ObjectClass *oc, void *data)
ddc->get_memory_region = pc_dimm_get_memory_region;
ddc->get_vmstate_memory_region = pc_dimm_get_vmstate_memory_region;
+ ddc->prepare_unplug = pc_dimm_prepare_unplug;
}
static TypeInfo pc_dimm_info = {
@@ -71,6 +71,9 @@ struct NVDIMMDevice {
* guest via ACPI NFIT and _FIT method if NVDIMM hotplug is supported.
*/
MemoryRegion nvdimm_mr;
+
+ /* the device is being unplugged. */
+ bool is_removing;
};
typedef struct NVDIMMDevice NVDIMMDevice;
@@ -73,6 +73,7 @@ typedef struct PCDIMMDeviceClass {
void (*realize)(PCDIMMDevice *dimm, Error **errp);
MemoryRegion *(*get_memory_region)(PCDIMMDevice *dimm);
MemoryRegion *(*get_vmstate_memory_region)(PCDIMMDevice *dimm);
+ void (*prepare_unplug)(DeviceState *dev);
} PCDIMMDeviceClass;
/**
We should let nvdimm acpi know which nvdimm device is being unplugged before QEMU interrupts the guest so that nvdimm acpi can update its FIT properly prepare_unplug() callback is introduced exactly for this purpose then the being removed device is skipped when guest reads FIT Signed-off-by: Xiao Guangrong <guangrong.xiao@linux.intel.com> --- hw/acpi/ich9.c | 3 +++ hw/acpi/nvdimm.c | 9 +++++++++ hw/acpi/piix4.c | 3 +++ hw/mem/nvdimm.c | 8 ++++++++ hw/mem/pc-dimm.c | 5 +++++ include/hw/mem/nvdimm.h | 3 +++ include/hw/mem/pc-dimm.h | 1 + 7 files changed, 32 insertions(+)