2 * drivers/base/memory.c - basic Memory class support
4 * Written by Matt Tolentino <matthew.e.tolentino@intel.com>
5 * Dave Hansen <haveblue@us.ibm.com>
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.
13 #include <linux/sysdev.h>
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/topology.h>
17 #include <linux/capability.h>
18 #include <linux/device.h>
19 #include <linux/memory.h>
20 #include <linux/kobject.h>
21 #include <linux/memory_hotplug.h>
23 #include <linux/mutex.h>
24 #include <linux/stat.h>
25 #include <linux/slab.h>
27 #include <asm/atomic.h>
28 #include <asm/uaccess.h>
30 static DEFINE_MUTEX(mem_sysfs_mutex
);
32 #define MEMORY_CLASS_NAME "memory"
34 static struct sysdev_class memory_sysdev_class
= {
35 .name
= MEMORY_CLASS_NAME
,
38 static const char *memory_uevent_name(struct kset
*kset
, struct kobject
*kobj
)
40 return MEMORY_CLASS_NAME
;
43 static int memory_uevent(struct kset
*kset
, struct kobject
*obj
, struct kobj_uevent_env
*env
)
50 static const struct kset_uevent_ops memory_uevent_ops
= {
51 .name
= memory_uevent_name
,
52 .uevent
= memory_uevent
,
55 static BLOCKING_NOTIFIER_HEAD(memory_chain
);
57 int register_memory_notifier(struct notifier_block
*nb
)
59 return blocking_notifier_chain_register(&memory_chain
, nb
);
61 EXPORT_SYMBOL(register_memory_notifier
);
63 void unregister_memory_notifier(struct notifier_block
*nb
)
65 blocking_notifier_chain_unregister(&memory_chain
, nb
);
67 EXPORT_SYMBOL(unregister_memory_notifier
);
69 static ATOMIC_NOTIFIER_HEAD(memory_isolate_chain
);
71 int register_memory_isolate_notifier(struct notifier_block
*nb
)
73 return atomic_notifier_chain_register(&memory_isolate_chain
, nb
);
75 EXPORT_SYMBOL(register_memory_isolate_notifier
);
77 void unregister_memory_isolate_notifier(struct notifier_block
*nb
)
79 atomic_notifier_chain_unregister(&memory_isolate_chain
, nb
);
81 EXPORT_SYMBOL(unregister_memory_isolate_notifier
);
84 * register_memory - Setup a sysfs device for a memory block
87 int register_memory(struct memory_block
*memory
, struct mem_section
*section
)
91 memory
->sysdev
.cls
= &memory_sysdev_class
;
92 memory
->sysdev
.id
= __section_nr(section
);
94 error
= sysdev_register(&memory
->sysdev
);
99 unregister_memory(struct memory_block
*memory
, struct mem_section
*section
)
101 BUG_ON(memory
->sysdev
.cls
!= &memory_sysdev_class
);
102 BUG_ON(memory
->sysdev
.id
!= __section_nr(section
));
104 /* drop the ref. we got in remove_memory_block() */
105 kobject_put(&memory
->sysdev
.kobj
);
106 sysdev_unregister(&memory
->sysdev
);
110 * use this as the physical section index that this memsection
114 static ssize_t
show_mem_phys_index(struct sys_device
*dev
,
115 struct sysdev_attribute
*attr
, char *buf
)
117 struct memory_block
*mem
=
118 container_of(dev
, struct memory_block
, sysdev
);
119 return sprintf(buf
, "%08lx\n", mem
->phys_index
);
123 * Show whether the section of memory is likely to be hot-removable
125 static ssize_t
show_mem_removable(struct sys_device
*dev
,
126 struct sysdev_attribute
*attr
, char *buf
)
128 unsigned long start_pfn
;
130 struct memory_block
*mem
=
131 container_of(dev
, struct memory_block
, sysdev
);
133 start_pfn
= section_nr_to_pfn(mem
->phys_index
);
134 ret
= is_mem_section_removable(start_pfn
, PAGES_PER_SECTION
);
135 return sprintf(buf
, "%d\n", ret
);
139 * online, offline, going offline, etc.
141 static ssize_t
show_mem_state(struct sys_device
*dev
,
142 struct sysdev_attribute
*attr
, char *buf
)
144 struct memory_block
*mem
=
145 container_of(dev
, struct memory_block
, sysdev
);
149 * We can probably put these states in a nice little array
150 * so that they're not open-coded
152 switch (mem
->state
) {
154 len
= sprintf(buf
, "online\n");
157 len
= sprintf(buf
, "offline\n");
159 case MEM_GOING_OFFLINE
:
160 len
= sprintf(buf
, "going-offline\n");
163 len
= sprintf(buf
, "ERROR-UNKNOWN-%ld\n",
172 int memory_notify(unsigned long val
, void *v
)
174 return blocking_notifier_call_chain(&memory_chain
, val
, v
);
177 int memory_isolate_notify(unsigned long val
, void *v
)
179 return atomic_notifier_call_chain(&memory_isolate_chain
, val
, v
);
183 * MEMORY_HOTPLUG depends on SPARSEMEM in mm/Kconfig, so it is
184 * OK to have direct references to sparsemem variables in here.
187 memory_block_action(struct memory_block
*mem
, unsigned long action
)
190 unsigned long psection
;
191 unsigned long start_pfn
, start_paddr
;
192 struct page
*first_page
;
194 int old_state
= mem
->state
;
196 psection
= mem
->phys_index
;
197 first_page
= pfn_to_page(psection
<< PFN_SECTION_SHIFT
);
200 * The probe routines leave the pages reserved, just
201 * as the bootmem code does. Make sure they're still
204 if (action
== MEM_ONLINE
) {
205 for (i
= 0; i
< PAGES_PER_SECTION
; i
++) {
206 if (PageReserved(first_page
+i
))
209 printk(KERN_WARNING
"section number %ld page number %d "
210 "not reserved, was it already online? \n",
218 start_pfn
= page_to_pfn(first_page
);
219 ret
= online_pages(start_pfn
, PAGES_PER_SECTION
);
222 mem
->state
= MEM_GOING_OFFLINE
;
223 start_paddr
= page_to_pfn(first_page
) << PAGE_SHIFT
;
224 ret
= remove_memory(start_paddr
,
225 PAGES_PER_SECTION
<< PAGE_SHIFT
);
227 mem
->state
= old_state
;
232 WARN(1, KERN_WARNING
"%s(%p, %ld) unknown action: %ld\n",
233 __func__
, mem
, action
, action
);
240 static int memory_block_change_state(struct memory_block
*mem
,
241 unsigned long to_state
, unsigned long from_state_req
)
244 mutex_lock(&mem
->state_mutex
);
246 if (mem
->state
!= from_state_req
) {
251 ret
= memory_block_action(mem
, to_state
);
253 mem
->state
= to_state
;
256 mutex_unlock(&mem
->state_mutex
);
261 store_mem_state(struct sys_device
*dev
,
262 struct sysdev_attribute
*attr
, const char *buf
, size_t count
)
264 struct memory_block
*mem
;
265 unsigned int phys_section_nr
;
268 mem
= container_of(dev
, struct memory_block
, sysdev
);
269 phys_section_nr
= mem
->phys_index
;
271 if (!present_section_nr(phys_section_nr
))
274 if (!strncmp(buf
, "online", min((int)count
, 6)))
275 ret
= memory_block_change_state(mem
, MEM_ONLINE
, MEM_OFFLINE
);
276 else if(!strncmp(buf
, "offline", min((int)count
, 7)))
277 ret
= memory_block_change_state(mem
, MEM_OFFLINE
, MEM_ONLINE
);
285 * phys_device is a bad name for this. What I really want
286 * is a way to differentiate between memory ranges that
287 * are part of physical devices that constitute
288 * a complete removable unit or fru.
289 * i.e. do these ranges belong to the same physical device,
290 * s.t. if I offline all of these sections I can then
291 * remove the physical device?
293 static ssize_t
show_phys_device(struct sys_device
*dev
,
294 struct sysdev_attribute
*attr
, char *buf
)
296 struct memory_block
*mem
=
297 container_of(dev
, struct memory_block
, sysdev
);
298 return sprintf(buf
, "%d\n", mem
->phys_device
);
301 static SYSDEV_ATTR(phys_index
, 0444, show_mem_phys_index
, NULL
);
302 static SYSDEV_ATTR(state
, 0644, show_mem_state
, store_mem_state
);
303 static SYSDEV_ATTR(phys_device
, 0444, show_phys_device
, NULL
);
304 static SYSDEV_ATTR(removable
, 0444, show_mem_removable
, NULL
);
306 #define mem_create_simple_file(mem, attr_name) \
307 sysdev_create_file(&mem->sysdev, &attr_##attr_name)
308 #define mem_remove_simple_file(mem, attr_name) \
309 sysdev_remove_file(&mem->sysdev, &attr_##attr_name)
312 * Block size attribute stuff
315 print_block_size(struct sysdev_class
*class, struct sysdev_class_attribute
*attr
,
318 return sprintf(buf
, "%lx\n", (unsigned long)PAGES_PER_SECTION
* PAGE_SIZE
);
321 static SYSDEV_CLASS_ATTR(block_size_bytes
, 0444, print_block_size
, NULL
);
323 static int block_size_init(void)
325 return sysfs_create_file(&memory_sysdev_class
.kset
.kobj
,
326 &attr_block_size_bytes
.attr
);
330 * Some architectures will have custom drivers to do this, and
331 * will not need to do it from userspace. The fake hot-add code
332 * as well as ppc64 will do all of their discovery in userspace
333 * and will require this interface.
335 #ifdef CONFIG_ARCH_MEMORY_PROBE
337 memory_probe_store(struct class *class, struct class_attribute
*attr
,
338 const char *buf
, size_t count
)
344 phys_addr
= simple_strtoull(buf
, NULL
, 0);
346 nid
= memory_add_physaddr_to_nid(phys_addr
);
347 ret
= add_memory(nid
, phys_addr
, PAGES_PER_SECTION
<< PAGE_SHIFT
);
354 static CLASS_ATTR(probe
, S_IWUSR
, NULL
, memory_probe_store
);
356 static int memory_probe_init(void)
358 return sysfs_create_file(&memory_sysdev_class
.kset
.kobj
,
359 &class_attr_probe
.attr
);
362 static inline int memory_probe_init(void)
368 #ifdef CONFIG_MEMORY_FAILURE
370 * Support for offlining pages of memory
373 /* Soft offline a page */
375 store_soft_offline_page(struct class *class,
376 struct class_attribute
*attr
,
377 const char *buf
, size_t count
)
381 if (!capable(CAP_SYS_ADMIN
))
383 if (strict_strtoull(buf
, 0, &pfn
) < 0)
388 ret
= soft_offline_page(pfn_to_page(pfn
), 0);
389 return ret
== 0 ? count
: ret
;
392 /* Forcibly offline a page, including killing processes. */
394 store_hard_offline_page(struct class *class,
395 struct class_attribute
*attr
,
396 const char *buf
, size_t count
)
400 if (!capable(CAP_SYS_ADMIN
))
402 if (strict_strtoull(buf
, 0, &pfn
) < 0)
405 ret
= __memory_failure(pfn
, 0, 0);
406 return ret
? ret
: count
;
409 static CLASS_ATTR(soft_offline_page
, 0644, NULL
, store_soft_offline_page
);
410 static CLASS_ATTR(hard_offline_page
, 0644, NULL
, store_hard_offline_page
);
412 static __init
int memory_fail_init(void)
416 err
= sysfs_create_file(&memory_sysdev_class
.kset
.kobj
,
417 &class_attr_soft_offline_page
.attr
);
419 err
= sysfs_create_file(&memory_sysdev_class
.kset
.kobj
,
420 &class_attr_hard_offline_page
.attr
);
424 static inline int memory_fail_init(void)
431 * Note that phys_device is optional. It is here to allow for
432 * differentiation between which *physical* devices each
433 * section belongs to...
435 int __weak
arch_get_memory_phys_device(unsigned long start_pfn
)
440 struct memory_block
*find_memory_block_hinted(struct mem_section
*section
,
441 struct memory_block
*hint
)
443 struct kobject
*kobj
;
444 struct sys_device
*sysdev
;
445 struct memory_block
*mem
;
446 char name
[sizeof(MEMORY_CLASS_NAME
) + 9 + 1];
448 kobj
= hint
? &hint
->sysdev
.kobj
: NULL
;
451 * This only works because we know that section == sysdev->id
452 * slightly redundant with sysdev_register()
454 sprintf(&name
[0], "%s%d", MEMORY_CLASS_NAME
, __section_nr(section
));
456 kobj
= kset_find_obj_hinted(&memory_sysdev_class
.kset
, name
, kobj
);
460 sysdev
= container_of(kobj
, struct sys_device
, kobj
);
461 mem
= container_of(sysdev
, struct memory_block
, sysdev
);
467 * For now, we have a linear search to go find the appropriate
468 * memory_block corresponding to a particular phys_index. If
469 * this gets to be a real problem, we can always use a radix
470 * tree or something here.
472 * This could be made generic for all sysdev classes.
474 struct memory_block
*find_memory_block(struct mem_section
*section
)
476 return find_memory_block_hinted(section
, NULL
);
479 static int add_memory_block(int nid
, struct mem_section
*section
,
480 unsigned long state
, enum mem_add_context context
)
482 struct memory_block
*mem
= kzalloc(sizeof(*mem
), GFP_KERNEL
);
483 unsigned long start_pfn
;
489 mutex_lock(&mem_sysfs_mutex
);
491 mem
->phys_index
= __section_nr(section
);
493 mem
->section_count
++;
494 mutex_init(&mem
->state_mutex
);
495 start_pfn
= section_nr_to_pfn(mem
->phys_index
);
496 mem
->phys_device
= arch_get_memory_phys_device(start_pfn
);
498 ret
= register_memory(mem
, section
);
500 ret
= mem_create_simple_file(mem
, phys_index
);
502 ret
= mem_create_simple_file(mem
, state
);
504 ret
= mem_create_simple_file(mem
, phys_device
);
506 ret
= mem_create_simple_file(mem
, removable
);
508 if (context
== HOTPLUG
)
509 ret
= register_mem_sect_under_node(mem
, nid
);
512 mutex_unlock(&mem_sysfs_mutex
);
516 int remove_memory_block(unsigned long node_id
, struct mem_section
*section
,
519 struct memory_block
*mem
;
521 mutex_lock(&mem_sysfs_mutex
);
522 mem
= find_memory_block(section
);
524 mem
->section_count
--;
525 if (mem
->section_count
== 0) {
526 unregister_mem_sect_under_nodes(mem
);
527 mem_remove_simple_file(mem
, phys_index
);
528 mem_remove_simple_file(mem
, state
);
529 mem_remove_simple_file(mem
, phys_device
);
530 mem_remove_simple_file(mem
, removable
);
531 unregister_memory(mem
, section
);
534 mutex_unlock(&mem_sysfs_mutex
);
539 * need an interface for the VM to add new memory regions,
540 * but without onlining it.
542 int register_new_memory(int nid
, struct mem_section
*section
)
544 return add_memory_block(nid
, section
, MEM_OFFLINE
, HOTPLUG
);
547 int unregister_memory_section(struct mem_section
*section
)
549 if (!present_section(section
))
552 return remove_memory_block(0, section
, 0);
556 * Initialize the sysfs support for memory devices...
558 int __init
memory_dev_init(void)
564 memory_sysdev_class
.kset
.uevent_ops
= &memory_uevent_ops
;
565 ret
= sysdev_class_register(&memory_sysdev_class
);
570 * Create entries for memory sections that were found
571 * during boot and have been initialized
573 for (i
= 0; i
< NR_MEM_SECTIONS
; i
++) {
574 if (!present_section_nr(i
))
576 err
= add_memory_block(0, __nr_to_section(i
), MEM_ONLINE
,
582 err
= memory_probe_init();
585 err
= memory_fail_init();
588 err
= block_size_init();
593 printk(KERN_ERR
"%s() failed: %d\n", __func__
, ret
);