Blame view

mm/sparse-vmemmap.c 6.8 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  // SPDX-License-Identifier: GPL-2.0
8f6aac419   Christoph Lameter   Generic Virtual M...
2
3
4
  /*
   * Virtual Memory Map support
   *
cde535359   Christoph Lameter   Christoph has moved
5
   * (C) 2007 sgi. Christoph Lameter.
8f6aac419   Christoph Lameter   Generic Virtual M...
6
7
8
9
10
11
12
   *
   * Virtual memory maps allow VM primitives pfn_to_page, page_to_pfn,
   * virt_to_page, page_address() to be implemented as a base offset
   * calculation without memory access.
   *
   * However, virtual mappings need a page table and TLBs. Many Linux
   * architectures already map their physical space using 1-1 mappings
b595076a1   Uwe Kleine-König   tree-wide: fix co...
13
   * via TLBs. For those arches the virtual memory map is essentially
8f6aac419   Christoph Lameter   Generic Virtual M...
14
15
16
17
   * for free if we use the same page size as the 1-1 mappings. In that
   * case the overhead consists of a few additional pages that are
   * allocated to create a view of memory for vmemmap.
   *
29c71111d   Andy Whitcroft   vmemmap: generify...
18
19
   * The architecture is expected to provide a vmemmap_populate() function
   * to instantiate the mapping.
8f6aac419   Christoph Lameter   Generic Virtual M...
20
21
22
   */
  #include <linux/mm.h>
  #include <linux/mmzone.h>
97ad1087e   Mike Rapoport   memblock: replace...
23
  #include <linux/memblock.h>
4b94ffdc4   Dan Williams   x86, mm: introduc...
24
  #include <linux/memremap.h>
8f6aac419   Christoph Lameter   Generic Virtual M...
25
  #include <linux/highmem.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
26
  #include <linux/slab.h>
8f6aac419   Christoph Lameter   Generic Virtual M...
27
28
  #include <linux/spinlock.h>
  #include <linux/vmalloc.h>
8bca44bbd   Glauber de Oliveira Costa   mm/sparse-vmemmap...
29
  #include <linux/sched.h>
8f6aac419   Christoph Lameter   Generic Virtual M...
30
31
  #include <asm/dma.h>
  #include <asm/pgalloc.h>
8f6aac419   Christoph Lameter   Generic Virtual M...
32
33
34
35
36
37
  
  /*
   * Allocate a block of memory to be used to back the virtual memory map
   * or to back the page tables that are used to create the mapping.
   * Uses the main allocators if they are available, else bootmem.
   */
e0dc3a53d   KAMEZAWA Hiroyuki   memory hotplug fi...
38

bd721ea73   Fabian Frederick   treewide: replace...
39
  static void * __ref __earlyonly_bootmem_alloc(int node,
e0dc3a53d   KAMEZAWA Hiroyuki   memory hotplug fi...
40
41
42
43
  				unsigned long size,
  				unsigned long align,
  				unsigned long goal)
  {
eb31d559f   Mike Rapoport   memblock: remove ...
44
  	return memblock_alloc_try_nid_raw(size, align, goal,
97ad1087e   Mike Rapoport   memblock: replace...
45
  					       MEMBLOCK_ALLOC_ACCESSIBLE, node);
e0dc3a53d   KAMEZAWA Hiroyuki   memory hotplug fi...
46
  }
8f6aac419   Christoph Lameter   Generic Virtual M...
47
48
49
50
  void * __meminit vmemmap_alloc_block(unsigned long size, int node)
  {
  	/* If the main allocator is up use that, fallback to bootmem. */
  	if (slab_is_available()) {
fcdaf842b   Michal Hocko   mm, sparse: do no...
51
52
53
  		gfp_t gfp_mask = GFP_KERNEL|__GFP_RETRY_MAYFAIL|__GFP_NOWARN;
  		int order = get_order(size);
  		static bool warned;
f52407ce2   Shaohua Li   memory hotplug: a...
54
  		struct page *page;
fcdaf842b   Michal Hocko   mm, sparse: do no...
55
  		page = alloc_pages_node(node, gfp_mask, order);
8f6aac419   Christoph Lameter   Generic Virtual M...
56
57
  		if (page)
  			return page_address(page);
fcdaf842b   Michal Hocko   mm, sparse: do no...
58
59
60
61
62
63
  
  		if (!warned) {
  			warn_alloc(gfp_mask & ~__GFP_NOWARN, NULL,
  				   "vmemmap alloc failure: order:%u", order);
  			warned = true;
  		}
8f6aac419   Christoph Lameter   Generic Virtual M...
64
65
  		return NULL;
  	} else
e0dc3a53d   KAMEZAWA Hiroyuki   memory hotplug fi...
66
  		return __earlyonly_bootmem_alloc(node, size, size,
8f6aac419   Christoph Lameter   Generic Virtual M...
67
68
  				__pa(MAX_DMA_ADDRESS));
  }
