blob: 855ed1a9f97b89d203e0b5f98bd81311c60f1dc4 [file] [log] [blame]
Dave Hansen3947be12005-10-29 18:16:54 -07001/*
2 * drivers/base/memory.c - basic Memory class support
3 *
4 * Written by Matt Tolentino <matthew.e.tolentino@intel.com>
5 * Dave Hansen <haveblue@us.ibm.com>
6 *
7 * This file provides the necessary infrastructure to represent
8 * a SPARSEMEM-memory-model system's physical memory in /sysfs.
9 * All arch-independent code that assumes MEMORY_HOTPLUG requires
10 * SPARSEMEM should be contained here, or in mm/memory_hotplug.c.
11 */
12
13#include <linux/sysdev.h>
14#include <linux/module.h>
15#include <linux/init.h>
Dave Hansen3947be12005-10-29 18:16:54 -070016#include <linux/topology.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080017#include <linux/capability.h>
Dave Hansen3947be12005-10-29 18:16:54 -070018#include <linux/device.h>
19#include <linux/memory.h>
20#include <linux/kobject.h>
21#include <linux/memory_hotplug.h>
22#include <linux/mm.h>
Daniel Walkerda19cbc2008-02-04 23:35:47 -080023#include <linux/mutex.h>
Dave Hansen3947be12005-10-29 18:16:54 -070024#include <asm/atomic.h>
25#include <asm/uaccess.h>
26
27#define MEMORY_CLASS_NAME "memory"
28
29static struct sysdev_class memory_sysdev_class = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +010030 .name = MEMORY_CLASS_NAME,
Dave Hansen3947be12005-10-29 18:16:54 -070031};
Dave Hansen3947be12005-10-29 18:16:54 -070032
Kay Sievers312c0042005-11-16 09:00:00 +010033static const char *memory_uevent_name(struct kset *kset, struct kobject *kobj)
Dave Hansen3947be12005-10-29 18:16:54 -070034{
35 return MEMORY_CLASS_NAME;
36}
37
Al Viro9ec0fd4e2007-10-14 06:53:45 +010038static int memory_uevent(struct kset *kset, struct kobject *obj, struct kobj_uevent_env *env)
Dave Hansen3947be12005-10-29 18:16:54 -070039{
40 int retval = 0;
41
42 return retval;
43}
44
Kay Sievers312c0042005-11-16 09:00:00 +010045static struct kset_uevent_ops memory_uevent_ops = {
46 .name = memory_uevent_name,
47 .uevent = memory_uevent,
Dave Hansen3947be12005-10-29 18:16:54 -070048};
49
Alan Sterne041c682006-03-27 01:16:30 -080050static BLOCKING_NOTIFIER_HEAD(memory_chain);
Dave Hansen3947be12005-10-29 18:16:54 -070051
Andy Whitcroft98a38eb2006-01-06 00:10:35 -080052int register_memory_notifier(struct notifier_block *nb)
Dave Hansen3947be12005-10-29 18:16:54 -070053{
Alan Sterne041c682006-03-27 01:16:30 -080054 return blocking_notifier_chain_register(&memory_chain, nb);
Dave Hansen3947be12005-10-29 18:16:54 -070055}
Hannes Hering3c82c302008-05-07 14:43:01 +020056EXPORT_SYMBOL(register_memory_notifier);
Dave Hansen3947be12005-10-29 18:16:54 -070057
Andy Whitcroft98a38eb2006-01-06 00:10:35 -080058void unregister_memory_notifier(struct notifier_block *nb)
Dave Hansen3947be12005-10-29 18:16:54 -070059{
Alan Sterne041c682006-03-27 01:16:30 -080060 blocking_notifier_chain_unregister(&memory_chain, nb);
Dave Hansen3947be12005-10-29 18:16:54 -070061}
Hannes Hering3c82c302008-05-07 14:43:01 +020062EXPORT_SYMBOL(unregister_memory_notifier);
Dave Hansen3947be12005-10-29 18:16:54 -070063
64/*
65 * register_memory - Setup a sysfs device for a memory block
66 */
Badari Pulavarty00a41db2008-02-11 09:23:18 -080067static
68int register_memory(struct memory_block *memory, struct mem_section *section)
Dave Hansen3947be12005-10-29 18:16:54 -070069{
70 int error;
71
72 memory->sysdev.cls = &memory_sysdev_class;
73 memory->sysdev.id = __section_nr(section);
74
75 error = sysdev_register(&memory->sysdev);
Dave Hansen3947be12005-10-29 18:16:54 -070076 return error;
77}
78
79static void
Badari Pulavarty00a41db2008-02-11 09:23:18 -080080unregister_memory(struct memory_block *memory, struct mem_section *section)
Dave Hansen3947be12005-10-29 18:16:54 -070081{
82 BUG_ON(memory->sysdev.cls != &memory_sysdev_class);
83 BUG_ON(memory->sysdev.id != __section_nr(section));
84
Badari Pulavarty00a41db2008-02-11 09:23:18 -080085 /* drop the ref. we got in remove_memory_block() */
86 kobject_put(&memory->sysdev.kobj);
Dave Hansen3947be12005-10-29 18:16:54 -070087 sysdev_unregister(&memory->sysdev);
Dave Hansen3947be12005-10-29 18:16:54 -070088}
89
90/*
91 * use this as the physical section index that this memsection
92 * uses.
93 */
94
Andi Kleen4a0b2b42008-07-01 18:48:41 +020095static ssize_t show_mem_phys_index(struct sys_device *dev,
96 struct sysdev_attribute *attr, char *buf)
Dave Hansen3947be12005-10-29 18:16:54 -070097{
98 struct memory_block *mem =
99 container_of(dev, struct memory_block, sysdev);
100 return sprintf(buf, "%08lx\n", mem->phys_index);
101}
102
103/*
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700104 * Show whether the section of memory is likely to be hot-removable
105 */
106static ssize_t show_mem_removable(struct sys_device *dev, char *buf)
107{
108 unsigned long start_pfn;
109 int ret;
110 struct memory_block *mem =
111 container_of(dev, struct memory_block, sysdev);
112
113 start_pfn = section_nr_to_pfn(mem->phys_index);
114 ret = is_mem_section_removable(start_pfn, PAGES_PER_SECTION);
115 return sprintf(buf, "%d\n", ret);
116}
117
118/*
Dave Hansen3947be12005-10-29 18:16:54 -0700119 * online, offline, going offline, etc.
120 */
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200121static ssize_t show_mem_state(struct sys_device *dev,
122 struct sysdev_attribute *attr, char *buf)
Dave Hansen3947be12005-10-29 18:16:54 -0700123{
124 struct memory_block *mem =
125 container_of(dev, struct memory_block, sysdev);
126 ssize_t len = 0;
127
128 /*
129 * We can probably put these states in a nice little array
130 * so that they're not open-coded
131 */
132 switch (mem->state) {
133 case MEM_ONLINE:
134 len = sprintf(buf, "online\n");
135 break;
136 case MEM_OFFLINE:
137 len = sprintf(buf, "offline\n");
138 break;
139 case MEM_GOING_OFFLINE:
140 len = sprintf(buf, "going-offline\n");
141 break;
142 default:
143 len = sprintf(buf, "ERROR-UNKNOWN-%ld\n",
144 mem->state);
145 WARN_ON(1);
146 break;
147 }
148
149 return len;
150}
151
Yasunori Goto7b78d332007-10-21 16:41:36 -0700152int memory_notify(unsigned long val, void *v)
Dave Hansen3947be12005-10-29 18:16:54 -0700153{
Alan Sterne041c682006-03-27 01:16:30 -0800154 return blocking_notifier_call_chain(&memory_chain, val, v);
Dave Hansen3947be12005-10-29 18:16:54 -0700155}
156
157/*
158 * MEMORY_HOTPLUG depends on SPARSEMEM in mm/Kconfig, so it is
159 * OK to have direct references to sparsemem variables in here.
160 */
161static int
162memory_block_action(struct memory_block *mem, unsigned long action)
163{
164 int i;
165 unsigned long psection;
166 unsigned long start_pfn, start_paddr;
167 struct page *first_page;
168 int ret;
169 int old_state = mem->state;
170
171 psection = mem->phys_index;
172 first_page = pfn_to_page(psection << PFN_SECTION_SHIFT);
173
174 /*
175 * The probe routines leave the pages reserved, just
176 * as the bootmem code does. Make sure they're still
177 * that way.
178 */
179 if (action == MEM_ONLINE) {
180 for (i = 0; i < PAGES_PER_SECTION; i++) {
181 if (PageReserved(first_page+i))
182 continue;
183
184 printk(KERN_WARNING "section number %ld page number %d "
185 "not reserved, was it already online? \n",
186 psection, i);
187 return -EBUSY;
188 }
189 }
190
191 switch (action) {
192 case MEM_ONLINE:
193 start_pfn = page_to_pfn(first_page);
194 ret = online_pages(start_pfn, PAGES_PER_SECTION);
195 break;
196 case MEM_OFFLINE:
197 mem->state = MEM_GOING_OFFLINE;
Dave Hansen3947be12005-10-29 18:16:54 -0700198 start_paddr = page_to_pfn(first_page) << PAGE_SHIFT;
199 ret = remove_memory(start_paddr,
200 PAGES_PER_SECTION << PAGE_SHIFT);
201 if (ret) {
202 mem->state = old_state;
203 break;
204 }
Dave Hansen3947be12005-10-29 18:16:54 -0700205 break;
206 default:
207 printk(KERN_WARNING "%s(%p, %ld) unknown action: %ld\n",
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800208 __func__, mem, action, action);
Dave Hansen3947be12005-10-29 18:16:54 -0700209 WARN_ON(1);
210 ret = -EINVAL;
211 }
Dave Hansen3947be12005-10-29 18:16:54 -0700212
213 return ret;
214}
215
216static int memory_block_change_state(struct memory_block *mem,
217 unsigned long to_state, unsigned long from_state_req)
218{
219 int ret = 0;
Daniel Walkerda19cbc2008-02-04 23:35:47 -0800220 mutex_lock(&mem->state_mutex);
Dave Hansen3947be12005-10-29 18:16:54 -0700221
222 if (mem->state != from_state_req) {
223 ret = -EINVAL;
224 goto out;
225 }
226
227 ret = memory_block_action(mem, to_state);
228 if (!ret)
229 mem->state = to_state;
230
231out:
Daniel Walkerda19cbc2008-02-04 23:35:47 -0800232 mutex_unlock(&mem->state_mutex);
Dave Hansen3947be12005-10-29 18:16:54 -0700233 return ret;
234}
235
236static ssize_t
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200237store_mem_state(struct sys_device *dev,
238 struct sysdev_attribute *attr, const char *buf, size_t count)
Dave Hansen3947be12005-10-29 18:16:54 -0700239{
240 struct memory_block *mem;
241 unsigned int phys_section_nr;
242 int ret = -EINVAL;
243
244 mem = container_of(dev, struct memory_block, sysdev);
245 phys_section_nr = mem->phys_index;
246
Andy Whitcroft540557b2007-10-16 01:24:11 -0700247 if (!present_section_nr(phys_section_nr))
Dave Hansen3947be12005-10-29 18:16:54 -0700248 goto out;
249
250 if (!strncmp(buf, "online", min((int)count, 6)))
251 ret = memory_block_change_state(mem, MEM_ONLINE, MEM_OFFLINE);
252 else if(!strncmp(buf, "offline", min((int)count, 7)))
253 ret = memory_block_change_state(mem, MEM_OFFLINE, MEM_ONLINE);
254out:
255 if (ret)
256 return ret;
257 return count;
258}
259
260/*
261 * phys_device is a bad name for this. What I really want
262 * is a way to differentiate between memory ranges that
263 * are part of physical devices that constitute
264 * a complete removable unit or fru.
265 * i.e. do these ranges belong to the same physical device,
266 * s.t. if I offline all of these sections I can then
267 * remove the physical device?
268 */
Andi Kleen4a0b2b42008-07-01 18:48:41 +0200269static ssize_t show_phys_device(struct sys_device *dev,
270 struct sysdev_attribute *attr, char *buf)
Dave Hansen3947be12005-10-29 18:16:54 -0700271{
272 struct memory_block *mem =
273 container_of(dev, struct memory_block, sysdev);
274 return sprintf(buf, "%d\n", mem->phys_device);
275}
276
277static SYSDEV_ATTR(phys_index, 0444, show_mem_phys_index, NULL);
278static SYSDEV_ATTR(state, 0644, show_mem_state, store_mem_state);
279static SYSDEV_ATTR(phys_device, 0444, show_phys_device, NULL);
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700280static SYSDEV_ATTR(removable, 0444, show_mem_removable, NULL);
Dave Hansen3947be12005-10-29 18:16:54 -0700281
282#define mem_create_simple_file(mem, attr_name) \
283 sysdev_create_file(&mem->sysdev, &attr_##attr_name)
284#define mem_remove_simple_file(mem, attr_name) \
285 sysdev_remove_file(&mem->sysdev, &attr_##attr_name)
286
287/*
288 * Block size attribute stuff
289 */
290static ssize_t
291print_block_size(struct class *class, char *buf)
292{
293 return sprintf(buf, "%lx\n", (unsigned long)PAGES_PER_SECTION * PAGE_SIZE);
294}
295
296static CLASS_ATTR(block_size_bytes, 0444, print_block_size, NULL);
297
298static int block_size_init(void)
299{
Andrew Morton28ec24e2006-12-06 20:37:29 -0800300 return sysfs_create_file(&memory_sysdev_class.kset.kobj,
301 &class_attr_block_size_bytes.attr);
Dave Hansen3947be12005-10-29 18:16:54 -0700302}
303
304/*
305 * Some architectures will have custom drivers to do this, and
306 * will not need to do it from userspace. The fake hot-add code
307 * as well as ppc64 will do all of their discovery in userspace
308 * and will require this interface.
309 */
310#ifdef CONFIG_ARCH_MEMORY_PROBE
311static ssize_t
Al Virobe7ee9b2006-02-01 06:06:16 -0500312memory_probe_store(struct class *class, const char *buf, size_t count)
Dave Hansen3947be12005-10-29 18:16:54 -0700313{
314 u64 phys_addr;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700315 int nid;
Dave Hansen3947be12005-10-29 18:16:54 -0700316 int ret;
317
318 phys_addr = simple_strtoull(buf, NULL, 0);
319
Yasunori Gotobc02af92006-06-27 02:53:30 -0700320 nid = memory_add_physaddr_to_nid(phys_addr);
321 ret = add_memory(nid, phys_addr, PAGES_PER_SECTION << PAGE_SHIFT);
Dave Hansen3947be12005-10-29 18:16:54 -0700322
323 if (ret)
324 count = ret;
325
326 return count;
327}
328static CLASS_ATTR(probe, 0700, NULL, memory_probe_store);
329
330static int memory_probe_init(void)
331{
Andrew Morton28ec24e2006-12-06 20:37:29 -0800332 return sysfs_create_file(&memory_sysdev_class.kset.kobj,
333 &class_attr_probe.attr);
Dave Hansen3947be12005-10-29 18:16:54 -0700334}
335#else
Andrew Morton28ec24e2006-12-06 20:37:29 -0800336static inline int memory_probe_init(void)
337{
338 return 0;
339}
Dave Hansen3947be12005-10-29 18:16:54 -0700340#endif
341
342/*
343 * Note that phys_device is optional. It is here to allow for
344 * differentiation between which *physical* devices each
345 * section belongs to...
346 */
347
348static int add_memory_block(unsigned long node_id, struct mem_section *section,
349 unsigned long state, int phys_device)
350{
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700351 struct memory_block *mem = kzalloc(sizeof(*mem), GFP_KERNEL);
Dave Hansen3947be12005-10-29 18:16:54 -0700352 int ret = 0;
353
354 if (!mem)
355 return -ENOMEM;
356
Dave Hansen3947be12005-10-29 18:16:54 -0700357 mem->phys_index = __section_nr(section);
358 mem->state = state;
Daniel Walkerda19cbc2008-02-04 23:35:47 -0800359 mutex_init(&mem->state_mutex);
Dave Hansen3947be12005-10-29 18:16:54 -0700360 mem->phys_device = phys_device;
361
Badari Pulavarty00a41db2008-02-11 09:23:18 -0800362 ret = register_memory(mem, section);
Dave Hansen3947be12005-10-29 18:16:54 -0700363 if (!ret)
364 ret = mem_create_simple_file(mem, phys_index);
365 if (!ret)
366 ret = mem_create_simple_file(mem, state);
367 if (!ret)
368 ret = mem_create_simple_file(mem, phys_device);
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700369 if (!ret)
370 ret = mem_create_simple_file(mem, removable);
Dave Hansen3947be12005-10-29 18:16:54 -0700371
372 return ret;
373}
374
375/*
376 * For now, we have a linear search to go find the appropriate
377 * memory_block corresponding to a particular phys_index. If
378 * this gets to be a real problem, we can always use a radix
379 * tree or something here.
380 *
381 * This could be made generic for all sysdev classes.
382 */
383static struct memory_block *find_memory_block(struct mem_section *section)
384{
385 struct kobject *kobj;
386 struct sys_device *sysdev;
387 struct memory_block *mem;
388 char name[sizeof(MEMORY_CLASS_NAME) + 9 + 1];
389
390 /*
391 * This only works because we know that section == sysdev->id
392 * slightly redundant with sysdev_register()
393 */
394 sprintf(&name[0], "%s%d", MEMORY_CLASS_NAME, __section_nr(section));
395
396 kobj = kset_find_obj(&memory_sysdev_class.kset, name);
397 if (!kobj)
398 return NULL;
399
400 sysdev = container_of(kobj, struct sys_device, kobj);
401 mem = container_of(sysdev, struct memory_block, sysdev);
402
403 return mem;
404}
405
406int remove_memory_block(unsigned long node_id, struct mem_section *section,
407 int phys_device)
408{
409 struct memory_block *mem;
410
411 mem = find_memory_block(section);
412 mem_remove_simple_file(mem, phys_index);
413 mem_remove_simple_file(mem, state);
414 mem_remove_simple_file(mem, phys_device);
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700415 mem_remove_simple_file(mem, removable);
Badari Pulavarty00a41db2008-02-11 09:23:18 -0800416 unregister_memory(mem, section);
Dave Hansen3947be12005-10-29 18:16:54 -0700417
418 return 0;
419}
420
421/*
422 * need an interface for the VM to add new memory regions,
423 * but without onlining it.
424 */
425int register_new_memory(struct mem_section *section)
426{
427 return add_memory_block(0, section, MEM_OFFLINE, 0);
428}
429
430int unregister_memory_section(struct mem_section *section)
431{
Andy Whitcroft540557b2007-10-16 01:24:11 -0700432 if (!present_section(section))
Dave Hansen3947be12005-10-29 18:16:54 -0700433 return -EINVAL;
434
435 return remove_memory_block(0, section, 0);
436}
437
438/*
439 * Initialize the sysfs support for memory devices...
440 */
441int __init memory_dev_init(void)
442{
443 unsigned int i;
444 int ret;
Andrew Morton28ec24e2006-12-06 20:37:29 -0800445 int err;
Dave Hansen3947be12005-10-29 18:16:54 -0700446
Kay Sievers312c0042005-11-16 09:00:00 +0100447 memory_sysdev_class.kset.uevent_ops = &memory_uevent_ops;
Dave Hansen3947be12005-10-29 18:16:54 -0700448 ret = sysdev_class_register(&memory_sysdev_class);
Andrew Morton28ec24e2006-12-06 20:37:29 -0800449 if (ret)
450 goto out;
Dave Hansen3947be12005-10-29 18:16:54 -0700451
452 /*
453 * Create entries for memory sections that were found
454 * during boot and have been initialized
455 */
456 for (i = 0; i < NR_MEM_SECTIONS; i++) {
Andy Whitcroft540557b2007-10-16 01:24:11 -0700457 if (!present_section_nr(i))
Dave Hansen3947be12005-10-29 18:16:54 -0700458 continue;
Andrew Morton28ec24e2006-12-06 20:37:29 -0800459 err = add_memory_block(0, __nr_to_section(i), MEM_ONLINE, 0);
460 if (!ret)
461 ret = err;
Dave Hansen3947be12005-10-29 18:16:54 -0700462 }
463
Andrew Morton28ec24e2006-12-06 20:37:29 -0800464 err = memory_probe_init();
465 if (!ret)
466 ret = err;
467 err = block_size_init();
468 if (!ret)
469 ret = err;
470out:
471 if (ret)
Harvey Harrison2b3a3022008-03-04 16:41:05 -0800472 printk(KERN_ERR "%s() failed: %d\n", __func__, ret);
Dave Hansen3947be12005-10-29 18:16:54 -0700473 return ret;
474}