1 // SPDX-License-Identifier: GPL-2.0
3 * sparse memory mappings.
6 #include <linux/slab.h>
7 #include <linux/mmzone.h>
8 #include <linux/bootmem.h>
9 #include <linux/compiler.h>
10 #include <linux/highmem.h>
11 #include <linux/export.h>
12 #include <linux/spinlock.h>
13 #include <linux/vmalloc.h>
17 #include <asm/pgalloc.h>
18 #include <asm/pgtable.h>
21 * Permanent SPARSEMEM data:
23 * 1) mem_section - memory sections, mem_map's for valid memory
25 #ifdef CONFIG_SPARSEMEM_EXTREME
26 struct mem_section **mem_section;
28 struct mem_section mem_section[NR_SECTION_ROOTS][SECTIONS_PER_ROOT]
29 ____cacheline_internodealigned_in_smp;
31 EXPORT_SYMBOL(mem_section);
33 #ifdef NODE_NOT_IN_PAGE_FLAGS
35 * If we did not store the node number in the page then we have to
36 * do a lookup in the section_to_node_table in order to find which
37 * node the page belongs to.
39 #if MAX_NUMNODES <= 256
40 static u8 section_to_node_table[NR_MEM_SECTIONS] __cacheline_aligned;
42 static u16 section_to_node_table[NR_MEM_SECTIONS] __cacheline_aligned;
45 int page_to_nid(const struct page *page)
47 return section_to_node_table[page_to_section(page)];
49 EXPORT_SYMBOL(page_to_nid);
51 static void set_section_nid(unsigned long section_nr, int nid)
53 section_to_node_table[section_nr] = nid;
55 #else /* !NODE_NOT_IN_PAGE_FLAGS */
56 static inline void set_section_nid(unsigned long section_nr, int nid)
61 #ifdef CONFIG_SPARSEMEM_EXTREME
62 static noinline struct mem_section __ref *sparse_index_alloc(int nid)
64 struct mem_section *section = NULL;
65 unsigned long array_size = SECTIONS_PER_ROOT *
66 sizeof(struct mem_section);
68 if (slab_is_available())
69 section = kzalloc_node(array_size, GFP_KERNEL, nid);
71 section = memblock_virt_alloc_node(array_size, nid);
76 static int __meminit sparse_index_init(unsigned long section_nr, int nid)
78 unsigned long root = SECTION_NR_TO_ROOT(section_nr);
79 struct mem_section *section;
81 if (mem_section[root])
84 section = sparse_index_alloc(nid);
88 mem_section[root] = section;
92 #else /* !SPARSEMEM_EXTREME */
93 static inline int sparse_index_init(unsigned long section_nr, int nid)
99 #ifdef CONFIG_SPARSEMEM_EXTREME
100 int __section_nr(struct mem_section* ms)
102 unsigned long root_nr;
103 struct mem_section *root = NULL;
105 for (root_nr = 0; root_nr < NR_SECTION_ROOTS; root_nr++) {
106 root = __nr_to_section(root_nr * SECTIONS_PER_ROOT);
110 if ((ms >= root) && (ms < (root + SECTIONS_PER_ROOT)))
116 return (root_nr * SECTIONS_PER_ROOT) + (ms - root);
119 int __section_nr(struct mem_section* ms)
121 return (int)(ms - mem_section[0]);
126 * During early boot, before section_mem_map is used for an actual
127 * mem_map, we use section_mem_map to store the section's NUMA
128 * node. This keeps us from having to use another data structure. The
129 * node information is cleared just before we store the real mem_map.
131 static inline unsigned long sparse_encode_early_nid(int nid)
133 return (nid << SECTION_NID_SHIFT);
136 static inline int sparse_early_nid(struct mem_section *section)
138 return (section->section_mem_map >> SECTION_NID_SHIFT);
141 /* Validate the physical addressing limitations of the model */
142 void __meminit mminit_validate_memmodel_limits(unsigned long *start_pfn,
143 unsigned long *end_pfn)
145 unsigned long max_sparsemem_pfn = 1UL << (MAX_PHYSMEM_BITS-PAGE_SHIFT);
148 * Sanity checks - do not allow an architecture to pass
149 * in larger pfns than the maximum scope of sparsemem:
151 if (*start_pfn > max_sparsemem_pfn) {
152 mminit_dprintk(MMINIT_WARNING, "pfnvalidation",
153 "Start of range %lu -> %lu exceeds SPARSEMEM max %lu\n",
154 *start_pfn, *end_pfn, max_sparsemem_pfn);
156 *start_pfn = max_sparsemem_pfn;
157 *end_pfn = max_sparsemem_pfn;
158 } else if (*end_pfn > max_sparsemem_pfn) {
159 mminit_dprintk(MMINIT_WARNING, "pfnvalidation",
160 "End of range %lu -> %lu exceeds SPARSEMEM max %lu\n",
161 *start_pfn, *end_pfn, max_sparsemem_pfn);
163 *end_pfn = max_sparsemem_pfn;
168 * There are a number of times that we loop over NR_MEM_SECTIONS,
169 * looking for section_present() on each. But, when we have very
170 * large physical address spaces, NR_MEM_SECTIONS can also be
171 * very large which makes the loops quite long.
173 * Keeping track of this gives us an easy way to break out of
176 int __highest_present_section_nr;
177 static void section_mark_present(struct mem_section *ms)
179 int section_nr = __section_nr(ms);
181 if (section_nr > __highest_present_section_nr)
182 __highest_present_section_nr = section_nr;
184 ms->section_mem_map |= SECTION_MARKED_PRESENT;
187 static inline int next_present_section_nr(int section_nr)
191 if (present_section_nr(section_nr))
193 } while ((section_nr <= __highest_present_section_nr));
197 #define for_each_present_section_nr(start, section_nr) \
198 for (section_nr = next_present_section_nr(start-1); \
199 ((section_nr != -1) && \
200 (section_nr <= __highest_present_section_nr)); \
201 section_nr = next_present_section_nr(section_nr))
203 static inline unsigned long first_present_section_nr(void)
205 return next_present_section_nr(-1);
208 /* Record a memory area against a node. */
209 void __init memory_present(int nid, unsigned long start, unsigned long end)
213 #ifdef CONFIG_SPARSEMEM_EXTREME
214 if (unlikely(!mem_section)) {
215 unsigned long size, align;
217 size = sizeof(struct mem_section*) * NR_SECTION_ROOTS;
218 align = 1 << (INTERNODE_CACHE_SHIFT);
219 mem_section = memblock_virt_alloc(size, align);
223 start &= PAGE_SECTION_MASK;
224 mminit_validate_memmodel_limits(&start, &end);
225 for (pfn = start; pfn < end; pfn += PAGES_PER_SECTION) {
226 unsigned long section = pfn_to_section_nr(pfn);
227 struct mem_section *ms;
229 sparse_index_init(section, nid);
230 set_section_nid(section, nid);
232 ms = __nr_to_section(section);
233 if (!ms->section_mem_map) {
234 ms->section_mem_map = sparse_encode_early_nid(nid) |
236 section_mark_present(ms);
242 * Subtle, we encode the real pfn into the mem_map such that
243 * the identity pfn - section_mem_map will return the actual
244 * physical page frame number.
246 static unsigned long sparse_encode_mem_map(struct page *mem_map, unsigned long pnum)
248 unsigned long coded_mem_map =
249 (unsigned long)(mem_map - (section_nr_to_pfn(pnum)));
250 BUILD_BUG_ON(SECTION_MAP_LAST_BIT > (1UL<<PFN_SECTION_SHIFT));
251 BUG_ON(coded_mem_map & ~SECTION_MAP_MASK);
252 return coded_mem_map;
256 * Decode mem_map from the coded memmap
258 struct page *sparse_decode_mem_map(unsigned long coded_mem_map, unsigned long pnum)
260 /* mask off the extra low bits of information */
261 coded_mem_map &= SECTION_MAP_MASK;
262 return ((struct page *)coded_mem_map) + section_nr_to_pfn(pnum);
265 static void __meminit sparse_init_one_section(struct mem_section *ms,
266 unsigned long pnum, struct page *mem_map,
267 unsigned long *pageblock_bitmap)
269 ms->section_mem_map &= ~SECTION_MAP_MASK;
270 ms->section_mem_map |= sparse_encode_mem_map(mem_map, pnum) |
272 ms->pageblock_flags = pageblock_bitmap;
275 unsigned long usemap_size(void)
277 return BITS_TO_LONGS(SECTION_BLOCKFLAGS_BITS) * sizeof(unsigned long);
280 #ifdef CONFIG_MEMORY_HOTPLUG
281 static unsigned long *__kmalloc_section_usemap(void)
283 return kmalloc(usemap_size(), GFP_KERNEL);
285 #endif /* CONFIG_MEMORY_HOTPLUG */
287 #ifdef CONFIG_MEMORY_HOTREMOVE
288 static unsigned long * __init
289 sparse_early_usemaps_alloc_pgdat_section(struct pglist_data *pgdat,
292 unsigned long goal, limit;
296 * A page may contain usemaps for other sections preventing the
297 * page being freed and making a section unremovable while
298 * other sections referencing the usemap remain active. Similarly,
299 * a pgdat can prevent a section being removed. If section A
300 * contains a pgdat and section B contains the usemap, both
301 * sections become inter-dependent. This allocates usemaps
302 * from the same section as the pgdat where possible to avoid
305 goal = __pa(pgdat) & (PAGE_SECTION_MASK << PAGE_SHIFT);
306 limit = goal + (1UL << PA_SECTION_SHIFT);
307 nid = early_pfn_to_nid(goal >> PAGE_SHIFT);
309 p = memblock_virt_alloc_try_nid_nopanic(size,
310 SMP_CACHE_BYTES, goal, limit,
319 static void __init check_usemap_section_nr(int nid, unsigned long *usemap)
321 unsigned long usemap_snr, pgdat_snr;
322 static unsigned long old_usemap_snr;
323 static unsigned long old_pgdat_snr;
324 struct pglist_data *pgdat = NODE_DATA(nid);
328 if (!old_usemap_snr) {
329 old_usemap_snr = NR_MEM_SECTIONS;
330 old_pgdat_snr = NR_MEM_SECTIONS;
333 usemap_snr = pfn_to_section_nr(__pa(usemap) >> PAGE_SHIFT);
334 pgdat_snr = pfn_to_section_nr(__pa(pgdat) >> PAGE_SHIFT);
335 if (usemap_snr == pgdat_snr)
338 if (old_usemap_snr == usemap_snr && old_pgdat_snr == pgdat_snr)
339 /* skip redundant message */
342 old_usemap_snr = usemap_snr;
343 old_pgdat_snr = pgdat_snr;
345 usemap_nid = sparse_early_nid(__nr_to_section(usemap_snr));
346 if (usemap_nid != nid) {
347 pr_info("node %d must be removed before remove section %ld\n",
352 * There is a circular dependency.
353 * Some platforms allow un-removable section because they will just
354 * gather other removable sections for dynamic partitioning.
355 * Just notify un-removable section's number here.
357 pr_info("Section %ld and %ld (node %d) have a circular dependency on usemap and pgdat allocations\n",
358 usemap_snr, pgdat_snr, nid);
361 static unsigned long * __init
362 sparse_early_usemaps_alloc_pgdat_section(struct pglist_data *pgdat,
365 return memblock_virt_alloc_node_nopanic(size, pgdat->node_id);
368 static void __init check_usemap_section_nr(int nid, unsigned long *usemap)
371 #endif /* CONFIG_MEMORY_HOTREMOVE */
373 #ifdef CONFIG_SPARSEMEM_VMEMMAP
374 static unsigned long __init section_map_size(void)
376 return ALIGN(sizeof(struct page) * PAGES_PER_SECTION, PMD_SIZE);
380 static unsigned long __init section_map_size(void)
382 return PAGE_ALIGN(sizeof(struct page) * PAGES_PER_SECTION);
385 struct page __init *sparse_mem_map_populate(unsigned long pnum, int nid,
386 struct vmem_altmap *altmap)
388 unsigned long size = section_map_size();
389 struct page *map = sparse_buffer_alloc(size);
394 map = memblock_virt_alloc_try_nid(size,
395 PAGE_SIZE, __pa(MAX_DMA_ADDRESS),
396 BOOTMEM_ALLOC_ACCESSIBLE, nid);
399 #endif /* !CONFIG_SPARSEMEM_VMEMMAP */
401 static void *sparsemap_buf __meminitdata;
402 static void *sparsemap_buf_end __meminitdata;
404 static void __init sparse_buffer_init(unsigned long size, int nid)
406 WARN_ON(sparsemap_buf); /* forgot to call sparse_buffer_fini()? */
408 memblock_virt_alloc_try_nid_raw(size, PAGE_SIZE,
409 __pa(MAX_DMA_ADDRESS),
410 BOOTMEM_ALLOC_ACCESSIBLE, nid);
411 sparsemap_buf_end = sparsemap_buf + size;
414 static void __init sparse_buffer_fini(void)
416 unsigned long size = sparsemap_buf_end - sparsemap_buf;
418 if (sparsemap_buf && size > 0)
419 memblock_free_early(__pa(sparsemap_buf), size);
420 sparsemap_buf = NULL;
423 void * __meminit sparse_buffer_alloc(unsigned long size)
428 ptr = PTR_ALIGN(sparsemap_buf, size);
429 if (ptr + size > sparsemap_buf_end)
432 sparsemap_buf = ptr + size;
437 void __weak __meminit vmemmap_populate_print_last(void)
442 * Initialize sparse on a specific node. The node spans [pnum_begin, pnum_end)
443 * And number of present sections in this node is map_count.
445 static void __init sparse_init_nid(int nid, unsigned long pnum_begin,
446 unsigned long pnum_end,
447 unsigned long map_count)
449 unsigned long pnum, usemap_longs, *usemap;
452 usemap_longs = BITS_TO_LONGS(SECTION_BLOCKFLAGS_BITS);
453 usemap = sparse_early_usemaps_alloc_pgdat_section(NODE_DATA(nid),
457 pr_err("%s: node[%d] usemap allocation failed", __func__, nid);
460 sparse_buffer_init(map_count * section_map_size(), nid);
461 for_each_present_section_nr(pnum_begin, pnum) {
462 if (pnum >= pnum_end)
465 map = sparse_mem_map_populate(pnum, nid, NULL);
467 pr_err("%s: node[%d] memory map backing failed. Some memory will not be available.",
470 sparse_buffer_fini();
473 check_usemap_section_nr(nid, usemap);
474 sparse_init_one_section(__nr_to_section(pnum), pnum, map, usemap);
475 usemap += usemap_longs;
477 sparse_buffer_fini();
480 /* We failed to allocate, mark all the following pnums as not present */
481 for_each_present_section_nr(pnum_begin, pnum) {
482 struct mem_section *ms;
484 if (pnum >= pnum_end)
486 ms = __nr_to_section(pnum);
487 ms->section_mem_map = 0;
492 * Allocate the accumulated non-linear sections, allocate a mem_map
493 * for each and record the physical to section mapping.
495 void __init sparse_init(void)
497 unsigned long pnum_begin = first_present_section_nr();
498 int nid_begin = sparse_early_nid(__nr_to_section(pnum_begin));
499 unsigned long pnum_end, map_count = 1;
501 /* Setup pageblock_order for HUGETLB_PAGE_SIZE_VARIABLE */
502 set_pageblock_order();
504 for_each_present_section_nr(pnum_begin + 1, pnum_end) {
505 int nid = sparse_early_nid(__nr_to_section(pnum_end));
507 if (nid == nid_begin) {
511 /* Init node with sections in range [pnum_begin, pnum_end) */
512 sparse_init_nid(nid_begin, pnum_begin, pnum_end, map_count);
514 pnum_begin = pnum_end;
517 /* cover the last node */
518 sparse_init_nid(nid_begin, pnum_begin, pnum_end, map_count);
519 vmemmap_populate_print_last();
522 #ifdef CONFIG_MEMORY_HOTPLUG
524 /* Mark all memory sections within the pfn range as online */
525 void online_mem_sections(unsigned long start_pfn, unsigned long end_pfn)
529 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
530 unsigned long section_nr = pfn_to_section_nr(pfn);
531 struct mem_section *ms;
533 /* onlining code should never touch invalid ranges */
534 if (WARN_ON(!valid_section_nr(section_nr)))
537 ms = __nr_to_section(section_nr);
538 ms->section_mem_map |= SECTION_IS_ONLINE;
542 #ifdef CONFIG_MEMORY_HOTREMOVE
543 /* Mark all memory sections within the pfn range as online */
544 void offline_mem_sections(unsigned long start_pfn, unsigned long end_pfn)
548 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
549 unsigned long section_nr = pfn_to_section_nr(pfn);
550 struct mem_section *ms;
553 * TODO this needs some double checking. Offlining code makes
554 * sure to check pfn_valid but those checks might be just bogus
556 if (WARN_ON(!valid_section_nr(section_nr)))
559 ms = __nr_to_section(section_nr);
560 ms->section_mem_map &= ~SECTION_IS_ONLINE;
565 #ifdef CONFIG_SPARSEMEM_VMEMMAP
566 static inline struct page *kmalloc_section_memmap(unsigned long pnum, int nid,
567 struct vmem_altmap *altmap)
569 /* This will make the necessary allocations eventually. */
570 return sparse_mem_map_populate(pnum, nid, altmap);
572 static void __kfree_section_memmap(struct page *memmap,
573 struct vmem_altmap *altmap)
575 unsigned long start = (unsigned long)memmap;
576 unsigned long end = (unsigned long)(memmap + PAGES_PER_SECTION);
578 vmemmap_free(start, end, altmap);
580 static void free_map_bootmem(struct page *memmap)
582 unsigned long start = (unsigned long)memmap;
583 unsigned long end = (unsigned long)(memmap + PAGES_PER_SECTION);
585 vmemmap_free(start, end, NULL);
588 static struct page *__kmalloc_section_memmap(void)
590 struct page *page, *ret;
591 unsigned long memmap_size = sizeof(struct page) * PAGES_PER_SECTION;
593 page = alloc_pages(GFP_KERNEL|__GFP_NOWARN, get_order(memmap_size));
597 ret = vmalloc(memmap_size);
603 ret = (struct page *)pfn_to_kaddr(page_to_pfn(page));
609 static inline struct page *kmalloc_section_memmap(unsigned long pnum, int nid,
610 struct vmem_altmap *altmap)
612 return __kmalloc_section_memmap();
615 static void __kfree_section_memmap(struct page *memmap,
616 struct vmem_altmap *altmap)
618 if (is_vmalloc_addr(memmap))
621 free_pages((unsigned long)memmap,
622 get_order(sizeof(struct page) * PAGES_PER_SECTION));
625 static void free_map_bootmem(struct page *memmap)
627 unsigned long maps_section_nr, removing_section_nr, i;
628 unsigned long magic, nr_pages;
629 struct page *page = virt_to_page(memmap);
631 nr_pages = PAGE_ALIGN(PAGES_PER_SECTION * sizeof(struct page))
634 for (i = 0; i < nr_pages; i++, page++) {
635 magic = (unsigned long) page->freelist;
637 BUG_ON(magic == NODE_INFO);
639 maps_section_nr = pfn_to_section_nr(page_to_pfn(page));
640 removing_section_nr = page_private(page);
643 * When this function is called, the removing section is
644 * logical offlined state. This means all pages are isolated
645 * from page allocator. If removing section's memmap is placed
646 * on the same section, it must not be freed.
647 * If it is freed, page allocator may allocate it which will
648 * be removed physically soon.
650 if (maps_section_nr != removing_section_nr)
651 put_page_bootmem(page);
654 #endif /* CONFIG_SPARSEMEM_VMEMMAP */
657 * returns the number of sections whose mem_maps were properly
658 * set. If this is <=0, then that means that the passed-in
659 * map was not consumed and must be freed.
661 int __meminit sparse_add_one_section(int nid, unsigned long start_pfn,
662 struct vmem_altmap *altmap)
664 unsigned long section_nr = pfn_to_section_nr(start_pfn);
665 struct mem_section *ms;
667 unsigned long *usemap;
671 * no locking for this, because it does its own
672 * plus, it does a kmalloc
674 ret = sparse_index_init(section_nr, nid);
675 if (ret < 0 && ret != -EEXIST)
678 memmap = kmalloc_section_memmap(section_nr, nid, altmap);
681 usemap = __kmalloc_section_usemap();
683 __kfree_section_memmap(memmap, altmap);
687 ms = __pfn_to_section(start_pfn);
688 if (ms->section_mem_map & SECTION_MARKED_PRESENT) {
693 #ifdef CONFIG_DEBUG_VM
695 * Poison uninitialized struct pages in order to catch invalid flags
698 memset(memmap, PAGE_POISON_PATTERN, sizeof(struct page) * PAGES_PER_SECTION);
701 section_mark_present(ms);
702 sparse_init_one_section(ms, section_nr, memmap, usemap);
707 __kfree_section_memmap(memmap, altmap);
712 #ifdef CONFIG_MEMORY_FAILURE
713 static void clear_hwpoisoned_pages(struct page *memmap, int nr_pages)
720 for (i = 0; i < nr_pages; i++) {
721 if (PageHWPoison(&memmap[i])) {
722 atomic_long_sub(1, &num_poisoned_pages);
723 ClearPageHWPoison(&memmap[i]);
728 static inline void clear_hwpoisoned_pages(struct page *memmap, int nr_pages)
733 static void free_section_usemap(struct page *memmap, unsigned long *usemap,
734 struct vmem_altmap *altmap)
736 struct page *usemap_page;
741 usemap_page = virt_to_page(usemap);
743 * Check to see if allocation came from hot-plug-add
745 if (PageSlab(usemap_page) || PageCompound(usemap_page)) {
748 __kfree_section_memmap(memmap, altmap);
753 * The usemap came from bootmem. This is packed with other usemaps
754 * on the section which has pgdat at boot time. Just keep it as is now.
758 free_map_bootmem(memmap);
761 void sparse_remove_one_section(struct mem_section *ms, unsigned long map_offset,
762 struct vmem_altmap *altmap)
764 struct page *memmap = NULL;
765 unsigned long *usemap = NULL;
767 if (ms->section_mem_map) {
768 usemap = ms->pageblock_flags;
769 memmap = sparse_decode_mem_map(ms->section_mem_map,
771 ms->section_mem_map = 0;
772 ms->pageblock_flags = NULL;
775 clear_hwpoisoned_pages(memmap + map_offset,
776 PAGES_PER_SECTION - map_offset);
777 free_section_usemap(memmap, usemap, altmap);
779 #endif /* CONFIG_MEMORY_HOTPLUG */