blob: 0424326eae154c13aa1db8c0ce0dbec6d0ffc5dc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2004 Intel Corporation <naveen.b.s@intel.com>
3 *
4 * All rights reserved.
5 *
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.
10 *
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.
16 *
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.
20 *
21 *
22 * ACPI based HotPlug driver that supports Memory Hotplug
23 * This driver fields notifications from firmare for memory add
24 * and remove operations and alerts the VM of the affected memory
25 * ranges.
26 */
27
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>
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#define ACPI_MEMORY_DEVICE_COMPONENT 0x08000000UL
36#define ACPI_MEMORY_DEVICE_CLASS "memory"
37#define ACPI_MEMORY_DEVICE_HID "PNP0C80"
38#define ACPI_MEMORY_DEVICE_DRIVER_NAME "Hotplug Mem Driver"
39#define ACPI_MEMORY_DEVICE_NAME "Hotplug Mem Device"
40
41#define _COMPONENT ACPI_MEMORY_DEVICE_COMPONENT
42
Len Brown4be44fc2005-08-05 00:44:28 -040043ACPI_MODULE_NAME("acpi_memory")
44 MODULE_AUTHOR("Naveen B S <naveen.b.s@intel.com>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070045MODULE_DESCRIPTION(ACPI_MEMORY_DEVICE_DRIVER_NAME);
46MODULE_LICENSE("GPL");
47
48/* ACPI _STA method values */
49#define ACPI_MEMORY_STA_PRESENT (0x00000001UL)
50#define ACPI_MEMORY_STA_ENABLED (0x00000002UL)
51#define ACPI_MEMORY_STA_FUNCTIONAL (0x00000008UL)
52
53/* Memory Device States */
54#define MEMORY_INVALID_STATE 0
55#define MEMORY_POWER_ON_STATE 1
56#define MEMORY_POWER_OFF_STATE 2
57
Len Brown4be44fc2005-08-05 00:44:28 -040058static int acpi_memory_device_add(struct acpi_device *device);
59static int acpi_memory_device_remove(struct acpi_device *device, int type);
Yasunori Goto1f425992006-06-27 02:53:28 -070060static int acpi_memory_device_start(struct acpi_device *device);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62static struct acpi_driver acpi_memory_device_driver = {
Len Brown4be44fc2005-08-05 00:44:28 -040063 .name = ACPI_MEMORY_DEVICE_DRIVER_NAME,
64 .class = ACPI_MEMORY_DEVICE_CLASS,
65 .ids = ACPI_MEMORY_DEVICE_HID,
66 .ops = {
67 .add = acpi_memory_device_add,
68 .remove = acpi_memory_device_remove,
Yasunori Goto1f425992006-06-27 02:53:28 -070069 .start = acpi_memory_device_start,
Len Brown4be44fc2005-08-05 00:44:28 -040070 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -070073struct acpi_memory_info {
74 struct list_head list;
75 u64 start_addr; /* Memory Range start physical addr */
76 u64 length; /* Memory Range length */
77 unsigned short caching; /* memory cache attribute */
78 unsigned short write_protect; /* memory read/write attribute */
79 unsigned int enabled:1;
80};
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082struct acpi_memory_device {
83 acpi_handle handle;
Len Brown4be44fc2005-08-05 00:44:28 -040084 unsigned int state; /* State of the memory device */
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -070085 struct list_head res_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086};
87
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -070088static acpi_status
89acpi_memory_get_resource(struct acpi_resource *resource, void *context)
90{
91 struct acpi_memory_device *mem_device = context;
92 struct acpi_resource_address64 address64;
93 struct acpi_memory_info *info, *new;
94 acpi_status status;
95
96 status = acpi_resource_to_address64(resource, &address64);
97 if (ACPI_FAILURE(status) ||
98 (address64.resource_type != ACPI_MEMORY_RANGE))
99 return AE_OK;
100
101 list_for_each_entry(info, &mem_device->res_list, list) {
102 /* Can we combine the resource range information? */
103 if ((info->caching == address64.info.mem.caching) &&
104 (info->write_protect == address64.info.mem.write_protect) &&
105 (info->start_addr + info->length == address64.minimum)) {
106 info->length += address64.address_length;
107 return AE_OK;
108 }
109 }
110
111 new = kzalloc(sizeof(struct acpi_memory_info), GFP_KERNEL);
112 if (!new)
113 return AE_ERROR;
114
115 INIT_LIST_HEAD(&new->list);
116 new->caching = address64.info.mem.caching;
117 new->write_protect = address64.info.mem.write_protect;
118 new->start_addr = address64.minimum;
119 new->length = address64.address_length;
120 list_add_tail(&new->list, &mem_device->res_list);
121
122 return AE_OK;
123}
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static int
126acpi_memory_get_device_resources(struct acpi_memory_device *mem_device)
127{
128 acpi_status status;
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700129 struct acpi_memory_info *info, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 ACPI_FUNCTION_TRACE("acpi_memory_get_device_resources");
132
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700133 status = acpi_walk_resources(mem_device->handle, METHOD_NAME__CRS,
134 acpi_memory_get_resource, mem_device);
135 if (ACPI_FAILURE(status)) {
136 list_for_each_entry_safe(info, n, &mem_device->res_list, list)
137 kfree(info);
138 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
140
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700141 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
144static int
145acpi_memory_get_device(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400146 struct acpi_memory_device **mem_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 acpi_status status;
149 acpi_handle phandle;
150 struct acpi_device *device = NULL;
151 struct acpi_device *pdevice = NULL;
152
153 ACPI_FUNCTION_TRACE("acpi_memory_get_device");
154
155 if (!acpi_bus_get_device(handle, &device) && device)
156 goto end;
157
158 status = acpi_get_parent(handle, &phandle);
159 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400160 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Error in acpi_get_parent\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return_VALUE(-EINVAL);
162 }
163
164 /* Get the parent device */
165 status = acpi_bus_get_device(phandle, &pdevice);
166 if (ACPI_FAILURE(status)) {
167 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
Len Brown4be44fc2005-08-05 00:44:28 -0400168 "Error in acpi_bus_get_device\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return_VALUE(-EINVAL);
170 }
171
172 /*
173 * Now add the notified device. This creates the acpi_device
174 * and invokes .add function
175 */
176 status = acpi_bus_add(&device, pdevice, handle, ACPI_BUS_TYPE_DEVICE);
177 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400178 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Error in acpi_bus_add\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return_VALUE(-EINVAL);
180 }
181
Len Brown4be44fc2005-08-05 00:44:28 -0400182 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 *mem_device = acpi_driver_data(device);
184 if (!(*mem_device)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400185 printk(KERN_ERR "\n driver data not found");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return_VALUE(-ENODEV);
187 }
188
189 return_VALUE(0);
190}
191
Len Brown4be44fc2005-08-05 00:44:28 -0400192static int acpi_memory_check_device(struct acpi_memory_device *mem_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
194 unsigned long current_status;
195
196 ACPI_FUNCTION_TRACE("acpi_memory_check_device");
197
198 /* Get device present/absent information from the _STA */
199 if (ACPI_FAILURE(acpi_evaluate_integer(mem_device->handle, "_STA",
Len Brown4be44fc2005-08-05 00:44:28 -0400200 NULL, &current_status)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return_VALUE(-ENODEV);
202 /*
203 * Check for device status. Device should be
204 * present/enabled/functioning.
205 */
206 if (!((current_status & ACPI_MEMORY_STA_PRESENT)
Len Brown4be44fc2005-08-05 00:44:28 -0400207 && (current_status & ACPI_MEMORY_STA_ENABLED)
208 && (current_status & ACPI_MEMORY_STA_FUNCTIONAL)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return_VALUE(-ENODEV);
210
211 return_VALUE(0);
212}
213
Len Brown4be44fc2005-08-05 00:44:28 -0400214static int acpi_memory_enable_device(struct acpi_memory_device *mem_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700216 int result, num_enabled = 0;
217 struct acpi_memory_info *info;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700218 int node = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 ACPI_FUNCTION_TRACE("acpi_memory_enable_device");
221
222 /* Get the range from the _CRS */
223 result = acpi_memory_get_device_resources(mem_device);
224 if (result) {
225 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
Len Brown4be44fc2005-08-05 00:44:28 -0400226 "\nget_device_resources failed\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 mem_device->state = MEMORY_INVALID_STATE;
228 return result;
229 }
230
231 /*
232 * Tell the VM there is more memory here...
233 * Note: Assume that this function returns zero on success
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700234 * We don't have memory-hot-add rollback function,now.
235 * (i.e. memory-hot-remove function)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 */
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700237 list_for_each_entry(info, &mem_device->res_list, list) {
Yasunori Gotodd56a8e2006-06-27 02:53:29 -0700238 u64 start_pfn, end_pfn;
239
240 start_pfn = info->start_addr >> PAGE_SHIFT;
241 end_pfn = (info->start_addr + info->length - 1) >> PAGE_SHIFT;
242
243 if (pfn_valid(start_pfn) || pfn_valid(end_pfn)) {
244 /* already enabled. try next area */
245 num_enabled++;
246 continue;
247 }
248
Yasunori Gotobc02af92006-06-27 02:53:30 -0700249 result = add_memory(node, info->start_addr, info->length);
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700250 if (result)
251 continue;
252 info->enabled = 1;
253 num_enabled++;
254 }
255 if (!num_enabled) {
Len Brown4be44fc2005-08-05 00:44:28 -0400256 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "\nadd_memory failed\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 mem_device->state = MEMORY_INVALID_STATE;
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700258 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
260
261 return result;
262}
263
Len Brown4be44fc2005-08-05 00:44:28 -0400264static int acpi_memory_powerdown_device(struct acpi_memory_device *mem_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
266 acpi_status status;
Len Brown4be44fc2005-08-05 00:44:28 -0400267 struct acpi_object_list arg_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 union acpi_object arg;
269 unsigned long current_status;
270
271 ACPI_FUNCTION_TRACE("acpi_memory_powerdown_device");
272
273 /* Issue the _EJ0 command */
274 arg_list.count = 1;
275 arg_list.pointer = &arg;
276 arg.type = ACPI_TYPE_INTEGER;
277 arg.integer.value = 1;
278 status = acpi_evaluate_object(mem_device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400279 "_EJ0", &arg_list, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 /* Return on _EJ0 failure */
281 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400282 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "_EJ0 failed.\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return_VALUE(-ENODEV);
284 }
285
286 /* Evalute _STA to check if the device is disabled */
287 status = acpi_evaluate_integer(mem_device->handle, "_STA",
Len Brown4be44fc2005-08-05 00:44:28 -0400288 NULL, &current_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (ACPI_FAILURE(status))
290 return_VALUE(-ENODEV);
291
292 /* Check for device status. Device should be disabled */
293 if (current_status & ACPI_MEMORY_STA_ENABLED)
294 return_VALUE(-EINVAL);
295
296 return_VALUE(0);
297}
298
Len Brown4be44fc2005-08-05 00:44:28 -0400299static int acpi_memory_disable_device(struct acpi_memory_device *mem_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 int result;
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700302 struct acpi_memory_info *info, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 ACPI_FUNCTION_TRACE("acpi_memory_disable_device");
305
306 /*
307 * Ask the VM to offline this memory range.
308 * Note: Assume that this function returns zero on success
309 */
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700310 list_for_each_entry_safe(info, n, &mem_device->res_list, list) {
311 if (info->enabled) {
312 result = remove_memory(info->start_addr, info->length);
313 if (result)
314 return result;
315 }
316 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318
319 /* Power-off and eject the device */
320 result = acpi_memory_powerdown_device(mem_device);
321 if (result) {
322 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
Len Brown4be44fc2005-08-05 00:44:28 -0400323 "Device Power Down failed.\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 /* Set the status of the device to invalid */
325 mem_device->state = MEMORY_INVALID_STATE;
326 return result;
327 }
328
329 mem_device->state = MEMORY_POWER_OFF_STATE;
330 return result;
331}
332
Len Brown4be44fc2005-08-05 00:44:28 -0400333static void acpi_memory_device_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 struct acpi_memory_device *mem_device;
336 struct acpi_device *device;
337
338 ACPI_FUNCTION_TRACE("acpi_memory_device_notify");
339
340 switch (event) {
341 case ACPI_NOTIFY_BUS_CHECK:
342 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400343 "\nReceived BUS CHECK notification for device\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 /* Fall Through */
345 case ACPI_NOTIFY_DEVICE_CHECK:
346 if (event == ACPI_NOTIFY_DEVICE_CHECK)
347 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400348 "\nReceived DEVICE CHECK notification for device\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (acpi_memory_get_device(handle, &mem_device)) {
350 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
Len Brown4be44fc2005-08-05 00:44:28 -0400351 "Error in finding driver data\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return_VOID;
353 }
354
355 if (!acpi_memory_check_device(mem_device)) {
356 if (acpi_memory_enable_device(mem_device))
357 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
Len Brown4be44fc2005-08-05 00:44:28 -0400358 "Error in acpi_memory_enable_device\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
360 break;
361 case ACPI_NOTIFY_EJECT_REQUEST:
362 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400363 "\nReceived EJECT REQUEST notification for device\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 if (acpi_bus_get_device(handle, &device)) {
366 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
Len Brown4be44fc2005-08-05 00:44:28 -0400367 "Device doesn't exist\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 break;
369 }
370 mem_device = acpi_driver_data(device);
371 if (!mem_device) {
372 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
Len Brown4be44fc2005-08-05 00:44:28 -0400373 "Driver Data is NULL\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 break;
375 }
376
377 /*
378 * Currently disabling memory device from kernel mode
379 * TBD: Can also be disabled from user mode scripts
380 * TBD: Can also be disabled by Callback registration
Len Brown4be44fc2005-08-05 00:44:28 -0400381 * with generic sysfs driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 */
383 if (acpi_memory_disable_device(mem_device))
384 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
Len Brown4be44fc2005-08-05 00:44:28 -0400385 "Error in acpi_memory_disable_device\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 /*
387 * TBD: Invoke acpi_bus_remove to cleanup data structures
388 */
389 break;
390 default:
391 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400392 "Unsupported event [0x%x]\n", event));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 break;
394 }
395
396 return_VOID;
397}
398
Len Brown4be44fc2005-08-05 00:44:28 -0400399static int acpi_memory_device_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 int result;
402 struct acpi_memory_device *mem_device = NULL;
403
404 ACPI_FUNCTION_TRACE("acpi_memory_device_add");
405
406 if (!device)
407 return_VALUE(-EINVAL);
408
409 mem_device = kmalloc(sizeof(struct acpi_memory_device), GFP_KERNEL);
410 if (!mem_device)
411 return_VALUE(-ENOMEM);
412 memset(mem_device, 0, sizeof(struct acpi_memory_device));
413
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700414 INIT_LIST_HEAD(&mem_device->res_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 mem_device->handle = device->handle;
416 sprintf(acpi_device_name(device), "%s", ACPI_MEMORY_DEVICE_NAME);
417 sprintf(acpi_device_class(device), "%s", ACPI_MEMORY_DEVICE_CLASS);
418 acpi_driver_data(device) = mem_device;
419
420 /* Get the range from the _CRS */
421 result = acpi_memory_get_device_resources(mem_device);
422 if (result) {
423 kfree(mem_device);
424 return_VALUE(result);
425 }
426
427 /* Set the device state */
428 mem_device->state = MEMORY_POWER_ON_STATE;
429
430 printk(KERN_INFO "%s \n", acpi_device_name(device));
431
432 return_VALUE(result);
433}
434
Len Brown4be44fc2005-08-05 00:44:28 -0400435static int acpi_memory_device_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 struct acpi_memory_device *mem_device = NULL;
438
439 ACPI_FUNCTION_TRACE("acpi_memory_device_remove");
440
441 if (!device || !acpi_driver_data(device))
442 return_VALUE(-EINVAL);
443
Len Brown4be44fc2005-08-05 00:44:28 -0400444 mem_device = (struct acpi_memory_device *)acpi_driver_data(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 kfree(mem_device);
446
447 return_VALUE(0);
448}
449
Yasunori Goto1f425992006-06-27 02:53:28 -0700450static int acpi_memory_device_start (struct acpi_device *device)
451{
452 struct acpi_memory_device *mem_device;
453 int result = 0;
454
455 ACPI_FUNCTION_TRACE("acpi_memory_device_start");
456
457 mem_device = acpi_driver_data(device);
458
459 if (!acpi_memory_check_device(mem_device)) {
460 /* call add_memory func */
461 result = acpi_memory_enable_device(mem_device);
462 if (result)
463 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
464 "Error in acpi_memory_enable_device\n"));
465 }
466 return_VALUE(result);
467}
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469/*
470 * Helper function to check for memory device
471 */
Len Brown4be44fc2005-08-05 00:44:28 -0400472static acpi_status is_memory_device(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
474 char *hardware_id;
475 acpi_status status;
Len Brown4be44fc2005-08-05 00:44:28 -0400476 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 struct acpi_device_info *info;
478
479 ACPI_FUNCTION_TRACE("is_memory_device");
480
481 status = acpi_get_object_info(handle, &buffer);
482 if (ACPI_FAILURE(status))
483 return_ACPI_STATUS(AE_ERROR);
484
485 info = buffer.pointer;
486 if (!(info->valid & ACPI_VALID_HID)) {
487 acpi_os_free(buffer.pointer);
488 return_ACPI_STATUS(AE_ERROR);
489 }
490
491 hardware_id = info->hardware_id.value;
492 if ((hardware_id == NULL) ||
Len Brown4be44fc2005-08-05 00:44:28 -0400493 (strcmp(hardware_id, ACPI_MEMORY_DEVICE_HID)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 status = AE_ERROR;
495
496 acpi_os_free(buffer.pointer);
497 return_ACPI_STATUS(status);
498}
499
500static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400501acpi_memory_register_notify_handler(acpi_handle handle,
502 u32 level, void *ctxt, void **retv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
504 acpi_status status;
505
506 ACPI_FUNCTION_TRACE("acpi_memory_register_notify_handler");
507
508 status = is_memory_device(handle);
509 if (ACPI_FAILURE(status))
510 return_ACPI_STATUS(AE_OK); /* continue */
511
512 status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
Len Brown4be44fc2005-08-05 00:44:28 -0400513 acpi_memory_device_notify, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (ACPI_FAILURE(status)) {
515 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
Len Brown4be44fc2005-08-05 00:44:28 -0400516 "Error installing notify handler\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return_ACPI_STATUS(AE_OK); /* continue */
518 }
519
520 return_ACPI_STATUS(status);
521}
522
523static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400524acpi_memory_deregister_notify_handler(acpi_handle handle,
525 u32 level, void *ctxt, void **retv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
527 acpi_status status;
528
529 ACPI_FUNCTION_TRACE("acpi_memory_deregister_notify_handler");
530
531 status = is_memory_device(handle);
532 if (ACPI_FAILURE(status))
533 return_ACPI_STATUS(AE_OK); /* continue */
534
535 status = acpi_remove_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400536 ACPI_SYSTEM_NOTIFY,
537 acpi_memory_device_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (ACPI_FAILURE(status)) {
539 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
Len Brown4be44fc2005-08-05 00:44:28 -0400540 "Error removing notify handler\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return_ACPI_STATUS(AE_OK); /* continue */
542 }
543
544 return_ACPI_STATUS(status);
545}
546
Len Brown4be44fc2005-08-05 00:44:28 -0400547static int __init acpi_memory_device_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
549 int result;
550 acpi_status status;
551
552 ACPI_FUNCTION_TRACE("acpi_memory_device_init");
553
554 result = acpi_bus_register_driver(&acpi_memory_device_driver);
555
556 if (result < 0)
557 return_VALUE(-ENODEV);
558
559 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
Len Brown4be44fc2005-08-05 00:44:28 -0400560 ACPI_UINT32_MAX,
561 acpi_memory_register_notify_handler,
562 NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Len Brown4be44fc2005-08-05 00:44:28 -0400564 if (ACPI_FAILURE(status)) {
565 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "walk_namespace failed\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 acpi_bus_unregister_driver(&acpi_memory_device_driver);
567 return_VALUE(-ENODEV);
Len Brown4be44fc2005-08-05 00:44:28 -0400568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 return_VALUE(0);
571}
572
Len Brown4be44fc2005-08-05 00:44:28 -0400573static void __exit acpi_memory_device_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
575 acpi_status status;
576
577 ACPI_FUNCTION_TRACE("acpi_memory_device_exit");
578
579 /*
580 * Adding this to un-install notification handlers for all the device
581 * handles.
582 */
583 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
Len Brown4be44fc2005-08-05 00:44:28 -0400584 ACPI_UINT32_MAX,
585 acpi_memory_deregister_notify_handler,
586 NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Len Brown4be44fc2005-08-05 00:44:28 -0400588 if (ACPI_FAILURE(status))
589 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "walk_namespace failed\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591 acpi_bus_unregister_driver(&acpi_memory_device_driver);
592
593 return_VOID;
594}
595
596module_init(acpi_memory_device_init);
597module_exit(acpi_memory_device_exit);