2 * Copyright (C) 2004 Intel Corporation <naveen.b.s@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
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 firmare for memory add
24 * and remove operations and alerts the VM of the affected memory
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_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"
41 #define _COMPONENT ACPI_MEMORY_DEVICE_COMPONENT
43 ACPI_MODULE_NAME("acpi_memory")
44 MODULE_AUTHOR("Naveen B S <naveen.b.s@intel.com>");
45 MODULE_DESCRIPTION(ACPI_MEMORY_DEVICE_DRIVER_NAME
);
46 MODULE_LICENSE("GPL");
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)
53 /* Memory Device States */
54 #define MEMORY_INVALID_STATE 0
55 #define MEMORY_POWER_ON_STATE 1
56 #define MEMORY_POWER_OFF_STATE 2
58 static int acpi_memory_device_add(struct acpi_device
*device
);
59 static int acpi_memory_device_remove(struct acpi_device
*device
, int type
);
61 static struct acpi_driver acpi_memory_device_driver
= {
62 .name
= ACPI_MEMORY_DEVICE_DRIVER_NAME
,
63 .class = ACPI_MEMORY_DEVICE_CLASS
,
64 .ids
= ACPI_MEMORY_DEVICE_HID
,
66 .add
= acpi_memory_device_add
,
67 .remove
= acpi_memory_device_remove
,
71 struct acpi_memory_device
{
73 unsigned int state
; /* State of the memory device */
74 unsigned short cache_attribute
; /* memory cache attribute */
75 unsigned short read_write_attribute
; /* memory read/write attribute */
76 u64 start_addr
; /* Memory Range start physical addr */
77 u64 end_addr
; /* Memory Range end physical addr */
81 acpi_memory_get_device_resources(struct acpi_memory_device
*mem_device
)
84 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
85 struct acpi_resource
*resource
= NULL
;
86 struct acpi_resource_address64 address64
;
88 ACPI_FUNCTION_TRACE("acpi_memory_get_device_resources");
90 /* Get the range from the _CRS */
91 status
= acpi_get_current_resources(mem_device
->handle
, &buffer
);
92 if (ACPI_FAILURE(status
))
93 return_VALUE(-EINVAL
);
95 resource
= (struct acpi_resource
*)buffer
.pointer
;
96 status
= acpi_resource_to_address64(resource
, &address64
);
97 if (ACPI_SUCCESS(status
)) {
98 if (address64
.resource_type
== ACPI_MEMORY_RANGE
) {
99 /* Populate the structure */
100 mem_device
->cache_attribute
=
101 address64
.attribute
.memory
.cache_attribute
;
102 mem_device
->read_write_attribute
=
103 address64
.attribute
.memory
.read_write_attribute
;
104 mem_device
->start_addr
= address64
.min_address_range
;
105 mem_device
->end_addr
= address64
.max_address_range
;
109 acpi_os_free(buffer
.pointer
);
114 acpi_memory_get_device(acpi_handle handle
,
115 struct acpi_memory_device
**mem_device
)
119 struct acpi_device
*device
= NULL
;
120 struct acpi_device
*pdevice
= NULL
;
122 ACPI_FUNCTION_TRACE("acpi_memory_get_device");
124 if (!acpi_bus_get_device(handle
, &device
) && device
)
127 status
= acpi_get_parent(handle
, &phandle
);
128 if (ACPI_FAILURE(status
)) {
129 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "Error in acpi_get_parent\n"));
130 return_VALUE(-EINVAL
);
133 /* Get the parent device */
134 status
= acpi_bus_get_device(phandle
, &pdevice
);
135 if (ACPI_FAILURE(status
)) {
136 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
137 "Error in acpi_bus_get_device\n"));
138 return_VALUE(-EINVAL
);
142 * Now add the notified device. This creates the acpi_device
143 * and invokes .add function
145 status
= acpi_bus_add(&device
, pdevice
, handle
, ACPI_BUS_TYPE_DEVICE
);
146 if (ACPI_FAILURE(status
)) {
147 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "Error in acpi_bus_add\n"));
148 return_VALUE(-EINVAL
);
152 *mem_device
= acpi_driver_data(device
);
153 if (!(*mem_device
)) {
154 printk(KERN_ERR
"\n driver data not found");
155 return_VALUE(-ENODEV
);
161 static int acpi_memory_check_device(struct acpi_memory_device
*mem_device
)
163 unsigned long current_status
;
165 ACPI_FUNCTION_TRACE("acpi_memory_check_device");
167 /* Get device present/absent information from the _STA */
168 if (ACPI_FAILURE(acpi_evaluate_integer(mem_device
->handle
, "_STA",
169 NULL
, ¤t_status
)))
170 return_VALUE(-ENODEV
);
172 * Check for device status. Device should be
173 * present/enabled/functioning.
175 if (!((current_status
& ACPI_MEMORY_STA_PRESENT
)
176 && (current_status
& ACPI_MEMORY_STA_ENABLED
)
177 && (current_status
& ACPI_MEMORY_STA_FUNCTIONAL
)))
178 return_VALUE(-ENODEV
);
183 static int acpi_memory_enable_device(struct acpi_memory_device
*mem_device
)
187 ACPI_FUNCTION_TRACE("acpi_memory_enable_device");
189 /* Get the range from the _CRS */
190 result
= acpi_memory_get_device_resources(mem_device
);
192 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
193 "\nget_device_resources failed\n"));
194 mem_device
->state
= MEMORY_INVALID_STATE
;
199 * Tell the VM there is more memory here...
200 * Note: Assume that this function returns zero on success
202 result
= add_memory(mem_device
->start_addr
,
203 (mem_device
->end_addr
- mem_device
->start_addr
) + 1,
204 mem_device
->read_write_attribute
);
206 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "\nadd_memory failed\n"));
207 mem_device
->state
= MEMORY_INVALID_STATE
;
214 static int acpi_memory_powerdown_device(struct acpi_memory_device
*mem_device
)
217 struct acpi_object_list arg_list
;
218 union acpi_object arg
;
219 unsigned long current_status
;
221 ACPI_FUNCTION_TRACE("acpi_memory_powerdown_device");
223 /* Issue the _EJ0 command */
225 arg_list
.pointer
= &arg
;
226 arg
.type
= ACPI_TYPE_INTEGER
;
227 arg
.integer
.value
= 1;
228 status
= acpi_evaluate_object(mem_device
->handle
,
229 "_EJ0", &arg_list
, NULL
);
230 /* Return on _EJ0 failure */
231 if (ACPI_FAILURE(status
)) {
232 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "_EJ0 failed.\n"));
233 return_VALUE(-ENODEV
);
236 /* Evalute _STA to check if the device is disabled */
237 status
= acpi_evaluate_integer(mem_device
->handle
, "_STA",
238 NULL
, ¤t_status
);
239 if (ACPI_FAILURE(status
))
240 return_VALUE(-ENODEV
);
242 /* Check for device status. Device should be disabled */
243 if (current_status
& ACPI_MEMORY_STA_ENABLED
)
244 return_VALUE(-EINVAL
);
249 static int acpi_memory_disable_device(struct acpi_memory_device
*mem_device
)
252 u64 start
= mem_device
->start_addr
;
253 u64 len
= mem_device
->end_addr
- start
+ 1;
254 unsigned long attr
= mem_device
->read_write_attribute
;
256 ACPI_FUNCTION_TRACE("acpi_memory_disable_device");
259 * Ask the VM to offline this memory range.
260 * Note: Assume that this function returns zero on success
262 result
= remove_memory(start
, len
, attr
);
264 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "Hot-Remove failed.\n"));
265 return_VALUE(result
);
268 /* Power-off and eject the device */
269 result
= acpi_memory_powerdown_device(mem_device
);
271 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
272 "Device Power Down failed.\n"));
273 /* Set the status of the device to invalid */
274 mem_device
->state
= MEMORY_INVALID_STATE
;
278 mem_device
->state
= MEMORY_POWER_OFF_STATE
;
282 static void acpi_memory_device_notify(acpi_handle handle
, u32 event
, void *data
)
284 struct acpi_memory_device
*mem_device
;
285 struct acpi_device
*device
;
287 ACPI_FUNCTION_TRACE("acpi_memory_device_notify");
290 case ACPI_NOTIFY_BUS_CHECK
:
291 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
292 "\nReceived BUS CHECK notification for device\n"));
294 case ACPI_NOTIFY_DEVICE_CHECK
:
295 if (event
== ACPI_NOTIFY_DEVICE_CHECK
)
296 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
297 "\nReceived DEVICE CHECK notification for device\n"));
298 if (acpi_memory_get_device(handle
, &mem_device
)) {
299 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
300 "Error in finding driver data\n"));
304 if (!acpi_memory_check_device(mem_device
)) {
305 if (acpi_memory_enable_device(mem_device
))
306 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
307 "Error in acpi_memory_enable_device\n"));
310 case ACPI_NOTIFY_EJECT_REQUEST
:
311 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
312 "\nReceived EJECT REQUEST notification for device\n"));
314 if (acpi_bus_get_device(handle
, &device
)) {
315 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
316 "Device doesn't exist\n"));
319 mem_device
= acpi_driver_data(device
);
321 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
322 "Driver Data is NULL\n"));
327 * Currently disabling memory device from kernel mode
328 * TBD: Can also be disabled from user mode scripts
329 * TBD: Can also be disabled by Callback registration
330 * with generic sysfs driver
332 if (acpi_memory_disable_device(mem_device
))
333 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
334 "Error in acpi_memory_disable_device\n"));
336 * TBD: Invoke acpi_bus_remove to cleanup data structures
340 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
341 "Unsupported event [0x%x]\n", event
));
348 static int acpi_memory_device_add(struct acpi_device
*device
)
351 struct acpi_memory_device
*mem_device
= NULL
;
353 ACPI_FUNCTION_TRACE("acpi_memory_device_add");
356 return_VALUE(-EINVAL
);
358 mem_device
= kmalloc(sizeof(struct acpi_memory_device
), GFP_KERNEL
);
360 return_VALUE(-ENOMEM
);
361 memset(mem_device
, 0, sizeof(struct acpi_memory_device
));
363 mem_device
->handle
= device
->handle
;
364 sprintf(acpi_device_name(device
), "%s", ACPI_MEMORY_DEVICE_NAME
);
365 sprintf(acpi_device_class(device
), "%s", ACPI_MEMORY_DEVICE_CLASS
);
366 acpi_driver_data(device
) = mem_device
;
368 /* Get the range from the _CRS */
369 result
= acpi_memory_get_device_resources(mem_device
);
372 return_VALUE(result
);
375 /* Set the device state */
376 mem_device
->state
= MEMORY_POWER_ON_STATE
;
378 printk(KERN_INFO
"%s \n", acpi_device_name(device
));
380 return_VALUE(result
);
383 static int acpi_memory_device_remove(struct acpi_device
*device
, int type
)
385 struct acpi_memory_device
*mem_device
= NULL
;
387 ACPI_FUNCTION_TRACE("acpi_memory_device_remove");
389 if (!device
|| !acpi_driver_data(device
))
390 return_VALUE(-EINVAL
);
392 mem_device
= (struct acpi_memory_device
*)acpi_driver_data(device
);
399 * Helper function to check for memory device
401 static acpi_status
is_memory_device(acpi_handle handle
)
405 struct acpi_buffer buffer
= { ACPI_ALLOCATE_BUFFER
, NULL
};
406 struct acpi_device_info
*info
;
408 ACPI_FUNCTION_TRACE("is_memory_device");
410 status
= acpi_get_object_info(handle
, &buffer
);
411 if (ACPI_FAILURE(status
))
412 return_ACPI_STATUS(AE_ERROR
);
414 info
= buffer
.pointer
;
415 if (!(info
->valid
& ACPI_VALID_HID
)) {
416 acpi_os_free(buffer
.pointer
);
417 return_ACPI_STATUS(AE_ERROR
);
420 hardware_id
= info
->hardware_id
.value
;
421 if ((hardware_id
== NULL
) ||
422 (strcmp(hardware_id
, ACPI_MEMORY_DEVICE_HID
)))
425 acpi_os_free(buffer
.pointer
);
426 return_ACPI_STATUS(status
);
430 acpi_memory_register_notify_handler(acpi_handle handle
,
431 u32 level
, void *ctxt
, void **retv
)
435 ACPI_FUNCTION_TRACE("acpi_memory_register_notify_handler");
437 status
= is_memory_device(handle
);
438 if (ACPI_FAILURE(status
))
439 return_ACPI_STATUS(AE_OK
); /* continue */
441 status
= acpi_install_notify_handler(handle
, ACPI_SYSTEM_NOTIFY
,
442 acpi_memory_device_notify
, NULL
);
443 if (ACPI_FAILURE(status
)) {
444 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
445 "Error installing notify handler\n"));
446 return_ACPI_STATUS(AE_OK
); /* continue */
449 return_ACPI_STATUS(status
);
453 acpi_memory_deregister_notify_handler(acpi_handle handle
,
454 u32 level
, void *ctxt
, void **retv
)
458 ACPI_FUNCTION_TRACE("acpi_memory_deregister_notify_handler");
460 status
= is_memory_device(handle
);
461 if (ACPI_FAILURE(status
))
462 return_ACPI_STATUS(AE_OK
); /* continue */
464 status
= acpi_remove_notify_handler(handle
,
466 acpi_memory_device_notify
);
467 if (ACPI_FAILURE(status
)) {
468 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
469 "Error removing notify handler\n"));
470 return_ACPI_STATUS(AE_OK
); /* continue */
473 return_ACPI_STATUS(status
);
476 static int __init
acpi_memory_device_init(void)
481 ACPI_FUNCTION_TRACE("acpi_memory_device_init");
483 result
= acpi_bus_register_driver(&acpi_memory_device_driver
);
486 return_VALUE(-ENODEV
);
488 status
= acpi_walk_namespace(ACPI_TYPE_DEVICE
, ACPI_ROOT_OBJECT
,
490 acpi_memory_register_notify_handler
,
493 if (ACPI_FAILURE(status
)) {
494 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "walk_namespace failed\n"));
495 acpi_bus_unregister_driver(&acpi_memory_device_driver
);
496 return_VALUE(-ENODEV
);
502 static void __exit
acpi_memory_device_exit(void)
506 ACPI_FUNCTION_TRACE("acpi_memory_device_exit");
509 * Adding this to un-install notification handlers for all the device
512 status
= acpi_walk_namespace(ACPI_TYPE_DEVICE
, ACPI_ROOT_OBJECT
,
514 acpi_memory_deregister_notify_handler
,
517 if (ACPI_FAILURE(status
))
518 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "walk_namespace failed\n"));
520 acpi_bus_unregister_driver(&acpi_memory_device_driver
);
525 module_init(acpi_memory_device_init
);
526 module_exit(acpi_memory_device_exit
);