1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2012 Intel Corporation
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/init.h>
13 #include <linux/types.h>
14 #include <linux/acpi.h>
16 #include <xen/interface/platform.h>
17 #include <asm/xen/hypercall.h>
19 #define PREFIX "ACPI:xen_memory_hotplug:"
21 struct acpi_memory_info {
22 struct list_head list;
23 u64 start_addr; /* Memory Range start physical addr */
24 u64 length; /* Memory Range length */
25 unsigned short caching; /* memory cache attribute */
26 unsigned short write_protect; /* memory read/write attribute */
27 /* copied from buffer getting from _CRS */
28 unsigned int enabled:1;
31 struct acpi_memory_device {
32 struct acpi_device *device;
33 struct list_head res_list;
36 static bool acpi_hotmem_initialized __read_mostly;
38 static int xen_hotadd_memory(int pxm, struct acpi_memory_info *info)
41 struct xen_platform_op op;
43 op.cmd = XENPF_mem_hotadd;
44 op.u.mem_add.spfn = info->start_addr >> PAGE_SHIFT;
45 op.u.mem_add.epfn = (info->start_addr + info->length) >> PAGE_SHIFT;
46 op.u.mem_add.pxm = pxm;
48 rc = HYPERVISOR_dom0_op(&op);
50 pr_err(PREFIX "Xen Hotplug Memory Add failed on "
51 "0x%lx -> 0x%lx, _PXM: %d, error: %d\n",
52 (unsigned long)info->start_addr,
53 (unsigned long)(info->start_addr + info->length),
59 static int xen_acpi_memory_enable_device(struct acpi_memory_device *mem_device)
63 struct acpi_memory_info *info;
68 pxm = xen_acpi_get_pxm(mem_device->device->handle);
72 list_for_each_entry(info, &mem_device->res_list, list) {
73 if (info->enabled) { /* just sanity check...*/
81 result = xen_hotadd_memory(pxm, info);
95 acpi_memory_get_resource(struct acpi_resource *resource, void *context)
97 struct acpi_memory_device *mem_device = context;
98 struct acpi_resource_address64 address64;
99 struct acpi_memory_info *info, *new;
102 status = acpi_resource_to_address64(resource, &address64);
103 if (ACPI_FAILURE(status) ||
104 (address64.resource_type != ACPI_MEMORY_RANGE))
107 list_for_each_entry(info, &mem_device->res_list, list) {
108 if ((info->caching == address64.info.mem.caching) &&
109 (info->write_protect == address64.info.mem.write_protect) &&
110 (info->start_addr + info->length == address64.address.minimum)) {
111 info->length += address64.address.address_length;
116 new = kzalloc(sizeof(struct acpi_memory_info), GFP_KERNEL);
120 INIT_LIST_HEAD(&new->list);
121 new->caching = address64.info.mem.caching;
122 new->write_protect = address64.info.mem.write_protect;
123 new->start_addr = address64.address.minimum;
124 new->length = address64.address.address_length;
125 list_add_tail(&new->list, &mem_device->res_list);
131 acpi_memory_get_device_resources(struct acpi_memory_device *mem_device)
134 struct acpi_memory_info *info, *n;
136 if (!list_empty(&mem_device->res_list))
139 status = acpi_walk_resources(mem_device->device->handle,
140 METHOD_NAME__CRS, acpi_memory_get_resource, mem_device);
142 if (ACPI_FAILURE(status)) {
143 list_for_each_entry_safe(info, n, &mem_device->res_list, list)
145 INIT_LIST_HEAD(&mem_device->res_list);
152 static int acpi_memory_get_device(acpi_handle handle,
153 struct acpi_memory_device **mem_device)
155 struct acpi_device *device = NULL;
158 acpi_scan_lock_acquire();
160 acpi_bus_get_device(handle, &device);
161 if (acpi_device_enumerated(device))
165 * Now add the notified device. This creates the acpi_device
166 * and invokes .add function
168 result = acpi_bus_scan(handle);
170 pr_warn(PREFIX "ACPI namespace scan failed\n");
175 acpi_bus_get_device(handle, &device);
176 if (!acpi_device_enumerated(device)) {
177 pr_warn(PREFIX "Missing device object\n");
183 *mem_device = acpi_driver_data(device);
184 if (!(*mem_device)) {
185 pr_err(PREFIX "driver data not found\n");
191 acpi_scan_lock_release();
195 static int acpi_memory_check_device(struct acpi_memory_device *mem_device)
197 unsigned long long current_status;
199 /* Get device present/absent information from the _STA */
200 if (ACPI_FAILURE(acpi_evaluate_integer(mem_device->device->handle,
201 "_STA", NULL, ¤t_status)))
204 * Check for device status. Device should be
205 * present/enabled/functioning.
207 if (!((current_status & ACPI_STA_DEVICE_PRESENT)
208 && (current_status & ACPI_STA_DEVICE_ENABLED)
209 && (current_status & ACPI_STA_DEVICE_FUNCTIONING)))
215 static int acpi_memory_disable_device(struct acpi_memory_device *mem_device)
217 pr_debug(PREFIX "Xen does not support memory hotremove\n");
222 static void acpi_memory_device_notify(acpi_handle handle, u32 event, void *data)
224 struct acpi_memory_device *mem_device;
225 struct acpi_device *device;
226 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE; /* default */
229 case ACPI_NOTIFY_BUS_CHECK:
230 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
231 "\nReceived BUS CHECK notification for device\n"));
233 case ACPI_NOTIFY_DEVICE_CHECK:
234 if (event == ACPI_NOTIFY_DEVICE_CHECK)
235 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
236 "\nReceived DEVICE CHECK notification for device\n"));
238 if (acpi_memory_get_device(handle, &mem_device)) {
239 pr_err(PREFIX "Cannot find driver data\n");
243 ost_code = ACPI_OST_SC_SUCCESS;
246 case ACPI_NOTIFY_EJECT_REQUEST:
247 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
248 "\nReceived EJECT REQUEST notification for device\n"));
250 acpi_scan_lock_acquire();
251 if (acpi_bus_get_device(handle, &device)) {
252 acpi_scan_lock_release();
253 pr_err(PREFIX "Device doesn't exist\n");
256 mem_device = acpi_driver_data(device);
258 acpi_scan_lock_release();
259 pr_err(PREFIX "Driver Data is NULL\n");
264 * TBD: implement acpi_memory_disable_device and invoke
265 * acpi_bus_remove if Xen support hotremove in the future
267 acpi_memory_disable_device(mem_device);
268 acpi_scan_lock_release();
272 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
273 "Unsupported event [0x%x]\n", event));
274 /* non-hotplug event; possibly handled by other handler */
278 (void) acpi_evaluate_ost(handle, event, ost_code, NULL);
282 static int xen_acpi_memory_device_add(struct acpi_device *device)
285 struct acpi_memory_device *mem_device = NULL;
291 mem_device = kzalloc(sizeof(struct acpi_memory_device), GFP_KERNEL);
295 INIT_LIST_HEAD(&mem_device->res_list);
296 mem_device->device = device;
297 sprintf(acpi_device_name(device), "%s", ACPI_MEMORY_DEVICE_NAME);
298 sprintf(acpi_device_class(device), "%s", ACPI_MEMORY_DEVICE_CLASS);
299 device->driver_data = mem_device;
301 /* Get the range from the _CRS */
302 result = acpi_memory_get_device_resources(mem_device);
309 * For booting existed memory devices, early boot code has recognized
310 * memory area by EFI/E820. If DSDT shows these memory devices on boot,
311 * hotplug is not necessary for them.
312 * For hot-added memory devices during runtime, it need hypercall to
313 * Xen hypervisor to add memory.
315 if (!acpi_hotmem_initialized)
318 if (!acpi_memory_check_device(mem_device))
319 result = xen_acpi_memory_enable_device(mem_device);
324 static int xen_acpi_memory_device_remove(struct acpi_device *device)
326 struct acpi_memory_device *mem_device = NULL;
328 if (!device || !acpi_driver_data(device))
331 mem_device = acpi_driver_data(device);
338 * Helper function to check for memory device
340 static acpi_status is_memory_device(acpi_handle handle)
344 struct acpi_device_info *info;
346 status = acpi_get_object_info(handle, &info);
347 if (ACPI_FAILURE(status))
350 if (!(info->valid & ACPI_VALID_HID)) {
355 hardware_id = info->hardware_id.string;
356 if ((hardware_id == NULL) ||
357 (strcmp(hardware_id, ACPI_MEMORY_DEVICE_HID)))
365 acpi_memory_register_notify_handler(acpi_handle handle,
366 u32 level, void *ctxt, void **retv)
370 status = is_memory_device(handle);
371 if (ACPI_FAILURE(status))
372 return AE_OK; /* continue */
374 status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
375 acpi_memory_device_notify, NULL);
381 acpi_memory_deregister_notify_handler(acpi_handle handle,
382 u32 level, void *ctxt, void **retv)
386 status = is_memory_device(handle);
387 if (ACPI_FAILURE(status))
388 return AE_OK; /* continue */
390 status = acpi_remove_notify_handler(handle,
392 acpi_memory_device_notify);
394 return AE_OK; /* continue */
397 static const struct acpi_device_id memory_device_ids[] = {
398 {ACPI_MEMORY_DEVICE_HID, 0},
401 MODULE_DEVICE_TABLE(acpi, memory_device_ids);
403 static struct acpi_driver xen_acpi_memory_device_driver = {
404 .name = "acpi_memhotplug",
405 .class = ACPI_MEMORY_DEVICE_CLASS,
406 .ids = memory_device_ids,
408 .add = xen_acpi_memory_device_add,
409 .remove = xen_acpi_memory_device_remove,
413 static int __init xen_acpi_memory_device_init(void)
418 if (!xen_initial_domain())
421 /* unregister the stub which only used to reserve driver space */
422 xen_stub_memory_device_exit();
424 result = acpi_bus_register_driver(&xen_acpi_memory_device_driver);
426 xen_stub_memory_device_init();
430 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
432 acpi_memory_register_notify_handler,
435 if (ACPI_FAILURE(status)) {
436 pr_warn(PREFIX "walk_namespace failed\n");
437 acpi_bus_unregister_driver(&xen_acpi_memory_device_driver);
438 xen_stub_memory_device_init();
442 acpi_hotmem_initialized = true;
446 static void __exit xen_acpi_memory_device_exit(void)
450 if (!xen_initial_domain())
453 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
455 acpi_memory_deregister_notify_handler,
457 if (ACPI_FAILURE(status))
458 pr_warn(PREFIX "walk_namespace failed\n");
460 acpi_bus_unregister_driver(&xen_acpi_memory_device_driver);
463 * stub reserve space again to prevent any chance of native
466 xen_stub_memory_device_init();
470 module_init(xen_acpi_memory_device_init);
471 module_exit(xen_acpi_memory_device_exit);
472 ACPI_MODULE_NAME("xen-acpi-memhotplug");
474 MODULE_DESCRIPTION("Xen Hotplug Mem Driver");
475 MODULE_LICENSE("GPL");