blob: bb42ac116a255a37c385c3da7d976420e42926b3 [file] [log] [blame]
Catalin Marinasc1cc1552012-03-05 11:49:27 +00001/*
2 * Based on arch/arm/mm/mmu.c
3 *
4 * Copyright (C) 1995-2005 Russell King
5 * Copyright (C) 2012 ARM Ltd.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <linux/export.h>
21#include <linux/kernel.h>
22#include <linux/errno.h>
23#include <linux/init.h>
Ard Biesheuvel61bd93c2015-06-01 13:40:32 +020024#include <linux/libfdt.h>
Catalin Marinasc1cc1552012-03-05 11:49:27 +000025#include <linux/mman.h>
26#include <linux/nodemask.h>
27#include <linux/memblock.h>
28#include <linux/fs.h>
Catalin Marinas2475ff92012-10-23 14:55:08 +010029#include <linux/io.h>
Catalin Marinas41089352015-01-29 17:33:35 +000030#include <linux/slab.h>
Laura Abbottda141702015-01-21 17:36:06 -080031#include <linux/stop_machine.h>
Catalin Marinasc1cc1552012-03-05 11:49:27 +000032
33#include <asm/cputype.h>
Laura Abbottaf86e592014-11-21 21:50:42 +000034#include <asm/fixmap.h>
Suzuki K. Pouloseb433dce2015-10-19 14:19:28 +010035#include <asm/kernel-pgtable.h>
Catalin Marinasc1cc1552012-03-05 11:49:27 +000036#include <asm/sections.h>
37#include <asm/setup.h>
38#include <asm/sizes.h>
39#include <asm/tlb.h>
Jungseok Leec79b9542014-05-12 18:40:51 +090040#include <asm/memblock.h>
Catalin Marinasc1cc1552012-03-05 11:49:27 +000041#include <asm/mmu_context.h>
42
43#include "mm.h"
44
Ard Biesheuveldd006da2015-03-19 16:42:27 +000045u64 idmap_t0sz = TCR_T0SZ(VA_BITS);
46
Catalin Marinasc1cc1552012-03-05 11:49:27 +000047/*
48 * Empty_zero_page is a special page that is used for zero-initialized data
49 * and COW.
50 */
51struct page *empty_zero_page;
52EXPORT_SYMBOL(empty_zero_page);
53
Catalin Marinasc1cc1552012-03-05 11:49:27 +000054pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
55 unsigned long size, pgprot_t vma_prot)
56{
57 if (!pfn_valid(pfn))
58 return pgprot_noncached(vma_prot);
59 else if (file->f_flags & O_SYNC)
60 return pgprot_writecombine(vma_prot);
61 return vma_prot;
62}
63EXPORT_SYMBOL(phys_mem_access_prot);
64
65static void __init *early_alloc(unsigned long sz)
66{
Suzuki K. Poulose71423922015-11-20 17:45:40 +000067 phys_addr_t phys;
68 void *ptr;
69
70 phys = memblock_alloc(sz, sz);
71 BUG_ON(!phys);
72 ptr = __va(phys);
Catalin Marinasc1cc1552012-03-05 11:49:27 +000073 memset(ptr, 0, sz);
74 return ptr;
75}
76
Laura Abbottda141702015-01-21 17:36:06 -080077/*
78 * remap a PMD into pages
79 */
80static void split_pmd(pmd_t *pmd, pte_t *pte)
81{
82 unsigned long pfn = pmd_pfn(*pmd);
83 int i = 0;
84
85 do {
86 /*
87 * Need to have the least restrictive permissions available
Catalin Marinas667c2752015-11-26 15:42:41 +000088 * permissions will be fixed up later
Laura Abbottda141702015-01-21 17:36:06 -080089 */
Catalin Marinas667c2752015-11-26 15:42:41 +000090 set_pte(pte, pfn_pte(pfn, PAGE_KERNEL_EXEC));
Laura Abbottda141702015-01-21 17:36:06 -080091 pfn++;
92 } while (pte++, i++, i < PTRS_PER_PTE);
93}
94
95static void alloc_init_pte(pmd_t *pmd, unsigned long addr,
Catalin Marinas667c2752015-11-26 15:42:41 +000096 unsigned long end, unsigned long pfn,
Laura Abbottda141702015-01-21 17:36:06 -080097 pgprot_t prot,
98 void *(*alloc)(unsigned long size))
Catalin Marinasc1cc1552012-03-05 11:49:27 +000099{
100 pte_t *pte;
101
Mark Rutlanda1c76572015-01-27 16:36:30 +0000102 if (pmd_none(*pmd) || pmd_sect(*pmd)) {
Laura Abbottda141702015-01-21 17:36:06 -0800103 pte = alloc(PTRS_PER_PTE * sizeof(pte_t));
104 if (pmd_sect(*pmd))
105 split_pmd(pmd, pte);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000106 __pmd_populate(pmd, __pa(pte), PMD_TYPE_TABLE);
Laura Abbottda141702015-01-21 17:36:06 -0800107 flush_tlb_all();
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000108 }
Mark Rutlanda1c76572015-01-27 16:36:30 +0000109 BUG_ON(pmd_bad(*pmd));
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000110
111 pte = pte_offset_kernel(pmd, addr);
112 do {
Catalin Marinas667c2752015-11-26 15:42:41 +0000113 set_pte(pte, pfn_pte(pfn, prot));
114 pfn++;
115 } while (pte++, addr += PAGE_SIZE, addr != end);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000116}
117
Jisheng Zhang9a17a212015-11-12 20:04:43 +0800118static void split_pud(pud_t *old_pud, pmd_t *pmd)
Laura Abbottda141702015-01-21 17:36:06 -0800119{
120 unsigned long addr = pud_pfn(*old_pud) << PAGE_SHIFT;
121 pgprot_t prot = __pgprot(pud_val(*old_pud) ^ addr);
122 int i = 0;
123
124 do {
Ard Biesheuvel1e43ba92015-06-30 18:04:49 +0200125 set_pmd(pmd, __pmd(addr | pgprot_val(prot)));
Laura Abbottda141702015-01-21 17:36:06 -0800126 addr += PMD_SIZE;
127 } while (pmd++, i++, i < PTRS_PER_PMD);
128}
129
130static void alloc_init_pmd(struct mm_struct *mm, pud_t *pud,
Ard Biesheuvele1e1fdd2014-10-20 14:02:15 +0200131 unsigned long addr, unsigned long end,
Laura Abbottda141702015-01-21 17:36:06 -0800132 phys_addr_t phys, pgprot_t prot,
133 void *(*alloc)(unsigned long size))
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000134{
135 pmd_t *pmd;
136 unsigned long next;
137
138 /*
139 * Check for initial section mappings in the pgd/pud and remove them.
140 */
Mark Rutlanda1c76572015-01-27 16:36:30 +0000141 if (pud_none(*pud) || pud_sect(*pud)) {
Laura Abbottda141702015-01-21 17:36:06 -0800142 pmd = alloc(PTRS_PER_PMD * sizeof(pmd_t));
143 if (pud_sect(*pud)) {
144 /*
145 * need to have the 1G of mappings continue to be
146 * present
147 */
148 split_pud(pud, pmd);
149 }
Ard Biesheuvele1e1fdd2014-10-20 14:02:15 +0200150 pud_populate(mm, pud, pmd);
Laura Abbottda141702015-01-21 17:36:06 -0800151 flush_tlb_all();
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000152 }
Mark Rutlanda1c76572015-01-27 16:36:30 +0000153 BUG_ON(pud_bad(*pud));
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000154
155 pmd = pmd_offset(pud, addr);
156 do {
157 next = pmd_addr_end(addr, end);
158 /* try section mapping first */
Catalin Marinasa55f9922014-02-04 16:01:31 +0000159 if (((addr | next | phys) & ~SECTION_MASK) == 0) {
160 pmd_t old_pmd =*pmd;
Ard Biesheuvel8ce837c2014-10-20 15:42:07 +0200161 set_pmd(pmd, __pmd(phys |
162 pgprot_val(mk_sect_prot(prot))));
Catalin Marinasa55f9922014-02-04 16:01:31 +0000163 /*
164 * Check for previous table entries created during
165 * boot (__create_page_tables) and flush them.
166 */
zhichang.yuan523d6e92014-12-09 07:26:47 +0000167 if (!pmd_none(old_pmd)) {
Catalin Marinasa55f9922014-02-04 16:01:31 +0000168 flush_tlb_all();
zhichang.yuan523d6e92014-12-09 07:26:47 +0000169 if (pmd_table(old_pmd)) {
170 phys_addr_t table = __pa(pte_offset_map(&old_pmd, 0));
Catalin Marinas41089352015-01-29 17:33:35 +0000171 if (!WARN_ON_ONCE(slab_is_available()))
172 memblock_free(table, PAGE_SIZE);
zhichang.yuan523d6e92014-12-09 07:26:47 +0000173 }
174 }
Catalin Marinasa55f9922014-02-04 16:01:31 +0000175 } else {
Catalin Marinas667c2752015-11-26 15:42:41 +0000176 alloc_init_pte(pmd, addr, next, __phys_to_pfn(phys),
177 prot, alloc);
Catalin Marinasa55f9922014-02-04 16:01:31 +0000178 }
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000179 phys += next - addr;
180 } while (pmd++, addr = next, addr != end);
181}
182
Laura Abbottda141702015-01-21 17:36:06 -0800183static inline bool use_1G_block(unsigned long addr, unsigned long next,
184 unsigned long phys)
185{
186 if (PAGE_SHIFT != 12)
187 return false;
188
189 if (((addr | next | phys) & ~PUD_MASK) != 0)
190 return false;
191
192 return true;
193}
194
195static void alloc_init_pud(struct mm_struct *mm, pgd_t *pgd,
Ard Biesheuvele1e1fdd2014-10-20 14:02:15 +0200196 unsigned long addr, unsigned long end,
Laura Abbottda141702015-01-21 17:36:06 -0800197 phys_addr_t phys, pgprot_t prot,
198 void *(*alloc)(unsigned long size))
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000199{
Jungseok Leec79b9542014-05-12 18:40:51 +0900200 pud_t *pud;
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000201 unsigned long next;
202
Jungseok Leec79b9542014-05-12 18:40:51 +0900203 if (pgd_none(*pgd)) {
Laura Abbottda141702015-01-21 17:36:06 -0800204 pud = alloc(PTRS_PER_PUD * sizeof(pud_t));
Ard Biesheuvele1e1fdd2014-10-20 14:02:15 +0200205 pgd_populate(mm, pgd, pud);
Jungseok Leec79b9542014-05-12 18:40:51 +0900206 }
207 BUG_ON(pgd_bad(*pgd));
208
209 pud = pud_offset(pgd, addr);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000210 do {
211 next = pud_addr_end(addr, end);
Steve Capper206a2a72014-05-06 14:02:27 +0100212
213 /*
214 * For 4K granule only, attempt to put down a 1GB block
215 */
Laura Abbottda141702015-01-21 17:36:06 -0800216 if (use_1G_block(addr, next, phys)) {
Steve Capper206a2a72014-05-06 14:02:27 +0100217 pud_t old_pud = *pud;
Ard Biesheuvel8ce837c2014-10-20 15:42:07 +0200218 set_pud(pud, __pud(phys |
219 pgprot_val(mk_sect_prot(prot))));
Steve Capper206a2a72014-05-06 14:02:27 +0100220
221 /*
222 * If we have an old value for a pud, it will
223 * be pointing to a pmd table that we no longer
224 * need (from swapper_pg_dir).
225 *
226 * Look up the old pmd table and free it.
227 */
228 if (!pud_none(old_pud)) {
Steve Capper206a2a72014-05-06 14:02:27 +0100229 flush_tlb_all();
zhichang.yuan523d6e92014-12-09 07:26:47 +0000230 if (pud_table(old_pud)) {
231 phys_addr_t table = __pa(pmd_offset(&old_pud, 0));
Catalin Marinas41089352015-01-29 17:33:35 +0000232 if (!WARN_ON_ONCE(slab_is_available()))
233 memblock_free(table, PAGE_SIZE);
zhichang.yuan523d6e92014-12-09 07:26:47 +0000234 }
Steve Capper206a2a72014-05-06 14:02:27 +0100235 }
236 } else {
Laura Abbottda141702015-01-21 17:36:06 -0800237 alloc_init_pmd(mm, pud, addr, next, phys, prot, alloc);
Steve Capper206a2a72014-05-06 14:02:27 +0100238 }
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000239 phys += next - addr;
240 } while (pud++, addr = next, addr != end);
241}
242
243/*
244 * Create the page directory entries and any necessary page tables for the
245 * mapping specified by 'md'.
246 */
Laura Abbottda141702015-01-21 17:36:06 -0800247static void __create_mapping(struct mm_struct *mm, pgd_t *pgd,
Ard Biesheuvele1e1fdd2014-10-20 14:02:15 +0200248 phys_addr_t phys, unsigned long virt,
Laura Abbottda141702015-01-21 17:36:06 -0800249 phys_addr_t size, pgprot_t prot,
250 void *(*alloc)(unsigned long size))
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000251{
252 unsigned long addr, length, end, next;
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000253
Mark Rutlandcc5d2b32015-11-23 13:26:19 +0000254 /*
255 * If the virtual and physical address don't have the same offset
256 * within a page, we cannot map the region as the caller expects.
257 */
258 if (WARN_ON((phys ^ virt) & ~PAGE_MASK))
259 return;
260
Mark Rutland9c4e08a2015-11-23 13:26:20 +0000261 phys &= PAGE_MASK;
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000262 addr = virt & PAGE_MASK;
263 length = PAGE_ALIGN(size + (virt & ~PAGE_MASK));
264
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000265 end = addr + length;
266 do {
267 next = pgd_addr_end(addr, end);
Laura Abbottda141702015-01-21 17:36:06 -0800268 alloc_init_pud(mm, pgd, addr, next, phys, prot, alloc);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000269 phys += next - addr;
270 } while (pgd++, addr = next, addr != end);
271}
272
Laura Abbottda141702015-01-21 17:36:06 -0800273static void *late_alloc(unsigned long size)
274{
275 void *ptr;
276
277 BUG_ON(size > PAGE_SIZE);
278 ptr = (void *)__get_free_page(PGALLOC_GFP);
279 BUG_ON(!ptr);
280 return ptr;
281}
282
Mark Rutlandc53e0ba2015-07-28 10:31:06 +0100283static void __init create_mapping(phys_addr_t phys, unsigned long virt,
Laura Abbottda141702015-01-21 17:36:06 -0800284 phys_addr_t size, pgprot_t prot)
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400285{
286 if (virt < VMALLOC_START) {
287 pr_warn("BUG: not creating mapping for %pa at 0x%016lx - outside kernel range\n",
288 &phys, virt);
289 return;
290 }
Ard Biesheuvele1e1fdd2014-10-20 14:02:15 +0200291 __create_mapping(&init_mm, pgd_offset_k(virt & PAGE_MASK), phys, virt,
Laura Abbottda141702015-01-21 17:36:06 -0800292 size, prot, early_alloc);
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400293}
294
Ard Biesheuvel8ce837c2014-10-20 15:42:07 +0200295void __init create_pgd_mapping(struct mm_struct *mm, phys_addr_t phys,
296 unsigned long virt, phys_addr_t size,
297 pgprot_t prot)
298{
Laura Abbottda141702015-01-21 17:36:06 -0800299 __create_mapping(mm, pgd_offset(mm, virt), phys, virt, size, prot,
Ard Biesheuvel60305db2015-01-22 10:01:40 +0000300 late_alloc);
Mark Salterd7ecbdd2014-03-12 12:28:06 -0400301}
302
Laura Abbottda141702015-01-21 17:36:06 -0800303static void create_mapping_late(phys_addr_t phys, unsigned long virt,
304 phys_addr_t size, pgprot_t prot)
305{
306 if (virt < VMALLOC_START) {
307 pr_warn("BUG: not creating mapping for %pa at 0x%016lx - outside kernel range\n",
308 &phys, virt);
309 return;
310 }
311
312 return __create_mapping(&init_mm, pgd_offset_k(virt & PAGE_MASK),
313 phys, virt, size, prot, late_alloc);
314}
315
316#ifdef CONFIG_DEBUG_RODATA
317static void __init __map_memblock(phys_addr_t start, phys_addr_t end)
318{
319 /*
320 * Set up the executable regions using the existing section mappings
321 * for now. This will get more fine grained later once all memory
322 * is mapped
323 */
Ard Biesheuvel4fee9f32015-11-16 11:18:14 +0100324 unsigned long kernel_x_start = round_down(__pa(_stext), SWAPPER_BLOCK_SIZE);
325 unsigned long kernel_x_end = round_up(__pa(__init_end), SWAPPER_BLOCK_SIZE);
Laura Abbottda141702015-01-21 17:36:06 -0800326
327 if (end < kernel_x_start) {
328 create_mapping(start, __phys_to_virt(start),
329 end - start, PAGE_KERNEL);
330 } else if (start >= kernel_x_end) {
331 create_mapping(start, __phys_to_virt(start),
332 end - start, PAGE_KERNEL);
333 } else {
334 if (start < kernel_x_start)
335 create_mapping(start, __phys_to_virt(start),
336 kernel_x_start - start,
337 PAGE_KERNEL);
338 create_mapping(kernel_x_start,
339 __phys_to_virt(kernel_x_start),
340 kernel_x_end - kernel_x_start,
341 PAGE_KERNEL_EXEC);
342 if (kernel_x_end < end)
343 create_mapping(kernel_x_end,
344 __phys_to_virt(kernel_x_end),
345 end - kernel_x_end,
346 PAGE_KERNEL);
347 }
348
349}
350#else
351static void __init __map_memblock(phys_addr_t start, phys_addr_t end)
352{
353 create_mapping(start, __phys_to_virt(start), end - start,
354 PAGE_KERNEL_EXEC);
355}
356#endif
357
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000358static void __init map_mem(void)
359{
360 struct memblock_region *reg;
Catalin Marinase25208f2013-08-23 18:04:44 +0100361 phys_addr_t limit;
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000362
Steve Capperf6bc87c2013-04-30 11:00:33 +0100363 /*
364 * Temporarily limit the memblock range. We need to do this as
365 * create_mapping requires puds, pmds and ptes to be allocated from
366 * memory addressable from the initial direct kernel mapping.
367 *
Catalin Marinas3dec0fe2014-10-24 18:16:47 +0100368 * The initial direct kernel mapping, located at swapper_pg_dir, gives
Suzuki K. Pouloseb433dce2015-10-19 14:19:28 +0100369 * us PUD_SIZE (with SECTION maps) or PMD_SIZE (without SECTION maps,
370 * memory starting from PHYS_OFFSET (which must be aligned to 2MB as
371 * per Documentation/arm64/booting.txt).
Steve Capperf6bc87c2013-04-30 11:00:33 +0100372 */
Suzuki K. Pouloseb433dce2015-10-19 14:19:28 +0100373 limit = PHYS_OFFSET + SWAPPER_INIT_MAP_SIZE;
Catalin Marinase25208f2013-08-23 18:04:44 +0100374 memblock_set_current_limit(limit);
Steve Capperf6bc87c2013-04-30 11:00:33 +0100375
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000376 /* map all the memory banks */
377 for_each_memblock(memory, reg) {
378 phys_addr_t start = reg->base;
379 phys_addr_t end = start + reg->size;
380
381 if (start >= end)
382 break;
383
Suzuki K. Pouloseb433dce2015-10-19 14:19:28 +0100384 if (ARM64_SWAPPER_USES_SECTION_MAPS) {
385 /*
386 * For the first memory bank align the start address and
387 * current memblock limit to prevent create_mapping() from
388 * allocating pte page tables from unmapped memory. With
389 * the section maps, if the first block doesn't end on section
390 * size boundary, create_mapping() will try to allocate a pte
391 * page, which may be returned from an unmapped area.
392 * When section maps are not used, the pte page table for the
393 * current limit is already present in swapper_pg_dir.
394 */
395 if (start < limit)
396 start = ALIGN(start, SECTION_SIZE);
397 if (end < limit) {
398 limit = end & SECTION_MASK;
399 memblock_set_current_limit(limit);
400 }
Catalin Marinase25208f2013-08-23 18:04:44 +0100401 }
Laura Abbottda141702015-01-21 17:36:06 -0800402 __map_memblock(start, end);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000403 }
Steve Capperf6bc87c2013-04-30 11:00:33 +0100404
405 /* Limit no longer required. */
406 memblock_set_current_limit(MEMBLOCK_ALLOC_ANYWHERE);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000407}
408
Jisheng Zhang9a17a212015-11-12 20:04:43 +0800409static void __init fixup_executable(void)
Laura Abbottda141702015-01-21 17:36:06 -0800410{
411#ifdef CONFIG_DEBUG_RODATA
412 /* now that we are actually fully mapped, make the start/end more fine grained */
Ard Biesheuvel4fee9f32015-11-16 11:18:14 +0100413 if (!IS_ALIGNED((unsigned long)_stext, SWAPPER_BLOCK_SIZE)) {
Laura Abbottda141702015-01-21 17:36:06 -0800414 unsigned long aligned_start = round_down(__pa(_stext),
Ard Biesheuvel4fee9f32015-11-16 11:18:14 +0100415 SWAPPER_BLOCK_SIZE);
Laura Abbottda141702015-01-21 17:36:06 -0800416
417 create_mapping(aligned_start, __phys_to_virt(aligned_start),
418 __pa(_stext) - aligned_start,
419 PAGE_KERNEL);
420 }
421
Ard Biesheuvel4fee9f32015-11-16 11:18:14 +0100422 if (!IS_ALIGNED((unsigned long)__init_end, SWAPPER_BLOCK_SIZE)) {
Laura Abbottda141702015-01-21 17:36:06 -0800423 unsigned long aligned_end = round_up(__pa(__init_end),
Ard Biesheuvel4fee9f32015-11-16 11:18:14 +0100424 SWAPPER_BLOCK_SIZE);
Laura Abbottda141702015-01-21 17:36:06 -0800425 create_mapping(__pa(__init_end), (unsigned long)__init_end,
426 aligned_end - __pa(__init_end),
427 PAGE_KERNEL);
428 }
429#endif
430}
431
432#ifdef CONFIG_DEBUG_RODATA
433void mark_rodata_ro(void)
434{
435 create_mapping_late(__pa(_stext), (unsigned long)_stext,
436 (unsigned long)_etext - (unsigned long)_stext,
Laura Abbott0b2aa5b2015-11-12 12:21:10 -0800437 PAGE_KERNEL_ROX);
Laura Abbottda141702015-01-21 17:36:06 -0800438
439}
440#endif
441
442void fixup_init(void)
443{
444 create_mapping_late(__pa(__init_begin), (unsigned long)__init_begin,
445 (unsigned long)__init_end - (unsigned long)__init_begin,
446 PAGE_KERNEL);
447}
448
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000449/*
450 * paging_init() sets up the page tables, initialises the zone memory
451 * maps and sets up the zero page.
452 */
453void __init paging_init(void)
454{
455 void *zero_page;
456
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000457 map_mem();
Laura Abbottda141702015-01-21 17:36:06 -0800458 fixup_executable();
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000459
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000460 /* allocate the zero page. */
461 zero_page = early_alloc(PAGE_SIZE);
462
463 bootmem_init();
464
465 empty_zero_page = virt_to_page(zero_page);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000466
467 /*
468 * TTBR0 is only used for the identity mapping at this stage. Make it
469 * point to zero page to avoid speculatively fetching new entries.
470 */
471 cpu_set_reserved_ttbr0();
Will Deacon8e63d382015-10-06 18:46:23 +0100472 local_flush_tlb_all();
Ard Biesheuveldd006da2015-03-19 16:42:27 +0000473 cpu_set_default_tcr_t0sz();
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000474}
475
476/*
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000477 * Check whether a kernel address is valid (derived from arch/x86/).
478 */
479int kern_addr_valid(unsigned long addr)
480{
481 pgd_t *pgd;
482 pud_t *pud;
483 pmd_t *pmd;
484 pte_t *pte;
485
486 if ((((long)addr) >> VA_BITS) != -1UL)
487 return 0;
488
489 pgd = pgd_offset_k(addr);
490 if (pgd_none(*pgd))
491 return 0;
492
493 pud = pud_offset(pgd, addr);
494 if (pud_none(*pud))
495 return 0;
496
Steve Capper206a2a72014-05-06 14:02:27 +0100497 if (pud_sect(*pud))
498 return pfn_valid(pud_pfn(*pud));
499
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000500 pmd = pmd_offset(pud, addr);
501 if (pmd_none(*pmd))
502 return 0;
503
Dave Andersonda6e4cb2014-04-15 18:53:24 +0100504 if (pmd_sect(*pmd))
505 return pfn_valid(pmd_pfn(*pmd));
506
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000507 pte = pte_offset_kernel(pmd, addr);
508 if (pte_none(*pte))
509 return 0;
510
511 return pfn_valid(pte_pfn(*pte));
512}
513#ifdef CONFIG_SPARSEMEM_VMEMMAP
Suzuki K. Pouloseb433dce2015-10-19 14:19:28 +0100514#if !ARM64_SWAPPER_USES_SECTION_MAPS
Johannes Weiner0aad8182013-04-29 15:07:50 -0700515int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node)
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000516{
Johannes Weiner0aad8182013-04-29 15:07:50 -0700517 return vmemmap_populate_basepages(start, end, node);
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000518}
Suzuki K. Pouloseb433dce2015-10-19 14:19:28 +0100519#else /* !ARM64_SWAPPER_USES_SECTION_MAPS */
Johannes Weiner0aad8182013-04-29 15:07:50 -0700520int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node)
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000521{
Johannes Weiner0aad8182013-04-29 15:07:50 -0700522 unsigned long addr = start;
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000523 unsigned long next;
524 pgd_t *pgd;
525 pud_t *pud;
526 pmd_t *pmd;
527
528 do {
529 next = pmd_addr_end(addr, end);
530
531 pgd = vmemmap_pgd_populate(addr, node);
532 if (!pgd)
533 return -ENOMEM;
534
535 pud = vmemmap_pud_populate(pgd, addr, node);
536 if (!pud)
537 return -ENOMEM;
538
539 pmd = pmd_offset(pud, addr);
540 if (pmd_none(*pmd)) {
541 void *p = NULL;
542
543 p = vmemmap_alloc_block_buf(PMD_SIZE, node);
544 if (!p)
545 return -ENOMEM;
546
Catalin Marinasa501e322014-04-03 15:57:15 +0100547 set_pmd(pmd, __pmd(__pa(p) | PROT_SECT_NORMAL));
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000548 } else
549 vmemmap_verify((pte_t *)pmd, node, addr, next);
550 } while (addr = next, addr != end);
551
552 return 0;
553}
554#endif /* CONFIG_ARM64_64K_PAGES */
Johannes Weiner0aad8182013-04-29 15:07:50 -0700555void vmemmap_free(unsigned long start, unsigned long end)
Tang Chen01975182013-02-22 16:33:08 -0800556{
557}
Catalin Marinasc1cc1552012-03-05 11:49:27 +0000558#endif /* CONFIG_SPARSEMEM_VMEMMAP */
Laura Abbottaf86e592014-11-21 21:50:42 +0000559
560static pte_t bm_pte[PTRS_PER_PTE] __page_aligned_bss;
Kirill A. Shutemov9f25e6a2015-04-14 15:45:39 -0700561#if CONFIG_PGTABLE_LEVELS > 2
Laura Abbottaf86e592014-11-21 21:50:42 +0000562static pmd_t bm_pmd[PTRS_PER_PMD] __page_aligned_bss;
563#endif
Kirill A. Shutemov9f25e6a2015-04-14 15:45:39 -0700564#if CONFIG_PGTABLE_LEVELS > 3
Laura Abbottaf86e592014-11-21 21:50:42 +0000565static pud_t bm_pud[PTRS_PER_PUD] __page_aligned_bss;
566#endif
567
568static inline pud_t * fixmap_pud(unsigned long addr)
569{
570 pgd_t *pgd = pgd_offset_k(addr);
571
572 BUG_ON(pgd_none(*pgd) || pgd_bad(*pgd));
573
574 return pud_offset(pgd, addr);
575}
576
577static inline pmd_t * fixmap_pmd(unsigned long addr)
578{
579 pud_t *pud = fixmap_pud(addr);
580
581 BUG_ON(pud_none(*pud) || pud_bad(*pud));
582
583 return pmd_offset(pud, addr);
584}
585
586static inline pte_t * fixmap_pte(unsigned long addr)
587{
588 pmd_t *pmd = fixmap_pmd(addr);
589
590 BUG_ON(pmd_none(*pmd) || pmd_bad(*pmd));
591
592 return pte_offset_kernel(pmd, addr);
593}
594
595void __init early_fixmap_init(void)
596{
597 pgd_t *pgd;
598 pud_t *pud;
599 pmd_t *pmd;
600 unsigned long addr = FIXADDR_START;
601
602 pgd = pgd_offset_k(addr);
603 pgd_populate(&init_mm, pgd, bm_pud);
604 pud = pud_offset(pgd, addr);
605 pud_populate(&init_mm, pud, bm_pmd);
606 pmd = pmd_offset(pud, addr);
607 pmd_populate_kernel(&init_mm, pmd, bm_pte);
608
609 /*
610 * The boot-ioremap range spans multiple pmds, for which
611 * we are not preparted:
612 */
613 BUILD_BUG_ON((__fix_to_virt(FIX_BTMAP_BEGIN) >> PMD_SHIFT)
614 != (__fix_to_virt(FIX_BTMAP_END) >> PMD_SHIFT));
615
616 if ((pmd != fixmap_pmd(fix_to_virt(FIX_BTMAP_BEGIN)))
617 || pmd != fixmap_pmd(fix_to_virt(FIX_BTMAP_END))) {
618 WARN_ON(1);
619 pr_warn("pmd %p != %p, %p\n",
620 pmd, fixmap_pmd(fix_to_virt(FIX_BTMAP_BEGIN)),
621 fixmap_pmd(fix_to_virt(FIX_BTMAP_END)));
622 pr_warn("fix_to_virt(FIX_BTMAP_BEGIN): %08lx\n",
623 fix_to_virt(FIX_BTMAP_BEGIN));
624 pr_warn("fix_to_virt(FIX_BTMAP_END): %08lx\n",
625 fix_to_virt(FIX_BTMAP_END));
626
627 pr_warn("FIX_BTMAP_END: %d\n", FIX_BTMAP_END);
628 pr_warn("FIX_BTMAP_BEGIN: %d\n", FIX_BTMAP_BEGIN);
629 }
630}
631
632void __set_fixmap(enum fixed_addresses idx,
633 phys_addr_t phys, pgprot_t flags)
634{
635 unsigned long addr = __fix_to_virt(idx);
636 pte_t *pte;
637
Mark Rutlandb63dbef2015-03-04 13:27:35 +0000638 BUG_ON(idx <= FIX_HOLE || idx >= __end_of_fixed_addresses);
Laura Abbottaf86e592014-11-21 21:50:42 +0000639
640 pte = fixmap_pte(addr);
641
642 if (pgprot_val(flags)) {
643 set_pte(pte, pfn_pte(phys >> PAGE_SHIFT, flags));
644 } else {
645 pte_clear(&init_mm, addr, pte);
646 flush_tlb_kernel_range(addr, addr+PAGE_SIZE);
647 }
648}
Ard Biesheuvel61bd93c2015-06-01 13:40:32 +0200649
650void *__init fixmap_remap_fdt(phys_addr_t dt_phys)
651{
652 const u64 dt_virt_base = __fix_to_virt(FIX_FDT);
Ard Biesheuvelfb226c32015-11-09 09:55:46 +0100653 pgprot_t prot = PAGE_KERNEL_RO;
Suzuki K. Pouloseb433dce2015-10-19 14:19:28 +0100654 int size, offset;
Ard Biesheuvel61bd93c2015-06-01 13:40:32 +0200655 void *dt_virt;
656
657 /*
658 * Check whether the physical FDT address is set and meets the minimum
659 * alignment requirement. Since we are relying on MIN_FDT_ALIGN to be
660 * at least 8 bytes so that we can always access the size field of the
661 * FDT header after mapping the first chunk, double check here if that
662 * is indeed the case.
663 */
664 BUILD_BUG_ON(MIN_FDT_ALIGN < 8);
665 if (!dt_phys || dt_phys % MIN_FDT_ALIGN)
666 return NULL;
667
668 /*
669 * Make sure that the FDT region can be mapped without the need to
670 * allocate additional translation table pages, so that it is safe
671 * to call create_mapping() this early.
672 *
673 * On 64k pages, the FDT will be mapped using PTEs, so we need to
674 * be in the same PMD as the rest of the fixmap.
675 * On 4k pages, we'll use section mappings for the FDT so we only
676 * have to be in the same PUD.
677 */
678 BUILD_BUG_ON(dt_virt_base % SZ_2M);
679
Suzuki K. Pouloseb433dce2015-10-19 14:19:28 +0100680 BUILD_BUG_ON(__fix_to_virt(FIX_FDT_END) >> SWAPPER_TABLE_SHIFT !=
681 __fix_to_virt(FIX_BTMAP_BEGIN) >> SWAPPER_TABLE_SHIFT);
Ard Biesheuvel61bd93c2015-06-01 13:40:32 +0200682
Suzuki K. Pouloseb433dce2015-10-19 14:19:28 +0100683 offset = dt_phys % SWAPPER_BLOCK_SIZE;
Ard Biesheuvel61bd93c2015-06-01 13:40:32 +0200684 dt_virt = (void *)dt_virt_base + offset;
685
686 /* map the first chunk so we can read the size from the header */
Suzuki K. Pouloseb433dce2015-10-19 14:19:28 +0100687 create_mapping(round_down(dt_phys, SWAPPER_BLOCK_SIZE), dt_virt_base,
688 SWAPPER_BLOCK_SIZE, prot);
Ard Biesheuvel61bd93c2015-06-01 13:40:32 +0200689
690 if (fdt_check_header(dt_virt) != 0)
691 return NULL;
692
693 size = fdt_totalsize(dt_virt);
694 if (size > MAX_FDT_SIZE)
695 return NULL;
696
Suzuki K. Pouloseb433dce2015-10-19 14:19:28 +0100697 if (offset + size > SWAPPER_BLOCK_SIZE)
698 create_mapping(round_down(dt_phys, SWAPPER_BLOCK_SIZE), dt_virt_base,
699 round_up(offset + size, SWAPPER_BLOCK_SIZE), prot);
Ard Biesheuvel61bd93c2015-06-01 13:40:32 +0200700
701 memblock_reserve(dt_phys, size);
702
703 return dt_virt;
704}