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 - 1999, 2000, 03 Ralf Baechle |
| 7 | * Copyright (C) 1999, 2000 Silicon Graphics, Inc. |
| 8 | */ |
| 9 | #ifndef _ASM_PAGE_H |
| 10 | #define _ASM_PAGE_H |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <spaces.h> |
Nelson Elhage | 99502d9 | 2009-07-31 16:58:17 -0400 | [diff] [blame] | 13 | #include <linux/const.h> |
Leonid Yegoshin | 75b5b5e | 2013-11-14 16:12:31 +0000 | [diff] [blame] | 14 | #include <linux/kernel.h> |
| 15 | #include <asm/mipsregs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | /* |
| 18 | * PAGE_SHIFT determines the page size |
| 19 | */ |
| 20 | #ifdef CONFIG_PAGE_SIZE_4KB |
| 21 | #define PAGE_SHIFT 12 |
| 22 | #endif |
| 23 | #ifdef CONFIG_PAGE_SIZE_8KB |
| 24 | #define PAGE_SHIFT 13 |
| 25 | #endif |
| 26 | #ifdef CONFIG_PAGE_SIZE_16KB |
| 27 | #define PAGE_SHIFT 14 |
| 28 | #endif |
Ralf Baechle | c52399b | 2009-04-02 14:07:10 +0200 | [diff] [blame] | 29 | #ifdef CONFIG_PAGE_SIZE_32KB |
| 30 | #define PAGE_SHIFT 15 |
| 31 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #ifdef CONFIG_PAGE_SIZE_64KB |
| 33 | #define PAGE_SHIFT 16 |
| 34 | #endif |
Nelson Elhage | 99502d9 | 2009-07-31 16:58:17 -0400 | [diff] [blame] | 35 | #define PAGE_SIZE (_AC(1,UL) << PAGE_SHIFT) |
Dan Williams | 800dc4f | 2016-01-22 09:20:37 -0800 | [diff] [blame] | 36 | #define PAGE_MASK (~((1 << PAGE_SHIFT) - 1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Leonid Yegoshin | 75b5b5e | 2013-11-14 16:12:31 +0000 | [diff] [blame] | 38 | /* |
| 39 | * This is used for calculating the real page sizes |
Geert Uytterhoeven | 91ff7ac | 2014-08-25 10:50:12 +0200 | [diff] [blame] | 40 | * for FTLB or VTLB + FTLB configurations. |
Leonid Yegoshin | 75b5b5e | 2013-11-14 16:12:31 +0000 | [diff] [blame] | 41 | */ |
| 42 | static inline unsigned int page_size_ftlb(unsigned int mmuextdef) |
| 43 | { |
| 44 | switch (mmuextdef) { |
| 45 | case MIPS_CONF4_MMUEXTDEF_FTLBSIZEEXT: |
| 46 | if (PAGE_SIZE == (1 << 30)) |
| 47 | return 5; |
| 48 | if (PAGE_SIZE == (1llu << 32)) |
| 49 | return 6; |
| 50 | if (PAGE_SIZE > (256 << 10)) |
| 51 | return 7; /* reserved */ |
| 52 | /* fall through */ |
| 53 | case MIPS_CONF4_MMUEXTDEF_VTLBSIZEEXT: |
| 54 | return (PAGE_SHIFT - 10) / 2; |
| 55 | default: |
| 56 | panic("Invalid FTLB configuration with Conf4_mmuextdef=%d value\n", |
| 57 | mmuextdef >> 14); |
| 58 | } |
| 59 | } |
| 60 | |
David Daney | aa1762f | 2012-10-17 00:48:10 +0200 | [diff] [blame] | 61 | #ifdef CONFIG_MIPS_HUGE_TLB_SUPPORT |
David Daney | dd79439 | 2009-05-27 17:47:43 -0700 | [diff] [blame] | 62 | #define HPAGE_SHIFT (PAGE_SHIFT + PAGE_SHIFT - 3) |
Nelson Elhage | 99502d9 | 2009-07-31 16:58:17 -0400 | [diff] [blame] | 63 | #define HPAGE_SIZE (_AC(1,UL) << HPAGE_SHIFT) |
David Daney | dd79439 | 2009-05-27 17:47:43 -0700 | [diff] [blame] | 64 | #define HPAGE_MASK (~(HPAGE_SIZE - 1)) |
| 65 | #define HUGETLB_PAGE_ORDER (HPAGE_SHIFT - PAGE_SHIFT) |
David Daney | aa1762f | 2012-10-17 00:48:10 +0200 | [diff] [blame] | 66 | #else /* !CONFIG_MIPS_HUGE_TLB_SUPPORT */ |
Hillf Danton | f467e4bf | 2012-01-11 15:37:13 +0100 | [diff] [blame] | 67 | #define HPAGE_SHIFT ({BUILD_BUG(); 0; }) |
| 68 | #define HPAGE_SIZE ({BUILD_BUG(); 0; }) |
| 69 | #define HPAGE_MASK ({BUILD_BUG(); 0; }) |
| 70 | #define HUGETLB_PAGE_ORDER ({BUILD_BUG(); 0; }) |
David Daney | aa1762f | 2012-10-17 00:48:10 +0200 | [diff] [blame] | 71 | #endif /* CONFIG_MIPS_HUGE_TLB_SUPPORT */ |
David Daney | dd79439 | 2009-05-27 17:47:43 -0700 | [diff] [blame] | 72 | |
Franck Bui-Huu | 41b0483 | 2007-06-04 17:46:34 +0200 | [diff] [blame] | 73 | #include <linux/pfn.h> |
Franck Bui-Huu | 6f284a2 | 2007-01-10 09:44:05 +0100 | [diff] [blame] | 74 | |
Dmitri Vorobiev | c29d150 | 2008-07-15 19:57:32 +0300 | [diff] [blame] | 75 | extern void build_clear_page(void); |
| 76 | extern void build_copy_page(void); |
| 77 | |
Franck Bui-Huu | 6f284a2 | 2007-01-10 09:44:05 +0100 | [diff] [blame] | 78 | /* |
| 79 | * It's normally defined only for FLATMEM config but it's |
| 80 | * used in our early mem init code for all memory models. |
| 81 | * So always define it. |
| 82 | */ |
| 83 | #define ARCH_PFN_OFFSET PFN_UP(PHYS_OFFSET) |
| 84 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | extern void clear_page(void * page); |
| 86 | extern void copy_page(void * to, void * from); |
| 87 | |
| 88 | extern unsigned long shm_align_mask; |
| 89 | |
| 90 | static inline unsigned long pages_do_alias(unsigned long addr1, |
| 91 | unsigned long addr2) |
| 92 | { |
| 93 | return (addr1 ^ addr2) & shm_align_mask; |
| 94 | } |
| 95 | |
| 96 | struct page; |
| 97 | |
| 98 | static inline void clear_user_page(void *addr, unsigned long vaddr, |
| 99 | struct page *page) |
| 100 | { |
| 101 | extern void (*flush_data_cache_page)(unsigned long addr); |
| 102 | |
| 103 | clear_page(addr); |
Ralf Baechle | 585fa72 | 2006-08-12 16:40:08 +0100 | [diff] [blame] | 104 | if (pages_do_alias((unsigned long) addr, vaddr & PAGE_MASK)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | flush_data_cache_page((unsigned long)addr); |
| 106 | } |
| 107 | |
Atsushi Nemoto | bcd0228 | 2006-12-12 17:14:56 +0000 | [diff] [blame] | 108 | struct vm_area_struct; |
| 109 | extern void copy_user_highpage(struct page *to, struct page *from, |
| 110 | unsigned long vaddr, struct vm_area_struct *vma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
Atsushi Nemoto | bcd0228 | 2006-12-12 17:14:56 +0000 | [diff] [blame] | 112 | #define __HAVE_ARCH_COPY_USER_HIGHPAGE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
| 114 | /* |
| 115 | * These are used to make use of C type-checking.. |
| 116 | */ |
Ralf Baechle | 34adb28 | 2014-11-22 00:16:48 +0100 | [diff] [blame] | 117 | #ifdef CONFIG_PHYS_ADDR_T_64BIT |
Ralf Baechle | ec917c2c | 2005-10-07 16:58:15 +0100 | [diff] [blame] | 118 | #ifdef CONFIG_CPU_MIPS32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | typedef struct { unsigned long pte_low, pte_high; } pte_t; |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 120 | #define pte_val(x) ((x).pte_low | ((unsigned long long)(x).pte_high << 32)) |
| 121 | #define __pte(x) ({ pte_t __pte = {(x), ((unsigned long long)(x)) >> 32}; __pte; }) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | #else |
| 123 | typedef struct { unsigned long long pte; } pte_t; |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 124 | #define pte_val(x) ((x).pte) |
Ralf Baechle | d34555f | 2006-08-31 19:39:09 +0100 | [diff] [blame] | 125 | #define __pte(x) ((pte_t) { (x) } ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | #endif |
| 127 | #else |
| 128 | typedef struct { unsigned long pte; } pte_t; |
| 129 | #define pte_val(x) ((x).pte) |
Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 130 | #define __pte(x) ((pte_t) { (x) } ) |
Ralf Baechle | d34555f | 2006-08-31 19:39:09 +0100 | [diff] [blame] | 131 | #endif |
Martin Schwidefsky | 2f569af | 2008-02-08 04:22:04 -0800 | [diff] [blame] | 132 | typedef struct page *pgtable_t; |
Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 133 | |
| 134 | /* |
Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 135 | * Right now we don't support 4-level pagetables, so all pud-related |
| 136 | * definitions come from <asm-generic/pgtable-nopud.h>. |
| 137 | */ |
| 138 | |
| 139 | /* |
| 140 | * Finall the top of the hierarchy, the pgd |
| 141 | */ |
| 142 | typedef struct { unsigned long pgd; } pgd_t; |
| 143 | #define pgd_val(x) ((x).pgd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | #define __pgd(x) ((pgd_t) { (x) } ) |
Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 145 | |
| 146 | /* |
| 147 | * Manipulate page protection bits |
| 148 | */ |
| 149 | typedef struct { unsigned long pgprot; } pgprot_t; |
| 150 | #define pgprot_val(x) ((x).pgprot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | #define __pgprot(x) ((pgprot_t) { (x) } ) |
| 152 | |
Ralf Baechle | c6e8b58 | 2005-02-10 12:19:59 +0000 | [diff] [blame] | 153 | /* |
| 154 | * On R4000-style MMUs where a TLB entry is mapping a adjacent even / odd |
| 155 | * pair of pages we only have a single global bit per pair of pages. When |
| 156 | * writing to the TLB make sure we always have the bit set for both pages |
| 157 | * or none. This macro is used to access the `buddy' of the pte we're just |
| 158 | * working on. |
| 159 | */ |
| 160 | #define ptep_buddy(x) ((pte_t *)((unsigned long)(x) ^ sizeof(pte_t))) |
| 161 | |
Franck Bui-Huu | 6f284a2 | 2007-01-10 09:44:05 +0100 | [diff] [blame] | 162 | /* |
| 163 | * __pa()/__va() should be used only during mem init. |
| 164 | */ |
Paul Burton | 0d8d83d | 2016-08-02 11:40:57 +0100 | [diff] [blame] | 165 | static inline unsigned long ___pa(unsigned long x) |
| 166 | { |
Masahiro Yamada | a5ff1b3 | 2016-08-25 15:17:02 -0700 | [diff] [blame] | 167 | if (IS_ENABLED(CONFIG_64BIT)) { |
Paul Burton | 0d8d83d | 2016-08-02 11:40:57 +0100 | [diff] [blame] | 168 | /* |
| 169 | * For MIPS64 the virtual address may either be in one of |
| 170 | * the compatibility segements ckseg0 or ckseg1, or it may |
| 171 | * be in xkphys. |
| 172 | */ |
| 173 | return x < CKSEG0 ? XPHYSADDR(x) : CPHYSADDR(x); |
| 174 | } |
| 175 | |
Masahiro Yamada | a5ff1b3 | 2016-08-25 15:17:02 -0700 | [diff] [blame] | 176 | if (!IS_ENABLED(CONFIG_EVA)) { |
Paul Burton | 0d8d83d | 2016-08-02 11:40:57 +0100 | [diff] [blame] | 177 | /* |
| 178 | * We're using the standard MIPS32 legacy memory map, ie. |
| 179 | * the address x is going to be in kseg0 or kseg1. We can |
| 180 | * handle either case by masking out the desired bits using |
| 181 | * CPHYSADDR. |
| 182 | */ |
| 183 | return CPHYSADDR(x); |
| 184 | } |
| 185 | |
| 186 | /* |
| 187 | * EVA is in use so the memory map could be anything, making it not |
| 188 | * safe to just mask out bits. |
| 189 | */ |
| 190 | return x - PAGE_OFFSET + PHYS_OFFSET; |
| 191 | } |
| 192 | #define __pa(x) ___pa((unsigned long)(x)) |
Franck Bui-Huu | 6f284a2 | 2007-01-10 09:44:05 +0100 | [diff] [blame] | 193 | #define __va(x) ((void *)((unsigned long)(x) + PAGE_OFFSET - PHYS_OFFSET)) |
David Daney | 49c426b | 2013-05-07 17:11:16 +0000 | [diff] [blame] | 194 | #include <asm/io.h> |
Ralf Baechle | 5707bf6 | 2010-08-17 16:01:59 +0100 | [diff] [blame] | 195 | |
| 196 | /* |
| 197 | * RELOC_HIDE was originally added by 6007b903dfe5f1d13e0c711ac2894bdd4a61b1ad |
| 198 | * (lmo) rsp. 8431fd094d625b94d364fe393076ccef88e6ce18 (kernel.org). The |
| 199 | * discussion can be found in lkml posting |
| 200 | * <a2ebde260608230500o3407b108hc03debb9da6e62c@mail.gmail.com> which is |
| 201 | * archived at http://lists.linuxcoding.com/kernel/2006-q3/msg17360.html |
| 202 | * |
| 203 | * It is unclear if the misscompilations mentioned in |
| 204 | * http://lkml.org/lkml/2010/8/8/138 also affect MIPS so we keep this one |
| 205 | * until GCC 3.x has been retired before we can apply |
| 206 | * https://patchwork.linux-mips.org/patch/1541/ |
| 207 | */ |
| 208 | |
Leonid Yegoshin | 27b3db2 | 2014-01-09 13:06:34 +0000 | [diff] [blame] | 209 | #ifndef __pa_symbol |
Ralf Baechle | 21a151d | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 210 | #define __pa_symbol(x) __pa(RELOC_HIDE((unsigned long)(x), 0)) |
Leonid Yegoshin | 27b3db2 | 2014-01-09 13:06:34 +0000 | [diff] [blame] | 211 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
| 213 | #define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT) |
| 214 | |
Ralf Baechle | e53639d | 2006-06-12 09:13:56 +0100 | [diff] [blame] | 215 | #ifdef CONFIG_FLATMEM |
| 216 | |
Ralf Baechle | 8b92321 | 2013-05-18 17:02:59 +0200 | [diff] [blame] | 217 | static inline int pfn_valid(unsigned long pfn) |
| 218 | { |
| 219 | /* avoid <linux/mm.h> include hell */ |
| 220 | extern unsigned long max_mapnr; |
Ralf Baechle | 95486e4 | 2015-11-16 12:07:10 +0100 | [diff] [blame] | 221 | unsigned long pfn_offset = ARCH_PFN_OFFSET; |
Ralf Baechle | 8b92321 | 2013-05-18 17:02:59 +0200 | [diff] [blame] | 222 | |
Ralf Baechle | 95486e4 | 2015-11-16 12:07:10 +0100 | [diff] [blame] | 223 | return pfn >= pfn_offset && pfn < max_mapnr; |
Ralf Baechle | 8b92321 | 2013-05-18 17:02:59 +0200 | [diff] [blame] | 224 | } |
Ralf Baechle | e53639d | 2006-06-12 09:13:56 +0100 | [diff] [blame] | 225 | |
Atsushi Nemoto | 7de58fa | 2006-07-05 01:22:44 +0900 | [diff] [blame] | 226 | #elif defined(CONFIG_SPARSEMEM) |
| 227 | |
| 228 | /* pfn_valid is defined in linux/mmzone.h */ |
| 229 | |
Ralf Baechle | e53639d | 2006-06-12 09:13:56 +0100 | [diff] [blame] | 230 | #elif defined(CONFIG_NEED_MULTIPLE_NODES) |
| 231 | |
| 232 | #define pfn_valid(pfn) \ |
| 233 | ({ \ |
| 234 | unsigned long __pfn = (pfn); \ |
| 235 | int __n = pfn_to_nid(__pfn); \ |
| 236 | ((__n >= 0) ? (__pfn < NODE_DATA(__n)->node_start_pfn + \ |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 237 | NODE_DATA(__n)->node_spanned_pages) \ |
| 238 | : 0); \ |
Ralf Baechle | e53639d | 2006-06-12 09:13:56 +0100 | [diff] [blame] | 239 | }) |
| 240 | |
Ralf Baechle | e53639d | 2006-06-12 09:13:56 +0100 | [diff] [blame] | 241 | #endif |
| 242 | |
Zubair Lutfullah Kakakhel | 4d5b3bd | 2014-07-14 16:39:19 +0100 | [diff] [blame] | 243 | #define virt_to_page(kaddr) pfn_to_page(PFN_DOWN(virt_to_phys((void *) \ |
| 244 | (kaddr)))) |
Ralf Baechle | d3ce884 | 2012-12-28 15:34:40 +0100 | [diff] [blame] | 245 | |
| 246 | extern int __virt_addr_valid(const volatile void *kaddr); |
| 247 | #define virt_addr_valid(kaddr) \ |
| 248 | __virt_addr_valid((const volatile void *) (kaddr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | |
Paul Burton | 1a770b8 | 2016-07-08 11:06:20 +0100 | [diff] [blame] | 250 | #define VM_DATA_DEFAULT_FLAGS \ |
| 251 | (VM_READ | VM_WRITE | \ |
| 252 | ((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0) | \ |
| 253 | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | |
Leonid Yegoshin | ed3ce16 | 2013-06-20 14:36:30 +0000 | [diff] [blame] | 255 | #define UNCAC_ADDR(addr) ((addr) - PAGE_OFFSET + UNCAC_BASE) |
| 256 | #define CAC_ADDR(addr) ((addr) - UNCAC_BASE + PAGE_OFFSET) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | |
KAMEZAWA Hiroyuki | a02036e7 | 2006-03-27 01:15:43 -0800 | [diff] [blame] | 258 | #include <asm-generic/memory_model.h> |
Arnd Bergmann | 5b17e1c | 2009-05-13 22:56:30 +0000 | [diff] [blame] | 259 | #include <asm-generic/getorder.h> |
Stephen Rothwell | fd4fd5a | 2005-09-03 15:54:30 -0700 | [diff] [blame] | 260 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | #endif /* _ASM_PAGE_H */ |