blob: db6df27c852a7e11e341333ee60faee6da12f92c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Christoph Lameter8f6aac42007-10-16 01:24:13 -07002/*
3 * Virtual Memory Map support
4 *
Christoph Lametercde53532008-07-04 09:59:22 -07005 * (C) 2007 sgi. Christoph Lameter.
Christoph Lameter8f6aac42007-10-16 01:24:13 -07006 *
7 * Virtual memory maps allow VM primitives pfn_to_page, page_to_pfn,
8 * virt_to_page, page_address() to be implemented as a base offset
9 * calculation without memory access.
10 *
11 * However, virtual mappings need a page table and TLBs. Many Linux
12 * architectures already map their physical space using 1-1 mappings
Uwe Kleine-Königb5950762010-11-01 15:38:34 -040013 * via TLBs. For those arches the virtual memory map is essentially
Christoph Lameter8f6aac42007-10-16 01:24:13 -070014 * for free if we use the same page size as the 1-1 mappings. In that
15 * case the overhead consists of a few additional pages that are
16 * allocated to create a view of memory for vmemmap.
17 *
Andy Whitcroft29c71112007-10-16 01:24:14 -070018 * The architecture is expected to provide a vmemmap_populate() function
19 * to instantiate the mapping.
Christoph Lameter8f6aac42007-10-16 01:24:13 -070020 */
21#include <linux/mm.h>
22#include <linux/mmzone.h>
Mike Rapoport97ad1082018-10-30 15:09:44 -070023#include <linux/memblock.h>
Dan Williams4b94ffd2016-01-15 16:56:22 -080024#include <linux/memremap.h>
Christoph Lameter8f6aac42007-10-16 01:24:13 -070025#include <linux/highmem.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Christoph Lameter8f6aac42007-10-16 01:24:13 -070027#include <linux/spinlock.h>
28#include <linux/vmalloc.h>
Glauber de Oliveira Costa8bca44b2007-10-29 14:37:19 -070029#include <linux/sched.h>
Muchun Songf41f2ed2021-06-30 18:47:13 -070030#include <linux/pgtable.h>
31#include <linux/bootmem_info.h>
32
Christoph Lameter8f6aac42007-10-16 01:24:13 -070033#include <asm/dma.h>
34#include <asm/pgalloc.h>
Muchun Songf41f2ed2021-06-30 18:47:13 -070035#include <asm/tlbflush.h>
36
37/**
38 * struct vmemmap_remap_walk - walk vmemmap page table
39 *
40 * @remap_pte: called for each lowest-level entry (PTE).
Muchun Song3bc2b6a2021-06-30 18:48:22 -070041 * @nr_walked: the number of walked pte.
Muchun Songf41f2ed2021-06-30 18:47:13 -070042 * @reuse_page: the page which is reused for the tail vmemmap pages.
43 * @reuse_addr: the virtual address of the @reuse_page page.
Muchun Songad2fa372021-06-30 18:47:21 -070044 * @vmemmap_pages: the list head of the vmemmap pages that can be freed
45 * or is mapped from.
Muchun Songf41f2ed2021-06-30 18:47:13 -070046 */
47struct vmemmap_remap_walk {
48 void (*remap_pte)(pte_t *pte, unsigned long addr,
49 struct vmemmap_remap_walk *walk);
Muchun Song3bc2b6a2021-06-30 18:48:22 -070050 unsigned long nr_walked;
Muchun Songf41f2ed2021-06-30 18:47:13 -070051 struct page *reuse_page;
52 unsigned long reuse_addr;
53 struct list_head *vmemmap_pages;
54};
55
Muchun Song3bc2b6a2021-06-30 18:48:22 -070056static int split_vmemmap_huge_pmd(pmd_t *pmd, unsigned long start,
57 struct vmemmap_remap_walk *walk)
58{
59 pmd_t __pmd;
60 int i;
61 unsigned long addr = start;
62 struct page *page = pmd_page(*pmd);
63 pte_t *pgtable = pte_alloc_one_kernel(&init_mm);
64
65 if (!pgtable)
66 return -ENOMEM;
67
68 pmd_populate_kernel(&init_mm, &__pmd, pgtable);
69
70 for (i = 0; i < PMD_SIZE / PAGE_SIZE; i++, addr += PAGE_SIZE) {
71 pte_t entry, *pte;
72 pgprot_t pgprot = PAGE_KERNEL;
73
74 entry = mk_pte(page + i, pgprot);
75 pte = pte_offset_kernel(&__pmd, addr);
76 set_pte_at(&init_mm, addr, pte, entry);
77 }
78
Qi Zhenged33b5a2021-11-05 13:38:41 -070079 /* Make pte visible before pmd. See comment in pmd_install(). */
Muchun Song3bc2b6a2021-06-30 18:48:22 -070080 smp_wmb();
81 pmd_populate_kernel(&init_mm, pmd, pgtable);
82
83 flush_tlb_kernel_range(start, start + PMD_SIZE);
84
85 return 0;
86}
87
Muchun Songf41f2ed2021-06-30 18:47:13 -070088static void vmemmap_pte_range(pmd_t *pmd, unsigned long addr,
89 unsigned long end,
90 struct vmemmap_remap_walk *walk)
91{
92 pte_t *pte = pte_offset_kernel(pmd, addr);
93
94 /*
95 * The reuse_page is found 'first' in table walk before we start
96 * remapping (which is calling @walk->remap_pte).
97 */
98 if (!walk->reuse_page) {
99 walk->reuse_page = pte_page(*pte);
100 /*
101 * Because the reuse address is part of the range that we are
102 * walking, skip the reuse address range.
103 */
104 addr += PAGE_SIZE;
105 pte++;
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700106 walk->nr_walked++;
Muchun Songf41f2ed2021-06-30 18:47:13 -0700107 }
108
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700109 for (; addr != end; addr += PAGE_SIZE, pte++) {
Muchun Songf41f2ed2021-06-30 18:47:13 -0700110 walk->remap_pte(pte, addr, walk);
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700111 walk->nr_walked++;
112 }
Muchun Songf41f2ed2021-06-30 18:47:13 -0700113}
114
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700115static int vmemmap_pmd_range(pud_t *pud, unsigned long addr,
116 unsigned long end,
117 struct vmemmap_remap_walk *walk)
Muchun Songf41f2ed2021-06-30 18:47:13 -0700118{
119 pmd_t *pmd;
120 unsigned long next;
121
122 pmd = pmd_offset(pud, addr);
123 do {
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700124 if (pmd_leaf(*pmd)) {
125 int ret;
Muchun Songf41f2ed2021-06-30 18:47:13 -0700126
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700127 ret = split_vmemmap_huge_pmd(pmd, addr & PMD_MASK, walk);
128 if (ret)
129 return ret;
130 }
Muchun Songf41f2ed2021-06-30 18:47:13 -0700131 next = pmd_addr_end(addr, end);
132 vmemmap_pte_range(pmd, addr, next, walk);
133 } while (pmd++, addr = next, addr != end);
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700134
135 return 0;
Muchun Songf41f2ed2021-06-30 18:47:13 -0700136}
137
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700138static int vmemmap_pud_range(p4d_t *p4d, unsigned long addr,
139 unsigned long end,
140 struct vmemmap_remap_walk *walk)
Muchun Songf41f2ed2021-06-30 18:47:13 -0700141{
142 pud_t *pud;
143 unsigned long next;
144
145 pud = pud_offset(p4d, addr);
146 do {
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700147 int ret;
148
Muchun Songf41f2ed2021-06-30 18:47:13 -0700149 next = pud_addr_end(addr, end);
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700150 ret = vmemmap_pmd_range(pud, addr, next, walk);
151 if (ret)
152 return ret;
Muchun Songf41f2ed2021-06-30 18:47:13 -0700153 } while (pud++, addr = next, addr != end);
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700154
155 return 0;
Muchun Songf41f2ed2021-06-30 18:47:13 -0700156}
157
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700158static int vmemmap_p4d_range(pgd_t *pgd, unsigned long addr,
159 unsigned long end,
160 struct vmemmap_remap_walk *walk)
Muchun Songf41f2ed2021-06-30 18:47:13 -0700161{
162 p4d_t *p4d;
163 unsigned long next;
164
165 p4d = p4d_offset(pgd, addr);
166 do {
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700167 int ret;
168
Muchun Songf41f2ed2021-06-30 18:47:13 -0700169 next = p4d_addr_end(addr, end);
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700170 ret = vmemmap_pud_range(p4d, addr, next, walk);
171 if (ret)
172 return ret;
Muchun Songf41f2ed2021-06-30 18:47:13 -0700173 } while (p4d++, addr = next, addr != end);
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700174
175 return 0;
Muchun Songf41f2ed2021-06-30 18:47:13 -0700176}
177
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700178static int vmemmap_remap_range(unsigned long start, unsigned long end,
179 struct vmemmap_remap_walk *walk)
Muchun Songf41f2ed2021-06-30 18:47:13 -0700180{
181 unsigned long addr = start;
182 unsigned long next;
183 pgd_t *pgd;
184
185 VM_BUG_ON(!IS_ALIGNED(start, PAGE_SIZE));
186 VM_BUG_ON(!IS_ALIGNED(end, PAGE_SIZE));
187
188 pgd = pgd_offset_k(addr);
189 do {
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700190 int ret;
191
Muchun Songf41f2ed2021-06-30 18:47:13 -0700192 next = pgd_addr_end(addr, end);
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700193 ret = vmemmap_p4d_range(pgd, addr, next, walk);
194 if (ret)
195 return ret;
Muchun Songf41f2ed2021-06-30 18:47:13 -0700196 } while (pgd++, addr = next, addr != end);
197
198 /*
199 * We only change the mapping of the vmemmap virtual address range
200 * [@start + PAGE_SIZE, end), so we only need to flush the TLB which
201 * belongs to the range.
202 */
203 flush_tlb_kernel_range(start + PAGE_SIZE, end);
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700204
205 return 0;
Muchun Songf41f2ed2021-06-30 18:47:13 -0700206}
207
208/*
209 * Free a vmemmap page. A vmemmap page can be allocated from the memblock
210 * allocator or buddy allocator. If the PG_reserved flag is set, it means
211 * that it allocated from the memblock allocator, just free it via the
212 * free_bootmem_page(). Otherwise, use __free_page().
213 */
214static inline void free_vmemmap_page(struct page *page)
215{
216 if (PageReserved(page))
217 free_bootmem_page(page);
218 else
219 __free_page(page);
220}
221
222/* Free a list of the vmemmap pages */
223static void free_vmemmap_page_list(struct list_head *list)
224{
225 struct page *page, *next;
226
227 list_for_each_entry_safe(page, next, list, lru) {
228 list_del(&page->lru);
229 free_vmemmap_page(page);
230 }
231}
232
233static void vmemmap_remap_pte(pte_t *pte, unsigned long addr,
234 struct vmemmap_remap_walk *walk)
235{
236 /*
237 * Remap the tail pages as read-only to catch illegal write operation
238 * to the tail pages.
239 */
240 pgprot_t pgprot = PAGE_KERNEL_RO;
241 pte_t entry = mk_pte(walk->reuse_page, pgprot);
242 struct page *page = pte_page(*pte);
243
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700244 list_add_tail(&page->lru, walk->vmemmap_pages);
Muchun Songf41f2ed2021-06-30 18:47:13 -0700245 set_pte_at(&init_mm, addr, pte, entry);
246}
247
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700248static void vmemmap_restore_pte(pte_t *pte, unsigned long addr,
249 struct vmemmap_remap_walk *walk)
250{
251 pgprot_t pgprot = PAGE_KERNEL;
252 struct page *page;
253 void *to;
254
255 BUG_ON(pte_page(*pte) != walk->reuse_page);
256
257 page = list_first_entry(walk->vmemmap_pages, struct page, lru);
258 list_del(&page->lru);
259 to = page_to_virt(page);
260 copy_page(to, (void *)walk->reuse_addr);
261
262 set_pte_at(&init_mm, addr, pte, mk_pte(page, pgprot));
263}
264
Muchun Songf41f2ed2021-06-30 18:47:13 -0700265/**
266 * vmemmap_remap_free - remap the vmemmap virtual address range [@start, @end)
267 * to the page which @reuse is mapped to, then free vmemmap
268 * which the range are mapped to.
269 * @start: start address of the vmemmap virtual address range that we want
270 * to remap.
271 * @end: end address of the vmemmap virtual address range that we want to
272 * remap.
273 * @reuse: reuse address.
274 *
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700275 * Return: %0 on success, negative error code otherwise.
Muchun Songf41f2ed2021-06-30 18:47:13 -0700276 */
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700277int vmemmap_remap_free(unsigned long start, unsigned long end,
278 unsigned long reuse)
Muchun Songf41f2ed2021-06-30 18:47:13 -0700279{
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700280 int ret;
Muchun Songf41f2ed2021-06-30 18:47:13 -0700281 LIST_HEAD(vmemmap_pages);
282 struct vmemmap_remap_walk walk = {
283 .remap_pte = vmemmap_remap_pte,
284 .reuse_addr = reuse,
285 .vmemmap_pages = &vmemmap_pages,
286 };
287
288 /*
289 * In order to make remapping routine most efficient for the huge pages,
290 * the routine of vmemmap page table walking has the following rules
291 * (see more details from the vmemmap_pte_range()):
292 *
293 * - The range [@start, @end) and the range [@reuse, @reuse + PAGE_SIZE)
294 * should be continuous.
295 * - The @reuse address is part of the range [@reuse, @end) that we are
296 * walking which is passed to vmemmap_remap_range().
297 * - The @reuse address is the first in the complete range.
298 *
299 * So we need to make sure that @start and @reuse meet the above rules.
300 */
301 BUG_ON(start - reuse != PAGE_SIZE);
302
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700303 mmap_write_lock(&init_mm);
304 ret = vmemmap_remap_range(reuse, end, &walk);
305 mmap_write_downgrade(&init_mm);
306
307 if (ret && walk.nr_walked) {
308 end = reuse + walk.nr_walked * PAGE_SIZE;
309 /*
310 * vmemmap_pages contains pages from the previous
311 * vmemmap_remap_range call which failed. These
312 * are pages which were removed from the vmemmap.
313 * They will be restored in the following call.
314 */
315 walk = (struct vmemmap_remap_walk) {
316 .remap_pte = vmemmap_restore_pte,
317 .reuse_addr = reuse,
318 .vmemmap_pages = &vmemmap_pages,
319 };
320
321 vmemmap_remap_range(reuse, end, &walk);
322 }
323 mmap_read_unlock(&init_mm);
324
Muchun Songf41f2ed2021-06-30 18:47:13 -0700325 free_vmemmap_page_list(&vmemmap_pages);
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700326
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700327 return ret;
Muchun Songad2fa372021-06-30 18:47:21 -0700328}
329
330static int alloc_vmemmap_page_list(unsigned long start, unsigned long end,
331 gfp_t gfp_mask, struct list_head *list)
332{
333 unsigned long nr_pages = (end - start) >> PAGE_SHIFT;
334 int nid = page_to_nid((struct page *)start);
335 struct page *page, *next;
336
337 while (nr_pages--) {
338 page = alloc_pages_node(nid, gfp_mask, 0);
339 if (!page)
340 goto out;
341 list_add_tail(&page->lru, list);
342 }
343
344 return 0;
345out:
346 list_for_each_entry_safe(page, next, list, lru)
347 __free_pages(page, 0);
348 return -ENOMEM;
349}
350
351/**
352 * vmemmap_remap_alloc - remap the vmemmap virtual address range [@start, end)
353 * to the page which is from the @vmemmap_pages
354 * respectively.
355 * @start: start address of the vmemmap virtual address range that we want
356 * to remap.
357 * @end: end address of the vmemmap virtual address range that we want to
358 * remap.
359 * @reuse: reuse address.
360 * @gfp_mask: GFP flag for allocating vmemmap pages.
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700361 *
362 * Return: %0 on success, negative error code otherwise.
Muchun Songad2fa372021-06-30 18:47:21 -0700363 */
364int vmemmap_remap_alloc(unsigned long start, unsigned long end,
365 unsigned long reuse, gfp_t gfp_mask)
366{
367 LIST_HEAD(vmemmap_pages);
368 struct vmemmap_remap_walk walk = {
369 .remap_pte = vmemmap_restore_pte,
370 .reuse_addr = reuse,
371 .vmemmap_pages = &vmemmap_pages,
372 };
373
374 /* See the comment in the vmemmap_remap_free(). */
375 BUG_ON(start - reuse != PAGE_SIZE);
376
Muchun Songad2fa372021-06-30 18:47:21 -0700377 if (alloc_vmemmap_page_list(start, end, gfp_mask, &vmemmap_pages))
378 return -ENOMEM;
379
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700380 mmap_read_lock(&init_mm);
Muchun Songad2fa372021-06-30 18:47:21 -0700381 vmemmap_remap_range(reuse, end, &walk);
Muchun Song3bc2b6a2021-06-30 18:48:22 -0700382 mmap_read_unlock(&init_mm);
Muchun Songad2fa372021-06-30 18:47:21 -0700383
384 return 0;
385}
386
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700387/*
388 * Allocate a block of memory to be used to back the virtual memory map
389 * or to back the page tables that are used to create the mapping.
390 * Uses the main allocators if they are available, else bootmem.
391 */
KAMEZAWA Hiroyukie0dc3a52007-11-28 16:21:57 -0800392
Fabian Frederickbd721ea2016-08-02 14:03:33 -0700393static void * __ref __earlyonly_bootmem_alloc(int node,
KAMEZAWA Hiroyukie0dc3a52007-11-28 16:21:57 -0800394 unsigned long size,
395 unsigned long align,
396 unsigned long goal)
397{
Mike Rapoporteb31d552018-10-30 15:08:04 -0700398 return memblock_alloc_try_nid_raw(size, align, goal,
Mike Rapoport97ad1082018-10-30 15:09:44 -0700399 MEMBLOCK_ALLOC_ACCESSIBLE, node);
KAMEZAWA Hiroyukie0dc3a52007-11-28 16:21:57 -0800400}
401
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700402void * __meminit vmemmap_alloc_block(unsigned long size, int node)
403{
404 /* If the main allocator is up use that, fallback to bootmem. */
405 if (slab_is_available()) {
Michal Hockofcdaf8422017-11-15 17:38:56 -0800406 gfp_t gfp_mask = GFP_KERNEL|__GFP_RETRY_MAYFAIL|__GFP_NOWARN;
407 int order = get_order(size);
408 static bool warned;
Shaohua Lif52407c2009-09-21 17:01:19 -0700409 struct page *page;
410
Michal Hockofcdaf8422017-11-15 17:38:56 -0800411 page = alloc_pages_node(node, gfp_mask, order);
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700412 if (page)
413 return page_address(page);
Michal Hockofcdaf8422017-11-15 17:38:56 -0800414
415 if (!warned) {
416 warn_alloc(gfp_mask & ~__GFP_NOWARN, NULL,
417 "vmemmap alloc failure: order:%u", order);
418 warned = true;
419 }
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700420 return NULL;
421 } else
KAMEZAWA Hiroyukie0dc3a52007-11-28 16:21:57 -0800422 return __earlyonly_bootmem_alloc(node, size, size,
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700423 __pa(MAX_DMA_ADDRESS));
424}
425
Anshuman Khandual56993b42020-08-06 23:23:24 -0700426static void * __meminit altmap_alloc_block_buf(unsigned long size,
427 struct vmem_altmap *altmap);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800428
Anshuman Khandual56993b42020-08-06 23:23:24 -0700429/* need to make sure size is all the same during early stage */
430void * __meminit vmemmap_alloc_block_buf(unsigned long size, int node,
431 struct vmem_altmap *altmap)
432{
433 void *ptr;
434
435 if (altmap)
436 return altmap_alloc_block_buf(size, altmap);
437
438 ptr = sparse_buffer_alloc(size);
Pavel Tatashin35fd1eb2018-08-17 15:49:21 -0700439 if (!ptr)
440 ptr = vmemmap_alloc_block(size, node);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800441 return ptr;
442}
443
Dan Williams4b94ffd2016-01-15 16:56:22 -0800444static unsigned long __meminit vmem_altmap_next_pfn(struct vmem_altmap *altmap)
445{
446 return altmap->base_pfn + altmap->reserve + altmap->alloc
447 + altmap->align;
448}
449
450static unsigned long __meminit vmem_altmap_nr_free(struct vmem_altmap *altmap)
451{
452 unsigned long allocated = altmap->alloc + altmap->align;
453
454 if (altmap->free > allocated)
455 return altmap->free - allocated;
456 return 0;
457}
458
Anshuman Khandual56993b42020-08-06 23:23:24 -0700459static void * __meminit altmap_alloc_block_buf(unsigned long size,
460 struct vmem_altmap *altmap)
Dan Williams4b94ffd2016-01-15 16:56:22 -0800461{
Christoph Hellwigeb804532017-12-29 08:53:59 +0100462 unsigned long pfn, nr_pfns, nr_align;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800463
464 if (size & ~PAGE_MASK) {
465 pr_warn_once("%s: allocations must be multiple of PAGE_SIZE (%ld)\n",
466 __func__, size);
467 return NULL;
468 }
469
Christoph Hellwigeb804532017-12-29 08:53:59 +0100470 pfn = vmem_altmap_next_pfn(altmap);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800471 nr_pfns = size >> PAGE_SHIFT;
Christoph Hellwigeb804532017-12-29 08:53:59 +0100472 nr_align = 1UL << find_first_bit(&nr_pfns, BITS_PER_LONG);
473 nr_align = ALIGN(pfn, nr_align) - pfn;
474 if (nr_pfns + nr_align > vmem_altmap_nr_free(altmap))
475 return NULL;
476
477 altmap->alloc += nr_pfns;
478 altmap->align += nr_align;
479 pfn += nr_align;
480
Dan Williams4b94ffd2016-01-15 16:56:22 -0800481 pr_debug("%s: pfn: %#lx alloc: %ld align: %ld nr: %#lx\n",
482 __func__, pfn, altmap->alloc, altmap->align, nr_pfns);
Christoph Hellwigeb804532017-12-29 08:53:59 +0100483 return __va(__pfn_to_phys(pfn));
Dan Williams4b94ffd2016-01-15 16:56:22 -0800484}
485
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700486void __meminit vmemmap_verify(pte_t *pte, int node,
487 unsigned long start, unsigned long end)
488{
489 unsigned long pfn = pte_pfn(*pte);
490 int actual_node = early_pfn_to_nid(pfn);
491
David Rientjesb41ad142008-11-06 12:53:31 -0800492 if (node_distance(actual_node, node) > LOCAL_DISTANCE)
Joe Perches11705322016-03-17 14:19:50 -0700493 pr_warn("[%lx-%lx] potential offnode page_structs\n",
494 start, end - 1);
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700495}
496
Anshuman Khandual1d9cfee2020-08-06 23:23:19 -0700497pte_t * __meminit vmemmap_pte_populate(pmd_t *pmd, unsigned long addr, int node,
498 struct vmem_altmap *altmap)
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700499{
Andy Whitcroft29c71112007-10-16 01:24:14 -0700500 pte_t *pte = pte_offset_kernel(pmd, addr);
501 if (pte_none(*pte)) {
502 pte_t entry;
Anshuman Khandual1d9cfee2020-08-06 23:23:19 -0700503 void *p;
504
Anshuman Khandual56993b42020-08-06 23:23:24 -0700505 p = vmemmap_alloc_block_buf(PAGE_SIZE, node, altmap);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700506 if (!p)
Al Viro9dce07f2008-03-29 03:07:28 +0000507 return NULL;
Andy Whitcroft29c71112007-10-16 01:24:14 -0700508 entry = pfn_pte(__pa(p) >> PAGE_SHIFT, PAGE_KERNEL);
509 set_pte_at(&init_mm, addr, pte, entry);
510 }
511 return pte;
512}
513
Pavel Tatashinf7f99102017-11-15 17:36:44 -0800514static void * __meminit vmemmap_alloc_block_zero(unsigned long size, int node)
515{
516 void *p = vmemmap_alloc_block(size, node);
517
518 if (!p)
519 return NULL;
520 memset(p, 0, size);
521
522 return p;
523}
524
Andy Whitcroft29c71112007-10-16 01:24:14 -0700525pmd_t * __meminit vmemmap_pmd_populate(pud_t *pud, unsigned long addr, int node)
526{
527 pmd_t *pmd = pmd_offset(pud, addr);
528 if (pmd_none(*pmd)) {
Pavel Tatashinf7f99102017-11-15 17:36:44 -0800529 void *p = vmemmap_alloc_block_zero(PAGE_SIZE, node);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700530 if (!p)
Al Viro9dce07f2008-03-29 03:07:28 +0000531 return NULL;
Andy Whitcroft29c71112007-10-16 01:24:14 -0700532 pmd_populate_kernel(&init_mm, pmd, p);
533 }
534 return pmd;
535}
536
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300537pud_t * __meminit vmemmap_pud_populate(p4d_t *p4d, unsigned long addr, int node)
Andy Whitcroft29c71112007-10-16 01:24:14 -0700538{
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300539 pud_t *pud = pud_offset(p4d, addr);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700540 if (pud_none(*pud)) {
Pavel Tatashinf7f99102017-11-15 17:36:44 -0800541 void *p = vmemmap_alloc_block_zero(PAGE_SIZE, node);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700542 if (!p)
Al Viro9dce07f2008-03-29 03:07:28 +0000543 return NULL;
Andy Whitcroft29c71112007-10-16 01:24:14 -0700544 pud_populate(&init_mm, pud, p);
545 }
546 return pud;
547}
548
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300549p4d_t * __meminit vmemmap_p4d_populate(pgd_t *pgd, unsigned long addr, int node)
550{
551 p4d_t *p4d = p4d_offset(pgd, addr);
552 if (p4d_none(*p4d)) {
Pavel Tatashinf7f99102017-11-15 17:36:44 -0800553 void *p = vmemmap_alloc_block_zero(PAGE_SIZE, node);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300554 if (!p)
555 return NULL;
556 p4d_populate(&init_mm, p4d, p);
557 }
558 return p4d;
559}
560
Andy Whitcroft29c71112007-10-16 01:24:14 -0700561pgd_t * __meminit vmemmap_pgd_populate(unsigned long addr, int node)
562{
563 pgd_t *pgd = pgd_offset_k(addr);
564 if (pgd_none(*pgd)) {
Pavel Tatashinf7f99102017-11-15 17:36:44 -0800565 void *p = vmemmap_alloc_block_zero(PAGE_SIZE, node);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700566 if (!p)
Al Viro9dce07f2008-03-29 03:07:28 +0000567 return NULL;
Andy Whitcroft29c71112007-10-16 01:24:14 -0700568 pgd_populate(&init_mm, pgd, p);
569 }
570 return pgd;
571}
572
Anshuman Khandual1d9cfee2020-08-06 23:23:19 -0700573int __meminit vmemmap_populate_basepages(unsigned long start, unsigned long end,
574 int node, struct vmem_altmap *altmap)
Andy Whitcroft29c71112007-10-16 01:24:14 -0700575{
Johannes Weiner0aad8182013-04-29 15:07:50 -0700576 unsigned long addr = start;
Andy Whitcroft29c71112007-10-16 01:24:14 -0700577 pgd_t *pgd;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300578 p4d_t *p4d;
Andy Whitcroft29c71112007-10-16 01:24:14 -0700579 pud_t *pud;
580 pmd_t *pmd;
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700581 pte_t *pte;
582
Andy Whitcroft29c71112007-10-16 01:24:14 -0700583 for (; addr < end; addr += PAGE_SIZE) {
584 pgd = vmemmap_pgd_populate(addr, node);
585 if (!pgd)
586 return -ENOMEM;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300587 p4d = vmemmap_p4d_populate(pgd, addr, node);
588 if (!p4d)
589 return -ENOMEM;
590 pud = vmemmap_pud_populate(p4d, addr, node);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700591 if (!pud)
592 return -ENOMEM;
593 pmd = vmemmap_pmd_populate(pud, addr, node);
594 if (!pmd)
595 return -ENOMEM;
Anshuman Khandual1d9cfee2020-08-06 23:23:19 -0700596 pte = vmemmap_pte_populate(pmd, addr, node, altmap);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700597 if (!pte)
598 return -ENOMEM;
599 vmemmap_verify(pte, node, addr, addr + PAGE_SIZE);
600 }
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700601
602 return 0;
603}
604
Dan Williamse9c0a3f02019-07-18 15:58:11 -0700605struct page * __meminit __populate_section_memmap(unsigned long pfn,
606 unsigned long nr_pages, int nid, struct vmem_altmap *altmap)
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700607{
Wei Yang6cda72042020-08-06 23:23:59 -0700608 unsigned long start = (unsigned long) pfn_to_page(pfn);
609 unsigned long end = start + nr_pages * sizeof(struct page);
Johannes Weiner0aad8182013-04-29 15:07:50 -0700610
Wei Yang6cda72042020-08-06 23:23:59 -0700611 if (WARN_ON_ONCE(!IS_ALIGNED(pfn, PAGES_PER_SUBSECTION) ||
612 !IS_ALIGNED(nr_pages, PAGES_PER_SUBSECTION)))
613 return NULL;
Johannes Weiner0aad8182013-04-29 15:07:50 -0700614
Christoph Hellwig7b73d972017-12-29 08:53:54 +0100615 if (vmemmap_populate(start, end, nid, altmap))
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700616 return NULL;
617
Dan Williamse9c0a3f02019-07-18 15:58:11 -0700618 return pfn_to_page(pfn);
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700619}