Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This file is subject to the terms and conditions of the GNU General Public |
| 3 | * License. See the file "COPYING" in the main directory of this archive |
| 4 | * for more details. |
| 5 | * |
| 6 | * Copyright (C) 1994 - 2000 Ralf Baechle |
| 7 | * Copyright (C) 1999, 2000 Silicon Graphics, Inc. |
| 8 | * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com |
| 9 | * Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved. |
| 10 | */ |
Ralf Baechle | b868868 | 2007-09-11 18:05:33 +0100 | [diff] [blame] | 11 | #include <linux/bug.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/init.h> |
Paul Gortmaker | d9ba577 | 2016-08-21 15:58:14 -0400 | [diff] [blame] | 13 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/signal.h> |
| 15 | #include <linux/sched.h> |
Ralf Baechle | 631330f | 2009-06-19 14:05:26 +0100 | [diff] [blame] | 16 | #include <linux/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/kernel.h> |
| 18 | #include <linux/errno.h> |
| 19 | #include <linux/string.h> |
| 20 | #include <linux/types.h> |
| 21 | #include <linux/pagemap.h> |
| 22 | #include <linux/ptrace.h> |
| 23 | #include <linux/mman.h> |
| 24 | #include <linux/mm.h> |
Mike Rapoport | 57c8a66 | 2018-10-30 15:09:49 -0700 | [diff] [blame] | 25 | #include <linux/memblock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/highmem.h> |
| 27 | #include <linux/swap.h> |
Daniel Jacobowitz | 3d50375 | 2005-01-20 19:59:54 -0500 | [diff] [blame] | 28 | #include <linux/proc_fs.h> |
Dave Hansen | 22a9835 | 2006-03-27 01:16:04 -0800 | [diff] [blame] | 29 | #include <linux/pfn.h> |
Kevin Cernekee | 0f334a3 | 2009-09-07 11:11:31 -0700 | [diff] [blame] | 30 | #include <linux/hardirq.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 31 | #include <linux/gfp.h> |
David Howells | 2f96b8c | 2013-04-12 00:10:25 +0100 | [diff] [blame] | 32 | #include <linux/kcore.h> |
Paul Burton | 2aa7687 | 2017-08-23 11:17:50 -0700 | [diff] [blame] | 33 | #include <linux/initrd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | #include <asm/bootinfo.h> |
| 36 | #include <asm/cachectl.h> |
| 37 | #include <asm/cpu.h> |
| 38 | #include <asm/dma.h> |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 39 | #include <asm/kmap_types.h> |
Paul Burton | cbd95a89 | 2015-07-10 16:52:38 +0100 | [diff] [blame] | 40 | #include <asm/maar.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <asm/mmu_context.h> |
| 42 | #include <asm/sections.h> |
| 43 | #include <asm/pgtable.h> |
| 44 | #include <asm/pgalloc.h> |
| 45 | #include <asm/tlb.h> |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 46 | #include <asm/fixmap.h> |
| 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | /* |
| 49 | * We have up to 8 empty zeroed pages so we can map one of the right colour |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 50 | * when needed. This is necessary only on R4000 / R4400 SC and MC versions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | * where we have to avoid VCED / VECI exceptions for good performance at |
| 52 | * any price. Since page is never written to after the initialization we |
| 53 | * don't have to care about aliases on other CPUs. |
| 54 | */ |
| 55 | unsigned long empty_zero_page, zero_page_mask; |
Ralf Baechle | 497d2ad | 2008-06-06 14:23:06 +0100 | [diff] [blame] | 56 | EXPORT_SYMBOL_GPL(empty_zero_page); |
Ard Biesheuvel | 0b70068 | 2014-09-12 22:17:23 +0200 | [diff] [blame] | 57 | EXPORT_SYMBOL(zero_page_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | /* |
| 60 | * Not static inline because used by IP27 special magic initialization code |
| 61 | */ |
Jiang Liu | 31605922 | 2013-04-29 15:06:43 -0700 | [diff] [blame] | 62 | void setup_zero_pages(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | { |
Jiang Liu | 31605922 | 2013-04-29 15:06:43 -0700 | [diff] [blame] | 64 | unsigned int order, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | struct page *page; |
| 66 | |
| 67 | if (cpu_has_vce) |
| 68 | order = 3; |
| 69 | else |
| 70 | order = 0; |
| 71 | |
| 72 | empty_zero_page = __get_free_pages(GFP_KERNEL | __GFP_ZERO, order); |
| 73 | if (!empty_zero_page) |
| 74 | panic("Oh boy, that early out of memory?"); |
| 75 | |
Franck Bui-Huu | 99e3b94 | 2006-10-19 13:19:59 +0200 | [diff] [blame] | 76 | page = virt_to_page((void *)empty_zero_page); |
Nick Piggin | 8dfcc9b | 2006-03-22 00:08:05 -0800 | [diff] [blame] | 77 | split_page(page, order); |
Jiang Liu | 31605922 | 2013-04-29 15:06:43 -0700 | [diff] [blame] | 78 | for (i = 0; i < (1 << order); i++, page++) |
| 79 | mark_page_reserved(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
Jiang Liu | 31605922 | 2013-04-29 15:06:43 -0700 | [diff] [blame] | 81 | zero_page_mask = ((PAGE_SIZE << order) - 1) & PAGE_MASK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | } |
| 83 | |
Paul Burton | e2a9e5a | 2014-03-03 12:08:40 +0000 | [diff] [blame] | 84 | static void *__kmap_pgprot(struct page *page, unsigned long addr, pgprot_t prot) |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 85 | { |
| 86 | enum fixed_addresses idx; |
Paul Burton | c8790d6 | 2019-02-02 01:43:28 +0000 | [diff] [blame] | 87 | unsigned int uninitialized_var(old_mmid); |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 88 | unsigned long vaddr, flags, entrylo; |
| 89 | unsigned long old_ctx; |
| 90 | pte_t pte; |
| 91 | int tlbidx; |
| 92 | |
Ralf Baechle | b868868 | 2007-09-11 18:05:33 +0100 | [diff] [blame] | 93 | BUG_ON(Page_dcache_dirty(page)); |
| 94 | |
David Hildenbrand | ce01948 | 2015-05-11 17:52:10 +0200 | [diff] [blame] | 95 | preempt_disable(); |
Peter Zijlstra | bdb4380 | 2013-09-10 12:15:23 +0200 | [diff] [blame] | 96 | pagefault_disable(); |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 97 | idx = (addr >> PAGE_SHIFT) & (FIX_N_COLOURS - 1); |
Kevin Cernekee | 0f334a3 | 2009-09-07 11:11:31 -0700 | [diff] [blame] | 98 | idx += in_interrupt() ? FIX_N_COLOURS : 0; |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 99 | vaddr = __fix_to_virt(FIX_CMAP_END - idx); |
Paul Burton | e2a9e5a | 2014-03-03 12:08:40 +0000 | [diff] [blame] | 100 | pte = mk_pte(page, prot); |
Paul Burton | 7b2cb64 | 2016-04-19 09:25:05 +0100 | [diff] [blame] | 101 | #if defined(CONFIG_XPA) |
Steven J. Hill | c5b3678 | 2015-02-26 18:16:38 -0600 | [diff] [blame] | 102 | entrylo = pte_to_entrylo(pte.pte_high); |
Paul Burton | 7b2cb64 | 2016-04-19 09:25:05 +0100 | [diff] [blame] | 103 | #elif defined(CONFIG_PHYS_ADDR_T_64BIT) && defined(CONFIG_CPU_MIPS32) |
| 104 | entrylo = pte.pte_high; |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 105 | #else |
David Daney | 6dd9344 | 2010-02-10 15:12:47 -0800 | [diff] [blame] | 106 | entrylo = pte_to_entrylo(pte_val(pte)); |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 107 | #endif |
| 108 | |
Ralf Baechle | b633648 | 2014-05-23 16:29:44 +0200 | [diff] [blame] | 109 | local_irq_save(flags); |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 110 | old_ctx = read_c0_entryhi(); |
| 111 | write_c0_entryhi(vaddr & (PAGE_MASK << 1)); |
| 112 | write_c0_entrylo0(entrylo); |
| 113 | write_c0_entrylo1(entrylo); |
Paul Burton | c8790d6 | 2019-02-02 01:43:28 +0000 | [diff] [blame] | 114 | if (cpu_has_mmid) { |
| 115 | old_mmid = read_c0_memorymapid(); |
| 116 | write_c0_memorymapid(MMID_KERNEL_WIRED); |
| 117 | } |
Steven J. Hill | c5b3678 | 2015-02-26 18:16:38 -0600 | [diff] [blame] | 118 | #ifdef CONFIG_XPA |
James Hogan | 4b6f99d | 2016-04-19 09:25:10 +0100 | [diff] [blame] | 119 | if (cpu_has_xpa) { |
| 120 | entrylo = (pte.pte_low & _PFNX_MASK); |
| 121 | writex_c0_entrylo0(entrylo); |
| 122 | writex_c0_entrylo1(entrylo); |
| 123 | } |
Steven J. Hill | c5b3678 | 2015-02-26 18:16:38 -0600 | [diff] [blame] | 124 | #endif |
Paul Burton | 1031398 | 2016-11-12 01:26:07 +0000 | [diff] [blame] | 125 | tlbidx = num_wired_entries(); |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 126 | write_c0_wired(tlbidx + 1); |
| 127 | write_c0_index(tlbidx); |
| 128 | mtc0_tlbw_hazard(); |
| 129 | tlb_write_indexed(); |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 130 | tlbw_use_hazard(); |
| 131 | write_c0_entryhi(old_ctx); |
Paul Burton | c8790d6 | 2019-02-02 01:43:28 +0000 | [diff] [blame] | 132 | if (cpu_has_mmid) |
| 133 | write_c0_memorymapid(old_mmid); |
Ralf Baechle | b633648 | 2014-05-23 16:29:44 +0200 | [diff] [blame] | 134 | local_irq_restore(flags); |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 135 | |
| 136 | return (void*) vaddr; |
| 137 | } |
| 138 | |
Paul Burton | e2a9e5a | 2014-03-03 12:08:40 +0000 | [diff] [blame] | 139 | void *kmap_coherent(struct page *page, unsigned long addr) |
| 140 | { |
| 141 | return __kmap_pgprot(page, addr, PAGE_KERNEL); |
| 142 | } |
| 143 | |
| 144 | void *kmap_noncoherent(struct page *page, unsigned long addr) |
| 145 | { |
| 146 | return __kmap_pgprot(page, addr, PAGE_KERNEL_NC); |
| 147 | } |
| 148 | |
Ralf Baechle | eacb9d6 | 2007-04-26 15:46:25 +0100 | [diff] [blame] | 149 | void kunmap_coherent(void) |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 150 | { |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 151 | unsigned int wired; |
| 152 | unsigned long flags, old_ctx; |
| 153 | |
Ralf Baechle | b633648 | 2014-05-23 16:29:44 +0200 | [diff] [blame] | 154 | local_irq_save(flags); |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 155 | old_ctx = read_c0_entryhi(); |
Paul Burton | 1031398 | 2016-11-12 01:26:07 +0000 | [diff] [blame] | 156 | wired = num_wired_entries() - 1; |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 157 | write_c0_wired(wired); |
| 158 | write_c0_index(wired); |
| 159 | write_c0_entryhi(UNIQUE_ENTRYHI(wired)); |
| 160 | write_c0_entrylo0(0); |
| 161 | write_c0_entrylo1(0); |
| 162 | mtc0_tlbw_hazard(); |
| 163 | tlb_write_indexed(); |
| 164 | tlbw_use_hazard(); |
| 165 | write_c0_entryhi(old_ctx); |
Ralf Baechle | b633648 | 2014-05-23 16:29:44 +0200 | [diff] [blame] | 166 | local_irq_restore(flags); |
Peter Zijlstra | bdb4380 | 2013-09-10 12:15:23 +0200 | [diff] [blame] | 167 | pagefault_enable(); |
David Hildenbrand | ce01948 | 2015-05-11 17:52:10 +0200 | [diff] [blame] | 168 | preempt_enable(); |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 169 | } |
| 170 | |
Atsushi Nemoto | bcd0228 | 2006-12-12 17:14:56 +0000 | [diff] [blame] | 171 | void copy_user_highpage(struct page *to, struct page *from, |
| 172 | unsigned long vaddr, struct vm_area_struct *vma) |
| 173 | { |
| 174 | void *vfrom, *vto; |
| 175 | |
Cong Wang | 9c02048 | 2011-11-25 23:14:15 +0800 | [diff] [blame] | 176 | vto = kmap_atomic(to); |
Ralf Baechle | 9a74b3e | 2008-02-16 22:34:25 +0000 | [diff] [blame] | 177 | if (cpu_has_dc_aliases && |
Kirill A. Shutemov | e1534ae | 2016-01-15 16:53:46 -0800 | [diff] [blame] | 178 | page_mapcount(from) && !Page_dcache_dirty(from)) { |
Atsushi Nemoto | bcd0228 | 2006-12-12 17:14:56 +0000 | [diff] [blame] | 179 | vfrom = kmap_coherent(from, vaddr); |
| 180 | copy_page(vto, vfrom); |
Ralf Baechle | eacb9d6 | 2007-04-26 15:46:25 +0100 | [diff] [blame] | 181 | kunmap_coherent(); |
Atsushi Nemoto | bcd0228 | 2006-12-12 17:14:56 +0000 | [diff] [blame] | 182 | } else { |
Cong Wang | 9c02048 | 2011-11-25 23:14:15 +0800 | [diff] [blame] | 183 | vfrom = kmap_atomic(from); |
Atsushi Nemoto | bcd0228 | 2006-12-12 17:14:56 +0000 | [diff] [blame] | 184 | copy_page(vto, vfrom); |
Cong Wang | 9c02048 | 2011-11-25 23:14:15 +0800 | [diff] [blame] | 185 | kunmap_atomic(vfrom); |
Atsushi Nemoto | bcd0228 | 2006-12-12 17:14:56 +0000 | [diff] [blame] | 186 | } |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 187 | if ((!cpu_has_ic_fills_f_dc) || |
Atsushi Nemoto | bcd0228 | 2006-12-12 17:14:56 +0000 | [diff] [blame] | 188 | pages_do_alias((unsigned long)vto, vaddr & PAGE_MASK)) |
| 189 | flush_data_cache_page((unsigned long)vto); |
Cong Wang | 9c02048 | 2011-11-25 23:14:15 +0800 | [diff] [blame] | 190 | kunmap_atomic(vto); |
Atsushi Nemoto | bcd0228 | 2006-12-12 17:14:56 +0000 | [diff] [blame] | 191 | /* Make sure this page is cleared on other CPU's too before using it */ |
| 192 | smp_wmb(); |
| 193 | } |
| 194 | |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 195 | void copy_to_user_page(struct vm_area_struct *vma, |
| 196 | struct page *page, unsigned long vaddr, void *dst, const void *src, |
| 197 | unsigned long len) |
| 198 | { |
Ralf Baechle | 9a74b3e | 2008-02-16 22:34:25 +0000 | [diff] [blame] | 199 | if (cpu_has_dc_aliases && |
Kirill A. Shutemov | e1534ae | 2016-01-15 16:53:46 -0800 | [diff] [blame] | 200 | page_mapcount(page) && !Page_dcache_dirty(page)) { |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 201 | void *vto = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK); |
| 202 | memcpy(vto, src, len); |
Ralf Baechle | eacb9d6 | 2007-04-26 15:46:25 +0100 | [diff] [blame] | 203 | kunmap_coherent(); |
Ralf Baechle | 985c30e | 2007-10-15 16:30:24 +0100 | [diff] [blame] | 204 | } else { |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 205 | memcpy(dst, src, len); |
Ralf Baechle | 985c30e | 2007-10-15 16:30:24 +0100 | [diff] [blame] | 206 | if (cpu_has_dc_aliases) |
| 207 | SetPageDcacheDirty(page); |
| 208 | } |
James Hogan | b2a3c5b | 2016-01-22 10:58:25 +0000 | [diff] [blame] | 209 | if (vma->vm_flags & VM_EXEC) |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 210 | flush_cache_page(vma, vaddr, page_to_pfn(page)); |
| 211 | } |
| 212 | |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 213 | void copy_from_user_page(struct vm_area_struct *vma, |
| 214 | struct page *page, unsigned long vaddr, void *dst, const void *src, |
| 215 | unsigned long len) |
| 216 | { |
Ralf Baechle | 9a74b3e | 2008-02-16 22:34:25 +0000 | [diff] [blame] | 217 | if (cpu_has_dc_aliases && |
Kirill A. Shutemov | e1534ae | 2016-01-15 16:53:46 -0800 | [diff] [blame] | 218 | page_mapcount(page) && !Page_dcache_dirty(page)) { |
Ralf Baechle | 985c30e | 2007-10-15 16:30:24 +0100 | [diff] [blame] | 219 | void *vfrom = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK); |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 220 | memcpy(dst, vfrom, len); |
Ralf Baechle | eacb9d6 | 2007-04-26 15:46:25 +0100 | [diff] [blame] | 221 | kunmap_coherent(); |
Ralf Baechle | 985c30e | 2007-10-15 16:30:24 +0100 | [diff] [blame] | 222 | } else { |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 223 | memcpy(dst, src, len); |
Ralf Baechle | 985c30e | 2007-10-15 16:30:24 +0100 | [diff] [blame] | 224 | if (cpu_has_dc_aliases) |
| 225 | SetPageDcacheDirty(page); |
| 226 | } |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 227 | } |
Geert Uytterhoeven | bf9621a | 2013-09-05 11:22:45 +0200 | [diff] [blame] | 228 | EXPORT_SYMBOL_GPL(copy_from_user_page); |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 229 | |
Ralf Baechle | 84fd089 | 2005-02-07 16:13:07 +0000 | [diff] [blame] | 230 | void __init fixrange_init(unsigned long start, unsigned long end, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | pgd_t *pgd_base) |
| 232 | { |
Ralf Baechle | b633648 | 2014-05-23 16:29:44 +0200 | [diff] [blame] | 233 | #ifdef CONFIG_HIGHMEM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | pgd_t *pgd; |
Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 235 | pud_t *pud; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | pmd_t *pmd; |
| 237 | pte_t *pte; |
Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 238 | int i, j, k; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | unsigned long vaddr; |
| 240 | |
| 241 | vaddr = start; |
Mike Rapoport | 31168f0 | 2019-11-21 18:21:32 +0200 | [diff] [blame] | 242 | i = pgd_index(vaddr); |
| 243 | j = pud_index(vaddr); |
| 244 | k = pmd_index(vaddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | pgd = pgd_base + i; |
| 246 | |
Kevin Cernekee | 464fd83 | 2011-01-05 23:31:30 -0800 | [diff] [blame] | 247 | for ( ; (i < PTRS_PER_PGD) && (vaddr < end); pgd++, i++) { |
Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 248 | pud = (pud_t *)pgd; |
Kevin Cernekee | 464fd83 | 2011-01-05 23:31:30 -0800 | [diff] [blame] | 249 | for ( ; (j < PTRS_PER_PUD) && (vaddr < end); pud++, j++) { |
Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 250 | pmd = (pmd_t *)pud; |
Kevin Cernekee | 464fd83 | 2011-01-05 23:31:30 -0800 | [diff] [blame] | 251 | for (; (k < PTRS_PER_PMD) && (vaddr < end); pmd++, k++) { |
Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 252 | if (pmd_none(*pmd)) { |
Mike Rapoport | e8625dc | 2018-10-30 15:08:54 -0700 | [diff] [blame] | 253 | pte = (pte_t *) memblock_alloc_low(PAGE_SIZE, |
| 254 | PAGE_SIZE); |
Mike Rapoport | 8a7f97b | 2019-03-11 23:30:31 -0700 | [diff] [blame] | 255 | if (!pte) |
| 256 | panic("%s: Failed to allocate %lu bytes align=%lx\n", |
| 257 | __func__, PAGE_SIZE, |
| 258 | PAGE_SIZE); |
| 259 | |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 260 | set_pmd(pmd, __pmd((unsigned long)pte)); |
Ralf Baechle | b72b709 | 2009-03-30 14:49:44 +0200 | [diff] [blame] | 261 | BUG_ON(pte != pte_offset_kernel(pmd, 0)); |
Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 262 | } |
| 263 | vaddr += PMD_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | } |
Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 265 | k = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | } |
| 267 | j = 0; |
| 268 | } |
Ralf Baechle | f8829ca | 2006-10-21 23:17:35 +0100 | [diff] [blame] | 269 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | |
Jiaxun Yang | a5718fe | 2019-08-19 22:23:12 +0800 | [diff] [blame] | 272 | struct maar_walk_info { |
| 273 | struct maar_config cfg[16]; |
| 274 | unsigned int num_cfg; |
| 275 | }; |
| 276 | |
| 277 | static int maar_res_walk(unsigned long start_pfn, unsigned long nr_pages, |
| 278 | void *data) |
| 279 | { |
| 280 | struct maar_walk_info *wi = data; |
| 281 | struct maar_config *cfg = &wi->cfg[wi->num_cfg]; |
| 282 | unsigned int maar_align; |
| 283 | |
| 284 | /* MAAR registers hold physical addresses right shifted by 4 bits */ |
| 285 | maar_align = BIT(MIPS_MAAR_ADDR_SHIFT + 4); |
| 286 | |
| 287 | /* Fill in the MAAR config entry */ |
| 288 | cfg->lower = ALIGN(PFN_PHYS(start_pfn), maar_align); |
| 289 | cfg->upper = ALIGN_DOWN(PFN_PHYS(start_pfn + nr_pages), maar_align) - 1; |
| 290 | cfg->attrs = MIPS_MAAR_S; |
| 291 | |
| 292 | /* Ensure we don't overflow the cfg array */ |
| 293 | if (!WARN_ON(wi->num_cfg >= ARRAY_SIZE(wi->cfg))) |
| 294 | wi->num_cfg++; |
| 295 | |
| 296 | return 0; |
| 297 | } |
| 298 | |
| 299 | |
Paul Burton | def3ab5 | 2015-09-25 08:59:36 -0700 | [diff] [blame] | 300 | unsigned __weak platform_maar_init(unsigned num_pairs) |
| 301 | { |
Jiaxun Yang | a5718fe | 2019-08-19 22:23:12 +0800 | [diff] [blame] | 302 | unsigned int num_configured; |
| 303 | struct maar_walk_info wi; |
Paul Burton | def3ab5 | 2015-09-25 08:59:36 -0700 | [diff] [blame] | 304 | |
Jiaxun Yang | a5718fe | 2019-08-19 22:23:12 +0800 | [diff] [blame] | 305 | wi.num_cfg = 0; |
| 306 | walk_system_ram_range(0, max_pfn, &wi, maar_res_walk); |
Paul Burton | def3ab5 | 2015-09-25 08:59:36 -0700 | [diff] [blame] | 307 | |
Jiaxun Yang | a5718fe | 2019-08-19 22:23:12 +0800 | [diff] [blame] | 308 | num_configured = maar_config(wi.cfg, wi.num_cfg, num_pairs); |
| 309 | if (num_configured < wi.num_cfg) |
| 310 | pr_warn("Not enough MAAR pairs (%u) for all memory regions (%u)\n", |
| 311 | num_pairs, wi.num_cfg); |
Paul Burton | def3ab5 | 2015-09-25 08:59:36 -0700 | [diff] [blame] | 312 | |
| 313 | return num_configured; |
| 314 | } |
| 315 | |
Paul Burton | e060f6e | 2015-09-25 08:59:38 -0700 | [diff] [blame] | 316 | void maar_init(void) |
Paul Burton | def3ab5 | 2015-09-25 08:59:36 -0700 | [diff] [blame] | 317 | { |
| 318 | unsigned num_maars, used, i; |
Paul Burton | 651ca7f | 2015-09-25 08:59:37 -0700 | [diff] [blame] | 319 | phys_addr_t lower, upper, attr; |
Paul Burton | e060f6e | 2015-09-25 08:59:38 -0700 | [diff] [blame] | 320 | static struct { |
| 321 | struct maar_config cfgs[3]; |
| 322 | unsigned used; |
| 323 | } recorded = { { { 0 } }, 0 }; |
Paul Burton | def3ab5 | 2015-09-25 08:59:36 -0700 | [diff] [blame] | 324 | |
| 325 | if (!cpu_has_maar) |
| 326 | return; |
| 327 | |
| 328 | /* Detect the number of MAARs */ |
| 329 | write_c0_maari(~0); |
| 330 | back_to_back_c0_hazard(); |
| 331 | num_maars = read_c0_maari() + 1; |
| 332 | |
| 333 | /* MAARs should be in pairs */ |
| 334 | WARN_ON(num_maars % 2); |
| 335 | |
Paul Burton | e060f6e | 2015-09-25 08:59:38 -0700 | [diff] [blame] | 336 | /* Set MAARs using values we recorded already */ |
| 337 | if (recorded.used) { |
| 338 | used = maar_config(recorded.cfgs, recorded.used, num_maars / 2); |
| 339 | BUG_ON(used != recorded.used); |
| 340 | } else { |
| 341 | /* Configure the required MAARs */ |
| 342 | used = platform_maar_init(num_maars / 2); |
| 343 | } |
Paul Burton | def3ab5 | 2015-09-25 08:59:36 -0700 | [diff] [blame] | 344 | |
| 345 | /* Disable any further MAARs */ |
| 346 | for (i = (used * 2); i < num_maars; i++) { |
| 347 | write_c0_maari(i); |
| 348 | back_to_back_c0_hazard(); |
| 349 | write_c0_maar(0); |
| 350 | back_to_back_c0_hazard(); |
| 351 | } |
Paul Burton | 651ca7f | 2015-09-25 08:59:37 -0700 | [diff] [blame] | 352 | |
Paul Burton | e060f6e | 2015-09-25 08:59:38 -0700 | [diff] [blame] | 353 | if (recorded.used) |
| 354 | return; |
| 355 | |
Paul Burton | 651ca7f | 2015-09-25 08:59:37 -0700 | [diff] [blame] | 356 | pr_info("MAAR configuration:\n"); |
| 357 | for (i = 0; i < num_maars; i += 2) { |
| 358 | write_c0_maari(i); |
| 359 | back_to_back_c0_hazard(); |
| 360 | upper = read_c0_maar(); |
| 361 | |
| 362 | write_c0_maari(i + 1); |
| 363 | back_to_back_c0_hazard(); |
| 364 | lower = read_c0_maar(); |
| 365 | |
| 366 | attr = lower & upper; |
| 367 | lower = (lower & MIPS_MAAR_ADDR) << 4; |
| 368 | upper = ((upper & MIPS_MAAR_ADDR) << 4) | 0xffff; |
| 369 | |
| 370 | pr_info(" [%d]: ", i / 2); |
James Hogan | f359a11 | 2017-03-14 10:15:09 +0000 | [diff] [blame] | 371 | if (!(attr & MIPS_MAAR_VL)) { |
Paul Burton | 651ca7f | 2015-09-25 08:59:37 -0700 | [diff] [blame] | 372 | pr_cont("disabled\n"); |
| 373 | continue; |
| 374 | } |
| 375 | |
| 376 | pr_cont("%pa-%pa", &lower, &upper); |
| 377 | |
| 378 | if (attr & MIPS_MAAR_S) |
| 379 | pr_cont(" speculate"); |
| 380 | |
| 381 | pr_cont("\n"); |
Paul Burton | e060f6e | 2015-09-25 08:59:38 -0700 | [diff] [blame] | 382 | |
| 383 | /* Record the setup for use on secondary CPUs */ |
| 384 | if (used <= ARRAY_SIZE(recorded.cfgs)) { |
| 385 | recorded.cfgs[recorded.used].lower = lower; |
| 386 | recorded.cfgs[recorded.used].upper = upper; |
| 387 | recorded.cfgs[recorded.used].attrs = attr; |
| 388 | recorded.used++; |
| 389 | } |
Paul Burton | 651ca7f | 2015-09-25 08:59:37 -0700 | [diff] [blame] | 390 | } |
Paul Burton | def3ab5 | 2015-09-25 08:59:36 -0700 | [diff] [blame] | 391 | } |
| 392 | |
Yoichi Yuasa | b4819b5 | 2005-06-25 14:54:31 -0700 | [diff] [blame] | 393 | #ifndef CONFIG_NEED_MULTIPLE_NODES |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | void __init paging_init(void) |
| 395 | { |
Ralf Baechle | cce335a | 2007-11-03 02:05:43 +0000 | [diff] [blame] | 396 | unsigned long max_zone_pfns[MAX_NR_ZONES]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | |
| 398 | pagetable_init(); |
| 399 | |
| 400 | #ifdef CONFIG_HIGHMEM |
| 401 | kmap_init(); |
| 402 | #endif |
Atsushi Nemoto | 0550233 | 2007-03-21 00:36:02 +0900 | [diff] [blame] | 403 | #ifdef CONFIG_ZONE_DMA |
Ralf Baechle | cce335a | 2007-11-03 02:05:43 +0000 | [diff] [blame] | 404 | max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | #endif |
Ralf Baechle | cce335a | 2007-11-03 02:05:43 +0000 | [diff] [blame] | 406 | #ifdef CONFIG_ZONE_DMA32 |
| 407 | max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN; |
| 408 | #endif |
| 409 | max_zone_pfns[ZONE_NORMAL] = max_low_pfn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | #ifdef CONFIG_HIGHMEM |
Ralf Baechle | cce335a | 2007-11-03 02:05:43 +0000 | [diff] [blame] | 411 | max_zone_pfns[ZONE_HIGHMEM] = highend_pfn; |
Franck Bui-Huu | cbb8fc0 | 2006-12-06 16:48:28 +0100 | [diff] [blame] | 412 | |
Ralf Baechle | cce335a | 2007-11-03 02:05:43 +0000 | [diff] [blame] | 413 | if (cpu_has_dc_aliases && max_low_pfn != highend_pfn) { |
Franck Bui-Huu | cbb8fc0 | 2006-12-06 16:48:28 +0100 | [diff] [blame] | 414 | printk(KERN_WARNING "This processor doesn't support highmem." |
Ralf Baechle | cce335a | 2007-11-03 02:05:43 +0000 | [diff] [blame] | 415 | " %ldk highmem ignored\n", |
| 416 | (highend_pfn - max_low_pfn) << (PAGE_SHIFT - 10)); |
| 417 | max_zone_pfns[ZONE_HIGHMEM] = max_low_pfn; |
Franck Bui-Huu | cbb8fc0 | 2006-12-06 16:48:28 +0100 | [diff] [blame] | 418 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | #endif |
| 420 | |
Ralf Baechle | cce335a | 2007-11-03 02:05:43 +0000 | [diff] [blame] | 421 | free_area_init_nodes(max_zone_pfns); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | } |
| 423 | |
Daniel Jacobowitz | 3d50375 | 2005-01-20 19:59:54 -0500 | [diff] [blame] | 424 | #ifdef CONFIG_64BIT |
| 425 | static struct kcore_list kcore_kseg0; |
| 426 | #endif |
| 427 | |
Jiaxun Yang | a5718fe | 2019-08-19 22:23:12 +0800 | [diff] [blame] | 428 | static inline void __init mem_init_free_highmem(void) |
Jiang Liu | 1132137 | 2013-07-03 15:04:04 -0700 | [diff] [blame] | 429 | { |
| 430 | #ifdef CONFIG_HIGHMEM |
| 431 | unsigned long tmp; |
| 432 | |
Paul Burton | 058effe | 2016-09-02 15:17:31 +0100 | [diff] [blame] | 433 | if (cpu_has_dc_aliases) |
| 434 | return; |
| 435 | |
Jiang Liu | 1132137 | 2013-07-03 15:04:04 -0700 | [diff] [blame] | 436 | for (tmp = highstart_pfn; tmp < highend_pfn; tmp++) { |
Paul Burton | 625cfb6 | 2019-08-23 17:48:58 +0100 | [diff] [blame] | 437 | struct page *page = pfn_to_page(tmp); |
| 438 | |
Jiaxun Yang | a5718fe | 2019-08-19 22:23:12 +0800 | [diff] [blame] | 439 | if (!memblock_is_memory(PFN_PHYS(tmp))) |
Jiang Liu | 1132137 | 2013-07-03 15:04:04 -0700 | [diff] [blame] | 440 | SetPageReserved(page); |
| 441 | else |
| 442 | free_highmem_page(page); |
| 443 | } |
| 444 | #endif |
| 445 | } |
| 446 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | void __init mem_init(void) |
| 448 | { |
Paul Burton | 05d013a | 2019-09-18 22:03:30 +0000 | [diff] [blame] | 449 | /* |
| 450 | * When _PFN_SHIFT is greater than PAGE_SHIFT we won't have enough PTE |
| 451 | * bits to hold a full 32b physical address on MIPS32 systems. |
| 452 | */ |
| 453 | BUILD_BUG_ON(IS_ENABLED(CONFIG_32BIT) && (_PFN_SHIFT > PAGE_SHIFT)); |
| 454 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | #ifdef CONFIG_HIGHMEM |
| 456 | #ifdef CONFIG_DISCONTIGMEM |
| 457 | #error "CONFIG_HIGHMEM and CONFIG_DISCONTIGMEM dont work together yet" |
| 458 | #endif |
Kevin Cernekee | b6da0ff | 2010-05-30 00:32:51 -0700 | [diff] [blame] | 459 | max_mapnr = highend_pfn ? highend_pfn : max_low_pfn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | #else |
Atsushi Nemoto | 565200a | 2006-07-07 00:26:02 +0900 | [diff] [blame] | 461 | max_mapnr = max_low_pfn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | #endif |
| 463 | high_memory = (void *) __va(max_low_pfn << PAGE_SHIFT); |
| 464 | |
Paul Burton | ab9988a | 2014-07-14 10:32:15 +0100 | [diff] [blame] | 465 | maar_init(); |
Mike Rapoport | c6ffc5c | 2018-10-30 15:09:30 -0700 | [diff] [blame] | 466 | memblock_free_all(); |
Jiang Liu | 31605922 | 2013-04-29 15:06:43 -0700 | [diff] [blame] | 467 | setup_zero_pages(); /* Setup zeroed pages. */ |
Jiang Liu | 1132137 | 2013-07-03 15:04:04 -0700 | [diff] [blame] | 468 | mem_init_free_highmem(); |
| 469 | mem_init_print_info(NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | |
Daniel Jacobowitz | 3d50375 | 2005-01-20 19:59:54 -0500 | [diff] [blame] | 471 | #ifdef CONFIG_64BIT |
| 472 | if ((unsigned long) &_text > (unsigned long) CKSEG0) |
| 473 | /* The -4 is a hack so that user tools don't have to handle |
| 474 | the overflow. */ |
KAMEZAWA Hiroyuki | c30bb2a | 2009-09-22 16:45:43 -0700 | [diff] [blame] | 475 | kclist_add(&kcore_kseg0, (void *) CKSEG0, |
| 476 | 0x80000000 - 4, KCORE_TEXT); |
Daniel Jacobowitz | 3d50375 | 2005-01-20 19:59:54 -0500 | [diff] [blame] | 477 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | } |
Yoichi Yuasa | b4819b5 | 2005-06-25 14:54:31 -0700 | [diff] [blame] | 479 | #endif /* !CONFIG_NEED_MULTIPLE_NODES */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | |
Atsushi Nemoto | c44e8d5 | 2006-12-30 00:43:59 +0900 | [diff] [blame] | 481 | void free_init_pages(const char *what, unsigned long begin, unsigned long end) |
Ralf Baechle | 6fd11a2 | 2006-03-24 13:21:50 +0000 | [diff] [blame] | 482 | { |
Franck Bui-Huu | acd86b8 | 2006-10-19 13:20:05 +0200 | [diff] [blame] | 483 | unsigned long pfn; |
Ralf Baechle | 6fd11a2 | 2006-03-24 13:21:50 +0000 | [diff] [blame] | 484 | |
Franck Bui-Huu | acd86b8 | 2006-10-19 13:20:05 +0200 | [diff] [blame] | 485 | for (pfn = PFN_UP(begin); pfn < PFN_DOWN(end); pfn++) { |
| 486 | struct page *page = pfn_to_page(pfn); |
| 487 | void *addr = phys_to_virt(PFN_PHYS(pfn)); |
| 488 | |
Franck Bui-Huu | acd86b8 | 2006-10-19 13:20:05 +0200 | [diff] [blame] | 489 | memset(addr, POISON_FREE_INITMEM, PAGE_SIZE); |
Jiang Liu | 31605922 | 2013-04-29 15:06:43 -0700 | [diff] [blame] | 490 | free_reserved_page(page); |
Ralf Baechle | 6fd11a2 | 2006-03-24 13:21:50 +0000 | [diff] [blame] | 491 | } |
| 492 | printk(KERN_INFO "Freeing %s: %ldk freed\n", what, (end - begin) >> 10); |
| 493 | } |
| 494 | |
Markos Chandras | 0893d3f | 2014-01-15 14:06:03 +0000 | [diff] [blame] | 495 | void (*free_init_pages_eva)(void *begin, void *end) = NULL; |
| 496 | |
Fabian Frederick | bd721ea | 2016-08-02 14:03:33 -0700 | [diff] [blame] | 497 | void __ref free_initmem(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | { |
Atsushi Nemoto | c44e8d5 | 2006-12-30 00:43:59 +0900 | [diff] [blame] | 499 | prom_free_prom_memory(); |
Markos Chandras | 0893d3f | 2014-01-15 14:06:03 +0000 | [diff] [blame] | 500 | /* |
| 501 | * Let the platform define a specific function to free the |
| 502 | * init section since EVA may have used any possible mapping |
| 503 | * between virtual and physical addresses. |
| 504 | */ |
| 505 | if (free_init_pages_eva) |
| 506 | free_init_pages_eva((void *)&__init_begin, (void *)&__init_end); |
| 507 | else |
| 508 | free_initmem_default(POISON_FREE_INITMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | } |
Atsushi Nemoto | 69a6c31 | 2007-01-24 01:21:05 +0900 | [diff] [blame] | 510 | |
Thomas Bogendoerfer | f3c560a | 2020-01-09 13:23:31 +0100 | [diff] [blame] | 511 | #ifdef CONFIG_HAVE_SETUP_PER_CPU_AREA |
| 512 | unsigned long __per_cpu_offset[NR_CPUS] __read_mostly; |
| 513 | EXPORT_SYMBOL(__per_cpu_offset); |
| 514 | |
| 515 | static int __init pcpu_cpu_distance(unsigned int from, unsigned int to) |
| 516 | { |
| 517 | return node_distance(cpu_to_node(from), cpu_to_node(to)); |
| 518 | } |
| 519 | |
| 520 | static void * __init pcpu_fc_alloc(unsigned int cpu, size_t size, |
| 521 | size_t align) |
| 522 | { |
| 523 | return memblock_alloc_try_nid(size, align, __pa(MAX_DMA_ADDRESS), |
| 524 | MEMBLOCK_ALLOC_ACCESSIBLE, |
| 525 | cpu_to_node(cpu)); |
| 526 | } |
| 527 | |
| 528 | static void __init pcpu_fc_free(void *ptr, size_t size) |
| 529 | { |
| 530 | memblock_free_early(__pa(ptr), size); |
| 531 | } |
| 532 | |
| 533 | void __init setup_per_cpu_areas(void) |
| 534 | { |
| 535 | unsigned long delta; |
| 536 | unsigned int cpu; |
| 537 | int rc; |
| 538 | |
| 539 | /* |
| 540 | * Always reserve area for module percpu variables. That's |
| 541 | * what the legacy allocator did. |
| 542 | */ |
| 543 | rc = pcpu_embed_first_chunk(PERCPU_MODULE_RESERVE, |
| 544 | PERCPU_DYNAMIC_RESERVE, PAGE_SIZE, |
| 545 | pcpu_cpu_distance, |
| 546 | pcpu_fc_alloc, pcpu_fc_free); |
| 547 | if (rc < 0) |
| 548 | panic("Failed to initialize percpu areas."); |
| 549 | |
| 550 | delta = (unsigned long)pcpu_base_addr - (unsigned long)__per_cpu_start; |
| 551 | for_each_possible_cpu(cpu) |
| 552 | __per_cpu_offset[cpu] = delta + pcpu_unit_offsets[cpu]; |
| 553 | } |
| 554 | #endif |
| 555 | |
David Daney | 8262228 | 2009-10-14 12:16:56 -0700 | [diff] [blame] | 556 | #ifndef CONFIG_MIPS_PGD_C0_CONTEXT |
Atsushi Nemoto | 69a6c31 | 2007-01-24 01:21:05 +0900 | [diff] [blame] | 557 | unsigned long pgd_current[NR_CPUS]; |
David Daney | 8262228 | 2009-10-14 12:16:56 -0700 | [diff] [blame] | 558 | #endif |
Ralf Baechle | 9975e77 | 2007-08-13 12:44:41 +0100 | [diff] [blame] | 559 | |
| 560 | /* |
David Daney | 485172b | 2012-08-14 11:08:01 -0700 | [diff] [blame] | 561 | * Align swapper_pg_dir in to 64K, allows its address to be loaded |
| 562 | * with a single LUI instruction in the TLB handlers. If we used |
| 563 | * __aligned(64K), its size would get rounded up to the alignment |
| 564 | * size, and waste space. So we place it in its own section and align |
| 565 | * it in the linker script. |
Ralf Baechle | 9975e77 | 2007-08-13 12:44:41 +0100 | [diff] [blame] | 566 | */ |
Alexandre Belloni | 2f0b649 | 2018-09-28 11:32:02 +0200 | [diff] [blame] | 567 | pgd_t swapper_pg_dir[PTRS_PER_PGD] __section(.bss..swapper_pg_dir); |
Alex Belits | 3377e22 | 2017-02-16 17:27:34 -0800 | [diff] [blame] | 568 | #ifndef __PAGETABLE_PUD_FOLDED |
| 569 | pud_t invalid_pud_table[PTRS_PER_PUD] __page_aligned_bss; |
| 570 | #endif |
David Daney | 325f8a0 | 2009-12-04 13:52:36 -0800 | [diff] [blame] | 571 | #ifndef __PAGETABLE_PMD_FOLDED |
David Daney | 485172b | 2012-08-14 11:08:01 -0700 | [diff] [blame] | 572 | pmd_t invalid_pmd_table[PTRS_PER_PMD] __page_aligned_bss; |
James Hogan | ccf0151 | 2015-10-16 16:33:13 +0100 | [diff] [blame] | 573 | EXPORT_SYMBOL_GPL(invalid_pmd_table); |
Atsushi Nemoto | 69a6c31 | 2007-01-24 01:21:05 +0900 | [diff] [blame] | 574 | #endif |
David Daney | 485172b | 2012-08-14 11:08:01 -0700 | [diff] [blame] | 575 | pte_t invalid_pte_table[PTRS_PER_PTE] __page_aligned_bss; |
Paul Burton | aa4089e | 2016-11-07 11:14:12 +0000 | [diff] [blame] | 576 | EXPORT_SYMBOL(invalid_pte_table); |