56993b4e1   Anshuman Khandual   mm/sparsemem: ena...
69
70
  static void * __meminit altmap_alloc_block_buf(unsigned long size,
  					       struct vmem_altmap *altmap);
9bdac9142   Yinghai Lu   sparsemem: Put me...
71
  /* need to make sure size is all the same during early stage */
56993b4e1   Anshuman Khandual   mm/sparsemem: ena...
72
73
  void * __meminit vmemmap_alloc_block_buf(unsigned long size, int node,
  					 struct vmem_altmap *altmap)
9bdac9142   Yinghai Lu   sparsemem: Put me...
74
  {
56993b4e1   Anshuman Khandual   mm/sparsemem: ena...
75
76
77
78
  	void *ptr;
  
  	if (altmap)
  		return altmap_alloc_block_buf(size, altmap);
9bdac9142   Yinghai Lu   sparsemem: Put me...
79

56993b4e1   Anshuman Khandual   mm/sparsemem: ena...
80
  	ptr = sparse_buffer_alloc(size);
35fd1eb1e   Pavel Tatashin   mm/sparse: abstra...
81
82
  	if (!ptr)
  		ptr = vmemmap_alloc_block(size, node);
9bdac9142   Yinghai Lu   sparsemem: Put me...
83
84
  	return ptr;
  }
4b94ffdc4   Dan Williams   x86, mm: introduc...
85
86
87
88
89
90
91
92
93
94
95
96
97
98
  static unsigned long __meminit vmem_altmap_next_pfn(struct vmem_altmap *altmap)
  {
  	return altmap->base_pfn + altmap->reserve + altmap->alloc
  		+ altmap->align;
  }
  
  static unsigned long __meminit vmem_altmap_nr_free(struct vmem_altmap *altmap)
  {
  	unsigned long allocated = altmap->alloc + altmap->align;
  
  	if (altmap->free > allocated)
  		return altmap->free - allocated;
  	return 0;
  }
56993b4e1   Anshuman Khandual   mm/sparsemem: ena...
99
100
  static void * __meminit altmap_alloc_block_buf(unsigned long size,
  					       struct vmem_altmap *altmap)
4b94ffdc4   Dan Williams   x86, mm: introduc...
101
  {
eb8045335   Christoph Hellwig   mm: merge vmem_al...
102
  	unsigned long pfn, nr_pfns, nr_align;
4b94ffdc4   Dan Williams   x86, mm: introduc...
103
104
105
106
107
108
109
  
  	if (size & ~PAGE_MASK) {
  		pr_warn_once("%s: allocations must be multiple of PAGE_SIZE (%ld)
  ",
  				__func__, size);
  		return NULL;
  	}
eb8045335   Christoph Hellwig   mm: merge vmem_al...
110
  	pfn = vmem_altmap_next_pfn(altmap);
4b94ffdc4   Dan Williams   x86, mm: introduc...
111
  	nr_pfns = size >> PAGE_SHIFT;
eb8045335   Christoph Hellwig   mm: merge vmem_al...
112
113
114
115
116
117
118
119
  	nr_align = 1UL << find_first_bit(&nr_pfns, BITS_PER_LONG);
  	nr_align = ALIGN(pfn, nr_align) - pfn;
  	if (nr_pfns + nr_align > vmem_altmap_nr_free(altmap))
  		return NULL;
  
  	altmap->alloc += nr_pfns;
  	altmap->align += nr_align;
  	pfn += nr_align;
4b94ffdc4   Dan Williams   x86, mm: introduc...
120
121
122
  	pr_debug("%s: pfn: %#lx alloc: %ld align: %ld nr: %#lx
  ",
  			__func__, pfn, altmap->alloc, altmap->align, nr_pfns);
eb8045335   Christoph Hellwig   mm: merge vmem_al...
123
  	return __va(__pfn_to_phys(pfn));
4b94ffdc4   Dan Williams   x86, mm: introduc...
124
  }
8f6aac419   Christoph Lameter   Generic Virtual M...
125
126
127
128
129
  void __meminit vmemmap_verify(pte_t *pte, int node,
  				unsigned long start, unsigned long end)
  {
  	unsigned long pfn = pte_pfn(*pte);
  	int actual_node = early_pfn_to_nid(pfn);
b41ad14c3   David Rientjes   vmemmap: warn abo...
130
  	if (node_distance(actual_node, node) > LOCAL_DISTANCE)
1170532bb   Joe Perches   mm: convert print...
131
132
133
  		pr_warn("[%lx-%lx] potential offnode page_structs
  ",
  			start, end - 1);
8f6aac419   Christoph Lameter   Generic Virtual M...
134
  }
