blob: 0db7738d76e9b0b2875aa74469a2b6fbf9587096 [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>
Christoph Lameter8f6aac42007-10-16 01:24:13 -070030#include <asm/dma.h>
31#include <asm/pgalloc.h>
Christoph Lameter8f6aac42007-10-16 01:24:13 -070032
33/*
34 * Allocate a block of memory to be used to back the virtual memory map
35 * or to back the page tables that are used to create the mapping.
36 * Uses the main allocators if they are available, else bootmem.
37 */
KAMEZAWA Hiroyukie0dc3a52007-11-28 16:21:57 -080038
Fabian Frederickbd721ea2016-08-02 14:03:33 -070039static void * __ref __earlyonly_bootmem_alloc(int node,
KAMEZAWA Hiroyukie0dc3a52007-11-28 16:21:57 -080040 unsigned long size,
41 unsigned long align,
42 unsigned long goal)
43{
Mike Rapoporteb31d552018-10-30 15:08:04 -070044 return memblock_alloc_try_nid_raw(size, align, goal,
Mike Rapoport97ad1082018-10-30 15:09:44 -070045 MEMBLOCK_ALLOC_ACCESSIBLE, node);
KAMEZAWA Hiroyukie0dc3a52007-11-28 16:21:57 -080046}
47
Christoph Lameter8f6aac42007-10-16 01:24:13 -070048void * __meminit vmemmap_alloc_block(unsigned long size, int node)
49{
50 /* If the main allocator is up use that, fallback to bootmem. */
51 if (slab_is_available()) {
Michal Hockofcdaf8422017-11-15 17:38:56 -080052 gfp_t gfp_mask = GFP_KERNEL|__GFP_RETRY_MAYFAIL|__GFP_NOWARN;
53 int order = get_order(size);
54 static bool warned;
Shaohua Lif52407c2009-09-21 17:01:19 -070055 struct page *page;
56
Michal Hockofcdaf8422017-11-15 17:38:56 -080057 page = alloc_pages_node(node, gfp_mask, order);
Christoph Lameter8f6aac42007-10-16 01:24:13 -070058 if (page)
59 return page_address(page);
Michal Hockofcdaf8422017-11-15 17:38:56 -080060
61 if (!warned) {
62 warn_alloc(gfp_mask & ~__GFP_NOWARN, NULL,
63 "vmemmap alloc failure: order:%u", order);
64 warned = true;
65 }
Christoph Lameter8f6aac42007-10-16 01:24:13 -070066 return NULL;
67 } else
KAMEZAWA Hiroyukie0dc3a52007-11-28 16:21:57 -080068 return __earlyonly_bootmem_alloc(node, size, size,
Christoph Lameter8f6aac42007-10-16 01:24:13 -070069 __pa(MAX_DMA_ADDRESS));
70}
71
Yinghai Lu9bdac912010-02-10 01:20:22 -080072/* need to make sure size is all the same during early stage */
Christoph Hellwiga8fc3572017-12-29 08:53:58 +010073void * __meminit vmemmap_alloc_block_buf(unsigned long size, int node)
Yinghai Lu9bdac912010-02-10 01:20:22 -080074{
Pavel Tatashin35fd1eb2018-08-17 15:49:21 -070075 void *ptr = sparse_buffer_alloc(size);
Yinghai Lu9bdac912010-02-10 01:20:22 -080076
Pavel Tatashin35fd1eb2018-08-17 15:49:21 -070077 if (!ptr)
78 ptr = vmemmap_alloc_block(size, node);
Yinghai Lu9bdac912010-02-10 01:20:22 -080079 return ptr;
80}
81
Dan Williams4b94ffd2016-01-15 16:56:22 -080082static unsigned long __meminit vmem_altmap_next_pfn(struct vmem_altmap *altmap)
83{
84 return altmap->base_pfn + altmap->reserve + altmap->alloc
85 + altmap->align;
86}
87
88static unsigned long __meminit vmem_altmap_nr_free(struct vmem_altmap *altmap)
89{
90 unsigned long allocated = altmap->alloc + altmap->align;
91
92 if (altmap->free > allocated)
93 return altmap->free - allocated;
94 return 0;
95}
96
97/**
Christoph Hellwigeb804532017-12-29 08:53:59 +010098 * altmap_alloc_block_buf - allocate pages from the device page map
99 * @altmap: device page map
100 * @size: size (in bytes) of the allocation
Dan Williams4b94ffd2016-01-15 16:56:22 -0800101 *
Christoph Hellwigeb804532017-12-29 08:53:59 +0100102 * Allocations are aligned to the size of the request.
Dan Williams4b94ffd2016-01-15 16:56:22 -0800103 */
Christoph Hellwiga8fc3572017-12-29 08:53:58 +0100104void * __meminit altmap_alloc_block_buf(unsigned long size,
Dan Williams4b94ffd2016-01-15 16:56:22 -0800105 struct vmem_altmap *altmap)
106{
Christoph Hellwigeb804532017-12-29 08:53:59 +0100107 unsigned long pfn, nr_pfns, nr_align;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800108
109 if (size & ~PAGE_MASK) {
110 pr_warn_once("%s: allocations must be multiple of PAGE_SIZE (%ld)\n",
111 __func__, size);
112 return NULL;
113 }
114
Christoph Hellwigeb804532017-12-29 08:53:59 +0100115 pfn = vmem_altmap_next_pfn(altmap);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800116 nr_pfns = size >> PAGE_SHIFT;
Christoph Hellwigeb804532017-12-29 08:53:59 +0100117 nr_align = 1UL << find_first_bit(&nr_pfns, BITS_PER_LONG);
118 nr_align = ALIGN(pfn, nr_align) - pfn;
119 if (nr_pfns + nr_align > vmem_altmap_nr_free(altmap))
120 return NULL;
121
122 altmap->alloc += nr_pfns;
123 altmap->align += nr_align;
124 pfn += nr_align;
125
Dan Williams4b94ffd2016-01-15 16:56:22 -0800126 pr_debug("%s: pfn: %#lx alloc: %ld align: %ld nr: %#lx\n",
127 __func__, pfn, altmap->alloc, altmap->align, nr_pfns);
Christoph Hellwigeb804532017-12-29 08:53:59 +0100128 return __va(__pfn_to_phys(pfn));
Dan Williams4b94ffd2016-01-15 16:56:22 -0800129}
130
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700131void __meminit vmemmap_verify(pte_t *pte, int node,
132 unsigned long start, unsigned long end)
133{
134 unsigned long pfn = pte_pfn(*pte);
135 int actual_node = early_pfn_to_nid(pfn);
136
David Rientjesb41ad142008-11-06 12:53:31 -0800137 if (node_distance(actual_node, node) > LOCAL_DISTANCE)
Joe Perches11705322016-03-17 14:19:50 -0700138 pr_warn("[%lx-%lx] potential offnode page_structs\n",
139 start, end - 1);
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700140}
141
Andy Whitcroft29c71112007-10-16 01:24:14 -0700142pte_t * __meminit vmemmap_pte_populate(pmd_t *pmd, unsigned long addr, int node)
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700143{
Andy Whitcroft29c71112007-10-16 01:24:14 -0700144 pte_t *pte = pte_offset_kernel(pmd, addr);
145 if (pte_none(*pte)) {
146 pte_t entry;
Christoph Hellwiga8fc3572017-12-29 08:53:58 +0100147 void *p = vmemmap_alloc_block_buf(PAGE_SIZE, node);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700148 if (!p)
Al Viro9dce07f2008-03-29 03:07:28 +0000149 return NULL;
Andy Whitcroft29c71112007-10-16 01:24:14 -0700150 entry = pfn_pte(__pa(p) >> PAGE_SHIFT, PAGE_KERNEL);
151 set_pte_at(&init_mm, addr, pte, entry);
152 }
153 return pte;
154}
155
Pavel Tatashinf7f99102017-11-15 17:36:44 -0800156static void * __meminit vmemmap_alloc_block_zero(unsigned long size, int node)
157{
158 void *p = vmemmap_alloc_block(size, node);
159
160 if (!p)
161 return NULL;
162 memset(p, 0, size);
163
164 return p;
165}
166
Andy Whitcroft29c71112007-10-16 01:24:14 -0700167pmd_t * __meminit vmemmap_pmd_populate(pud_t *pud, unsigned long addr, int node)
168{
169 pmd_t *pmd = pmd_offset(pud, addr);
170 if (pmd_none(*pmd)) {
Pavel Tatashinf7f99102017-11-15 17:36:44 -0800171 void *p = vmemmap_alloc_block_zero(PAGE_SIZE, node);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700172 if (!p)
Al Viro9dce07f2008-03-29 03:07:28 +0000173 return NULL;
Andy Whitcroft29c71112007-10-16 01:24:14 -0700174 pmd_populate_kernel(&init_mm, pmd, p);
175 }
176 return pmd;
177}
178
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300179pud_t * __meminit vmemmap_pud_populate(p4d_t *p4d, unsigned long addr, int node)
Andy Whitcroft29c71112007-10-16 01:24:14 -0700180{
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300181 pud_t *pud = pud_offset(p4d, addr);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700182 if (pud_none(*pud)) {
Pavel Tatashinf7f99102017-11-15 17:36:44 -0800183 void *p = vmemmap_alloc_block_zero(PAGE_SIZE, node);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700184 if (!p)
Al Viro9dce07f2008-03-29 03:07:28 +0000185 return NULL;
Andy Whitcroft29c71112007-10-16 01:24:14 -0700186 pud_populate(&init_mm, pud, p);
187 }
188 return pud;
189}
190
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300191p4d_t * __meminit vmemmap_p4d_populate(pgd_t *pgd, unsigned long addr, int node)
192{
193 p4d_t *p4d = p4d_offset(pgd, addr);
194 if (p4d_none(*p4d)) {
Pavel Tatashinf7f99102017-11-15 17:36:44 -0800195 void *p = vmemmap_alloc_block_zero(PAGE_SIZE, node);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300196 if (!p)
197 return NULL;
198 p4d_populate(&init_mm, p4d, p);
199 }
200 return p4d;
201}
202
Andy Whitcroft29c71112007-10-16 01:24:14 -0700203pgd_t * __meminit vmemmap_pgd_populate(unsigned long addr, int node)
204{
205 pgd_t *pgd = pgd_offset_k(addr);
206 if (pgd_none(*pgd)) {
Pavel Tatashinf7f99102017-11-15 17:36:44 -0800207 void *p = vmemmap_alloc_block_zero(PAGE_SIZE, node);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700208 if (!p)
Al Viro9dce07f2008-03-29 03:07:28 +0000209 return NULL;
Andy Whitcroft29c71112007-10-16 01:24:14 -0700210 pgd_populate(&init_mm, pgd, p);
211 }
212 return pgd;
213}
214
Johannes Weiner0aad8182013-04-29 15:07:50 -0700215int __meminit vmemmap_populate_basepages(unsigned long start,
216 unsigned long end, int node)
Andy Whitcroft29c71112007-10-16 01:24:14 -0700217{
Johannes Weiner0aad8182013-04-29 15:07:50 -0700218 unsigned long addr = start;
Andy Whitcroft29c71112007-10-16 01:24:14 -0700219 pgd_t *pgd;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300220 p4d_t *p4d;
Andy Whitcroft29c71112007-10-16 01:24:14 -0700221 pud_t *pud;
222 pmd_t *pmd;
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700223 pte_t *pte;
224
Andy Whitcroft29c71112007-10-16 01:24:14 -0700225 for (; addr < end; addr += PAGE_SIZE) {
226 pgd = vmemmap_pgd_populate(addr, node);
227 if (!pgd)
228 return -ENOMEM;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300229 p4d = vmemmap_p4d_populate(pgd, addr, node);
230 if (!p4d)
231 return -ENOMEM;
232 pud = vmemmap_pud_populate(p4d, addr, node);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700233 if (!pud)
234 return -ENOMEM;
235 pmd = vmemmap_pmd_populate(pud, addr, node);
236 if (!pmd)
237 return -ENOMEM;
238 pte = vmemmap_pte_populate(pmd, addr, node);
239 if (!pte)
240 return -ENOMEM;
241 vmemmap_verify(pte, node, addr, addr + PAGE_SIZE);
242 }
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700243
244 return 0;
245}
246
Dan Williamse9c0a3f02019-07-18 15:58:11 -0700247struct page * __meminit __populate_section_memmap(unsigned long pfn,
248 unsigned long nr_pages, int nid, struct vmem_altmap *altmap)
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700249{
Johannes Weiner0aad8182013-04-29 15:07:50 -0700250 unsigned long start;
251 unsigned long end;
Johannes Weiner0aad8182013-04-29 15:07:50 -0700252
Dan Williamse9c0a3f02019-07-18 15:58:11 -0700253 /*
254 * The minimum granularity of memmap extensions is
255 * PAGES_PER_SUBSECTION as allocations are tracked in the
256 * 'subsection_map' bitmap of the section.
257 */
258 end = ALIGN(pfn + nr_pages, PAGES_PER_SUBSECTION);
259 pfn &= PAGE_SUBSECTION_MASK;
260 nr_pages = end - pfn;
261
262 start = (unsigned long) pfn_to_page(pfn);
263 end = start + nr_pages * sizeof(struct page);
Johannes Weiner0aad8182013-04-29 15:07:50 -0700264
Christoph Hellwig7b73d972017-12-29 08:53:54 +0100265 if (vmemmap_populate(start, end, nid, altmap))
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700266 return NULL;
267
Dan Williamse9c0a3f02019-07-18 15:58:11 -0700268 return pfn_to_page(pfn);
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700269}