ARM: kvm: rename cpu_reset to avoid name clash
[linux-2.6.git] / drivers / xen / xen-acpi-cpuhotplug.c
blob8dae6c13063af5df3846d0c3a700876fe23eefe0
1 /*
2 * Copyright (C) 2012 Intel Corporation
3 * Author: Liu Jinsong <jinsong.liu@intel.com>
4 * Author: Jiang Yunhong <yunhong.jiang@intel.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or (at
9 * your option) any later version.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
14 * NON INFRINGEMENT. See the GNU General Public License for more
15 * details.
18 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20 #include <linux/kernel.h>
21 #include <linux/module.h>
22 #include <linux/init.h>
23 #include <linux/types.h>
24 #include <linux/cpu.h>
25 #include <linux/acpi.h>
26 #include <linux/uaccess.h>
27 #include <acpi/acpi_bus.h>
28 #include <acpi/acpi_drivers.h>
29 #include <acpi/processor.h>
31 #include <xen/acpi.h>
32 #include <xen/interface/platform.h>
33 #include <asm/xen/hypercall.h>
35 #define PREFIX "ACPI:xen_cpu_hotplug:"
37 #define INSTALL_NOTIFY_HANDLER 0
38 #define UNINSTALL_NOTIFY_HANDLER 1
40 static acpi_status xen_acpi_cpu_hotadd(struct acpi_processor *pr);
42 /* --------------------------------------------------------------------------
43 Driver Interface
44 -------------------------------------------------------------------------- */
46 static int xen_acpi_processor_enable(struct acpi_device *device)
48 acpi_status status = 0;
49 unsigned long long value;
50 union acpi_object object = { 0 };
51 struct acpi_buffer buffer = { sizeof(union acpi_object), &object };
52 struct acpi_processor *pr;
54 pr = acpi_driver_data(device);
55 if (!pr) {
56 pr_err(PREFIX "Cannot find driver data\n");
57 return -EINVAL;
60 if (!strcmp(acpi_device_hid(device), ACPI_PROCESSOR_OBJECT_HID)) {
61 /* Declared with "Processor" statement; match ProcessorID */
62 status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer);
63 if (ACPI_FAILURE(status)) {
64 pr_err(PREFIX "Evaluating processor object\n");
65 return -ENODEV;
68 pr->acpi_id = object.processor.proc_id;
69 } else {
70 /* Declared with "Device" statement; match _UID */
71 status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID,
72 NULL, &value);
73 if (ACPI_FAILURE(status)) {
74 pr_err(PREFIX "Evaluating processor _UID\n");
75 return -ENODEV;
78 pr->acpi_id = value;
81 pr->id = xen_pcpu_id(pr->acpi_id);
83 if ((int)pr->id < 0)
84 /* This cpu is not presented at hypervisor, try to hotadd it */
85 if (ACPI_FAILURE(xen_acpi_cpu_hotadd(pr))) {
86 pr_err(PREFIX "Hotadd CPU (acpi_id = %d) failed.\n",
87 pr->acpi_id);
88 return -ENODEV;
91 return 0;
94 static int xen_acpi_processor_add(struct acpi_device *device)
96 int ret;
97 struct acpi_processor *pr;
99 if (!device)
100 return -EINVAL;
102 pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL);
103 if (!pr)
104 return -ENOMEM;
106 pr->handle = device->handle;
107 strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME);
108 strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS);
109 device->driver_data = pr;
111 ret = xen_acpi_processor_enable(device);
112 if (ret)
113 pr_err(PREFIX "Error when enabling Xen processor\n");
115 return ret;
118 static int xen_acpi_processor_remove(struct acpi_device *device)
120 struct acpi_processor *pr;
122 if (!device)
123 return -EINVAL;
125 pr = acpi_driver_data(device);
126 if (!pr)
127 return -EINVAL;
129 kfree(pr);
130 return 0;
133 /*--------------------------------------------------------------
134 Acpi processor hotplug support
135 --------------------------------------------------------------*/
137 static int is_processor_present(acpi_handle handle)
139 acpi_status status;
140 unsigned long long sta = 0;
143 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
145 if (ACPI_SUCCESS(status) && (sta & ACPI_STA_DEVICE_PRESENT))
146 return 1;
149 * _STA is mandatory for a processor that supports hot plug
151 if (status == AE_NOT_FOUND)
152 pr_info(PREFIX "Processor does not support hot plug\n");
153 else
154 pr_info(PREFIX "Processor Device is not present");
155 return 0;
158 static int xen_apic_id(acpi_handle handle)
160 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
161 union acpi_object *obj;
162 struct acpi_madt_local_apic *lapic;
163 int apic_id;
165 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer)))
166 return -EINVAL;
168 if (!buffer.length || !buffer.pointer)
169 return -EINVAL;
171 obj = buffer.pointer;
172 if (obj->type != ACPI_TYPE_BUFFER ||
173 obj->buffer.length < sizeof(*lapic)) {
174 kfree(buffer.pointer);
175 return -EINVAL;
178 lapic = (struct acpi_madt_local_apic *)obj->buffer.pointer;
180 if (lapic->header.type != ACPI_MADT_TYPE_LOCAL_APIC ||
181 !(lapic->lapic_flags & ACPI_MADT_ENABLED)) {
182 kfree(buffer.pointer);
183 return -EINVAL;
186 apic_id = (uint32_t)lapic->id;
187 kfree(buffer.pointer);
188 buffer.length = ACPI_ALLOCATE_BUFFER;
189 buffer.pointer = NULL;
191 return apic_id;
194 static int xen_hotadd_cpu(struct acpi_processor *pr)
196 int cpu_id, apic_id, pxm;
197 struct xen_platform_op op;
199 apic_id = xen_apic_id(pr->handle);
200 if (apic_id < 0) {
201 pr_err(PREFIX "Failed to get apic_id for acpi_id %d\n",
202 pr->acpi_id);
203 return -ENODEV;
206 pxm = xen_acpi_get_pxm(pr->handle);
207 if (pxm < 0) {
208 pr_err(PREFIX "Failed to get _PXM for acpi_id %d\n",
209 pr->acpi_id);
210 return pxm;
213 op.cmd = XENPF_cpu_hotadd;
214 op.u.cpu_add.apic_id = apic_id;
215 op.u.cpu_add.acpi_id = pr->acpi_id;
216 op.u.cpu_add.pxm = pxm;
218 cpu_id = HYPERVISOR_dom0_op(&op);
219 if (cpu_id < 0)
220 pr_err(PREFIX "Failed to hotadd CPU for acpi_id %d\n",
221 pr->acpi_id);
223 return cpu_id;
226 static acpi_status xen_acpi_cpu_hotadd(struct acpi_processor *pr)
228 if (!is_processor_present(pr->handle))
229 return AE_ERROR;
231 pr->id = xen_hotadd_cpu(pr);
232 if ((int)pr->id < 0)
233 return AE_ERROR;
236 * Sync with Xen hypervisor, providing new /sys/.../xen_cpuX
237 * interface after cpu hotadded.
239 xen_pcpu_hotplug_sync();
241 return AE_OK;
244 static int acpi_processor_device_remove(struct acpi_device *device)
246 pr_debug(PREFIX "Xen does not support CPU hotremove\n");
248 return -ENOSYS;
251 static void acpi_processor_hotplug_notify(acpi_handle handle,
252 u32 event, void *data)
254 struct acpi_processor *pr;
255 struct acpi_device *device = NULL;
256 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE; /* default */
257 int result;
259 acpi_scan_lock_acquire();
261 switch (event) {
262 case ACPI_NOTIFY_BUS_CHECK:
263 case ACPI_NOTIFY_DEVICE_CHECK:
264 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
265 "Processor driver received %s event\n",
266 (event == ACPI_NOTIFY_BUS_CHECK) ?
267 "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK"));
269 if (!is_processor_present(handle))
270 break;
272 if (!acpi_bus_get_device(handle, &device))
273 break;
275 result = acpi_bus_scan(handle);
276 if (result) {
277 pr_err(PREFIX "Unable to add the device\n");
278 break;
280 result = acpi_bus_get_device(handle, &device);
281 if (result) {
282 pr_err(PREFIX "Missing device object\n");
283 break;
285 ost_code = ACPI_OST_SC_SUCCESS;
286 break;
288 case ACPI_NOTIFY_EJECT_REQUEST:
289 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
290 "received ACPI_NOTIFY_EJECT_REQUEST\n"));
292 if (acpi_bus_get_device(handle, &device)) {
293 pr_err(PREFIX "Device don't exist, dropping EJECT\n");
294 break;
296 pr = acpi_driver_data(device);
297 if (!pr) {
298 pr_err(PREFIX "Driver data is NULL, dropping EJECT\n");
299 break;
303 * TBD: implement acpi_processor_device_remove if Xen support
304 * CPU hotremove in the future.
306 acpi_processor_device_remove(device);
307 break;
309 default:
310 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
311 "Unsupported event [0x%x]\n", event));
313 /* non-hotplug event; possibly handled by other handler */
314 goto out;
317 (void) acpi_evaluate_hotplug_ost(handle, event, ost_code, NULL);
319 out:
320 acpi_scan_lock_release();
323 static acpi_status is_processor_device(acpi_handle handle)
325 struct acpi_device_info *info;
326 char *hid;
327 acpi_status status;
329 status = acpi_get_object_info(handle, &info);
330 if (ACPI_FAILURE(status))
331 return status;
333 if (info->type == ACPI_TYPE_PROCESSOR) {
334 kfree(info);
335 return AE_OK; /* found a processor object */
338 if (!(info->valid & ACPI_VALID_HID)) {
339 kfree(info);
340 return AE_ERROR;
343 hid = info->hardware_id.string;
344 if ((hid == NULL) || strcmp(hid, ACPI_PROCESSOR_DEVICE_HID)) {
345 kfree(info);
346 return AE_ERROR;
349 kfree(info);
350 return AE_OK; /* found a processor device object */
353 static acpi_status
354 processor_walk_namespace_cb(acpi_handle handle,
355 u32 lvl, void *context, void **rv)
357 acpi_status status;
358 int *action = context;
360 status = is_processor_device(handle);
361 if (ACPI_FAILURE(status))
362 return AE_OK; /* not a processor; continue to walk */
364 switch (*action) {
365 case INSTALL_NOTIFY_HANDLER:
366 acpi_install_notify_handler(handle,
367 ACPI_SYSTEM_NOTIFY,
368 acpi_processor_hotplug_notify,
369 NULL);
370 break;
371 case UNINSTALL_NOTIFY_HANDLER:
372 acpi_remove_notify_handler(handle,
373 ACPI_SYSTEM_NOTIFY,
374 acpi_processor_hotplug_notify);
375 break;
376 default:
377 break;
380 /* found a processor; skip walking underneath */
381 return AE_CTRL_DEPTH;
384 static
385 void acpi_processor_install_hotplug_notify(void)
387 int action = INSTALL_NOTIFY_HANDLER;
388 acpi_walk_namespace(ACPI_TYPE_ANY,
389 ACPI_ROOT_OBJECT,
390 ACPI_UINT32_MAX,
391 processor_walk_namespace_cb, NULL, &action, NULL);
394 static
395 void acpi_processor_uninstall_hotplug_notify(void)
397 int action = UNINSTALL_NOTIFY_HANDLER;
398 acpi_walk_namespace(ACPI_TYPE_ANY,
399 ACPI_ROOT_OBJECT,
400 ACPI_UINT32_MAX,
401 processor_walk_namespace_cb, NULL, &action, NULL);
404 static const struct acpi_device_id processor_device_ids[] = {
405 {ACPI_PROCESSOR_OBJECT_HID, 0},
406 {ACPI_PROCESSOR_DEVICE_HID, 0},
407 {"", 0},
409 MODULE_DEVICE_TABLE(acpi, processor_device_ids);
411 static struct acpi_driver xen_acpi_processor_driver = {
412 .name = "processor",
413 .class = ACPI_PROCESSOR_CLASS,
414 .ids = processor_device_ids,
415 .ops = {
416 .add = xen_acpi_processor_add,
417 .remove = xen_acpi_processor_remove,
421 static int __init xen_acpi_processor_init(void)
423 int result = 0;
425 if (!xen_initial_domain())
426 return -ENODEV;
428 /* unregister the stub which only used to reserve driver space */
429 xen_stub_processor_exit();
431 result = acpi_bus_register_driver(&xen_acpi_processor_driver);
432 if (result < 0) {
433 xen_stub_processor_init();
434 return result;
437 acpi_processor_install_hotplug_notify();
438 return 0;
441 static void __exit xen_acpi_processor_exit(void)
443 if (!xen_initial_domain())
444 return;
446 acpi_processor_uninstall_hotplug_notify();
448 acpi_bus_unregister_driver(&xen_acpi_processor_driver);
451 * stub reserve space again to prevent any chance of native
452 * driver loading.
454 xen_stub_processor_init();
455 return;
458 module_init(xen_acpi_processor_init);
459 module_exit(xen_acpi_processor_exit);
460 ACPI_MODULE_NAME("xen-acpi-cpuhotplug");
461 MODULE_AUTHOR("Liu Jinsong <jinsong.liu@intel.com>");
462 MODULE_DESCRIPTION("Xen Hotplug CPU Driver");
463 MODULE_LICENSE("GPL");