blob: e0f7425c885488c0f8edba6f7ad804499718b45a [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
Nick Andrewc7060d92009-01-03 18:53:39 +110023 * This driver fields notifications from firmware for memory add
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * 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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <acpi/acpi_drivers.h>
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#define ACPI_MEMORY_DEVICE_CLASS "memory"
37#define ACPI_MEMORY_DEVICE_HID "PNP0C80"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#define ACPI_MEMORY_DEVICE_NAME "Hotplug Mem Device"
39
40#define _COMPONENT ACPI_MEMORY_DEVICE_COMPONENT
41
Zhao Yakuiaa7b2b22009-07-03 10:49:03 +080042#undef PREFIX
43#define PREFIX "ACPI:memory_hp:"
44
Len Brownf52fd662007-02-12 22:42:12 -050045ACPI_MODULE_NAME("acpi_memhotplug");
46MODULE_AUTHOR("Naveen B S <naveen.b.s@intel.com>");
Len Brown7cda93e2007-02-12 23:50:02 -050047MODULE_DESCRIPTION("Hotplug Mem Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070048MODULE_LICENSE("GPL");
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/* Memory Device States */
51#define MEMORY_INVALID_STATE 0
52#define MEMORY_POWER_ON_STATE 1
53#define MEMORY_POWER_OFF_STATE 2
54
Len Brown4be44fc2005-08-05 00:44:28 -040055static int acpi_memory_device_add(struct acpi_device *device);
56static int acpi_memory_device_remove(struct acpi_device *device, int type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Thomas Renninger1ba90e32007-07-23 14:44:41 +020058static const struct acpi_device_id memory_device_ids[] = {
59 {ACPI_MEMORY_DEVICE_HID, 0},
60 {"", 0},
61};
62MODULE_DEVICE_TABLE(acpi, memory_device_ids);
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static struct acpi_driver acpi_memory_device_driver = {
Len Brownc2b67052007-02-12 23:33:40 -050065 .name = "acpi_memhotplug",
Len Brown4be44fc2005-08-05 00:44:28 -040066 .class = ACPI_MEMORY_DEVICE_CLASS,
Thomas Renninger1ba90e32007-07-23 14:44:41 +020067 .ids = memory_device_ids,
Len Brown4be44fc2005-08-05 00:44:28 -040068 .ops = {
69 .add = acpi_memory_device_add,
70 .remove = acpi_memory_device_remove,
71 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070072};
73
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -070074struct acpi_memory_info {
75 struct list_head list;
76 u64 start_addr; /* Memory Range start physical addr */
77 u64 length; /* Memory Range length */
78 unsigned short caching; /* memory cache attribute */
79 unsigned short write_protect; /* memory read/write attribute */
80 unsigned int enabled:1;
Wen Congyang65479472012-11-16 02:10:37 +010081 unsigned int failed:1;
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -070082};
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084struct acpi_memory_device {
Patrick Mochel3b748632006-05-19 16:54:38 -040085 struct acpi_device * device;
Len Brown4be44fc2005-08-05 00:44:28 -040086 unsigned int state; /* State of the memory device */
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -070087 struct list_head res_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088};
89
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -070090static acpi_status
91acpi_memory_get_resource(struct acpi_resource *resource, void *context)
92{
93 struct acpi_memory_device *mem_device = context;
94 struct acpi_resource_address64 address64;
95 struct acpi_memory_info *info, *new;
96 acpi_status status;
97
98 status = acpi_resource_to_address64(resource, &address64);
99 if (ACPI_FAILURE(status) ||
100 (address64.resource_type != ACPI_MEMORY_RANGE))
101 return AE_OK;
102
103 list_for_each_entry(info, &mem_device->res_list, list) {
104 /* Can we combine the resource range information? */
105 if ((info->caching == address64.info.mem.caching) &&
106 (info->write_protect == address64.info.mem.write_protect) &&
107 (info->start_addr + info->length == address64.minimum)) {
108 info->length += address64.address_length;
109 return AE_OK;
110 }
111 }
112
113 new = kzalloc(sizeof(struct acpi_memory_info), GFP_KERNEL);
114 if (!new)
115 return AE_ERROR;
116
117 INIT_LIST_HEAD(&new->list);
118 new->caching = address64.info.mem.caching;
119 new->write_protect = address64.info.mem.write_protect;
120 new->start_addr = address64.minimum;
121 new->length = address64.address_length;
122 list_add_tail(&new->list, &mem_device->res_list);
123
124 return AE_OK;
125}
126
Wen Congyang386e52b2012-11-16 02:06:06 +0100127static void
128acpi_memory_free_device_resources(struct acpi_memory_device *mem_device)
129{
130 struct acpi_memory_info *info, *n;
131
132 list_for_each_entry_safe(info, n, &mem_device->res_list, list)
133 kfree(info);
134 INIT_LIST_HEAD(&mem_device->res_list);
135}
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137static int
138acpi_memory_get_device_resources(struct acpi_memory_device *mem_device)
139{
140 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
KAMEZAWA Hiroyuki5d2870f2006-08-05 12:15:04 -0700142 if (!list_empty(&mem_device->res_list))
143 return 0;
144
Patrick Mochelb8632782006-05-19 16:54:41 -0400145 status = acpi_walk_resources(mem_device->device->handle, METHOD_NAME__CRS,
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700146 acpi_memory_get_resource, mem_device);
147 if (ACPI_FAILURE(status)) {
Wen Congyang386e52b2012-11-16 02:06:06 +0100148 acpi_memory_free_device_resources(mem_device);
Patrick Mocheld550d982006-06-27 00:41:40 -0400149 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151
Patrick Mocheld550d982006-06-27 00:41:40 -0400152 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
155static int
156acpi_memory_get_device(acpi_handle handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400157 struct acpi_memory_device **mem_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
159 acpi_status status;
160 acpi_handle phandle;
161 struct acpi_device *device = NULL;
162 struct acpi_device *pdevice = NULL;
Zhao Yakuiaa7b2b22009-07-03 10:49:03 +0800163 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 if (!acpi_bus_get_device(handle, &device) && device)
167 goto end;
168
169 status = acpi_get_parent(handle, &phandle);
170 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400171 ACPI_EXCEPTION((AE_INFO, status, "Cannot find acpi parent"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400172 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
174
175 /* Get the parent device */
Zhao Yakuiaa7b2b22009-07-03 10:49:03 +0800176 result = acpi_bus_get_device(phandle, &pdevice);
177 if (result) {
178 printk(KERN_WARNING PREFIX "Cannot get acpi bus device");
Patrick Mocheld550d982006-06-27 00:41:40 -0400179 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
181
182 /*
183 * Now add the notified device. This creates the acpi_device
184 * and invokes .add function
185 */
Zhao Yakuiaa7b2b22009-07-03 10:49:03 +0800186 result = acpi_bus_add(&device, pdevice, handle, ACPI_BUS_TYPE_DEVICE);
187 if (result) {
188 printk(KERN_WARNING PREFIX "Cannot add acpi bus");
Patrick Mocheld550d982006-06-27 00:41:40 -0400189 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
191
Len Brown4be44fc2005-08-05 00:44:28 -0400192 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 *mem_device = acpi_driver_data(device);
194 if (!(*mem_device)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400195 printk(KERN_ERR "\n driver data not found");
Patrick Mocheld550d982006-06-27 00:41:40 -0400196 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 }
198
Patrick Mocheld550d982006-06-27 00:41:40 -0400199 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
Len Brown4be44fc2005-08-05 00:44:28 -0400202static int acpi_memory_check_device(struct acpi_memory_device *mem_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Matthew Wilcox27663c52008-10-10 02:22:59 -0400204 unsigned long long current_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 /* Get device present/absent information from the _STA */
Patrick Mochelb8632782006-05-19 16:54:41 -0400207 if (ACPI_FAILURE(acpi_evaluate_integer(mem_device->device->handle, "_STA",
Len Brown4be44fc2005-08-05 00:44:28 -0400208 NULL, &current_status)))
Patrick Mocheld550d982006-06-27 00:41:40 -0400209 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 /*
211 * Check for device status. Device should be
212 * present/enabled/functioning.
213 */
Bjorn Helgaasa0bd4ac2007-04-25 14:17:39 -0400214 if (!((current_status & ACPI_STA_DEVICE_PRESENT)
215 && (current_status & ACPI_STA_DEVICE_ENABLED)
216 && (current_status & ACPI_STA_DEVICE_FUNCTIONING)))
Patrick Mocheld550d982006-06-27 00:41:40 -0400217 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Patrick Mocheld550d982006-06-27 00:41:40 -0400219 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Len Brown4be44fc2005-08-05 00:44:28 -0400222static int acpi_memory_enable_device(struct acpi_memory_device *mem_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700224 int result, num_enabled = 0;
225 struct acpi_memory_info *info;
Yasunori Goto1e3590e2006-06-27 02:53:31 -0700226 int node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 /* Get the range from the _CRS */
230 result = acpi_memory_get_device_resources(mem_device);
231 if (result) {
Len Brown64684632006-06-26 23:41:38 -0400232 printk(KERN_ERR PREFIX "get_device_resources failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 mem_device->state = MEMORY_INVALID_STATE;
234 return result;
235 }
236
Patrick Mochelb8632782006-05-19 16:54:41 -0400237 node = acpi_get_node(mem_device->device->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 /*
239 * Tell the VM there is more memory here...
240 * Note: Assume that this function returns zero on success
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700241 * We don't have memory-hot-add rollback function,now.
242 * (i.e. memory-hot-remove function)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 */
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700244 list_for_each_entry(info, &mem_device->res_list, list) {
KAMEZAWA Hiroyukifa25d8d2006-08-05 12:15:02 -0700245 if (info->enabled) { /* just sanity check...*/
Yasunori Gotodd56a8e2006-06-27 02:53:29 -0700246 num_enabled++;
247 continue;
248 }
Zhao Yakui5d2619f2009-07-07 10:56:11 +0800249 /*
250 * If the memory block size is zero, please ignore it.
251 * Don't try to do the following memory hotplug flowchart.
252 */
253 if (!info->length)
254 continue;
Keith Mannthey8c2676a2006-09-30 23:27:07 -0700255 if (node < 0)
256 node = memory_add_physaddr_to_nid(info->start_addr);
257
Yasunori Gotobc02af92006-06-27 02:53:30 -0700258 result = add_memory(node, info->start_addr, info->length);
Wen Congyang65479472012-11-16 02:10:37 +0100259
260 /*
261 * If the memory block has been used by the kernel, add_memory()
262 * returns -EEXIST. If add_memory() returns the other error, it
263 * means that this memory block is not used by the kernel.
264 */
265 if (result && result != -EEXIST) {
266 info->failed = 1;
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700267 continue;
Wen Congyang65479472012-11-16 02:10:37 +0100268 }
269
270 if (!result)
271 info->enabled = 1;
272 /*
273 * Add num_enable even if add_memory() returns -EEXIST, so the
274 * device is bound to this driver.
275 */
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700276 num_enabled++;
277 }
278 if (!num_enabled) {
akpm@osdl.org0a1f1ab2006-06-30 03:15:00 -0400279 printk(KERN_ERR PREFIX "add_memory failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 mem_device->state = MEMORY_INVALID_STATE;
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700281 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
Zhao Yakui5d2619f2009-07-07 10:56:11 +0800283 /*
284 * Sometimes the memory device will contain several memory blocks.
285 * When one memory block is hot-added to the system memory, it will
286 * be regarded as a success.
287 * Otherwise if the last memory block can't be hot-added to the system
288 * memory, it will be failure and the memory device can't be bound with
289 * driver.
290 */
291 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
Yasuaki Ishimatsu19387b22012-11-15 06:59:31 +0000294static int acpi_memory_remove_memory(struct acpi_memory_device *mem_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Wen Congyang65479472012-11-16 02:10:37 +0100296 int result = 0;
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700297 struct acpi_memory_info *info, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700299 list_for_each_entry_safe(info, n, &mem_device->res_list, list) {
Wen Congyang65479472012-11-16 02:10:37 +0100300 if (info->failed)
301 /* The kernel does not use this memory block */
302 continue;
303
304 if (!info->enabled)
305 /*
306 * The kernel uses this memory block, but it may be not
307 * managed by us.
308 */
309 return -EBUSY;
310
311 result = remove_memory(info->start_addr, info->length);
312 if (result)
313 return result;
Yasuaki Ishimatsu19387b22012-11-15 06:59:31 +0000314
315 list_del(&info->list);
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700316 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318
Wen Congyang65479472012-11-16 02:10:37 +0100319 return result;
Yasuaki Ishimatsu19387b22012-11-15 06:59:31 +0000320}
321
Len Brown4be44fc2005-08-05 00:44:28 -0400322static void acpi_memory_device_notify(acpi_handle handle, u32 event, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324 struct acpi_memory_device *mem_device;
325 struct acpi_device *device;
Wen Congyang315bbae2012-11-16 02:04:05 +0100326 struct acpi_eject_event *ej_event = NULL;
Toshi Kanib1f00de2012-05-23 20:25:22 -0600327 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE; /* default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 switch (event) {
330 case ACPI_NOTIFY_BUS_CHECK:
331 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400332 "\nReceived BUS CHECK notification for device\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 /* Fall Through */
334 case ACPI_NOTIFY_DEVICE_CHECK:
335 if (event == ACPI_NOTIFY_DEVICE_CHECK)
336 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400337 "\nReceived DEVICE CHECK notification for device\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (acpi_memory_get_device(handle, &mem_device)) {
Len Brown64684632006-06-26 23:41:38 -0400339 printk(KERN_ERR PREFIX "Cannot find driver data\n");
Toshi Kanib1f00de2012-05-23 20:25:22 -0600340 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
342
Toshi Kanib1f00de2012-05-23 20:25:22 -0600343 if (acpi_memory_check_device(mem_device))
344 break;
345
346 if (acpi_memory_enable_device(mem_device)) {
347 printk(KERN_ERR PREFIX "Cannot enable memory device\n");
348 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
Toshi Kanib1f00de2012-05-23 20:25:22 -0600350
351 ost_code = ACPI_OST_SC_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 break;
Toshi Kanib1f00de2012-05-23 20:25:22 -0600353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 case ACPI_NOTIFY_EJECT_REQUEST:
355 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400356 "\nReceived EJECT REQUEST notification for device\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 if (acpi_bus_get_device(handle, &device)) {
Len Brown64684632006-06-26 23:41:38 -0400359 printk(KERN_ERR PREFIX "Device doesn't exist\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 break;
361 }
362 mem_device = acpi_driver_data(device);
363 if (!mem_device) {
Len Brown64684632006-06-26 23:41:38 -0400364 printk(KERN_ERR PREFIX "Driver Data is NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 break;
366 }
367
Wen Congyang315bbae2012-11-16 02:04:05 +0100368 ej_event = kmalloc(sizeof(*ej_event), GFP_KERNEL);
369 if (!ej_event) {
370 pr_err(PREFIX "No memory, dropping EJECT\n");
Toshi Kanib1f00de2012-05-23 20:25:22 -0600371 break;
372 }
373
Wen Congyang315bbae2012-11-16 02:04:05 +0100374 ej_event->handle = handle;
375 ej_event->event = ACPI_NOTIFY_EJECT_REQUEST;
376 acpi_os_hotplug_execute(acpi_bus_hot_remove_device,
377 (void *)ej_event);
Toshi Kanib1f00de2012-05-23 20:25:22 -0600378
Wen Congyang315bbae2012-11-16 02:04:05 +0100379 /* eject is performed asynchronously */
Toshi Kanib1f00de2012-05-23 20:25:22 -0600380 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 default:
382 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Len Brown4be44fc2005-08-05 00:44:28 -0400383 "Unsupported event [0x%x]\n", event));
Toshi Kanib1f00de2012-05-23 20:25:22 -0600384
385 /* non-hotplug event; possibly handled by other handler */
386 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388
Toshi Kanib1f00de2012-05-23 20:25:22 -0600389 /* Inform firmware that the hotplug operation has completed */
390 (void) acpi_evaluate_hotplug_ost(handle, event, ost_code, NULL);
Patrick Mocheld550d982006-06-27 00:41:40 -0400391 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
Wen Congyang386e52b2012-11-16 02:06:06 +0100394static void acpi_memory_device_free(struct acpi_memory_device *mem_device)
395{
396 if (!mem_device)
397 return;
398
399 acpi_memory_free_device_resources(mem_device);
400 kfree(mem_device);
401}
402
Len Brown4be44fc2005-08-05 00:44:28 -0400403static int acpi_memory_device_add(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
405 int result;
406 struct acpi_memory_device *mem_device = NULL;
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400410 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Burman Yan36bcbec2006-12-19 12:56:11 -0800412 mem_device = kzalloc(sizeof(struct acpi_memory_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (!mem_device)
Patrick Mocheld550d982006-06-27 00:41:40 -0400414 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
KAMEZAWA Hiroyuki9ac02392006-06-27 02:53:27 -0700416 INIT_LIST_HEAD(&mem_device->res_list);
Patrick Mochel3b748632006-05-19 16:54:38 -0400417 mem_device->device = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 sprintf(acpi_device_name(device), "%s", ACPI_MEMORY_DEVICE_NAME);
419 sprintf(acpi_device_class(device), "%s", ACPI_MEMORY_DEVICE_CLASS);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700420 device->driver_data = mem_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 /* Get the range from the _CRS */
423 result = acpi_memory_get_device_resources(mem_device);
424 if (result) {
425 kfree(mem_device);
Patrick Mocheld550d982006-06-27 00:41:40 -0400426 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
428
429 /* Set the device state */
430 mem_device->state = MEMORY_POWER_ON_STATE;
431
Yasunori Goto6cbe44c2006-10-19 23:28:30 -0700432 printk(KERN_DEBUG "%s \n", acpi_device_name(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Bjorn Helgaas80f20fe2009-06-22 20:41:25 +0000434 if (!acpi_memory_check_device(mem_device)) {
435 /* call add_memory func */
436 result = acpi_memory_enable_device(mem_device);
Wen Congyange0b7b242012-11-16 02:08:16 +0100437 if (result) {
Bjorn Helgaas80f20fe2009-06-22 20:41:25 +0000438 printk(KERN_ERR PREFIX
439 "Error in acpi_memory_enable_device\n");
Wen Congyange0b7b242012-11-16 02:08:16 +0100440 acpi_memory_device_free(mem_device);
441 }
Bjorn Helgaas80f20fe2009-06-22 20:41:25 +0000442 }
Patrick Mocheld550d982006-06-27 00:41:40 -0400443 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
Len Brown4be44fc2005-08-05 00:44:28 -0400446static int acpi_memory_device_remove(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 struct acpi_memory_device *mem_device = NULL;
Yasuaki Ishimatsu19387b22012-11-15 06:59:31 +0000449 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 if (!device || !acpi_driver_data(device))
Patrick Mocheld550d982006-06-27 00:41:40 -0400452 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Jan Engelhardt50dd0962006-10-01 00:28:50 +0200454 mem_device = acpi_driver_data(device);
Yasuaki Ishimatsu19387b22012-11-15 06:59:31 +0000455
456 result = acpi_memory_remove_memory(mem_device);
457 if (result)
458 return result;
459
Wen Congyang386e52b2012-11-16 02:06:06 +0100460 acpi_memory_device_free(mem_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Patrick Mocheld550d982006-06-27 00:41:40 -0400462 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
465/*
466 * Helper function to check for memory device
467 */
Len Brown4be44fc2005-08-05 00:44:28 -0400468static acpi_status is_memory_device(acpi_handle handle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
470 char *hardware_id;
471 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 struct acpi_device_info *info;
473
Bob Moore15b8dd52009-06-29 13:39:29 +0800474 status = acpi_get_object_info(handle, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400476 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (!(info->valid & ACPI_VALID_HID)) {
Bob Moore15b8dd52009-06-29 13:39:29 +0800479 kfree(info);
Patrick Mocheld550d982006-06-27 00:41:40 -0400480 return AE_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
482
Bob Moore15b8dd52009-06-29 13:39:29 +0800483 hardware_id = info->hardware_id.string;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if ((hardware_id == NULL) ||
Len Brown4be44fc2005-08-05 00:44:28 -0400485 (strcmp(hardware_id, ACPI_MEMORY_DEVICE_HID)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 status = AE_ERROR;
487
Bob Moore15b8dd52009-06-29 13:39:29 +0800488 kfree(info);
Patrick Mocheld550d982006-06-27 00:41:40 -0400489 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
492static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400493acpi_memory_register_notify_handler(acpi_handle handle,
494 u32 level, void *ctxt, void **retv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
496 acpi_status status;
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 status = is_memory_device(handle);
Yasunori Goto07dd4852006-08-14 22:37:32 -0700500 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400501 return AE_OK; /* continue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Thomas Renningera6fc6722006-06-26 23:58:43 -0400503 status = acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
504 acpi_memory_device_notify, NULL);
505 /* continue */
Patrick Mocheld550d982006-06-27 00:41:40 -0400506 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
509static acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400510acpi_memory_deregister_notify_handler(acpi_handle handle,
511 u32 level, void *ctxt, void **retv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
513 acpi_status status;
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 status = is_memory_device(handle);
Yasunori Goto07dd4852006-08-14 22:37:32 -0700517 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400518 return AE_OK; /* continue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 status = acpi_remove_notify_handler(handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400521 ACPI_SYSTEM_NOTIFY,
522 acpi_memory_device_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Patrick Mocheld550d982006-06-27 00:41:40 -0400524 return AE_OK; /* continue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
Len Brown4be44fc2005-08-05 00:44:28 -0400527static int __init acpi_memory_device_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
529 int result;
530 acpi_status status;
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 result = acpi_bus_register_driver(&acpi_memory_device_driver);
534
535 if (result < 0)
Patrick Mocheld550d982006-06-27 00:41:40 -0400536 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
Len Brown4be44fc2005-08-05 00:44:28 -0400539 ACPI_UINT32_MAX,
Lin Ming22635762009-11-13 10:06:08 +0800540 acpi_memory_register_notify_handler, NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400541 NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Len Brown4be44fc2005-08-05 00:44:28 -0400543 if (ACPI_FAILURE(status)) {
Thomas Renningera6fc6722006-06-26 23:58:43 -0400544 ACPI_EXCEPTION((AE_INFO, status, "walk_namespace failed"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 acpi_bus_unregister_driver(&acpi_memory_device_driver);
Patrick Mocheld550d982006-06-27 00:41:40 -0400546 return -ENODEV;
Len Brown4be44fc2005-08-05 00:44:28 -0400547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Patrick Mocheld550d982006-06-27 00:41:40 -0400549 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
Len Brown4be44fc2005-08-05 00:44:28 -0400552static void __exit acpi_memory_device_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
554 acpi_status status;
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 /*
558 * Adding this to un-install notification handlers for all the device
559 * handles.
560 */
561 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
Len Brown4be44fc2005-08-05 00:44:28 -0400562 ACPI_UINT32_MAX,
Lin Ming22635762009-11-13 10:06:08 +0800563 acpi_memory_deregister_notify_handler, NULL,
Len Brown4be44fc2005-08-05 00:44:28 -0400564 NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Len Brown4be44fc2005-08-05 00:44:28 -0400566 if (ACPI_FAILURE(status))
Thomas Renningera6fc6722006-06-26 23:58:43 -0400567 ACPI_EXCEPTION((AE_INFO, status, "walk_namespace failed"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 acpi_bus_unregister_driver(&acpi_memory_device_driver);
570
Patrick Mocheld550d982006-06-27 00:41:40 -0400571 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
573
574module_init(acpi_memory_device_init);
575module_exit(acpi_memory_device_exit);