blob: 16183d85a7d505538a14bc1d958ae672a547148d [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
Anshuman Khandual56993b42020-08-06 23:23:24 -070072static void * __meminit altmap_alloc_block_buf(unsigned long size,
73 struct vmem_altmap *altmap);
Yinghai Lu9bdac912010-02-10 01:20:22 -080074
Anshuman Khandual56993b42020-08-06 23:23:24 -070075/* need to make sure size is all the same during early stage */
76void * __meminit vmemmap_alloc_block_buf(unsigned long size, int node,
77 struct vmem_altmap *altmap)
78{
79 void *ptr;
80
81 if (altmap)
82 return altmap_alloc_block_buf(size, altmap);
83
84 ptr = sparse_buffer_alloc(size);
Pavel Tatashin35fd1eb2018-08-17 15:49:21 -070085 if (!ptr)
86 ptr = vmemmap_alloc_block(size, node);
Yinghai Lu9bdac912010-02-10 01:20:22 -080087 return ptr;
88}
89
Dan Williams4b94ffd2016-01-15 16:56:22 -080090static unsigned long __meminit vmem_altmap_next_pfn(struct vmem_altmap *altmap)
91{
92 return altmap->base_pfn + altmap->reserve + altmap->alloc
93 + altmap->align;
94}
95
96static unsigned long __meminit vmem_altmap_nr_free(struct vmem_altmap *altmap)
97{
98 unsigned long allocated = altmap->alloc + altmap->align;
99
100 if (altmap->free > allocated)
101 return altmap->free - allocated;
102 return 0;
103}
104
Anshuman Khandual56993b42020-08-06 23:23:24 -0700105static void * __meminit altmap_alloc_block_buf(unsigned long size,
106 struct vmem_altmap *altmap)
Dan Williams4b94ffd2016-01-15 16:56:22 -0800107{
Christoph Hellwigeb804532017-12-29 08:53:59 +0100108 unsigned long pfn, nr_pfns, nr_align;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800109
110 if (size & ~PAGE_MASK) {
111 pr_warn_once("%s: allocations must be multiple of PAGE_SIZE (%ld)\n",
112 __func__, size);
113 return NULL;
114 }
115
Christoph Hellwigeb804532017-12-29 08:53:59 +0100116 pfn = vmem_altmap_next_pfn(altmap);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800117 nr_pfns = size >> PAGE_SHIFT;
Christoph Hellwigeb804532017-12-29 08:53:59 +0100118 nr_align = 1UL << find_first_bit(&nr_pfns, BITS_PER_LONG);
119 nr_align = ALIGN(pfn, nr_align) - pfn;
120 if (nr_pfns + nr_align > vmem_altmap_nr_free(altmap))
121 return NULL;
122
123 altmap->alloc += nr_pfns;
124 altmap->align += nr_align;
125 pfn += nr_align;
126
Dan Williams4b94ffd2016-01-15 16:56:22 -0800127 pr_debug("%s: pfn: %#lx alloc: %ld align: %ld nr: %#lx\n",
128 __func__, pfn, altmap->alloc, altmap->align, nr_pfns);
Christoph Hellwigeb804532017-12-29 08:53:59 +0100129 return __va(__pfn_to_phys(pfn));
Dan Williams4b94ffd2016-01-15 16:56:22 -0800130}
131
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700132void __meminit vmemmap_verify(pte_t *pte, int node,
133 unsigned long start, unsigned long end)
134{
135 unsigned long pfn = pte_pfn(*pte);
136 int actual_node = early_pfn_to_nid(pfn);
137
David Rientjesb41ad142008-11-06 12:53:31 -0800138 if (node_distance(actual_node, node) > LOCAL_DISTANCE)
Joe Perches11705322016-03-17 14:19:50 -0700139 pr_warn("[%lx-%lx] potential offnode page_structs\n",
140 start, end - 1);
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700141}
142
Anshuman Khandual1d9cfee2020-08-06 23:23:19 -0700143pte_t * __meminit vmemmap_pte_populate(pmd_t *pmd, unsigned long addr, int node,
144 struct vmem_altmap *altmap)
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700145{
Andy Whitcroft29c71112007-10-16 01:24:14 -0700146 pte_t *pte = pte_offset_kernel(pmd, addr);
147 if (pte_none(*pte)) {
148 pte_t entry;
Anshuman Khandual1d9cfee2020-08-06 23:23:19 -0700149 void *p;
150
Anshuman Khandual56993b42020-08-06 23:23:24 -0700151 p = vmemmap_alloc_block_buf(PAGE_SIZE, node, altmap);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700152 if (!p)
Al Viro9dce07f2008-03-29 03:07:28 +0000153 return NULL;
Andy Whitcroft29c71112007-10-16 01:24:14 -0700154 entry = pfn_pte(__pa(p) >> PAGE_SHIFT, PAGE_KERNEL);
155 set_pte_at(&init_mm, addr, pte, entry);
156 }
157 return pte;
158}
159
Pavel Tatashinf7f99102017-11-15 17:36:44 -0800160static void * __meminit vmemmap_alloc_block_zero(unsigned long size, int node)
161{
162 void *p = vmemmap_alloc_block(size, node);
163
164 if (!p)
165 return NULL;
166 memset(p, 0, size);
167
168 return p;
169}
170
Andy Whitcroft29c71112007-10-16 01:24:14 -0700171pmd_t * __meminit vmemmap_pmd_populate(pud_t *pud, unsigned long addr, int node)
172{
173 pmd_t *pmd = pmd_offset(pud, addr);
174 if (pmd_none(*pmd)) {
Pavel Tatashinf7f99102017-11-15 17:36:44 -0800175 void *p = vmemmap_alloc_block_zero(PAGE_SIZE, node);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700176 if (!p)
Al Viro9dce07f2008-03-29 03:07:28 +0000177 return NULL;
Andy Whitcroft29c71112007-10-16 01:24:14 -0700178 pmd_populate_kernel(&init_mm, pmd, p);
179 }
180 return pmd;
181}
182
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300183pud_t * __meminit vmemmap_pud_populate(p4d_t *p4d, unsigned long addr, int node)
Andy Whitcroft29c71112007-10-16 01:24:14 -0700184{
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300185 pud_t *pud = pud_offset(p4d, addr);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700186 if (pud_none(*pud)) {
Pavel Tatashinf7f99102017-11-15 17:36:44 -0800187 void *p = vmemmap_alloc_block_zero(PAGE_SIZE, node);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700188 if (!p)
Al Viro9dce07f2008-03-29 03:07:28 +0000189 return NULL;
Andy Whitcroft29c71112007-10-16 01:24:14 -0700190 pud_populate(&init_mm, pud, p);
191 }
192 return pud;
193}
194
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300195p4d_t * __meminit vmemmap_p4d_populate(pgd_t *pgd, unsigned long addr, int node)
196{
197 p4d_t *p4d = p4d_offset(pgd, addr);
198 if (p4d_none(*p4d)) {
Pavel Tatashinf7f99102017-11-15 17:36:44 -0800199 void *p = vmemmap_alloc_block_zero(PAGE_SIZE, node);
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300200 if (!p)
201 return NULL;
202 p4d_populate(&init_mm, p4d, p);
203 }
204 return p4d;
205}
206
Andy Whitcroft29c71112007-10-16 01:24:14 -0700207pgd_t * __meminit vmemmap_pgd_populate(unsigned long addr, int node)
208{
209 pgd_t *pgd = pgd_offset_k(addr);
210 if (pgd_none(*pgd)) {
Pavel Tatashinf7f99102017-11-15 17:36:44 -0800211 void *p = vmemmap_alloc_block_zero(PAGE_SIZE, node);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700212 if (!p)
Al Viro9dce07f2008-03-29 03:07:28 +0000213 return NULL;
Andy Whitcroft29c71112007-10-16 01:24:14 -0700214 pgd_populate(&init_mm, pgd, p);
215 }
216 return pgd;
217}
218
Anshuman Khandual1d9cfee2020-08-06 23:23:19 -0700219int __meminit vmemmap_populate_basepages(unsigned long start, unsigned long end,
220 int node, struct vmem_altmap *altmap)
Andy Whitcroft29c71112007-10-16 01:24:14 -0700221{
Johannes Weiner0aad8182013-04-29 15:07:50 -0700222 unsigned long addr = start;
Andy Whitcroft29c71112007-10-16 01:24:14 -0700223 pgd_t *pgd;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300224 p4d_t *p4d;
Andy Whitcroft29c71112007-10-16 01:24:14 -0700225 pud_t *pud;
226 pmd_t *pmd;
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700227 pte_t *pte;
228
Andy Whitcroft29c71112007-10-16 01:24:14 -0700229 for (; addr < end; addr += PAGE_SIZE) {
230 pgd = vmemmap_pgd_populate(addr, node);
231 if (!pgd)
232 return -ENOMEM;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +0300233 p4d = vmemmap_p4d_populate(pgd, addr, node);
234 if (!p4d)
235 return -ENOMEM;
236 pud = vmemmap_pud_populate(p4d, addr, node);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700237 if (!pud)
238 return -ENOMEM;
239 pmd = vmemmap_pmd_populate(pud, addr, node);
240 if (!pmd)
241 return -ENOMEM;
Anshuman Khandual1d9cfee2020-08-06 23:23:19 -0700242 pte = vmemmap_pte_populate(pmd, addr, node, altmap);
Andy Whitcroft29c71112007-10-16 01:24:14 -0700243 if (!pte)
244 return -ENOMEM;
245 vmemmap_verify(pte, node, addr, addr + PAGE_SIZE);
246 }
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700247
248 return 0;
249}
250
Dan Williamse9c0a3f02019-07-18 15:58:11 -0700251struct page * __meminit __populate_section_memmap(unsigned long pfn,
252 unsigned long nr_pages, int nid, struct vmem_altmap *altmap)
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700253{
Wei Yang6cda72042020-08-06 23:23:59 -0700254 unsigned long start = (unsigned long) pfn_to_page(pfn);
255 unsigned long end = start + nr_pages * sizeof(struct page);
Johannes Weiner0aad8182013-04-29 15:07:50 -0700256
Wei Yang6cda72042020-08-06 23:23:59 -0700257 if (WARN_ON_ONCE(!IS_ALIGNED(pfn, PAGES_PER_SUBSECTION) ||
258 !IS_ALIGNED(nr_pages, PAGES_PER_SUBSECTION)))
259 return NULL;
Johannes Weiner0aad8182013-04-29 15:07:50 -0700260
Christoph Hellwig7b73d972017-12-29 08:53:54 +0100261 if (vmemmap_populate(start, end, nid, altmap))
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700262 return NULL;
263
Dan Williamse9c0a3f02019-07-18 15:58:11 -0700264 return pfn_to_page(pfn);
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700265}