2 * Memory subsystem 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/module.h>
14 #include <linux/init.h>
15 #include <linux/topology.h>
16 #include <linux/capability.h>
17 #include <linux/device.h>
18 #include <linux/memory.h>
19 #include <linux/kobject.h>
20 #include <linux/memory_hotplug.h>
22 #include <linux/mutex.h>
23 #include <linux/stat.h>
24 #include <linux/slab.h>
26 #include <linux/atomic.h>
27 #include <asm/uaccess.h>
29 static DEFINE_MUTEX(mem_sysfs_mutex
);
31 #define MEMORY_CLASS_NAME "memory"
33 static int sections_per_block
;
35 static inline int base_memory_block_id(int section_nr
)
37 return section_nr
/ sections_per_block
;
40 static struct bus_type memory_subsys
= {
41 .name
= MEMORY_CLASS_NAME
,
42 .dev_name
= MEMORY_CLASS_NAME
,
45 static BLOCKING_NOTIFIER_HEAD(memory_chain
);
47 int register_memory_notifier(struct notifier_block
*nb
)
49 return blocking_notifier_chain_register(&memory_chain
, nb
);
51 EXPORT_SYMBOL(register_memory_notifier
);
53 void unregister_memory_notifier(struct notifier_block
*nb
)
55 blocking_notifier_chain_unregister(&memory_chain
, nb
);
57 EXPORT_SYMBOL(unregister_memory_notifier
);
59 static ATOMIC_NOTIFIER_HEAD(memory_isolate_chain
);
61 int register_memory_isolate_notifier(struct notifier_block
*nb
)
63 return atomic_notifier_chain_register(&memory_isolate_chain
, nb
);
65 EXPORT_SYMBOL(register_memory_isolate_notifier
);
67 void unregister_memory_isolate_notifier(struct notifier_block
*nb
)
69 atomic_notifier_chain_unregister(&memory_isolate_chain
, nb
);
71 EXPORT_SYMBOL(unregister_memory_isolate_notifier
);
73 static void memory_block_release(struct device
*dev
)
75 struct memory_block
*mem
= container_of(dev
, struct memory_block
, dev
);
81 * register_memory - Setup a sysfs device for a memory block
84 int register_memory(struct memory_block
*memory
)
88 memory
->dev
.bus
= &memory_subsys
;
89 memory
->dev
.id
= memory
->start_section_nr
/ sections_per_block
;
90 memory
->dev
.release
= memory_block_release
;
92 error
= device_register(&memory
->dev
);
96 unsigned long __weak
memory_block_size_bytes(void)
98 return MIN_MEMORY_BLOCK_SIZE
;
101 static unsigned long get_memory_block_size(void)
103 unsigned long block_sz
;
105 block_sz
= memory_block_size_bytes();
107 /* Validate blk_sz is a power of 2 and not less than section size */
108 if ((block_sz
& (block_sz
- 1)) || (block_sz
< MIN_MEMORY_BLOCK_SIZE
)) {
110 block_sz
= MIN_MEMORY_BLOCK_SIZE
;
117 * use this as the physical section index that this memsection
121 static ssize_t
show_mem_start_phys_index(struct device
*dev
,
122 struct device_attribute
*attr
, char *buf
)
124 struct memory_block
*mem
=
125 container_of(dev
, struct memory_block
, dev
);
126 unsigned long phys_index
;
128 phys_index
= mem
->start_section_nr
/ sections_per_block
;
129 return sprintf(buf
, "%08lx\n", phys_index
);
132 static ssize_t
show_mem_end_phys_index(struct device
*dev
,
133 struct device_attribute
*attr
, char *buf
)
135 struct memory_block
*mem
=
136 container_of(dev
, struct memory_block
, dev
);
137 unsigned long phys_index
;
139 phys_index
= mem
->end_section_nr
/ sections_per_block
;
140 return sprintf(buf
, "%08lx\n", phys_index
);
144 * Show whether the section of memory is likely to be hot-removable
146 static ssize_t
show_mem_removable(struct device
*dev
,
147 struct device_attribute
*attr
, char *buf
)
149 unsigned long i
, pfn
;
151 struct memory_block
*mem
=
152 container_of(dev
, struct memory_block
, dev
);
154 for (i
= 0; i
< sections_per_block
; i
++) {
155 if (!present_section_nr(mem
->start_section_nr
+ i
))
157 pfn
= section_nr_to_pfn(mem
->start_section_nr
+ i
);
158 ret
&= is_mem_section_removable(pfn
, PAGES_PER_SECTION
);
161 return sprintf(buf
, "%d\n", ret
);
165 * online, offline, going offline, etc.
167 static ssize_t
show_mem_state(struct device
*dev
,
168 struct device_attribute
*attr
, char *buf
)
170 struct memory_block
*mem
=
171 container_of(dev
, struct memory_block
, dev
);
175 * We can probably put these states in a nice little array
176 * so that they're not open-coded
178 switch (mem
->state
) {
180 len
= sprintf(buf
, "online\n");
183 len
= sprintf(buf
, "offline\n");
185 case MEM_GOING_OFFLINE
:
186 len
= sprintf(buf
, "going-offline\n");
189 len
= sprintf(buf
, "ERROR-UNKNOWN-%ld\n",
198 int memory_notify(unsigned long val
, void *v
)
200 return blocking_notifier_call_chain(&memory_chain
, val
, v
);
203 int memory_isolate_notify(unsigned long val
, void *v
)
205 return atomic_notifier_call_chain(&memory_isolate_chain
, val
, v
);
209 * The probe routines leave the pages reserved, just as the bootmem code does.
210 * Make sure they're still that way.
212 static bool pages_correctly_reserved(unsigned long start_pfn
)
216 unsigned long pfn
= start_pfn
;
219 * memmap between sections is not contiguous except with
220 * SPARSEMEM_VMEMMAP. We lookup the page once per section
221 * and assume memmap is contiguous within each section
223 for (i
= 0; i
< sections_per_block
; i
++, pfn
+= PAGES_PER_SECTION
) {
224 if (WARN_ON_ONCE(!pfn_valid(pfn
)))
226 page
= pfn_to_page(pfn
);
228 for (j
= 0; j
< PAGES_PER_SECTION
; j
++) {
229 if (PageReserved(page
+ j
))
232 printk(KERN_WARNING
"section number %ld page number %d "
233 "not reserved, was it already online?\n",
234 pfn_to_section_nr(pfn
), j
);
244 * MEMORY_HOTPLUG depends on SPARSEMEM in mm/Kconfig, so it is
245 * OK to have direct references to sparsemem variables in here.
248 memory_block_action(unsigned long phys_index
, unsigned long action
, int online_type
)
250 unsigned long start_pfn
;
251 unsigned long nr_pages
= PAGES_PER_SECTION
* sections_per_block
;
252 struct page
*first_page
;
255 first_page
= pfn_to_page(phys_index
<< PFN_SECTION_SHIFT
);
256 start_pfn
= page_to_pfn(first_page
);
260 if (!pages_correctly_reserved(start_pfn
))
263 ret
= online_pages(start_pfn
, nr_pages
, online_type
);
266 ret
= offline_pages(start_pfn
, nr_pages
);
269 WARN(1, KERN_WARNING
"%s(%ld, %ld) unknown action: "
270 "%ld\n", __func__
, phys_index
, action
, action
);
277 static int __memory_block_change_state(struct memory_block
*mem
,
278 unsigned long to_state
, unsigned long from_state_req
,
283 if (mem
->state
!= from_state_req
) {
288 if (to_state
== MEM_OFFLINE
)
289 mem
->state
= MEM_GOING_OFFLINE
;
291 ret
= memory_block_action(mem
->start_section_nr
, to_state
, online_type
);
294 mem
->state
= from_state_req
;
298 mem
->state
= to_state
;
299 switch (mem
->state
) {
301 kobject_uevent(&mem
->dev
.kobj
, KOBJ_OFFLINE
);
304 kobject_uevent(&mem
->dev
.kobj
, KOBJ_ONLINE
);
313 static int memory_block_change_state(struct memory_block
*mem
,
314 unsigned long to_state
, unsigned long from_state_req
,
319 mutex_lock(&mem
->state_mutex
);
320 ret
= __memory_block_change_state(mem
, to_state
, from_state_req
,
322 mutex_unlock(&mem
->state_mutex
);
327 store_mem_state(struct device
*dev
,
328 struct device_attribute
*attr
, const char *buf
, size_t count
)
330 struct memory_block
*mem
;
333 mem
= container_of(dev
, struct memory_block
, dev
);
335 if (!strncmp(buf
, "online_kernel", min_t(int, count
, 13)))
336 ret
= memory_block_change_state(mem
, MEM_ONLINE
,
337 MEM_OFFLINE
, ONLINE_KERNEL
);
338 else if (!strncmp(buf
, "online_movable", min_t(int, count
, 14)))
339 ret
= memory_block_change_state(mem
, MEM_ONLINE
,
340 MEM_OFFLINE
, ONLINE_MOVABLE
);
341 else if (!strncmp(buf
, "online", min_t(int, count
, 6)))
342 ret
= memory_block_change_state(mem
, MEM_ONLINE
,
343 MEM_OFFLINE
, ONLINE_KEEP
);
344 else if(!strncmp(buf
, "offline", min_t(int, count
, 7)))
345 ret
= memory_block_change_state(mem
, MEM_OFFLINE
,
354 * phys_device is a bad name for this. What I really want
355 * is a way to differentiate between memory ranges that
356 * are part of physical devices that constitute
357 * a complete removable unit or fru.
358 * i.e. do these ranges belong to the same physical device,
359 * s.t. if I offline all of these sections I can then
360 * remove the physical device?
362 static ssize_t
show_phys_device(struct device
*dev
,
363 struct device_attribute
*attr
, char *buf
)
365 struct memory_block
*mem
=
366 container_of(dev
, struct memory_block
, dev
);
367 return sprintf(buf
, "%d\n", mem
->phys_device
);
370 static DEVICE_ATTR(phys_index
, 0444, show_mem_start_phys_index
, NULL
);
371 static DEVICE_ATTR(end_phys_index
, 0444, show_mem_end_phys_index
, NULL
);
372 static DEVICE_ATTR(state
, 0644, show_mem_state
, store_mem_state
);
373 static DEVICE_ATTR(phys_device
, 0444, show_phys_device
, NULL
);
374 static DEVICE_ATTR(removable
, 0444, show_mem_removable
, NULL
);
376 #define mem_create_simple_file(mem, attr_name) \
377 device_create_file(&mem->dev, &dev_attr_##attr_name)
378 #define mem_remove_simple_file(mem, attr_name) \
379 device_remove_file(&mem->dev, &dev_attr_##attr_name)
382 * Block size attribute stuff
385 print_block_size(struct device
*dev
, struct device_attribute
*attr
,
388 return sprintf(buf
, "%lx\n", get_memory_block_size());
391 static DEVICE_ATTR(block_size_bytes
, 0444, print_block_size
, NULL
);
393 static int block_size_init(void)
395 return device_create_file(memory_subsys
.dev_root
,
396 &dev_attr_block_size_bytes
);
400 * Some architectures will have custom drivers to do this, and
401 * will not need to do it from userspace. The fake hot-add code
402 * as well as ppc64 will do all of their discovery in userspace
403 * and will require this interface.
405 #ifdef CONFIG_ARCH_MEMORY_PROBE
407 memory_probe_store(struct device
*dev
, struct device_attribute
*attr
,
408 const char *buf
, size_t count
)
413 unsigned long pages_per_block
= PAGES_PER_SECTION
* sections_per_block
;
415 phys_addr
= simple_strtoull(buf
, NULL
, 0);
417 if (phys_addr
& ((pages_per_block
<< PAGE_SHIFT
) - 1))
420 for (i
= 0; i
< sections_per_block
; i
++) {
421 nid
= memory_add_physaddr_to_nid(phys_addr
);
422 ret
= add_memory(nid
, phys_addr
,
423 PAGES_PER_SECTION
<< PAGE_SHIFT
);
427 phys_addr
+= MIN_MEMORY_BLOCK_SIZE
;
434 static DEVICE_ATTR(probe
, S_IWUSR
, NULL
, memory_probe_store
);
436 static int memory_probe_init(void)
438 return device_create_file(memory_subsys
.dev_root
, &dev_attr_probe
);
441 static inline int memory_probe_init(void)
447 #ifdef CONFIG_MEMORY_FAILURE
449 * Support for offlining pages of memory
452 /* Soft offline a page */
454 store_soft_offline_page(struct device
*dev
,
455 struct device_attribute
*attr
,
456 const char *buf
, size_t count
)
460 if (!capable(CAP_SYS_ADMIN
))
462 if (strict_strtoull(buf
, 0, &pfn
) < 0)
467 ret
= soft_offline_page(pfn_to_page(pfn
), 0);
468 return ret
== 0 ? count
: ret
;
471 /* Forcibly offline a page, including killing processes. */
473 store_hard_offline_page(struct device
*dev
,
474 struct device_attribute
*attr
,
475 const char *buf
, size_t count
)
479 if (!capable(CAP_SYS_ADMIN
))
481 if (strict_strtoull(buf
, 0, &pfn
) < 0)
484 ret
= memory_failure(pfn
, 0, 0);
485 return ret
? ret
: count
;
488 static DEVICE_ATTR(soft_offline_page
, S_IWUSR
, NULL
, store_soft_offline_page
);
489 static DEVICE_ATTR(hard_offline_page
, S_IWUSR
, NULL
, store_hard_offline_page
);
491 static __init
int memory_fail_init(void)
495 err
= device_create_file(memory_subsys
.dev_root
,
496 &dev_attr_soft_offline_page
);
498 err
= device_create_file(memory_subsys
.dev_root
,
499 &dev_attr_hard_offline_page
);
503 static inline int memory_fail_init(void)
510 * Note that phys_device is optional. It is here to allow for
511 * differentiation between which *physical* devices each
512 * section belongs to...
514 int __weak
arch_get_memory_phys_device(unsigned long start_pfn
)
520 * A reference for the returned object is held and the reference for the
521 * hinted object is released.
523 struct memory_block
*find_memory_block_hinted(struct mem_section
*section
,
524 struct memory_block
*hint
)
526 int block_id
= base_memory_block_id(__section_nr(section
));
527 struct device
*hintdev
= hint
? &hint
->dev
: NULL
;
530 dev
= subsys_find_device_by_id(&memory_subsys
, block_id
, hintdev
);
532 put_device(&hint
->dev
);
535 return container_of(dev
, struct memory_block
, dev
);
539 * For now, we have a linear search to go find the appropriate
540 * memory_block corresponding to a particular phys_index. If
541 * this gets to be a real problem, we can always use a radix
542 * tree or something here.
544 * This could be made generic for all device subsystems.
546 struct memory_block
*find_memory_block(struct mem_section
*section
)
548 return find_memory_block_hinted(section
, NULL
);
551 static int init_memory_block(struct memory_block
**memory
,
552 struct mem_section
*section
, unsigned long state
)
554 struct memory_block
*mem
;
555 unsigned long start_pfn
;
559 mem
= kzalloc(sizeof(*mem
), GFP_KERNEL
);
563 scn_nr
= __section_nr(section
);
564 mem
->start_section_nr
=
565 base_memory_block_id(scn_nr
) * sections_per_block
;
566 mem
->end_section_nr
= mem
->start_section_nr
+ sections_per_block
- 1;
568 mem
->section_count
++;
569 mutex_init(&mem
->state_mutex
);
570 start_pfn
= section_nr_to_pfn(mem
->start_section_nr
);
571 mem
->phys_device
= arch_get_memory_phys_device(start_pfn
);
573 ret
= register_memory(mem
);
575 ret
= mem_create_simple_file(mem
, phys_index
);
577 ret
= mem_create_simple_file(mem
, end_phys_index
);
579 ret
= mem_create_simple_file(mem
, state
);
581 ret
= mem_create_simple_file(mem
, phys_device
);
583 ret
= mem_create_simple_file(mem
, removable
);
589 static int add_memory_section(int nid
, struct mem_section
*section
,
590 struct memory_block
**mem_p
,
591 unsigned long state
, enum mem_add_context context
)
593 struct memory_block
*mem
= NULL
;
594 int scn_nr
= __section_nr(section
);
597 mutex_lock(&mem_sysfs_mutex
);
599 if (context
== BOOT
) {
600 /* same memory block ? */
602 if (scn_nr
>= (*mem_p
)->start_section_nr
&&
603 scn_nr
<= (*mem_p
)->end_section_nr
) {
605 kobject_get(&mem
->dev
.kobj
);
608 mem
= find_memory_block(section
);
611 mem
->section_count
++;
612 kobject_put(&mem
->dev
.kobj
);
614 ret
= init_memory_block(&mem
, section
, state
);
615 /* store memory_block pointer for next loop */
616 if (!ret
&& context
== BOOT
)
622 if (context
== HOTPLUG
&&
623 mem
->section_count
== sections_per_block
)
624 ret
= register_mem_sect_under_node(mem
, nid
);
627 mutex_unlock(&mem_sysfs_mutex
);
632 * need an interface for the VM to add new memory regions,
633 * but without onlining it.
635 int register_new_memory(int nid
, struct mem_section
*section
)
637 return add_memory_section(nid
, section
, NULL
, MEM_OFFLINE
, HOTPLUG
);
640 #ifdef CONFIG_MEMORY_HOTREMOVE
642 unregister_memory(struct memory_block
*memory
)
644 BUG_ON(memory
->dev
.bus
!= &memory_subsys
);
646 /* drop the ref. we got in remove_memory_block() */
647 kobject_put(&memory
->dev
.kobj
);
648 device_unregister(&memory
->dev
);
651 static int remove_memory_block(unsigned long node_id
,
652 struct mem_section
*section
, int phys_device
)
654 struct memory_block
*mem
;
656 mutex_lock(&mem_sysfs_mutex
);
657 mem
= find_memory_block(section
);
658 unregister_mem_sect_under_nodes(mem
, __section_nr(section
));
660 mem
->section_count
--;
661 if (mem
->section_count
== 0) {
662 mem_remove_simple_file(mem
, phys_index
);
663 mem_remove_simple_file(mem
, end_phys_index
);
664 mem_remove_simple_file(mem
, state
);
665 mem_remove_simple_file(mem
, phys_device
);
666 mem_remove_simple_file(mem
, removable
);
667 unregister_memory(mem
);
669 kobject_put(&mem
->dev
.kobj
);
671 mutex_unlock(&mem_sysfs_mutex
);
675 int unregister_memory_section(struct mem_section
*section
)
677 if (!present_section(section
))
680 return remove_memory_block(0, section
, 0);
682 #endif /* CONFIG_MEMORY_HOTREMOVE */
685 * offline one memory block. If the memory block has been offlined, do nothing.
687 int offline_memory_block(struct memory_block
*mem
)
691 mutex_lock(&mem
->state_mutex
);
692 if (mem
->state
!= MEM_OFFLINE
)
693 ret
= __memory_block_change_state(mem
, MEM_OFFLINE
, MEM_ONLINE
, -1);
694 mutex_unlock(&mem
->state_mutex
);
699 /* return true if the memory block is offlined, otherwise, return false */
700 bool is_memblock_offlined(struct memory_block
*mem
)
702 return mem
->state
== MEM_OFFLINE
;
706 * Initialize the sysfs support for memory devices...
708 int __init
memory_dev_init(void)
713 unsigned long block_sz
;
714 struct memory_block
*mem
= NULL
;
716 ret
= subsys_system_register(&memory_subsys
, NULL
);
720 block_sz
= get_memory_block_size();
721 sections_per_block
= block_sz
/ MIN_MEMORY_BLOCK_SIZE
;
724 * Create entries for memory sections that were found
725 * during boot and have been initialized
727 for (i
= 0; i
< NR_MEM_SECTIONS
; i
++) {
728 if (!present_section_nr(i
))
730 /* don't need to reuse memory_block if only one per block */
731 err
= add_memory_section(0, __nr_to_section(i
),
732 (sections_per_block
== 1) ? NULL
: &mem
,
739 err
= memory_probe_init();
742 err
= memory_fail_init();
745 err
= block_size_init();
750 printk(KERN_ERR
"%s() failed: %d\n", __func__
, ret
);