This series is an attempt to provide device memory hotplug support on ARM virt platform. This is based on Eric's recent works here[1] and carries some of the pc-dimm related patches dropped from his series. The kernel support for arm64 memory hot add was added recently by Robin and hence the guest kernel should be => 5.0-rc1. NVDIM support is not included currently as we still have an unresolved issue while hot adding NVDIMM[2]. However NVDIMM cold plug patches can be included, but not done for now, for keeping it simple. This makes use of GED device to sent hotplug ACPI events to the Guest. GED code is based on Nemu. Thanks to the efforts of Samuel and Sebastien to add the hardware-reduced support to Nemu using GED device[3]. (Please shout if I got the author/signed-off wrong for those patches or missed any names). This is sanity tested on a HiSilicon ARM64 platform and appreciate any further testing. Note: Attempted adding dimm_pxm test case to bios-tables-test for arm/virt. But noticed the issue decribed here[5]. This is under investigation now. upstream url: https://patchwork.kernel.org/cover/11150345/ Signed-off-by: Keqian Zhu <zhukeqian1@huawei.com>
45 lines
1.8 KiB
Diff
45 lines
1.8 KiB
Diff
From 27e2533e43f0ab2b8a60f1902f58f8752581ea9f Mon Sep 17 00:00:00 2001
|
|
From: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
|
|
Date: Wed, 18 Sep 2019 14:06:32 +0100
|
|
Subject: [PATCH] tests: Update ACPI tables list for upcoming arm/virt tests
|
|
|
|
This is in preparation to add numamem and memhp tests to
|
|
arm/virt platform. The bios-tables-test-allowed-diff.h
|
|
is updated with a list of expected ACPI tables that needs to be
|
|
present in tests/data/acpi/virt folder.
|
|
|
|
Signed-off-by: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
|
|
Message-Id: <20190918130633.4872-11-shameerali.kolothum.thodi@huawei.com>
|
|
Acked-by: Peter Maydell <peter.maydell@linaro.org>
|
|
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
|
|
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
|
|
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
|
|
---
|
|
tests/bios-tables-test-allowed-diff.h | 13 +++++++++++++
|
|
1 file changed, 13 insertions(+)
|
|
|
|
diff --git a/tests/bios-tables-test-allowed-diff.h b/tests/bios-tables-test-allowed-diff.h
|
|
index 32a401ae35..3776dd2f3d 100644
|
|
--- a/tests/bios-tables-test-allowed-diff.h
|
|
+++ b/tests/bios-tables-test-allowed-diff.h
|
|
@@ -1,4 +1,17 @@
|
|
/* List of comma-separated changed AML files to ignore */
|
|
"tests/data/acpi/virt/DSDT",
|
|
+"tests/data/acpi/virt/APIC.memhp",
|
|
+"tests/data/acpi/virt/APIC.numamem",
|
|
"tests/data/acpi/virt/DSDT.memhp",
|
|
"tests/data/acpi/virt/DSDT.numamem",
|
|
+"tests/data/acpi/virt/FACP.memhp",
|
|
+"tests/data/acpi/virt/FACP.numamem",
|
|
+"tests/data/acpi/virt/GTDT.memhp",
|
|
+"tests/data/acpi/virt/GTDT.numamem",
|
|
+"tests/data/acpi/virt/MCFG.memhp",
|
|
+"tests/data/acpi/virt/MCFG.numamem",
|
|
+"tests/data/acpi/virt/SLIT.memhp",
|
|
+"tests/data/acpi/virt/SPCR.memhp",
|
|
+"tests/data/acpi/virt/SPCR.numamem",
|
|
+"tests/data/acpi/virt/SRAT.memhp",
|
|
+"tests/data/acpi/virt/SRAT.numamem",
|
|
--
|
|
2.19.1
|