[PATCH] pgdat allocation for new node add (specify node id)
[pandora-kernel.git] / drivers / acpi / acpi_memhotplug.c
1 /*
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
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"
40
41 #define _COMPONENT              ACPI_MEMORY_DEVICE_COMPONENT
42
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");
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
58 static int acpi_memory_device_add(struct acpi_device *device);
59 static int acpi_memory_device_remove(struct acpi_device *device, int type);
60 static int acpi_memory_device_start(struct acpi_device *device);
61
62 static struct acpi_driver acpi_memory_device_driver = {
63         .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,
69                 .start = acpi_memory_device_start,
70                 },
71 };
72
73 struct 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
82 struct acpi_memory_device {
83         acpi_handle handle;
84         unsigned int state;     /* State of the memory device */
85         struct list_head res_list;
86 };
87
88 static acpi_status
89 acpi_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
125 static int
126 acpi_memory_get_device_resources(struct acpi_memory_device *mem_device)
127 {
128         acpi_status status;
129         struct acpi_memory_info *info, *n;
130
131         ACPI_FUNCTION_TRACE("acpi_memory_get_device_resources");
132
133         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;
139         }
140
141         return 0;
142 }
143
144 static int
145 acpi_memory_get_device(acpi_handle handle,
146                        struct acpi_memory_device **mem_device)
147 {
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)) {
160                 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Error in acpi_get_parent\n"));
161                 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,
168                                   "Error in acpi_bus_get_device\n"));
169                 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)) {
178                 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Error in acpi_bus_add\n"));
179                 return_VALUE(-EINVAL);
180         }
181
182       end:
183         *mem_device = acpi_driver_data(device);
184         if (!(*mem_device)) {
185                 printk(KERN_ERR "\n driver data not found");
186                 return_VALUE(-ENODEV);
187         }
188
189         return_VALUE(0);
190 }
191
192 static int acpi_memory_check_device(struct acpi_memory_device *mem_device)
193 {
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",
200                                                NULL, &current_status)))
201                 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)
207               && (current_status & ACPI_MEMORY_STA_ENABLED)
208               && (current_status & ACPI_MEMORY_STA_FUNCTIONAL)))
209                 return_VALUE(-ENODEV);
210
211         return_VALUE(0);
212 }
213
214 static int acpi_memory_enable_device(struct acpi_memory_device *mem_device)
215 {
216         int result, num_enabled = 0;
217         struct acpi_memory_info *info;
218         int node = 0;
219
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,
226                                   "\nget_device_resources failed\n"));
227                 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
234          * We don't have memory-hot-add rollback function,now.
235          * (i.e. memory-hot-remove function)
236          */
237         list_for_each_entry(info, &mem_device->res_list, list) {
238                 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
249                 result = add_memory(node, info->start_addr, info->length);
250                 if (result)
251                         continue;
252                 info->enabled = 1;
253                 num_enabled++;
254         }
255         if (!num_enabled) {
256                 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "\nadd_memory failed\n"));
257                 mem_device->state = MEMORY_INVALID_STATE;
258                 return -EINVAL;
259         }
260
261         return result;
262 }
263
264 static int acpi_memory_powerdown_device(struct acpi_memory_device *mem_device)
265 {
266         acpi_status status;
267         struct acpi_object_list arg_list;
268         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,
279                                       "_EJ0", &arg_list, NULL);
280         /* Return on _EJ0 failure */
281         if (ACPI_FAILURE(status)) {
282                 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "_EJ0 failed.\n"));
283                 return_VALUE(-ENODEV);
284         }
285
286         /* Evalute _STA to check if the device is disabled */
287         status = acpi_evaluate_integer(mem_device->handle, "_STA",
288                                        NULL, &current_status);
289         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
299 static int acpi_memory_disable_device(struct acpi_memory_device *mem_device)
300 {
301         int result;
302         struct acpi_memory_info *info, *n;
303
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          */
310         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);
317         }
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,
323                                   "Device Power Down failed.\n"));
324                 /* 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
333 static void acpi_memory_device_notify(acpi_handle handle, u32 event, void *data)
334 {
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,
343                                   "\nReceived BUS CHECK notification for device\n"));
344                 /* Fall Through */
345         case ACPI_NOTIFY_DEVICE_CHECK:
346                 if (event == ACPI_NOTIFY_DEVICE_CHECK)
347                         ACPI_DEBUG_PRINT((ACPI_DB_INFO,
348                                           "\nReceived DEVICE CHECK notification for device\n"));
349                 if (acpi_memory_get_device(handle, &mem_device)) {
350                         ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
351                                           "Error in finding driver data\n"));
352                         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,
358                                                   "Error in acpi_memory_enable_device\n"));
359                 }
360                 break;
361         case ACPI_NOTIFY_EJECT_REQUEST:
362                 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
363                                   "\nReceived EJECT REQUEST notification for device\n"));
364
365                 if (acpi_bus_get_device(handle, &device)) {
366                         ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
367                                           "Device doesn't exist\n"));
368                         break;
369                 }
370                 mem_device = acpi_driver_data(device);
371                 if (!mem_device) {
372                         ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
373                                           "Driver Data is NULL\n"));
374                         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
381                  *      with generic sysfs driver
382                  */
383                 if (acpi_memory_disable_device(mem_device))
384                         ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
385                                           "Error in acpi_memory_disable_device\n"));
386                 /*
387                  * TBD: Invoke acpi_bus_remove to cleanup data structures
388                  */
389                 break;
390         default:
391                 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
392                                   "Unsupported event [0x%x]\n", event));
393                 break;
394         }
395
396         return_VOID;
397 }
398
399 static int acpi_memory_device_add(struct acpi_device *device)
400 {
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
414         INIT_LIST_HEAD(&mem_device->res_list);
415         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
435 static int acpi_memory_device_remove(struct acpi_device *device, int type)
436 {
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
444         mem_device = (struct acpi_memory_device *)acpi_driver_data(device);
445         kfree(mem_device);
446
447         return_VALUE(0);
448 }
449
450 static 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
469 /*
470  * Helper function to check for memory device
471  */
472 static acpi_status is_memory_device(acpi_handle handle)
473 {
474         char *hardware_id;
475         acpi_status status;
476         struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
477         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) ||
493             (strcmp(hardware_id, ACPI_MEMORY_DEVICE_HID)))
494                 status = AE_ERROR;
495
496         acpi_os_free(buffer.pointer);
497         return_ACPI_STATUS(status);
498 }
499
500 static acpi_status
501 acpi_memory_register_notify_handler(acpi_handle handle,
502                                     u32 level, void *ctxt, void **retv)
503 {
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,
513                                              acpi_memory_device_notify, NULL);
514         if (ACPI_FAILURE(status)) {
515                 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
516                                   "Error installing notify handler\n"));
517                 return_ACPI_STATUS(AE_OK);      /* continue */
518         }
519
520         return_ACPI_STATUS(status);
521 }
522
523 static acpi_status
524 acpi_memory_deregister_notify_handler(acpi_handle handle,
525                                       u32 level, void *ctxt, void **retv)
526 {
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,
536                                             ACPI_SYSTEM_NOTIFY,
537                                             acpi_memory_device_notify);
538         if (ACPI_FAILURE(status)) {
539                 ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
540                                   "Error removing notify handler\n"));
541                 return_ACPI_STATUS(AE_OK);      /* continue */
542         }
543
544         return_ACPI_STATUS(status);
545 }
546
547 static int __init acpi_memory_device_init(void)
548 {
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,
560                                      ACPI_UINT32_MAX,
561                                      acpi_memory_register_notify_handler,
562                                      NULL, NULL);
563
564         if (ACPI_FAILURE(status)) {
565                 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "walk_namespace failed\n"));
566                 acpi_bus_unregister_driver(&acpi_memory_device_driver);
567                 return_VALUE(-ENODEV);
568         }
569
570         return_VALUE(0);
571 }
572
573 static void __exit acpi_memory_device_exit(void)
574 {
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,
584                                      ACPI_UINT32_MAX,
585                                      acpi_memory_deregister_notify_handler,
586                                      NULL, NULL);
587
588         if (ACPI_FAILURE(status))
589                 ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "walk_namespace failed\n"));
590
591         acpi_bus_unregister_driver(&acpi_memory_device_driver);
592
593         return_VOID;
594 }
595
596 module_init(acpi_memory_device_init);
597 module_exit(acpi_memory_device_exit);