ACPI: memory hotplug: remove .start() method
[linux-2.6/libata-dev.git] / drivers / acpi / acpi_memhotplug.c
bloba8d9d8fac5d4142201d2cc9e5abb545cdcf6e8ef
1 /*
2 * Copyright (C) 2004 Intel Corporation <naveen.b.s@intel.com>
4 * All rights reserved.
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.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 * ACPI based HotPlug driver that supports Memory Hotplug
23 * This driver fields notifications from firmware for memory add
24 * and remove operations and alerts the VM of the affected memory
25 * ranges.
28 #include <linux/kernel.h>
29 #include <linux/module.h>
30 #include <linux/init.h>
31 #include <linux/types.h>
32 #include <linux/memory_hotplug.h>
33 #include <acpi/acpi_drivers.h>
35 #define ACPI_MEMORY_DEVICE_CLASS "memory"
36 #define ACPI_MEMORY_DEVICE_HID "PNP0C80"
37 #define ACPI_MEMORY_DEVICE_NAME "Hotplug Mem Device"
39 #define _COMPONENT ACPI_MEMORY_DEVICE_COMPONENT
41 ACPI_MODULE_NAME("acpi_memhotplug");
42 MODULE_AUTHOR("Naveen B S <naveen.b.s@intel.com>");
43 MODULE_DESCRIPTION("Hotplug Mem Driver");
44 MODULE_LICENSE("GPL");
46 /* Memory Device States */
47 #define MEMORY_INVALID_STATE 0
48 #define MEMORY_POWER_ON_STATE 1
49 #define MEMORY_POWER_OFF_STATE 2
51 static int acpi_memory_device_add(struct acpi_device *device);
52 static int acpi_memory_device_remove(struct acpi_device *device, int type);
54 static const struct acpi_device_id memory_device_ids[] = {
55 {ACPI_MEMORY_DEVICE_HID, 0},
56 {"", 0},
58 MODULE_DEVICE_TABLE(acpi, memory_device_ids);
60 static struct acpi_driver acpi_memory_device_driver = {
61 .name = "acpi_memhotplug",
62 .class = ACPI_MEMORY_DEVICE_CLASS,
63 .ids = memory_device_ids,
64 .ops = {
65 .add = acpi_memory_device_add,
66 .remove = acpi_memory_device_remove,
70 struct acpi_memory_info {
71 struct list_head list;
72 u64 start_addr; /* Memory Range start physical addr */
73 u64 length; /* Memory Range length */
74 unsigned short caching; /* memory cache attribute */
75 unsigned short write_protect; /* memory read/write attribute */
76 unsigned int enabled:1;
79 struct acpi_memory_device {
80 struct acpi_device * device;
81 unsigned int state; /* State of the memory device */
82 struct list_head res_list;
85 static int acpi_hotmem_initialized;
87 static acpi_status
88 acpi_memory_get_resource(struct acpi_resource *resource, void *context)
90 struct acpi_memory_device *mem_device = context;
91 struct acpi_resource_address64 address64;
92 struct acpi_memory_info *info, *new;
93 acpi_status status;
95 status = acpi_resource_to_address64(resource, &address64);
96 if (ACPI_FAILURE(status) ||
97 (address64.resource_type != ACPI_MEMORY_RANGE))
98 return AE_OK;
100 list_for_each_entry(info, &mem_device->res_list, list) {
101 /* Can we combine the resource range information? */
102 if ((info->caching == address64.info.mem.caching) &&
103 (info->write_protect == address64.info.mem.write_protect) &&
104 (info->start_addr + info->length == address64.minimum)) {
105 info->length += address64.address_length;
106 return AE_OK;
110 new = kzalloc(sizeof(struct acpi_memory_info), GFP_KERNEL);
111 if (!new)
112 return AE_ERROR;
114 INIT_LIST_HEAD(&new->list);
115 new->caching = address64.info.mem.caching;
116 new->write_protect = address64.info.mem.write_protect;
117 new->start_addr = address64.minimum;
118 new->length = address64.address_length;
119 list_add_tail(&new->list, &mem_device->res_list);
121 return AE_OK;
124 static int
125 acpi_memory_get_device_resources(struct acpi_memory_device *mem_device)
127 acpi_status status;
128 struct acpi_memory_info *info, *n;
131 if (!list_empty(&mem_device->res_list))
132 return 0;
134 status = acpi_walk_resources(mem_device->device->handle, METHOD_NAME__CRS,
135 acpi_memory_get_resource, mem_device);
136 if (ACPI_FAILURE(status)) {
137 list_for_each_entry_safe(info, n, &mem_device->res_list, list)
138 kfree(info);
139 INIT_LIST_HEAD(&mem_device->res_list);
140 return -EINVAL;
143 return 0;
146 static int
147 acpi_memory_get_device(acpi_handle handle,
148 struct acpi_memory_device **mem_device)
150 acpi_status status;
151 acpi_handle phandle;
152 struct acpi_device *device = NULL;
153 struct acpi_device *pdevice = NULL;
156 if (!acpi_bus_get_device(handle, &device) && device)
157 goto end;
159 status = acpi_get_parent(handle, &phandle);
160 if (ACPI_FAILURE(status)) {
161 ACPI_EXCEPTION((AE_INFO, status, "Cannot find acpi parent"));
162 return -EINVAL;
165 /* Get the parent device */
166 status = acpi_bus_get_device(phandle, &pdevice);
167 if (ACPI_FAILURE(status)) {
168 ACPI_EXCEPTION((AE_INFO, status, "Cannot get acpi bus device"));
169 return -EINVAL;
173 * Now add the notified device. This creates the acpi_device
174 * and invokes .add function
176 status = acpi_bus_add(&device, pdevice, handle, ACPI_BUS_TYPE_DEVICE);
177 if (ACPI_FAILURE(status)) {
178 ACPI_EXCEPTION((AE_INFO, status, "Cannot add acpi bus"));
179 return -EINVAL;
182 end:
183 *mem_device = acpi_driver_data(device);
184 if (!(*mem_device)) {
185 printk(KERN_ERR "\n driver data not found");
186 return -ENODEV;
189 return 0;
192 static int acpi_memory_check_device(struct acpi_memory_device *mem_device)
194 unsigned long long current_status;
196 /* Get device present/absent information from the _STA */
197 if (ACPI_FAILURE(acpi_evaluate_integer(mem_device->device->handle, "_STA",
198 NULL, &current_status)))
199 return -ENODEV;
201 * Check for device status. Device should be
202 * present/enabled/functioning.
204 if (!((current_status & ACPI_STA_DEVICE_PRESENT)
205 && (current_status & ACPI_STA_DEVICE_ENABLED)
206 && (current_status & ACPI_STA_DEVICE_FUNCTIONING)))
207 return -ENODEV;
209 return 0;
212 static int acpi_memory_enable_device(struct acpi_memory_device *mem_device)
214 int result, num_enabled = 0;
215 struct acpi_memory_info *info;
216 int node;
219 /* Get the range from the _CRS */
220 result = acpi_memory_get_device_resources(mem_device);
221 if (result) {
222 printk(KERN_ERR PREFIX "get_device_resources failed\n");
223 mem_device->state = MEMORY_INVALID_STATE;
224 return result;
227 node = acpi_get_node(mem_device->device->handle);
229 * Tell the VM there is more memory here...
230 * Note: Assume that this function returns zero on success
231 * We don't have memory-hot-add rollback function,now.
232 * (i.e. memory-hot-remove function)
234 list_for_each_entry(info, &mem_device->res_list, list) {
235 if (info->enabled) { /* just sanity check...*/
236 num_enabled++;
237 continue;
240 if (node < 0)
241 node = memory_add_physaddr_to_nid(info->start_addr);
243 result = add_memory(node, info->start_addr, info->length);
244 if (result)
245 continue;
246 info->enabled = 1;
247 num_enabled++;
249 if (!num_enabled) {
250 printk(KERN_ERR PREFIX "add_memory failed\n");
251 mem_device->state = MEMORY_INVALID_STATE;
252 return -EINVAL;
255 return result;
258 static int acpi_memory_powerdown_device(struct acpi_memory_device *mem_device)
260 acpi_status status;
261 struct acpi_object_list arg_list;
262 union acpi_object arg;
263 unsigned long long current_status;
266 /* Issue the _EJ0 command */
267 arg_list.count = 1;
268 arg_list.pointer = &arg;
269 arg.type = ACPI_TYPE_INTEGER;
270 arg.integer.value = 1;
271 status = acpi_evaluate_object(mem_device->device->handle,
272 "_EJ0", &arg_list, NULL);
273 /* Return on _EJ0 failure */
274 if (ACPI_FAILURE(status)) {
275 ACPI_EXCEPTION((AE_INFO, status, "_EJ0 failed"));
276 return -ENODEV;
279 /* Evalute _STA to check if the device is disabled */
280 status = acpi_evaluate_integer(mem_device->device->handle, "_STA",
281 NULL, &current_status);
282 if (ACPI_FAILURE(status))
283 return -ENODEV;
285 /* Check for device status. Device should be disabled */
286 if (current_status & ACPI_STA_DEVICE_ENABLED)
287 return -EINVAL;
289 return 0;
292 static int acpi_memory_disable_device(struct acpi_memory_device *mem_device)
294 int result;
295 struct acpi_memory_info *info, *n;
299 * Ask the VM to offline this memory range.
300 * Note: Assume that this function returns zero on success
302 list_for_each_entry_safe(info, n, &mem_device->res_list, list) {
303 if (info->enabled) {
304 result = remove_memory(info->start_addr, info->length);
305 if (result)
306 return result;
308 kfree(info);
311 /* Power-off and eject the device */
312 result = acpi_memory_powerdown_device(mem_device);
313 if (result) {
314 /* Set the status of the device to invalid */
315 mem_device->state = MEMORY_INVALID_STATE;
316 return result;
319 mem_device->state = MEMORY_POWER_OFF_STATE;
320 return result;
323 static void acpi_memory_device_notify(acpi_handle handle, u32 event, void *data)
325 struct acpi_memory_device *mem_device;
326 struct acpi_device *device;
329 switch (event) {
330 case ACPI_NOTIFY_BUS_CHECK:
331 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
332 "\nReceived BUS CHECK notification for device\n"));
333 /* Fall Through */
334 case ACPI_NOTIFY_DEVICE_CHECK:
335 if (event == ACPI_NOTIFY_DEVICE_CHECK)
336 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
337 "\nReceived DEVICE CHECK notification for device\n"));
338 if (acpi_memory_get_device(handle, &mem_device)) {
339 printk(KERN_ERR PREFIX "Cannot find driver data\n");
340 return;
343 if (!acpi_memory_check_device(mem_device)) {
344 if (acpi_memory_enable_device(mem_device))
345 printk(KERN_ERR PREFIX
346 "Cannot enable memory device\n");
348 break;
349 case ACPI_NOTIFY_EJECT_REQUEST:
350 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
351 "\nReceived EJECT REQUEST notification for device\n"));
353 if (acpi_bus_get_device(handle, &device)) {
354 printk(KERN_ERR PREFIX "Device doesn't exist\n");
355 break;
357 mem_device = acpi_driver_data(device);
358 if (!mem_device) {
359 printk(KERN_ERR PREFIX "Driver Data is NULL\n");
360 break;
364 * Currently disabling memory device from kernel mode
365 * TBD: Can also be disabled from user mode scripts
366 * TBD: Can also be disabled by Callback registration
367 * with generic sysfs driver
369 if (acpi_memory_disable_device(mem_device))
370 printk(KERN_ERR PREFIX
371 "Disable memory device\n");
373 * TBD: Invoke acpi_bus_remove to cleanup data structures
375 break;
376 default:
377 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
378 "Unsupported event [0x%x]\n", event));
379 break;
382 return;
385 static int acpi_memory_device_add(struct acpi_device *device)
387 int result;
388 struct acpi_memory_device *mem_device = NULL;
391 if (!device)
392 return -EINVAL;
394 mem_device = kzalloc(sizeof(struct acpi_memory_device), GFP_KERNEL);
395 if (!mem_device)
396 return -ENOMEM;
398 INIT_LIST_HEAD(&mem_device->res_list);
399 mem_device->device = device;
400 sprintf(acpi_device_name(device), "%s", ACPI_MEMORY_DEVICE_NAME);
401 sprintf(acpi_device_class(device), "%s", ACPI_MEMORY_DEVICE_CLASS);
402 device->driver_data = mem_device;
404 /* Get the range from the _CRS */
405 result = acpi_memory_get_device_resources(mem_device);
406 if (result) {
407 kfree(mem_device);
408 return result;
411 /* Set the device state */
412 mem_device->state = MEMORY_POWER_ON_STATE;
414 printk(KERN_DEBUG "%s \n", acpi_device_name(device));
417 * Early boot code has recognized memory area by EFI/E820.
418 * If DSDT shows these memory devices on boot, hotplug is not necessary
419 * for them. So, it just returns until completion of this driver's
420 * start up.
422 if (!acpi_hotmem_initialized)
423 return 0;
425 if (!acpi_memory_check_device(mem_device)) {
426 /* call add_memory func */
427 result = acpi_memory_enable_device(mem_device);
428 if (result)
429 printk(KERN_ERR PREFIX
430 "Error in acpi_memory_enable_device\n");
432 return result;
435 static int acpi_memory_device_remove(struct acpi_device *device, int type)
437 struct acpi_memory_device *mem_device = NULL;
440 if (!device || !acpi_driver_data(device))
441 return -EINVAL;
443 mem_device = acpi_driver_data(device);
444 kfree(mem_device);
446 return 0;
450 * Helper function to check for memory device
452 static acpi_status is_memory_device(acpi_handle handle)
454 char *hardware_id;
455 acpi_status status;
456 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
457 struct acpi_device_info *info;
460 status = acpi_get_object_info(handle, &buffer);
461 if (ACPI_FAILURE(status))
462 return status;
464 info = buffer.pointer;
465 if (!(info->valid & ACPI_VALID_HID)) {
466 kfree(buffer.pointer);
467 return AE_ERROR;
470 hardware_id = info->hardware_id.value;
471 if ((hardware_id == NULL) ||
472 (strcmp(hardware_id, ACPI_MEMORY_DEVICE_HID)))
473 status = AE_ERROR;
475 kfree(buffer.pointer);
476 return status;
479 static acpi_status
480 acpi_memory_register_notify_handler(acpi_handle handle,
481 u32 level, void *ctxt, void **retv)
483 acpi_status status;
486 status = is_memory_device(handle);
487 if (ACPI_FAILURE(status))
488 return AE_OK; /* continue */
490 status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
491 acpi_memory_device_notify, NULL);
492 /* continue */
493 return AE_OK;
496 static acpi_status
497 acpi_memory_deregister_notify_handler(acpi_handle handle,
498 u32 level, void *ctxt, void **retv)
500 acpi_status status;
503 status = is_memory_device(handle);
504 if (ACPI_FAILURE(status))
505 return AE_OK; /* continue */
507 status = acpi_remove_notify_handler(handle,
508 ACPI_SYSTEM_NOTIFY,
509 acpi_memory_device_notify);
511 return AE_OK; /* continue */
514 static int __init acpi_memory_device_init(void)
516 int result;
517 acpi_status status;
520 result = acpi_bus_register_driver(&acpi_memory_device_driver);
522 if (result < 0)
523 return -ENODEV;
525 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
526 ACPI_UINT32_MAX,
527 acpi_memory_register_notify_handler,
528 NULL, NULL);
530 if (ACPI_FAILURE(status)) {
531 ACPI_EXCEPTION((AE_INFO, status, "walk_namespace failed"));
532 acpi_bus_unregister_driver(&acpi_memory_device_driver);
533 return -ENODEV;
536 acpi_hotmem_initialized = 1;
537 return 0;
540 static void __exit acpi_memory_device_exit(void)
542 acpi_status status;
546 * Adding this to un-install notification handlers for all the device
547 * handles.
549 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
550 ACPI_UINT32_MAX,
551 acpi_memory_deregister_notify_handler,
552 NULL, NULL);
554 if (ACPI_FAILURE(status))
555 ACPI_EXCEPTION((AE_INFO, status, "walk_namespace failed"));
557 acpi_bus_unregister_driver(&acpi_memory_device_driver);
559 return;
562 module_init(acpi_memory_device_init);
563 module_exit(acpi_memory_device_exit);