Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 1 | /* |
| 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 | |
Jisheng Zhang | 5a9e3e1 | 2016-08-15 14:45:46 +0800 | [diff] [blame] | 20 | #include <linux/cache.h> |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 21 | #include <linux/export.h> |
| 22 | #include <linux/kernel.h> |
| 23 | #include <linux/errno.h> |
| 24 | #include <linux/init.h> |
Takahiro Akashi | 98d2e15 | 2017-04-03 11:24:34 +0900 | [diff] [blame] | 25 | #include <linux/ioport.h> |
| 26 | #include <linux/kexec.h> |
Ard Biesheuvel | 61bd93c | 2015-06-01 13:40:32 +0200 | [diff] [blame] | 27 | #include <linux/libfdt.h> |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 28 | #include <linux/mman.h> |
| 29 | #include <linux/nodemask.h> |
| 30 | #include <linux/memblock.h> |
| 31 | #include <linux/fs.h> |
Catalin Marinas | 2475ff9 | 2012-10-23 14:55:08 +0100 | [diff] [blame] | 32 | #include <linux/io.h> |
Laura Abbott | 2077be6 | 2017-01-10 13:35:49 -0800 | [diff] [blame] | 33 | #include <linux/mm.h> |
Tobias Klauser | 6efd849 | 2017-05-15 13:40:20 +0200 | [diff] [blame] | 34 | #include <linux/vmalloc.h> |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 35 | |
Mark Rutland | 21ab99c | 2016-01-25 11:44:56 +0000 | [diff] [blame] | 36 | #include <asm/barrier.h> |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 37 | #include <asm/cputype.h> |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 38 | #include <asm/fixmap.h> |
Mark Rutland | 068a17a | 2016-01-25 11:45:12 +0000 | [diff] [blame] | 39 | #include <asm/kasan.h> |
Suzuki K. Poulose | b433dce | 2015-10-19 14:19:28 +0100 | [diff] [blame] | 40 | #include <asm/kernel-pgtable.h> |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 41 | #include <asm/sections.h> |
| 42 | #include <asm/setup.h> |
Masahiro Yamada | 87dfb31 | 2019-05-14 15:46:51 -0700 | [diff] [blame] | 43 | #include <linux/sizes.h> |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 44 | #include <asm/tlb.h> |
| 45 | #include <asm/mmu_context.h> |
Laura Abbott | 1404d6f | 2016-10-27 09:27:34 -0700 | [diff] [blame] | 46 | #include <asm/ptdump.h> |
Chintan Pandya | ec28bb9 | 2018-06-06 12:31:21 +0530 | [diff] [blame] | 47 | #include <asm/tlbflush.h> |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 48 | |
Ard Biesheuvel | c095136 | 2017-03-09 21:52:07 +0100 | [diff] [blame] | 49 | #define NO_BLOCK_MAPPINGS BIT(0) |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 50 | #define NO_CONT_MAPPINGS BIT(1) |
Ard Biesheuvel | c095136 | 2017-03-09 21:52:07 +0100 | [diff] [blame] | 51 | |
Ard Biesheuvel | dd006da | 2015-03-19 16:42:27 +0000 | [diff] [blame] | 52 | u64 idmap_t0sz = TCR_T0SZ(VA_BITS); |
Kristina Martsenko | fa2a844 | 2017-12-13 17:07:24 +0000 | [diff] [blame] | 53 | u64 idmap_ptrs_per_pgd = PTRS_PER_PGD; |
Steve Capper | 67e7fdf | 2018-12-06 22:50:41 +0000 | [diff] [blame] | 54 | u64 vabits_user __ro_after_init; |
Will Deacon | 4a1daf2 | 2018-12-10 19:20:23 +0000 | [diff] [blame] | 55 | EXPORT_SYMBOL(vabits_user); |
Ard Biesheuvel | dd006da | 2015-03-19 16:42:27 +0000 | [diff] [blame] | 56 | |
Jisheng Zhang | 5a9e3e1 | 2016-08-15 14:45:46 +0800 | [diff] [blame] | 57 | u64 kimage_voffset __ro_after_init; |
Ard Biesheuvel | a7f8de1 | 2016-02-16 13:52:42 +0100 | [diff] [blame] | 58 | EXPORT_SYMBOL(kimage_voffset); |
| 59 | |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 60 | /* |
| 61 | * Empty_zero_page is a special page that is used for zero-initialized data |
| 62 | * and COW. |
| 63 | */ |
Mark Rutland | 5227cfa | 2016-01-25 11:44:57 +0000 | [diff] [blame] | 64 | unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)] __page_aligned_bss; |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 65 | EXPORT_SYMBOL(empty_zero_page); |
| 66 | |
Ard Biesheuvel | f904077 | 2016-02-16 13:52:40 +0100 | [diff] [blame] | 67 | static pte_t bm_pte[PTRS_PER_PTE] __page_aligned_bss; |
| 68 | static pmd_t bm_pmd[PTRS_PER_PMD] __page_aligned_bss __maybe_unused; |
| 69 | static pud_t bm_pud[PTRS_PER_PUD] __page_aligned_bss __maybe_unused; |
| 70 | |
Jun Yao | 2330b7c | 2018-09-24 17:15:02 +0100 | [diff] [blame] | 71 | static DEFINE_SPINLOCK(swapper_pgdir_lock); |
| 72 | |
| 73 | void set_swapper_pgd(pgd_t *pgdp, pgd_t pgd) |
| 74 | { |
| 75 | pgd_t *fixmap_pgdp; |
| 76 | |
| 77 | spin_lock(&swapper_pgdir_lock); |
James Morse | 26a6f87 | 2018-10-10 15:43:22 +0100 | [diff] [blame] | 78 | fixmap_pgdp = pgd_set_fixmap(__pa_symbol(pgdp)); |
Jun Yao | 2330b7c | 2018-09-24 17:15:02 +0100 | [diff] [blame] | 79 | WRITE_ONCE(*fixmap_pgdp, pgd); |
| 80 | /* |
| 81 | * We need dsb(ishst) here to ensure the page-table-walker sees |
| 82 | * our new entry before set_p?d() returns. The fixmap's |
| 83 | * flush_tlb_kernel_range() via clear_fixmap() does this for us. |
| 84 | */ |
| 85 | pgd_clear_fixmap(); |
| 86 | spin_unlock(&swapper_pgdir_lock); |
| 87 | } |
| 88 | |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 89 | pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn, |
| 90 | unsigned long size, pgprot_t vma_prot) |
| 91 | { |
| 92 | if (!pfn_valid(pfn)) |
| 93 | return pgprot_noncached(vma_prot); |
| 94 | else if (file->f_flags & O_SYNC) |
| 95 | return pgprot_writecombine(vma_prot); |
| 96 | return vma_prot; |
| 97 | } |
| 98 | EXPORT_SYMBOL(phys_mem_access_prot); |
| 99 | |
Yu Zhao | 90292ac | 2019-03-11 18:57:46 -0600 | [diff] [blame] | 100 | static phys_addr_t __init early_pgtable_alloc(int shift) |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 101 | { |
Suzuki K. Poulose | 7142392 | 2015-11-20 17:45:40 +0000 | [diff] [blame] | 102 | phys_addr_t phys; |
| 103 | void *ptr; |
| 104 | |
Mike Rapoport | 9a8dd70 | 2018-10-30 15:07:59 -0700 | [diff] [blame] | 105 | phys = memblock_phys_alloc(PAGE_SIZE, PAGE_SIZE); |
Mike Rapoport | ecc3e77 | 2019-03-11 23:29:26 -0700 | [diff] [blame] | 106 | if (!phys) |
| 107 | panic("Failed to allocate page table page\n"); |
Mark Rutland | f471044 | 2016-01-25 11:45:08 +0000 | [diff] [blame] | 108 | |
| 109 | /* |
| 110 | * The FIX_{PGD,PUD,PMD} slots may be in active use, but the FIX_PTE |
| 111 | * slot will be free, so we can (ab)use the FIX_PTE slot to initialise |
| 112 | * any level of table. |
| 113 | */ |
| 114 | ptr = pte_set_fixmap(phys); |
| 115 | |
Mark Rutland | 21ab99c | 2016-01-25 11:44:56 +0000 | [diff] [blame] | 116 | memset(ptr, 0, PAGE_SIZE); |
| 117 | |
Mark Rutland | f471044 | 2016-01-25 11:45:08 +0000 | [diff] [blame] | 118 | /* |
| 119 | * Implicit barriers also ensure the zeroed page is visible to the page |
| 120 | * table walker |
| 121 | */ |
| 122 | pte_clear_fixmap(); |
| 123 | |
| 124 | return phys; |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 125 | } |
| 126 | |
Ard Biesheuvel | e98216b | 2016-10-21 12:22:56 +0100 | [diff] [blame] | 127 | static bool pgattr_change_is_safe(u64 old, u64 new) |
| 128 | { |
| 129 | /* |
| 130 | * The following mapping attributes may be updated in live |
| 131 | * kernel mappings without the need for break-before-make. |
| 132 | */ |
Ard Biesheuvel | 753e8ab | 2018-02-23 18:04:48 +0000 | [diff] [blame] | 133 | static const pteval_t mask = PTE_PXN | PTE_RDONLY | PTE_WRITE | PTE_NG; |
Ard Biesheuvel | e98216b | 2016-10-21 12:22:56 +0100 | [diff] [blame] | 134 | |
Ard Biesheuvel | 141d149 | 2017-03-09 21:52:06 +0100 | [diff] [blame] | 135 | /* creating or taking down mappings is always safe */ |
| 136 | if (old == 0 || new == 0) |
| 137 | return true; |
| 138 | |
| 139 | /* live contiguous mappings may not be manipulated at all */ |
| 140 | if ((old | new) & PTE_CONT) |
| 141 | return false; |
| 142 | |
Ard Biesheuvel | 753e8ab | 2018-02-23 18:04:48 +0000 | [diff] [blame] | 143 | /* Transitioning from Non-Global to Global is unsafe */ |
| 144 | if (old & ~new & PTE_NG) |
| 145 | return false; |
Will Deacon | 4e60205 | 2018-01-29 11:59:54 +0000 | [diff] [blame] | 146 | |
Ard Biesheuvel | 141d149 | 2017-03-09 21:52:06 +0100 | [diff] [blame] | 147 | return ((old ^ new) & ~mask) == 0; |
Ard Biesheuvel | e98216b | 2016-10-21 12:22:56 +0100 | [diff] [blame] | 148 | } |
| 149 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 150 | static void init_pte(pmd_t *pmdp, unsigned long addr, unsigned long end, |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 151 | phys_addr_t phys, pgprot_t prot) |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 152 | { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 153 | pte_t *ptep; |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 154 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 155 | ptep = pte_set_fixmap_offset(pmdp, addr); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 156 | do { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 157 | pte_t old_pte = READ_ONCE(*ptep); |
Ard Biesheuvel | e98216b | 2016-10-21 12:22:56 +0100 | [diff] [blame] | 158 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 159 | set_pte(ptep, pfn_pte(__phys_to_pfn(phys), prot)); |
Ard Biesheuvel | e98216b | 2016-10-21 12:22:56 +0100 | [diff] [blame] | 160 | |
| 161 | /* |
| 162 | * After the PTE entry has been populated once, we |
| 163 | * only allow updates to the permission attributes. |
| 164 | */ |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 165 | BUG_ON(!pgattr_change_is_safe(pte_val(old_pte), |
| 166 | READ_ONCE(pte_val(*ptep)))); |
Ard Biesheuvel | e98216b | 2016-10-21 12:22:56 +0100 | [diff] [blame] | 167 | |
Ard Biesheuvel | e393cf4 | 2017-03-09 21:52:04 +0100 | [diff] [blame] | 168 | phys += PAGE_SIZE; |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 169 | } while (ptep++, addr += PAGE_SIZE, addr != end); |
Mark Rutland | f471044 | 2016-01-25 11:45:08 +0000 | [diff] [blame] | 170 | |
| 171 | pte_clear_fixmap(); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 172 | } |
| 173 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 174 | static void alloc_init_cont_pte(pmd_t *pmdp, unsigned long addr, |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 175 | unsigned long end, phys_addr_t phys, |
| 176 | pgprot_t prot, |
Yu Zhao | 90292ac | 2019-03-11 18:57:46 -0600 | [diff] [blame] | 177 | phys_addr_t (*pgtable_alloc)(int), |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 178 | int flags) |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 179 | { |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 180 | unsigned long next; |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 181 | pmd_t pmd = READ_ONCE(*pmdp); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 182 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 183 | BUG_ON(pmd_sect(pmd)); |
| 184 | if (pmd_none(pmd)) { |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 185 | phys_addr_t pte_phys; |
Laura Abbott | 132233a | 2016-02-05 16:24:46 -0800 | [diff] [blame] | 186 | BUG_ON(!pgtable_alloc); |
Yu Zhao | 90292ac | 2019-03-11 18:57:46 -0600 | [diff] [blame] | 187 | pte_phys = pgtable_alloc(PAGE_SHIFT); |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 188 | __pmd_populate(pmdp, pte_phys, PMD_TYPE_TABLE); |
| 189 | pmd = READ_ONCE(*pmdp); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 190 | } |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 191 | BUG_ON(pmd_bad(pmd)); |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 192 | |
| 193 | do { |
| 194 | pgprot_t __prot = prot; |
| 195 | |
| 196 | next = pte_cont_addr_end(addr, end); |
| 197 | |
| 198 | /* use a contiguous mapping if the range is suitably aligned */ |
| 199 | if ((((addr | next | phys) & ~CONT_PTE_MASK) == 0) && |
| 200 | (flags & NO_CONT_MAPPINGS) == 0) |
| 201 | __prot = __pgprot(pgprot_val(prot) | PTE_CONT); |
| 202 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 203 | init_pte(pmdp, addr, next, phys, __prot); |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 204 | |
| 205 | phys += next - addr; |
| 206 | } while (addr = next, addr != end); |
| 207 | } |
| 208 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 209 | static void init_pmd(pud_t *pudp, unsigned long addr, unsigned long end, |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 210 | phys_addr_t phys, pgprot_t prot, |
Yu Zhao | 90292ac | 2019-03-11 18:57:46 -0600 | [diff] [blame] | 211 | phys_addr_t (*pgtable_alloc)(int), int flags) |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 212 | { |
| 213 | unsigned long next; |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 214 | pmd_t *pmdp; |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 215 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 216 | pmdp = pmd_set_fixmap_offset(pudp, addr); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 217 | do { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 218 | pmd_t old_pmd = READ_ONCE(*pmdp); |
Ard Biesheuvel | e98216b | 2016-10-21 12:22:56 +0100 | [diff] [blame] | 219 | |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 220 | next = pmd_addr_end(addr, end); |
Ard Biesheuvel | e98216b | 2016-10-21 12:22:56 +0100 | [diff] [blame] | 221 | |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 222 | /* try section mapping first */ |
Laura Abbott | 83863f2 | 2016-02-05 16:24:47 -0800 | [diff] [blame] | 223 | if (((addr | next | phys) & ~SECTION_MASK) == 0 && |
Ard Biesheuvel | c095136 | 2017-03-09 21:52:07 +0100 | [diff] [blame] | 224 | (flags & NO_BLOCK_MAPPINGS) == 0) { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 225 | pmd_set_huge(pmdp, phys, prot); |
Ard Biesheuvel | e98216b | 2016-10-21 12:22:56 +0100 | [diff] [blame] | 226 | |
Catalin Marinas | a55f992 | 2014-02-04 16:01:31 +0000 | [diff] [blame] | 227 | /* |
Ard Biesheuvel | e98216b | 2016-10-21 12:22:56 +0100 | [diff] [blame] | 228 | * After the PMD entry has been populated once, we |
| 229 | * only allow updates to the permission attributes. |
Catalin Marinas | a55f992 | 2014-02-04 16:01:31 +0000 | [diff] [blame] | 230 | */ |
Ard Biesheuvel | e98216b | 2016-10-21 12:22:56 +0100 | [diff] [blame] | 231 | BUG_ON(!pgattr_change_is_safe(pmd_val(old_pmd), |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 232 | READ_ONCE(pmd_val(*pmdp)))); |
Catalin Marinas | a55f992 | 2014-02-04 16:01:31 +0000 | [diff] [blame] | 233 | } else { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 234 | alloc_init_cont_pte(pmdp, addr, next, phys, prot, |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 235 | pgtable_alloc, flags); |
Ard Biesheuvel | e98216b | 2016-10-21 12:22:56 +0100 | [diff] [blame] | 236 | |
| 237 | BUG_ON(pmd_val(old_pmd) != 0 && |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 238 | pmd_val(old_pmd) != READ_ONCE(pmd_val(*pmdp))); |
Catalin Marinas | a55f992 | 2014-02-04 16:01:31 +0000 | [diff] [blame] | 239 | } |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 240 | phys += next - addr; |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 241 | } while (pmdp++, addr = next, addr != end); |
Mark Rutland | f471044 | 2016-01-25 11:45:08 +0000 | [diff] [blame] | 242 | |
| 243 | pmd_clear_fixmap(); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 244 | } |
| 245 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 246 | static void alloc_init_cont_pmd(pud_t *pudp, unsigned long addr, |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 247 | unsigned long end, phys_addr_t phys, |
| 248 | pgprot_t prot, |
Yu Zhao | 90292ac | 2019-03-11 18:57:46 -0600 | [diff] [blame] | 249 | phys_addr_t (*pgtable_alloc)(int), int flags) |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 250 | { |
| 251 | unsigned long next; |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 252 | pud_t pud = READ_ONCE(*pudp); |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 253 | |
| 254 | /* |
| 255 | * Check for initial section mappings in the pgd/pud. |
| 256 | */ |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 257 | BUG_ON(pud_sect(pud)); |
| 258 | if (pud_none(pud)) { |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 259 | phys_addr_t pmd_phys; |
| 260 | BUG_ON(!pgtable_alloc); |
Yu Zhao | 90292ac | 2019-03-11 18:57:46 -0600 | [diff] [blame] | 261 | pmd_phys = pgtable_alloc(PMD_SHIFT); |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 262 | __pud_populate(pudp, pmd_phys, PUD_TYPE_TABLE); |
| 263 | pud = READ_ONCE(*pudp); |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 264 | } |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 265 | BUG_ON(pud_bad(pud)); |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 266 | |
| 267 | do { |
| 268 | pgprot_t __prot = prot; |
| 269 | |
| 270 | next = pmd_cont_addr_end(addr, end); |
| 271 | |
| 272 | /* use a contiguous mapping if the range is suitably aligned */ |
| 273 | if ((((addr | next | phys) & ~CONT_PMD_MASK) == 0) && |
| 274 | (flags & NO_CONT_MAPPINGS) == 0) |
| 275 | __prot = __pgprot(pgprot_val(prot) | PTE_CONT); |
| 276 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 277 | init_pmd(pudp, addr, next, phys, __prot, pgtable_alloc, flags); |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 278 | |
| 279 | phys += next - addr; |
| 280 | } while (addr = next, addr != end); |
| 281 | } |
| 282 | |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 283 | static inline bool use_1G_block(unsigned long addr, unsigned long next, |
| 284 | unsigned long phys) |
| 285 | { |
| 286 | if (PAGE_SHIFT != 12) |
| 287 | return false; |
| 288 | |
| 289 | if (((addr | next | phys) & ~PUD_MASK) != 0) |
| 290 | return false; |
| 291 | |
| 292 | return true; |
| 293 | } |
| 294 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 295 | static void alloc_init_pud(pgd_t *pgdp, unsigned long addr, unsigned long end, |
| 296 | phys_addr_t phys, pgprot_t prot, |
Yu Zhao | 90292ac | 2019-03-11 18:57:46 -0600 | [diff] [blame] | 297 | phys_addr_t (*pgtable_alloc)(int), |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 298 | int flags) |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 299 | { |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 300 | unsigned long next; |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 301 | pud_t *pudp; |
| 302 | pgd_t pgd = READ_ONCE(*pgdp); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 303 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 304 | if (pgd_none(pgd)) { |
Laura Abbott | 132233a | 2016-02-05 16:24:46 -0800 | [diff] [blame] | 305 | phys_addr_t pud_phys; |
| 306 | BUG_ON(!pgtable_alloc); |
Yu Zhao | 90292ac | 2019-03-11 18:57:46 -0600 | [diff] [blame] | 307 | pud_phys = pgtable_alloc(PUD_SHIFT); |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 308 | __pgd_populate(pgdp, pud_phys, PUD_TYPE_TABLE); |
| 309 | pgd = READ_ONCE(*pgdp); |
Jungseok Lee | c79b954b | 2014-05-12 18:40:51 +0900 | [diff] [blame] | 310 | } |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 311 | BUG_ON(pgd_bad(pgd)); |
Jungseok Lee | c79b954b | 2014-05-12 18:40:51 +0900 | [diff] [blame] | 312 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 313 | pudp = pud_set_fixmap_offset(pgdp, addr); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 314 | do { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 315 | pud_t old_pud = READ_ONCE(*pudp); |
Ard Biesheuvel | e98216b | 2016-10-21 12:22:56 +0100 | [diff] [blame] | 316 | |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 317 | next = pud_addr_end(addr, end); |
Steve Capper | 206a2a7 | 2014-05-06 14:02:27 +0100 | [diff] [blame] | 318 | |
| 319 | /* |
| 320 | * For 4K granule only, attempt to put down a 1GB block |
| 321 | */ |
Ard Biesheuvel | c095136 | 2017-03-09 21:52:07 +0100 | [diff] [blame] | 322 | if (use_1G_block(addr, next, phys) && |
| 323 | (flags & NO_BLOCK_MAPPINGS) == 0) { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 324 | pud_set_huge(pudp, phys, prot); |
Steve Capper | 206a2a7 | 2014-05-06 14:02:27 +0100 | [diff] [blame] | 325 | |
| 326 | /* |
Ard Biesheuvel | e98216b | 2016-10-21 12:22:56 +0100 | [diff] [blame] | 327 | * After the PUD entry has been populated once, we |
| 328 | * only allow updates to the permission attributes. |
Steve Capper | 206a2a7 | 2014-05-06 14:02:27 +0100 | [diff] [blame] | 329 | */ |
Ard Biesheuvel | e98216b | 2016-10-21 12:22:56 +0100 | [diff] [blame] | 330 | BUG_ON(!pgattr_change_is_safe(pud_val(old_pud), |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 331 | READ_ONCE(pud_val(*pudp)))); |
Steve Capper | 206a2a7 | 2014-05-06 14:02:27 +0100 | [diff] [blame] | 332 | } else { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 333 | alloc_init_cont_pmd(pudp, addr, next, phys, prot, |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 334 | pgtable_alloc, flags); |
Ard Biesheuvel | e98216b | 2016-10-21 12:22:56 +0100 | [diff] [blame] | 335 | |
| 336 | BUG_ON(pud_val(old_pud) != 0 && |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 337 | pud_val(old_pud) != READ_ONCE(pud_val(*pudp))); |
Steve Capper | 206a2a7 | 2014-05-06 14:02:27 +0100 | [diff] [blame] | 338 | } |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 339 | phys += next - addr; |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 340 | } while (pudp++, addr = next, addr != end); |
Mark Rutland | f471044 | 2016-01-25 11:45:08 +0000 | [diff] [blame] | 341 | |
| 342 | pud_clear_fixmap(); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 343 | } |
| 344 | |
Ard Biesheuvel | 40f87d3 | 2016-06-29 14:51:30 +0200 | [diff] [blame] | 345 | static void __create_pgd_mapping(pgd_t *pgdir, phys_addr_t phys, |
| 346 | unsigned long virt, phys_addr_t size, |
| 347 | pgprot_t prot, |
Yu Zhao | 90292ac | 2019-03-11 18:57:46 -0600 | [diff] [blame] | 348 | phys_addr_t (*pgtable_alloc)(int), |
Ard Biesheuvel | c095136 | 2017-03-09 21:52:07 +0100 | [diff] [blame] | 349 | int flags) |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 350 | { |
| 351 | unsigned long addr, length, end, next; |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 352 | pgd_t *pgdp = pgd_offset_raw(pgdir, virt); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 353 | |
Mark Rutland | cc5d2b3 | 2015-11-23 13:26:19 +0000 | [diff] [blame] | 354 | /* |
| 355 | * If the virtual and physical address don't have the same offset |
| 356 | * within a page, we cannot map the region as the caller expects. |
| 357 | */ |
| 358 | if (WARN_ON((phys ^ virt) & ~PAGE_MASK)) |
| 359 | return; |
| 360 | |
Mark Rutland | 9c4e08a | 2015-11-23 13:26:20 +0000 | [diff] [blame] | 361 | phys &= PAGE_MASK; |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 362 | addr = virt & PAGE_MASK; |
| 363 | length = PAGE_ALIGN(size + (virt & ~PAGE_MASK)); |
| 364 | |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 365 | end = addr + length; |
| 366 | do { |
| 367 | next = pgd_addr_end(addr, end); |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 368 | alloc_init_pud(pgdp, addr, next, phys, prot, pgtable_alloc, |
Ard Biesheuvel | c095136 | 2017-03-09 21:52:07 +0100 | [diff] [blame] | 369 | flags); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 370 | phys += next - addr; |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 371 | } while (pgdp++, addr = next, addr != end); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 372 | } |
| 373 | |
Will Deacon | 475ba3f | 2019-04-08 11:23:48 +0100 | [diff] [blame] | 374 | static phys_addr_t __pgd_pgtable_alloc(int shift) |
Yu Zhao | 369aaab | 2019-03-11 18:57:47 -0600 | [diff] [blame] | 375 | { |
| 376 | void *ptr = (void *)__get_free_page(PGALLOC_GFP); |
| 377 | BUG_ON(!ptr); |
| 378 | |
| 379 | /* Ensure the zeroed page is visible to the page table walker */ |
| 380 | dsb(ishst); |
| 381 | return __pa(ptr); |
| 382 | } |
| 383 | |
Yu Zhao | 90292ac | 2019-03-11 18:57:46 -0600 | [diff] [blame] | 384 | static phys_addr_t pgd_pgtable_alloc(int shift) |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 385 | { |
Will Deacon | 475ba3f | 2019-04-08 11:23:48 +0100 | [diff] [blame] | 386 | phys_addr_t pa = __pgd_pgtable_alloc(shift); |
Yu Zhao | 90292ac | 2019-03-11 18:57:46 -0600 | [diff] [blame] | 387 | |
| 388 | /* |
| 389 | * Call proper page table ctor in case later we need to |
| 390 | * call core mm functions like apply_to_page_range() on |
| 391 | * this pre-allocated page table. |
| 392 | * |
| 393 | * We don't select ARCH_ENABLE_SPLIT_PMD_PTLOCK if pmd is |
| 394 | * folded, and if so pgtable_pmd_page_ctor() becomes nop. |
| 395 | */ |
| 396 | if (shift == PAGE_SHIFT) |
Will Deacon | 475ba3f | 2019-04-08 11:23:48 +0100 | [diff] [blame] | 397 | BUG_ON(!pgtable_page_ctor(phys_to_page(pa))); |
Yu Zhao | 90292ac | 2019-03-11 18:57:46 -0600 | [diff] [blame] | 398 | else if (shift == PMD_SHIFT) |
Will Deacon | 475ba3f | 2019-04-08 11:23:48 +0100 | [diff] [blame] | 399 | BUG_ON(!pgtable_pmd_page_ctor(phys_to_page(pa))); |
Mark Rutland | 21ab99c | 2016-01-25 11:44:56 +0000 | [diff] [blame] | 400 | |
Will Deacon | 475ba3f | 2019-04-08 11:23:48 +0100 | [diff] [blame] | 401 | return pa; |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 402 | } |
| 403 | |
Laura Abbott | 132233a | 2016-02-05 16:24:46 -0800 | [diff] [blame] | 404 | /* |
| 405 | * This function can only be used to modify existing table entries, |
| 406 | * without allocating new levels of table. Note that this permits the |
| 407 | * creation of new section or page entries. |
| 408 | */ |
| 409 | static void __init create_mapping_noalloc(phys_addr_t phys, unsigned long virt, |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 410 | phys_addr_t size, pgprot_t prot) |
Mark Salter | d7ecbdd | 2014-03-12 12:28:06 -0400 | [diff] [blame] | 411 | { |
| 412 | if (virt < VMALLOC_START) { |
| 413 | pr_warn("BUG: not creating mapping for %pa at 0x%016lx - outside kernel range\n", |
| 414 | &phys, virt); |
| 415 | return; |
| 416 | } |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 417 | __create_pgd_mapping(init_mm.pgd, phys, virt, size, prot, NULL, |
| 418 | NO_CONT_MAPPINGS); |
Mark Salter | d7ecbdd | 2014-03-12 12:28:06 -0400 | [diff] [blame] | 419 | } |
| 420 | |
Ard Biesheuvel | 8ce837c | 2014-10-20 15:42:07 +0200 | [diff] [blame] | 421 | void __init create_pgd_mapping(struct mm_struct *mm, phys_addr_t phys, |
| 422 | unsigned long virt, phys_addr_t size, |
Ard Biesheuvel | f14c66c | 2016-10-21 12:22:57 +0100 | [diff] [blame] | 423 | pgprot_t prot, bool page_mappings_only) |
Ard Biesheuvel | 8ce837c | 2014-10-20 15:42:07 +0200 | [diff] [blame] | 424 | { |
Ard Biesheuvel | c095136 | 2017-03-09 21:52:07 +0100 | [diff] [blame] | 425 | int flags = 0; |
| 426 | |
Ard Biesheuvel | 1378dc3 | 2016-07-22 19:32:25 +0200 | [diff] [blame] | 427 | BUG_ON(mm == &init_mm); |
| 428 | |
Ard Biesheuvel | c095136 | 2017-03-09 21:52:07 +0100 | [diff] [blame] | 429 | if (page_mappings_only) |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 430 | flags = NO_BLOCK_MAPPINGS | NO_CONT_MAPPINGS; |
Ard Biesheuvel | c095136 | 2017-03-09 21:52:07 +0100 | [diff] [blame] | 431 | |
Mark Rutland | 11509a3 | 2016-01-25 11:45:10 +0000 | [diff] [blame] | 432 | __create_pgd_mapping(mm->pgd, phys, virt, size, prot, |
Ard Biesheuvel | c095136 | 2017-03-09 21:52:07 +0100 | [diff] [blame] | 433 | pgd_pgtable_alloc, flags); |
Mark Salter | d7ecbdd | 2014-03-12 12:28:06 -0400 | [diff] [blame] | 434 | } |
| 435 | |
Ard Biesheuvel | aa8c09b | 2017-03-09 21:52:00 +0100 | [diff] [blame] | 436 | static void update_mapping_prot(phys_addr_t phys, unsigned long virt, |
| 437 | phys_addr_t size, pgprot_t prot) |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 438 | { |
| 439 | if (virt < VMALLOC_START) { |
Ard Biesheuvel | aa8c09b | 2017-03-09 21:52:00 +0100 | [diff] [blame] | 440 | pr_warn("BUG: not updating mapping for %pa at 0x%016lx - outside kernel range\n", |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 441 | &phys, virt); |
| 442 | return; |
| 443 | } |
| 444 | |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 445 | __create_pgd_mapping(init_mm.pgd, phys, virt, size, prot, NULL, |
| 446 | NO_CONT_MAPPINGS); |
Ard Biesheuvel | aa8c09b | 2017-03-09 21:52:00 +0100 | [diff] [blame] | 447 | |
| 448 | /* flush the TLBs after updating live kernel mappings */ |
| 449 | flush_tlb_kernel_range(virt, virt + size); |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 450 | } |
| 451 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 452 | static void __init __map_memblock(pgd_t *pgdp, phys_addr_t start, |
Takahiro Akashi | 98d2e15 | 2017-04-03 11:24:34 +0900 | [diff] [blame] | 453 | phys_addr_t end, pgprot_t prot, int flags) |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 454 | { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 455 | __create_pgd_mapping(pgdp, start, __phys_to_virt(start), end - start, |
Takahiro Akashi | 98d2e15 | 2017-04-03 11:24:34 +0900 | [diff] [blame] | 456 | prot, early_pgtable_alloc, flags); |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 457 | } |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 458 | |
Ard Biesheuvel | 5ea5306 | 2017-03-09 21:52:01 +0100 | [diff] [blame] | 459 | void __init mark_linear_text_alias_ro(void) |
| 460 | { |
| 461 | /* |
| 462 | * Remove the write permissions from the linear alias of .text/.rodata |
| 463 | */ |
| 464 | update_mapping_prot(__pa_symbol(_text), (unsigned long)lm_alias(_text), |
| 465 | (unsigned long)__init_begin - (unsigned long)_text, |
| 466 | PAGE_KERNEL_RO); |
| 467 | } |
| 468 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 469 | static void __init map_mem(pgd_t *pgdp) |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 470 | { |
Takahiro Akashi | 98d2e15 | 2017-04-03 11:24:34 +0900 | [diff] [blame] | 471 | phys_addr_t kernel_start = __pa_symbol(_text); |
| 472 | phys_addr_t kernel_end = __pa_symbol(__init_begin); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 473 | struct memblock_region *reg; |
Takahiro Akashi | 98d2e15 | 2017-04-03 11:24:34 +0900 | [diff] [blame] | 474 | int flags = 0; |
| 475 | |
Ard Biesheuvel | c55191e | 2018-11-07 11:36:20 +0100 | [diff] [blame] | 476 | if (rodata_full || debug_pagealloc_enabled()) |
Takahiro Akashi | 98d2e15 | 2017-04-03 11:24:34 +0900 | [diff] [blame] | 477 | flags = NO_BLOCK_MAPPINGS | NO_CONT_MAPPINGS; |
| 478 | |
| 479 | /* |
| 480 | * Take care not to create a writable alias for the |
| 481 | * read-only text and rodata sections of the kernel image. |
| 482 | * So temporarily mark them as NOMAP to skip mappings in |
| 483 | * the following for-loop |
| 484 | */ |
| 485 | memblock_mark_nomap(kernel_start, kernel_end - kernel_start); |
| 486 | #ifdef CONFIG_KEXEC_CORE |
| 487 | if (crashk_res.end) |
| 488 | memblock_mark_nomap(crashk_res.start, |
| 489 | resource_size(&crashk_res)); |
| 490 | #endif |
Steve Capper | f6bc87c | 2013-04-30 11:00:33 +0100 | [diff] [blame] | 491 | |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 492 | /* map all the memory banks */ |
| 493 | for_each_memblock(memory, reg) { |
| 494 | phys_addr_t start = reg->base; |
| 495 | phys_addr_t end = start + reg->size; |
| 496 | |
| 497 | if (start >= end) |
| 498 | break; |
Ard Biesheuvel | 68709f4 | 2015-11-30 13:28:16 +0100 | [diff] [blame] | 499 | if (memblock_is_nomap(reg)) |
| 500 | continue; |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 501 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 502 | __map_memblock(pgdp, start, end, PAGE_KERNEL, flags); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 503 | } |
Takahiro Akashi | 98d2e15 | 2017-04-03 11:24:34 +0900 | [diff] [blame] | 504 | |
| 505 | /* |
| 506 | * Map the linear alias of the [_text, __init_begin) interval |
| 507 | * as non-executable now, and remove the write permission in |
| 508 | * mark_linear_text_alias_ro() below (which will be called after |
| 509 | * alternative patching has completed). This makes the contents |
| 510 | * of the region accessible to subsystems such as hibernate, |
| 511 | * but protects it from inadvertent modification or execution. |
| 512 | * Note that contiguous mappings cannot be remapped in this way, |
| 513 | * so we should avoid them here. |
| 514 | */ |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 515 | __map_memblock(pgdp, kernel_start, kernel_end, |
Takahiro Akashi | 98d2e15 | 2017-04-03 11:24:34 +0900 | [diff] [blame] | 516 | PAGE_KERNEL, NO_CONT_MAPPINGS); |
| 517 | memblock_clear_nomap(kernel_start, kernel_end - kernel_start); |
| 518 | |
| 519 | #ifdef CONFIG_KEXEC_CORE |
| 520 | /* |
| 521 | * Use page-level mappings here so that we can shrink the region |
| 522 | * in page granularity and put back unused memory to buddy system |
| 523 | * through /sys/kernel/kexec_crash_size interface. |
| 524 | */ |
| 525 | if (crashk_res.end) { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 526 | __map_memblock(pgdp, crashk_res.start, crashk_res.end + 1, |
Takahiro Akashi | 98d2e15 | 2017-04-03 11:24:34 +0900 | [diff] [blame] | 527 | PAGE_KERNEL, |
| 528 | NO_BLOCK_MAPPINGS | NO_CONT_MAPPINGS); |
| 529 | memblock_clear_nomap(crashk_res.start, |
| 530 | resource_size(&crashk_res)); |
| 531 | } |
| 532 | #endif |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 533 | } |
| 534 | |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 535 | void mark_rodata_ro(void) |
| 536 | { |
Jeremy Linton | 2f39b5f | 2016-02-19 11:50:32 -0600 | [diff] [blame] | 537 | unsigned long section_size; |
Ard Biesheuvel | f904077 | 2016-02-16 13:52:40 +0100 | [diff] [blame] | 538 | |
Jeremy Linton | 2f39b5f | 2016-02-19 11:50:32 -0600 | [diff] [blame] | 539 | /* |
Ard Biesheuvel | 9fdc14c5 | 2016-06-23 15:53:17 +0200 | [diff] [blame] | 540 | * mark .rodata as read only. Use __init_begin rather than __end_rodata |
| 541 | * to cover NOTES and EXCEPTION_TABLE. |
Jeremy Linton | 2f39b5f | 2016-02-19 11:50:32 -0600 | [diff] [blame] | 542 | */ |
Ard Biesheuvel | 9fdc14c5 | 2016-06-23 15:53:17 +0200 | [diff] [blame] | 543 | section_size = (unsigned long)__init_begin - (unsigned long)__start_rodata; |
Ard Biesheuvel | aa8c09b | 2017-03-09 21:52:00 +0100 | [diff] [blame] | 544 | update_mapping_prot(__pa_symbol(__start_rodata), (unsigned long)__start_rodata, |
Jeremy Linton | 2f39b5f | 2016-02-19 11:50:32 -0600 | [diff] [blame] | 545 | section_size, PAGE_KERNEL_RO); |
Ard Biesheuvel | e98216b | 2016-10-21 12:22:56 +0100 | [diff] [blame] | 546 | |
Laura Abbott | 1404d6f | 2016-10-27 09:27:34 -0700 | [diff] [blame] | 547 | debug_checkwx(); |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 548 | } |
Laura Abbott | da14170 | 2015-01-21 17:36:06 -0800 | [diff] [blame] | 549 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 550 | static void __init map_kernel_segment(pgd_t *pgdp, void *va_start, void *va_end, |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 551 | pgprot_t prot, struct vm_struct *vma, |
Will Deacon | 92bbd16 | 2017-07-24 11:46:09 +0100 | [diff] [blame] | 552 | int flags, unsigned long vm_flags) |
Mark Rutland | 068a17a | 2016-01-25 11:45:12 +0000 | [diff] [blame] | 553 | { |
Laura Abbott | 2077be6 | 2017-01-10 13:35:49 -0800 | [diff] [blame] | 554 | phys_addr_t pa_start = __pa_symbol(va_start); |
Mark Rutland | 068a17a | 2016-01-25 11:45:12 +0000 | [diff] [blame] | 555 | unsigned long size = va_end - va_start; |
| 556 | |
| 557 | BUG_ON(!PAGE_ALIGNED(pa_start)); |
| 558 | BUG_ON(!PAGE_ALIGNED(size)); |
| 559 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 560 | __create_pgd_mapping(pgdp, pa_start, (unsigned long)va_start, size, prot, |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 561 | early_pgtable_alloc, flags); |
Ard Biesheuvel | f904077 | 2016-02-16 13:52:40 +0100 | [diff] [blame] | 562 | |
Will Deacon | 92bbd16 | 2017-07-24 11:46:09 +0100 | [diff] [blame] | 563 | if (!(vm_flags & VM_NO_GUARD)) |
| 564 | size += PAGE_SIZE; |
| 565 | |
Ard Biesheuvel | f904077 | 2016-02-16 13:52:40 +0100 | [diff] [blame] | 566 | vma->addr = va_start; |
| 567 | vma->phys_addr = pa_start; |
| 568 | vma->size = size; |
Will Deacon | 92bbd16 | 2017-07-24 11:46:09 +0100 | [diff] [blame] | 569 | vma->flags = VM_MAP | vm_flags; |
Ard Biesheuvel | f904077 | 2016-02-16 13:52:40 +0100 | [diff] [blame] | 570 | vma->caller = __builtin_return_address(0); |
| 571 | |
| 572 | vm_area_add_early(vma); |
Mark Rutland | 068a17a | 2016-01-25 11:45:12 +0000 | [diff] [blame] | 573 | } |
| 574 | |
Ard Biesheuvel | 28b066d | 2017-03-09 21:52:02 +0100 | [diff] [blame] | 575 | static int __init parse_rodata(char *arg) |
| 576 | { |
Ard Biesheuvel | c55191e | 2018-11-07 11:36:20 +0100 | [diff] [blame] | 577 | int ret = strtobool(arg, &rodata_enabled); |
| 578 | if (!ret) { |
| 579 | rodata_full = false; |
| 580 | return 0; |
| 581 | } |
| 582 | |
| 583 | /* permit 'full' in addition to boolean options */ |
| 584 | if (strcmp(arg, "full")) |
| 585 | return -EINVAL; |
| 586 | |
| 587 | rodata_enabled = true; |
| 588 | rodata_full = true; |
| 589 | return 0; |
Ard Biesheuvel | 28b066d | 2017-03-09 21:52:02 +0100 | [diff] [blame] | 590 | } |
| 591 | early_param("rodata", parse_rodata); |
| 592 | |
Will Deacon | 51a0048 | 2017-11-14 14:14:17 +0000 | [diff] [blame] | 593 | #ifdef CONFIG_UNMAP_KERNEL_AT_EL0 |
| 594 | static int __init map_entry_trampoline(void) |
| 595 | { |
Will Deacon | 51a0048 | 2017-11-14 14:14:17 +0000 | [diff] [blame] | 596 | pgprot_t prot = rodata_enabled ? PAGE_KERNEL_ROX : PAGE_KERNEL_EXEC; |
| 597 | phys_addr_t pa_start = __pa_symbol(__entry_tramp_text_start); |
| 598 | |
| 599 | /* The trampoline is always mapped and can therefore be global */ |
| 600 | pgprot_val(prot) &= ~PTE_NG; |
| 601 | |
| 602 | /* Map only the text into the trampoline page table */ |
| 603 | memset(tramp_pg_dir, 0, PGD_SIZE); |
| 604 | __create_pgd_mapping(tramp_pg_dir, pa_start, TRAMP_VALIAS, PAGE_SIZE, |
Will Deacon | 475ba3f | 2019-04-08 11:23:48 +0100 | [diff] [blame] | 605 | prot, __pgd_pgtable_alloc, 0); |
Will Deacon | 51a0048 | 2017-11-14 14:14:17 +0000 | [diff] [blame] | 606 | |
Will Deacon | 6c27c40 | 2017-12-06 11:24:02 +0000 | [diff] [blame] | 607 | /* Map both the text and data into the kernel page table */ |
Will Deacon | 51a0048 | 2017-11-14 14:14:17 +0000 | [diff] [blame] | 608 | __set_fixmap(FIX_ENTRY_TRAMP_TEXT, pa_start, prot); |
Will Deacon | 6c27c40 | 2017-12-06 11:24:02 +0000 | [diff] [blame] | 609 | if (IS_ENABLED(CONFIG_RANDOMIZE_BASE)) { |
| 610 | extern char __entry_tramp_data_start[]; |
| 611 | |
| 612 | __set_fixmap(FIX_ENTRY_TRAMP_DATA, |
| 613 | __pa_symbol(__entry_tramp_data_start), |
| 614 | PAGE_KERNEL_RO); |
| 615 | } |
| 616 | |
Will Deacon | 51a0048 | 2017-11-14 14:14:17 +0000 | [diff] [blame] | 617 | return 0; |
| 618 | } |
| 619 | core_initcall(map_entry_trampoline); |
| 620 | #endif |
| 621 | |
Mark Rutland | 068a17a | 2016-01-25 11:45:12 +0000 | [diff] [blame] | 622 | /* |
| 623 | * Create fine-grained mappings for the kernel. |
| 624 | */ |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 625 | static void __init map_kernel(pgd_t *pgdp) |
Mark Rutland | 068a17a | 2016-01-25 11:45:12 +0000 | [diff] [blame] | 626 | { |
Ard Biesheuvel | 2ebe088b | 2017-03-09 21:52:03 +0100 | [diff] [blame] | 627 | static struct vm_struct vmlinux_text, vmlinux_rodata, vmlinux_inittext, |
| 628 | vmlinux_initdata, vmlinux_data; |
Mark Rutland | 068a17a | 2016-01-25 11:45:12 +0000 | [diff] [blame] | 629 | |
Ard Biesheuvel | 28b066d | 2017-03-09 21:52:02 +0100 | [diff] [blame] | 630 | /* |
| 631 | * External debuggers may need to write directly to the text |
| 632 | * mapping to install SW breakpoints. Allow this (only) when |
| 633 | * explicitly requested with rodata=off. |
| 634 | */ |
| 635 | pgprot_t text_prot = rodata_enabled ? PAGE_KERNEL_ROX : PAGE_KERNEL_EXEC; |
| 636 | |
Ard Biesheuvel | d27cfa1 | 2017-03-09 21:52:09 +0100 | [diff] [blame] | 637 | /* |
| 638 | * Only rodata will be remapped with different permissions later on, |
| 639 | * all other segments are allowed to use contiguous mappings. |
| 640 | */ |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 641 | map_kernel_segment(pgdp, _text, _etext, text_prot, &vmlinux_text, 0, |
Will Deacon | 92bbd16 | 2017-07-24 11:46:09 +0100 | [diff] [blame] | 642 | VM_NO_GUARD); |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 643 | map_kernel_segment(pgdp, __start_rodata, __inittext_begin, PAGE_KERNEL, |
Will Deacon | 92bbd16 | 2017-07-24 11:46:09 +0100 | [diff] [blame] | 644 | &vmlinux_rodata, NO_CONT_MAPPINGS, VM_NO_GUARD); |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 645 | map_kernel_segment(pgdp, __inittext_begin, __inittext_end, text_prot, |
Will Deacon | 92bbd16 | 2017-07-24 11:46:09 +0100 | [diff] [blame] | 646 | &vmlinux_inittext, 0, VM_NO_GUARD); |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 647 | map_kernel_segment(pgdp, __initdata_begin, __initdata_end, PAGE_KERNEL, |
Will Deacon | 92bbd16 | 2017-07-24 11:46:09 +0100 | [diff] [blame] | 648 | &vmlinux_initdata, 0, VM_NO_GUARD); |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 649 | map_kernel_segment(pgdp, _data, _end, PAGE_KERNEL, &vmlinux_data, 0, 0); |
Mark Rutland | 068a17a | 2016-01-25 11:45:12 +0000 | [diff] [blame] | 650 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 651 | if (!READ_ONCE(pgd_val(*pgd_offset_raw(pgdp, FIXADDR_START)))) { |
Ard Biesheuvel | f904077 | 2016-02-16 13:52:40 +0100 | [diff] [blame] | 652 | /* |
| 653 | * The fixmap falls in a separate pgd to the kernel, and doesn't |
| 654 | * live in the carveout for the swapper_pg_dir. We can simply |
| 655 | * re-use the existing dir for the fixmap. |
| 656 | */ |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 657 | set_pgd(pgd_offset_raw(pgdp, FIXADDR_START), |
| 658 | READ_ONCE(*pgd_offset_k(FIXADDR_START))); |
Ard Biesheuvel | f904077 | 2016-02-16 13:52:40 +0100 | [diff] [blame] | 659 | } else if (CONFIG_PGTABLE_LEVELS > 3) { |
| 660 | /* |
| 661 | * The fixmap shares its top level pgd entry with the kernel |
| 662 | * mapping. This can really only occur when we are running |
| 663 | * with 16k/4 levels, so we can simply reuse the pud level |
| 664 | * entry instead. |
| 665 | */ |
| 666 | BUG_ON(!IS_ENABLED(CONFIG_ARM64_16K_PAGES)); |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 667 | pud_populate(&init_mm, |
| 668 | pud_set_fixmap_offset(pgdp, FIXADDR_START), |
Kristina Martsenko | 1933830 | 2017-12-13 17:07:20 +0000 | [diff] [blame] | 669 | lm_alias(bm_pmd)); |
Ard Biesheuvel | f904077 | 2016-02-16 13:52:40 +0100 | [diff] [blame] | 670 | pud_clear_fixmap(); |
| 671 | } else { |
| 672 | BUG(); |
| 673 | } |
Mark Rutland | 068a17a | 2016-01-25 11:45:12 +0000 | [diff] [blame] | 674 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 675 | kasan_copy_shadow(pgdp); |
Mark Rutland | 068a17a | 2016-01-25 11:45:12 +0000 | [diff] [blame] | 676 | } |
| 677 | |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 678 | void __init paging_init(void) |
| 679 | { |
Jun Yao | 2330b7c | 2018-09-24 17:15:02 +0100 | [diff] [blame] | 680 | pgd_t *pgdp = pgd_set_fixmap(__pa_symbol(swapper_pg_dir)); |
Mark Rutland | 068a17a | 2016-01-25 11:45:12 +0000 | [diff] [blame] | 681 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 682 | map_kernel(pgdp); |
| 683 | map_mem(pgdp); |
Mark Rutland | 068a17a | 2016-01-25 11:45:12 +0000 | [diff] [blame] | 684 | |
Mark Rutland | 068a17a | 2016-01-25 11:45:12 +0000 | [diff] [blame] | 685 | pgd_clear_fixmap(); |
Mark Rutland | 068a17a | 2016-01-25 11:45:12 +0000 | [diff] [blame] | 686 | |
Mark Rutland | 068a17a | 2016-01-25 11:45:12 +0000 | [diff] [blame] | 687 | cpu_replace_ttbr1(lm_alias(swapper_pg_dir)); |
Jun Yao | 2b5548b | 2018-09-24 15:47:49 +0100 | [diff] [blame] | 688 | init_mm.pgd = swapper_pg_dir; |
Mark Rutland | 068a17a | 2016-01-25 11:45:12 +0000 | [diff] [blame] | 689 | |
Jun Yao | 2b5548b | 2018-09-24 15:47:49 +0100 | [diff] [blame] | 690 | memblock_free(__pa_symbol(init_pg_dir), |
| 691 | __pa_symbol(init_pg_end) - __pa_symbol(init_pg_dir)); |
Ard Biesheuvel | 24cc61d | 2018-11-07 15:16:06 +0100 | [diff] [blame] | 692 | |
| 693 | memblock_allow_resize(); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 694 | } |
| 695 | |
| 696 | /* |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 697 | * Check whether a kernel address is valid (derived from arch/x86/). |
| 698 | */ |
| 699 | int kern_addr_valid(unsigned long addr) |
| 700 | { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 701 | pgd_t *pgdp; |
| 702 | pud_t *pudp, pud; |
| 703 | pmd_t *pmdp, pmd; |
| 704 | pte_t *ptep, pte; |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 705 | |
| 706 | if ((((long)addr) >> VA_BITS) != -1UL) |
| 707 | return 0; |
| 708 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 709 | pgdp = pgd_offset_k(addr); |
| 710 | if (pgd_none(READ_ONCE(*pgdp))) |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 711 | return 0; |
| 712 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 713 | pudp = pud_offset(pgdp, addr); |
| 714 | pud = READ_ONCE(*pudp); |
| 715 | if (pud_none(pud)) |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 716 | return 0; |
| 717 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 718 | if (pud_sect(pud)) |
| 719 | return pfn_valid(pud_pfn(pud)); |
Steve Capper | 206a2a7 | 2014-05-06 14:02:27 +0100 | [diff] [blame] | 720 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 721 | pmdp = pmd_offset(pudp, addr); |
| 722 | pmd = READ_ONCE(*pmdp); |
| 723 | if (pmd_none(pmd)) |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 724 | return 0; |
| 725 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 726 | if (pmd_sect(pmd)) |
| 727 | return pfn_valid(pmd_pfn(pmd)); |
Dave Anderson | da6e4cb | 2014-04-15 18:53:24 +0100 | [diff] [blame] | 728 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 729 | ptep = pte_offset_kernel(pmdp, addr); |
| 730 | pte = READ_ONCE(*ptep); |
| 731 | if (pte_none(pte)) |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 732 | return 0; |
| 733 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 734 | return pfn_valid(pte_pfn(pte)); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 735 | } |
| 736 | #ifdef CONFIG_SPARSEMEM_VMEMMAP |
Suzuki K. Poulose | b433dce | 2015-10-19 14:19:28 +0100 | [diff] [blame] | 737 | #if !ARM64_SWAPPER_USES_SECTION_MAPS |
Christoph Hellwig | 7b73d97 | 2017-12-29 08:53:54 +0100 | [diff] [blame] | 738 | int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node, |
| 739 | struct vmem_altmap *altmap) |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 740 | { |
Johannes Weiner | 0aad818 | 2013-04-29 15:07:50 -0700 | [diff] [blame] | 741 | return vmemmap_populate_basepages(start, end, node); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 742 | } |
Suzuki K. Poulose | b433dce | 2015-10-19 14:19:28 +0100 | [diff] [blame] | 743 | #else /* !ARM64_SWAPPER_USES_SECTION_MAPS */ |
Christoph Hellwig | 7b73d97 | 2017-12-29 08:53:54 +0100 | [diff] [blame] | 744 | int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node, |
| 745 | struct vmem_altmap *altmap) |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 746 | { |
Johannes Weiner | 0aad818 | 2013-04-29 15:07:50 -0700 | [diff] [blame] | 747 | unsigned long addr = start; |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 748 | unsigned long next; |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 749 | pgd_t *pgdp; |
| 750 | pud_t *pudp; |
| 751 | pmd_t *pmdp; |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 752 | |
| 753 | do { |
| 754 | next = pmd_addr_end(addr, end); |
| 755 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 756 | pgdp = vmemmap_pgd_populate(addr, node); |
| 757 | if (!pgdp) |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 758 | return -ENOMEM; |
| 759 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 760 | pudp = vmemmap_pud_populate(pgdp, addr, node); |
| 761 | if (!pudp) |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 762 | return -ENOMEM; |
| 763 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 764 | pmdp = pmd_offset(pudp, addr); |
| 765 | if (pmd_none(READ_ONCE(*pmdp))) { |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 766 | void *p = NULL; |
| 767 | |
| 768 | p = vmemmap_alloc_block_buf(PMD_SIZE, node); |
| 769 | if (!p) |
| 770 | return -ENOMEM; |
| 771 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 772 | pmd_set_huge(pmdp, __pa(p), __pgprot(PROT_SECT_NORMAL)); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 773 | } else |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 774 | vmemmap_verify((pte_t *)pmdp, node, addr, next); |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 775 | } while (addr = next, addr != end); |
| 776 | |
| 777 | return 0; |
| 778 | } |
Odin Ugedal | 8e01076 | 2019-06-07 01:49:10 +0200 | [diff] [blame^] | 779 | #endif /* !ARM64_SWAPPER_USES_SECTION_MAPS */ |
Christoph Hellwig | 24b6d41 | 2017-12-29 08:53:56 +0100 | [diff] [blame] | 780 | void vmemmap_free(unsigned long start, unsigned long end, |
| 781 | struct vmem_altmap *altmap) |
Tang Chen | 0197518 | 2013-02-22 16:33:08 -0800 | [diff] [blame] | 782 | { |
| 783 | } |
Catalin Marinas | c1cc155 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 784 | #endif /* CONFIG_SPARSEMEM_VMEMMAP */ |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 785 | |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 786 | static inline pud_t * fixmap_pud(unsigned long addr) |
| 787 | { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 788 | pgd_t *pgdp = pgd_offset_k(addr); |
| 789 | pgd_t pgd = READ_ONCE(*pgdp); |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 790 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 791 | BUG_ON(pgd_none(pgd) || pgd_bad(pgd)); |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 792 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 793 | return pud_offset_kimg(pgdp, addr); |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 794 | } |
| 795 | |
| 796 | static inline pmd_t * fixmap_pmd(unsigned long addr) |
| 797 | { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 798 | pud_t *pudp = fixmap_pud(addr); |
| 799 | pud_t pud = READ_ONCE(*pudp); |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 800 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 801 | BUG_ON(pud_none(pud) || pud_bad(pud)); |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 802 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 803 | return pmd_offset_kimg(pudp, addr); |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 804 | } |
| 805 | |
| 806 | static inline pte_t * fixmap_pte(unsigned long addr) |
| 807 | { |
Ard Biesheuvel | 157962f | 2016-02-16 13:52:38 +0100 | [diff] [blame] | 808 | return &bm_pte[pte_index(addr)]; |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 809 | } |
| 810 | |
Laura Abbott | 2077be6 | 2017-01-10 13:35:49 -0800 | [diff] [blame] | 811 | /* |
| 812 | * The p*d_populate functions call virt_to_phys implicitly so they can't be used |
| 813 | * directly on kernel symbols (bm_p*d). This function is called too early to use |
| 814 | * lm_alias so __p*d_populate functions must be used to populate with the |
| 815 | * physical address from __pa_symbol. |
| 816 | */ |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 817 | void __init early_fixmap_init(void) |
| 818 | { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 819 | pgd_t *pgdp, pgd; |
| 820 | pud_t *pudp; |
| 821 | pmd_t *pmdp; |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 822 | unsigned long addr = FIXADDR_START; |
| 823 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 824 | pgdp = pgd_offset_k(addr); |
| 825 | pgd = READ_ONCE(*pgdp); |
Ard Biesheuvel | f80fb3a | 2016-01-26 14:12:01 +0100 | [diff] [blame] | 826 | if (CONFIG_PGTABLE_LEVELS > 3 && |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 827 | !(pgd_none(pgd) || pgd_page_paddr(pgd) == __pa_symbol(bm_pud))) { |
Ard Biesheuvel | f904077 | 2016-02-16 13:52:40 +0100 | [diff] [blame] | 828 | /* |
| 829 | * We only end up here if the kernel mapping and the fixmap |
| 830 | * share the top level pgd entry, which should only happen on |
| 831 | * 16k/4 levels configurations. |
| 832 | */ |
| 833 | BUG_ON(!IS_ENABLED(CONFIG_ARM64_16K_PAGES)); |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 834 | pudp = pud_offset_kimg(pgdp, addr); |
Ard Biesheuvel | f904077 | 2016-02-16 13:52:40 +0100 | [diff] [blame] | 835 | } else { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 836 | if (pgd_none(pgd)) |
| 837 | __pgd_populate(pgdp, __pa_symbol(bm_pud), PUD_TYPE_TABLE); |
| 838 | pudp = fixmap_pud(addr); |
Ard Biesheuvel | f904077 | 2016-02-16 13:52:40 +0100 | [diff] [blame] | 839 | } |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 840 | if (pud_none(READ_ONCE(*pudp))) |
| 841 | __pud_populate(pudp, __pa_symbol(bm_pmd), PMD_TYPE_TABLE); |
| 842 | pmdp = fixmap_pmd(addr); |
| 843 | __pmd_populate(pmdp, __pa_symbol(bm_pte), PMD_TYPE_TABLE); |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 844 | |
| 845 | /* |
| 846 | * The boot-ioremap range spans multiple pmds, for which |
Ard Biesheuvel | 157962f | 2016-02-16 13:52:38 +0100 | [diff] [blame] | 847 | * we are not prepared: |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 848 | */ |
| 849 | BUILD_BUG_ON((__fix_to_virt(FIX_BTMAP_BEGIN) >> PMD_SHIFT) |
| 850 | != (__fix_to_virt(FIX_BTMAP_END) >> PMD_SHIFT)); |
| 851 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 852 | if ((pmdp != fixmap_pmd(fix_to_virt(FIX_BTMAP_BEGIN))) |
| 853 | || pmdp != fixmap_pmd(fix_to_virt(FIX_BTMAP_END))) { |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 854 | WARN_ON(1); |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 855 | pr_warn("pmdp %p != %p, %p\n", |
| 856 | pmdp, fixmap_pmd(fix_to_virt(FIX_BTMAP_BEGIN)), |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 857 | fixmap_pmd(fix_to_virt(FIX_BTMAP_END))); |
| 858 | pr_warn("fix_to_virt(FIX_BTMAP_BEGIN): %08lx\n", |
| 859 | fix_to_virt(FIX_BTMAP_BEGIN)); |
| 860 | pr_warn("fix_to_virt(FIX_BTMAP_END): %08lx\n", |
| 861 | fix_to_virt(FIX_BTMAP_END)); |
| 862 | |
| 863 | pr_warn("FIX_BTMAP_END: %d\n", FIX_BTMAP_END); |
| 864 | pr_warn("FIX_BTMAP_BEGIN: %d\n", FIX_BTMAP_BEGIN); |
| 865 | } |
| 866 | } |
| 867 | |
James Morse | 18b4b27 | 2017-11-06 18:44:26 +0000 | [diff] [blame] | 868 | /* |
| 869 | * Unusually, this is also called in IRQ context (ghes_iounmap_irq) so if we |
| 870 | * ever need to use IPIs for TLB broadcasting, then we're in trouble here. |
| 871 | */ |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 872 | void __set_fixmap(enum fixed_addresses idx, |
| 873 | phys_addr_t phys, pgprot_t flags) |
| 874 | { |
| 875 | unsigned long addr = __fix_to_virt(idx); |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 876 | pte_t *ptep; |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 877 | |
Mark Rutland | b63dbef | 2015-03-04 13:27:35 +0000 | [diff] [blame] | 878 | BUG_ON(idx <= FIX_HOLE || idx >= __end_of_fixed_addresses); |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 879 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 880 | ptep = fixmap_pte(addr); |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 881 | |
| 882 | if (pgprot_val(flags)) { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 883 | set_pte(ptep, pfn_pte(phys >> PAGE_SHIFT, flags)); |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 884 | } else { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 885 | pte_clear(&init_mm, addr, ptep); |
Laura Abbott | af86e59 | 2014-11-21 21:50:42 +0000 | [diff] [blame] | 886 | flush_tlb_kernel_range(addr, addr+PAGE_SIZE); |
| 887 | } |
| 888 | } |
Ard Biesheuvel | 61bd93c | 2015-06-01 13:40:32 +0200 | [diff] [blame] | 889 | |
Ard Biesheuvel | f80fb3a | 2016-01-26 14:12:01 +0100 | [diff] [blame] | 890 | void *__init __fixmap_remap_fdt(phys_addr_t dt_phys, int *size, pgprot_t prot) |
Ard Biesheuvel | 61bd93c | 2015-06-01 13:40:32 +0200 | [diff] [blame] | 891 | { |
| 892 | const u64 dt_virt_base = __fix_to_virt(FIX_FDT); |
Ard Biesheuvel | f80fb3a | 2016-01-26 14:12:01 +0100 | [diff] [blame] | 893 | int offset; |
Ard Biesheuvel | 61bd93c | 2015-06-01 13:40:32 +0200 | [diff] [blame] | 894 | void *dt_virt; |
| 895 | |
| 896 | /* |
| 897 | * Check whether the physical FDT address is set and meets the minimum |
| 898 | * alignment requirement. Since we are relying on MIN_FDT_ALIGN to be |
Ard Biesheuvel | 04a8481 | 2016-08-01 13:29:31 +0200 | [diff] [blame] | 899 | * at least 8 bytes so that we can always access the magic and size |
| 900 | * fields of the FDT header after mapping the first chunk, double check |
| 901 | * here if that is indeed the case. |
Ard Biesheuvel | 61bd93c | 2015-06-01 13:40:32 +0200 | [diff] [blame] | 902 | */ |
| 903 | BUILD_BUG_ON(MIN_FDT_ALIGN < 8); |
| 904 | if (!dt_phys || dt_phys % MIN_FDT_ALIGN) |
| 905 | return NULL; |
| 906 | |
| 907 | /* |
| 908 | * Make sure that the FDT region can be mapped without the need to |
| 909 | * allocate additional translation table pages, so that it is safe |
Laura Abbott | 132233a | 2016-02-05 16:24:46 -0800 | [diff] [blame] | 910 | * to call create_mapping_noalloc() this early. |
Ard Biesheuvel | 61bd93c | 2015-06-01 13:40:32 +0200 | [diff] [blame] | 911 | * |
| 912 | * On 64k pages, the FDT will be mapped using PTEs, so we need to |
| 913 | * be in the same PMD as the rest of the fixmap. |
| 914 | * On 4k pages, we'll use section mappings for the FDT so we only |
| 915 | * have to be in the same PUD. |
| 916 | */ |
| 917 | BUILD_BUG_ON(dt_virt_base % SZ_2M); |
| 918 | |
Suzuki K. Poulose | b433dce | 2015-10-19 14:19:28 +0100 | [diff] [blame] | 919 | BUILD_BUG_ON(__fix_to_virt(FIX_FDT_END) >> SWAPPER_TABLE_SHIFT != |
| 920 | __fix_to_virt(FIX_BTMAP_BEGIN) >> SWAPPER_TABLE_SHIFT); |
Ard Biesheuvel | 61bd93c | 2015-06-01 13:40:32 +0200 | [diff] [blame] | 921 | |
Suzuki K. Poulose | b433dce | 2015-10-19 14:19:28 +0100 | [diff] [blame] | 922 | offset = dt_phys % SWAPPER_BLOCK_SIZE; |
Ard Biesheuvel | 61bd93c | 2015-06-01 13:40:32 +0200 | [diff] [blame] | 923 | dt_virt = (void *)dt_virt_base + offset; |
| 924 | |
| 925 | /* map the first chunk so we can read the size from the header */ |
Laura Abbott | 132233a | 2016-02-05 16:24:46 -0800 | [diff] [blame] | 926 | create_mapping_noalloc(round_down(dt_phys, SWAPPER_BLOCK_SIZE), |
| 927 | dt_virt_base, SWAPPER_BLOCK_SIZE, prot); |
Ard Biesheuvel | 61bd93c | 2015-06-01 13:40:32 +0200 | [diff] [blame] | 928 | |
Ard Biesheuvel | 04a8481 | 2016-08-01 13:29:31 +0200 | [diff] [blame] | 929 | if (fdt_magic(dt_virt) != FDT_MAGIC) |
Ard Biesheuvel | 61bd93c | 2015-06-01 13:40:32 +0200 | [diff] [blame] | 930 | return NULL; |
| 931 | |
Ard Biesheuvel | f80fb3a | 2016-01-26 14:12:01 +0100 | [diff] [blame] | 932 | *size = fdt_totalsize(dt_virt); |
| 933 | if (*size > MAX_FDT_SIZE) |
Ard Biesheuvel | 61bd93c | 2015-06-01 13:40:32 +0200 | [diff] [blame] | 934 | return NULL; |
| 935 | |
Ard Biesheuvel | f80fb3a | 2016-01-26 14:12:01 +0100 | [diff] [blame] | 936 | if (offset + *size > SWAPPER_BLOCK_SIZE) |
Laura Abbott | 132233a | 2016-02-05 16:24:46 -0800 | [diff] [blame] | 937 | create_mapping_noalloc(round_down(dt_phys, SWAPPER_BLOCK_SIZE), dt_virt_base, |
Ard Biesheuvel | f80fb3a | 2016-01-26 14:12:01 +0100 | [diff] [blame] | 938 | round_up(offset + *size, SWAPPER_BLOCK_SIZE), prot); |
| 939 | |
| 940 | return dt_virt; |
| 941 | } |
| 942 | |
| 943 | void *__init fixmap_remap_fdt(phys_addr_t dt_phys) |
| 944 | { |
| 945 | void *dt_virt; |
| 946 | int size; |
| 947 | |
| 948 | dt_virt = __fixmap_remap_fdt(dt_phys, &size, PAGE_KERNEL_RO); |
| 949 | if (!dt_virt) |
| 950 | return NULL; |
Ard Biesheuvel | 61bd93c | 2015-06-01 13:40:32 +0200 | [diff] [blame] | 951 | |
| 952 | memblock_reserve(dt_phys, size); |
Ard Biesheuvel | 61bd93c | 2015-06-01 13:40:32 +0200 | [diff] [blame] | 953 | return dt_virt; |
| 954 | } |
Ard Biesheuvel | 324420b | 2016-02-16 13:52:35 +0100 | [diff] [blame] | 955 | |
| 956 | int __init arch_ioremap_pud_supported(void) |
| 957 | { |
Mark Rutland | 7ba36ec | 2019-05-14 14:30:06 +0530 | [diff] [blame] | 958 | /* |
| 959 | * Only 4k granule supports level 1 block mappings. |
| 960 | * SW table walks can't handle removal of intermediate entries. |
| 961 | */ |
| 962 | return IS_ENABLED(CONFIG_ARM64_4K_PAGES) && |
| 963 | !IS_ENABLED(CONFIG_ARM64_PTDUMP_DEBUGFS); |
Ard Biesheuvel | 324420b | 2016-02-16 13:52:35 +0100 | [diff] [blame] | 964 | } |
| 965 | |
| 966 | int __init arch_ioremap_pmd_supported(void) |
| 967 | { |
Mark Rutland | 7ba36ec | 2019-05-14 14:30:06 +0530 | [diff] [blame] | 968 | /* See arch_ioremap_pud_supported() */ |
| 969 | return !IS_ENABLED(CONFIG_ARM64_PTDUMP_DEBUGFS); |
Ard Biesheuvel | 324420b | 2016-02-16 13:52:35 +0100 | [diff] [blame] | 970 | } |
| 971 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 972 | int pud_set_huge(pud_t *pudp, phys_addr_t phys, pgprot_t prot) |
Ard Biesheuvel | 324420b | 2016-02-16 13:52:35 +0100 | [diff] [blame] | 973 | { |
Anshuman Khandual | f7f0097 | 2019-05-27 09:28:15 +0530 | [diff] [blame] | 974 | pud_t new_pud = pfn_pud(__phys_to_pfn(phys), mk_pud_sect_prot(prot)); |
Will Deacon | 15122ee | 2018-02-21 12:59:27 +0000 | [diff] [blame] | 975 | |
Laura Abbott | 82034c2 | 2018-05-23 11:43:46 -0700 | [diff] [blame] | 976 | /* Only allow permission changes for now */ |
| 977 | if (!pgattr_change_is_safe(READ_ONCE(pud_val(*pudp)), |
| 978 | pud_val(new_pud))) |
Will Deacon | 15122ee | 2018-02-21 12:59:27 +0000 | [diff] [blame] | 979 | return 0; |
| 980 | |
Anshuman Khandual | 87dedf7 | 2019-05-27 12:33:29 +0530 | [diff] [blame] | 981 | VM_BUG_ON(phys & ~PUD_MASK); |
Laura Abbott | 82034c2 | 2018-05-23 11:43:46 -0700 | [diff] [blame] | 982 | set_pud(pudp, new_pud); |
Ard Biesheuvel | 324420b | 2016-02-16 13:52:35 +0100 | [diff] [blame] | 983 | return 1; |
| 984 | } |
| 985 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 986 | int pmd_set_huge(pmd_t *pmdp, phys_addr_t phys, pgprot_t prot) |
Ard Biesheuvel | 324420b | 2016-02-16 13:52:35 +0100 | [diff] [blame] | 987 | { |
Anshuman Khandual | f7f0097 | 2019-05-27 09:28:15 +0530 | [diff] [blame] | 988 | pmd_t new_pmd = pfn_pmd(__phys_to_pfn(phys), mk_pmd_sect_prot(prot)); |
Will Deacon | 15122ee | 2018-02-21 12:59:27 +0000 | [diff] [blame] | 989 | |
Laura Abbott | 82034c2 | 2018-05-23 11:43:46 -0700 | [diff] [blame] | 990 | /* Only allow permission changes for now */ |
| 991 | if (!pgattr_change_is_safe(READ_ONCE(pmd_val(*pmdp)), |
| 992 | pmd_val(new_pmd))) |
Will Deacon | 15122ee | 2018-02-21 12:59:27 +0000 | [diff] [blame] | 993 | return 0; |
| 994 | |
Anshuman Khandual | 87dedf7 | 2019-05-27 12:33:29 +0530 | [diff] [blame] | 995 | VM_BUG_ON(phys & ~PMD_MASK); |
Laura Abbott | 82034c2 | 2018-05-23 11:43:46 -0700 | [diff] [blame] | 996 | set_pmd(pmdp, new_pmd); |
Ard Biesheuvel | 324420b | 2016-02-16 13:52:35 +0100 | [diff] [blame] | 997 | return 1; |
| 998 | } |
| 999 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 1000 | int pud_clear_huge(pud_t *pudp) |
Ard Biesheuvel | 324420b | 2016-02-16 13:52:35 +0100 | [diff] [blame] | 1001 | { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 1002 | if (!pud_sect(READ_ONCE(*pudp))) |
Ard Biesheuvel | 324420b | 2016-02-16 13:52:35 +0100 | [diff] [blame] | 1003 | return 0; |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 1004 | pud_clear(pudp); |
Ard Biesheuvel | 324420b | 2016-02-16 13:52:35 +0100 | [diff] [blame] | 1005 | return 1; |
| 1006 | } |
| 1007 | |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 1008 | int pmd_clear_huge(pmd_t *pmdp) |
Ard Biesheuvel | 324420b | 2016-02-16 13:52:35 +0100 | [diff] [blame] | 1009 | { |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 1010 | if (!pmd_sect(READ_ONCE(*pmdp))) |
Ard Biesheuvel | 324420b | 2016-02-16 13:52:35 +0100 | [diff] [blame] | 1011 | return 0; |
Will Deacon | 20a004e | 2018-02-15 11:14:56 +0000 | [diff] [blame] | 1012 | pmd_clear(pmdp); |
Ard Biesheuvel | 324420b | 2016-02-16 13:52:35 +0100 | [diff] [blame] | 1013 | return 1; |
| 1014 | } |
Toshi Kani | b6bdb75 | 2018-03-22 16:17:20 -0700 | [diff] [blame] | 1015 | |
Chintan Pandya | ec28bb9 | 2018-06-06 12:31:21 +0530 | [diff] [blame] | 1016 | int pmd_free_pte_page(pmd_t *pmdp, unsigned long addr) |
Toshi Kani | b6bdb75 | 2018-03-22 16:17:20 -0700 | [diff] [blame] | 1017 | { |
Chintan Pandya | ec28bb9 | 2018-06-06 12:31:21 +0530 | [diff] [blame] | 1018 | pte_t *table; |
| 1019 | pmd_t pmd; |
| 1020 | |
| 1021 | pmd = READ_ONCE(*pmdp); |
| 1022 | |
Mark Rutland | fac880c | 2018-09-05 17:38:57 +0100 | [diff] [blame] | 1023 | if (!pmd_table(pmd)) { |
Will Deacon | 9c00697 | 2018-12-28 00:37:42 -0800 | [diff] [blame] | 1024 | VM_WARN_ON(1); |
Chintan Pandya | ec28bb9 | 2018-06-06 12:31:21 +0530 | [diff] [blame] | 1025 | return 1; |
| 1026 | } |
| 1027 | |
| 1028 | table = pte_offset_kernel(pmdp, addr); |
| 1029 | pmd_clear(pmdp); |
| 1030 | __flush_tlb_kernel_pgtable(addr); |
| 1031 | pte_free_kernel(NULL, table); |
| 1032 | return 1; |
Toshi Kani | b6bdb75 | 2018-03-22 16:17:20 -0700 | [diff] [blame] | 1033 | } |
| 1034 | |
Chintan Pandya | ec28bb9 | 2018-06-06 12:31:21 +0530 | [diff] [blame] | 1035 | int pud_free_pmd_page(pud_t *pudp, unsigned long addr) |
Toshi Kani | b6bdb75 | 2018-03-22 16:17:20 -0700 | [diff] [blame] | 1036 | { |
Chintan Pandya | ec28bb9 | 2018-06-06 12:31:21 +0530 | [diff] [blame] | 1037 | pmd_t *table; |
| 1038 | pmd_t *pmdp; |
| 1039 | pud_t pud; |
| 1040 | unsigned long next, end; |
| 1041 | |
| 1042 | pud = READ_ONCE(*pudp); |
| 1043 | |
Mark Rutland | fac880c | 2018-09-05 17:38:57 +0100 | [diff] [blame] | 1044 | if (!pud_table(pud)) { |
Will Deacon | 9c00697 | 2018-12-28 00:37:42 -0800 | [diff] [blame] | 1045 | VM_WARN_ON(1); |
Chintan Pandya | ec28bb9 | 2018-06-06 12:31:21 +0530 | [diff] [blame] | 1046 | return 1; |
| 1047 | } |
| 1048 | |
| 1049 | table = pmd_offset(pudp, addr); |
| 1050 | pmdp = table; |
| 1051 | next = addr; |
| 1052 | end = addr + PUD_SIZE; |
| 1053 | do { |
| 1054 | pmd_free_pte_page(pmdp, next); |
| 1055 | } while (pmdp++, next += PMD_SIZE, next != end); |
| 1056 | |
| 1057 | pud_clear(pudp); |
| 1058 | __flush_tlb_kernel_pgtable(addr); |
| 1059 | pmd_free(NULL, table); |
| 1060 | return 1; |
Toshi Kani | b6bdb75 | 2018-03-22 16:17:20 -0700 | [diff] [blame] | 1061 | } |
Robin Murphy | 4ab2150 | 2018-12-11 18:48:48 +0000 | [diff] [blame] | 1062 | |
Will Deacon | 8e2d434 | 2018-12-28 00:37:53 -0800 | [diff] [blame] | 1063 | int p4d_free_pud_page(p4d_t *p4d, unsigned long addr) |
| 1064 | { |
| 1065 | return 0; /* Don't attempt a block mapping */ |
| 1066 | } |
| 1067 | |
Robin Murphy | 4ab2150 | 2018-12-11 18:48:48 +0000 | [diff] [blame] | 1068 | #ifdef CONFIG_MEMORY_HOTPLUG |
Michal Hocko | 940519f | 2019-05-13 17:21:26 -0700 | [diff] [blame] | 1069 | int arch_add_memory(int nid, u64 start, u64 size, |
| 1070 | struct mhp_restrictions *restrictions) |
Robin Murphy | 4ab2150 | 2018-12-11 18:48:48 +0000 | [diff] [blame] | 1071 | { |
| 1072 | int flags = 0; |
| 1073 | |
| 1074 | if (rodata_full || debug_pagealloc_enabled()) |
| 1075 | flags = NO_BLOCK_MAPPINGS | NO_CONT_MAPPINGS; |
| 1076 | |
| 1077 | __create_pgd_mapping(swapper_pg_dir, start, __phys_to_virt(start), |
Will Deacon | 475ba3f | 2019-04-08 11:23:48 +0100 | [diff] [blame] | 1078 | size, PAGE_KERNEL, __pgd_pgtable_alloc, flags); |
Robin Murphy | 4ab2150 | 2018-12-11 18:48:48 +0000 | [diff] [blame] | 1079 | |
| 1080 | return __add_pages(nid, start >> PAGE_SHIFT, size >> PAGE_SHIFT, |
Michal Hocko | 940519f | 2019-05-13 17:21:26 -0700 | [diff] [blame] | 1081 | restrictions); |
Robin Murphy | 4ab2150 | 2018-12-11 18:48:48 +0000 | [diff] [blame] | 1082 | } |
| 1083 | #endif |