1d9cfee75   Anshuman Khandual   mm/sparsemem: ena...
135
136
  pte_t * __meminit vmemmap_pte_populate(pmd_t *pmd, unsigned long addr, int node,
  				       struct vmem_altmap *altmap)
8f6aac419   Christoph Lameter   Generic Virtual M...
137
  {
29c71111d   Andy Whitcroft   vmemmap: generify...
138
139
140
  	pte_t *pte = pte_offset_kernel(pmd, addr);
  	if (pte_none(*pte)) {
  		pte_t entry;
1d9cfee75   Anshuman Khandual   mm/sparsemem: ena...
141
  		void *p;
56993b4e1   Anshuman Khandual   mm/sparsemem: ena...
142
  		p = vmemmap_alloc_block_buf(PAGE_SIZE, node, altmap);
29c71111d   Andy Whitcroft   vmemmap: generify...
143
  		if (!p)
9dce07f1a   Al Viro   NULL noise: fs/*,...
144
  			return NULL;
29c71111d   Andy Whitcroft   vmemmap: generify...
145
146
147
148
  		entry = pfn_pte(__pa(p) >> PAGE_SHIFT, PAGE_KERNEL);
  		set_pte_at(&init_mm, addr, pte, entry);
  	}
  	return pte;
8f6aac419   Christoph Lameter   Generic Virtual M...
149
  }
f7f99100d   Pavel Tatashin   mm: stop zeroing ...
150
151
152
153
154
155
156
157
158
159
  static void * __meminit vmemmap_alloc_block_zero(unsigned long size, int node)
  {
  	void *p = vmemmap_alloc_block(size, node);
  
  	if (!p)
  		return NULL;
  	memset(p, 0, size);
  
  	return p;
  }
29c71111d   Andy Whitcroft   vmemmap: generify...
160
  pmd_t * __meminit vmemmap_pmd_populate(pud_t *pud, unsigned long addr, int node)
8f6aac419   Christoph Lameter   Generic Virtual M...
161
  {
29c71111d   Andy Whitcroft   vmemmap: generify...
162
163
  	pmd_t *pmd = pmd_offset(pud, addr);
  	if (pmd_none(*pmd)) {
f7f99100d   Pavel Tatashin   mm: stop zeroing ...
164
  		void *p = vmemmap_alloc_block_zero(PAGE_SIZE, node);
29c71111d   Andy Whitcroft   vmemmap: generify...
165
  		if (!p)
9dce07f1a   Al Viro   NULL noise: fs/*,...
166
  			return NULL;
29c71111d   Andy Whitcroft   vmemmap: generify...
167
  		pmd_populate_kernel(&init_mm, pmd, p);
8f6aac419   Christoph Lameter   Generic Virtual M...
168
  	}
29c71111d   Andy Whitcroft   vmemmap: generify...
169
  	return pmd;
8f6aac419   Christoph Lameter   Generic Virtual M...
170
  }
8f6aac419   Christoph Lameter   Generic Virtual M...
171

c2febafc6   Kirill A. Shutemov   mm: convert gener...
172
  pud_t * __meminit vmemmap_pud_populate(p4d_t *p4d, unsigned long addr, int node)
8f6aac419   Christoph Lameter   Generic Virtual M...
173
  {
c2febafc6   Kirill A. Shutemov   mm: convert gener...
174
  	pud_t *pud = pud_offset(p4d, addr);
29c71111d   Andy Whitcroft   vmemmap: generify...
175
  	if (pud_none(*pud)) {
f7f99100d   Pavel Tatashin   mm: stop zeroing ...
176
  		void *p = vmemmap_alloc_block_zero(PAGE_SIZE, node);
29c71111d   Andy Whitcroft   vmemmap: generify...
177
  		if (!p)
9dce07f1a   Al Viro   NULL noise: fs/*,...
178
  			return NULL;
29c71111d   Andy Whitcroft   vmemmap: generify...
179
180
181
182
  		pud_populate(&init_mm, pud, p);
  	}
  	return pud;
  }
8f6aac419   Christoph Lameter   Generic Virtual M...
183

c2febafc6   Kirill A. Shutemov   mm: convert gener...
184
185
186
187
  p4d_t * __meminit vmemmap_p4d_populate(pgd_t *pgd, unsigned long addr, int node)
  {
  	p4d_t *p4d = p4d_offset(pgd, addr);
  	if (p4d_none(*p4d)) {
f7f99100d   Pavel Tatashin   mm: stop zeroing ...
188
  		void *p = vmemmap_alloc_block_zero(PAGE_SIZE, node);
c2febafc6   Kirill A. Shutemov   mm: convert gener...
189
190
191
192
193
194
  		if (!p)
  			return NULL;
  		p4d_populate(&init_mm, p4d, p);
  	}
  	return p4d;
  }
29c71111d   Andy Whitcroft   vmemmap: generify...
195
196
197
198
  pgd_t * __meminit vmemmap_pgd_populate(unsigned long addr, int node)
  {
  	pgd_t *pgd = pgd_offset_k(addr);
  	if (pgd_none(*pgd)) {
f7f99100d   Pavel Tatashin   mm: stop zeroing ...
199
  		void *p = vmemmap_alloc_block_zero(PAGE_SIZE, node);
29c71111d   Andy Whitcroft   vmemmap: generify...
200
  		if (!p)
9dce07f1a   Al Viro   NULL noise: fs/*,...
201
  			return NULL;
29c71111d   Andy Whitcroft   vmemmap: generify...
202
  		pgd_populate(&init_mm, pgd, p);
8f6aac419   Christoph Lameter   Generic Virtual M...
203
  	}
29c71111d   Andy Whitcroft   vmemmap: generify...
204
  	return pgd;
8f6aac419   Christoph Lameter   Generic Virtual M...
205
  }
1d9cfee75   Anshuman Khandual   mm/sparsemem: ena...
206
207
  int __meminit vmemmap_populate_basepages(unsigned long start, unsigned long end,
  					 int node, struct vmem_altmap *altmap)
8f6aac419   Christoph Lameter   Generic Virtual M...
208
  {
0aad818b2   Johannes Weiner   sparse-vmemmap: s...
209
  	unsigned long addr = start;
29c71111d   Andy Whitcroft   vmemmap: generify...
210
  	pgd_t *pgd;
c2febafc6   Kirill A. Shutemov   mm: convert gener...
211
  	p4d_t *p4d;
29c71111d   Andy Whitcroft   vmemmap: generify...
212
213
214
  	pud_t *pud;
  	pmd_t *pmd;
  	pte_t *pte;
8f6aac419   Christoph Lameter   Generic Virtual M...
215

29c71111d   Andy Whitcroft   vmemmap: generify...
216
217
218
219
  	for (; addr < end; addr += PAGE_SIZE) {
  		pgd = vmemmap_pgd_populate(addr, node);
  		if (!pgd)
  			return -ENOMEM;
c2febafc6   Kirill A. Shutemov   mm: convert gener...
220
221
222
223
  		p4d = vmemmap_p4d_populate(pgd, addr, node);
  		if (!p4d)
  			return -ENOMEM;
  		pud = vmemmap_pud_populate(p4d, addr, node);
29c71111d   Andy Whitcroft   vmemmap: generify...
224
225
226
227
228
  		if (!pud)
  			return -ENOMEM;
  		pmd = vmemmap_pmd_populate(pud, addr, node);
  		if (!pmd)
  			return -ENOMEM;
1d9cfee75   Anshuman Khandual   mm/sparsemem: ena...
229
  		pte = vmemmap_pte_populate(pmd, addr, node, altmap);
29c71111d   Andy Whitcroft   vmemmap: generify...
230
231
232
  		if (!pte)
  			return -ENOMEM;
  		vmemmap_verify(pte, node, addr, addr + PAGE_SIZE);
8f6aac419   Christoph Lameter   Generic Virtual M...
233
  	}
29c71111d   Andy Whitcroft   vmemmap: generify...
234
235
  
  	return 0;
8f6aac419   Christoph Lameter   Generic Virtual M...
236
  }
8f6aac419   Christoph Lameter   Generic Virtual M...
237

e9c0a3f05   Dan Williams   mm/sparsemem: con...
238
239
  struct page * __meminit __populate_section_memmap(unsigned long pfn,
  		unsigned long nr_pages, int nid, struct vmem_altmap *altmap)
8f6aac419   Christoph Lameter   Generic Virtual M...
240
  {
6cda72047   Wei Yang   mm/sparse: only s...
241
242
243
244
245
246
  	unsigned long start = (unsigned long) pfn_to_page(pfn);
  	unsigned long end = start + nr_pages * sizeof(struct page);
  
  	if (WARN_ON_ONCE(!IS_ALIGNED(pfn, PAGES_PER_SUBSECTION) ||
  		!IS_ALIGNED(nr_pages, PAGES_PER_SUBSECTION)))
  		return NULL;
0aad818b2   Johannes Weiner   sparse-vmemmap: s...
247

7b73d978a   Christoph Hellwig   mm: pass the vmem...
248
  	if (vmemmap_populate(start, end, nid, altmap))
8f6aac419   Christoph Lameter   Generic Virtual M...
249
  		return NULL;
e9c0a3f05   Dan Williams   mm/sparsemem: con...
250
  	return pfn_to_page(pfn);
8f6aac419   Christoph Lameter   Generic Virtual M...
251
  }