Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2013 |
| 4 | * David Feng <fenghua@phytium.com.cn> |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef _ASM_ARMV8_MMU_H_ |
| 8 | #define _ASM_ARMV8_MMU_H_ |
| 9 | |
Simon Glass | f11478f | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 10 | #include <hang.h> |
Baruch Siach | 401885a | 2018-11-11 12:31:01 +0200 | [diff] [blame] | 11 | #include <linux/const.h> |
| 12 | |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 13 | /* |
Sergey Temerkhanov | 78eaa49 | 2015-10-14 09:55:45 -0700 | [diff] [blame] | 14 | * block/section address mask and size definitions. |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 15 | */ |
Alexander Graf | e317fe8 | 2016-03-04 01:09:47 +0100 | [diff] [blame] | 16 | |
| 17 | /* PAGE_SHIFT determines the page size */ |
| 18 | #undef PAGE_SIZE |
Alexander Graf | e317fe8 | 2016-03-04 01:09:47 +0100 | [diff] [blame] | 19 | #define PAGE_SHIFT 12 |
| 20 | #define PAGE_SIZE (1 << PAGE_SHIFT) |
Andy Yan | d2eb8c1 | 2017-08-17 15:55:50 +0800 | [diff] [blame] | 21 | #define PAGE_MASK (~(PAGE_SIZE - 1)) |
Alexander Graf | e317fe8 | 2016-03-04 01:09:47 +0100 | [diff] [blame] | 22 | |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 23 | /***************************************************************/ |
| 24 | |
| 25 | /* |
| 26 | * Memory types |
| 27 | */ |
| 28 | #define MT_DEVICE_NGNRNE 0 |
| 29 | #define MT_DEVICE_NGNRE 1 |
| 30 | #define MT_DEVICE_GRE 2 |
| 31 | #define MT_NORMAL_NC 3 |
| 32 | #define MT_NORMAL 4 |
| 33 | |
Sergey Temerkhanov | 78eaa49 | 2015-10-14 09:55:45 -0700 | [diff] [blame] | 34 | #define MEMORY_ATTRIBUTES ((0x00 << (MT_DEVICE_NGNRNE * 8)) | \ |
| 35 | (0x04 << (MT_DEVICE_NGNRE * 8)) | \ |
| 36 | (0x0c << (MT_DEVICE_GRE * 8)) | \ |
| 37 | (0x44 << (MT_NORMAL_NC * 8)) | \ |
| 38 | (UL(0xff) << (MT_NORMAL * 8))) |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 39 | |
| 40 | /* |
| 41 | * Hardware page table definitions. |
| 42 | * |
Sergey Temerkhanov | 78eaa49 | 2015-10-14 09:55:45 -0700 | [diff] [blame] | 43 | */ |
| 44 | |
Alexander Graf | e317fe8 | 2016-03-04 01:09:47 +0100 | [diff] [blame] | 45 | #define PTE_TYPE_MASK (3 << 0) |
| 46 | #define PTE_TYPE_FAULT (0 << 0) |
| 47 | #define PTE_TYPE_TABLE (3 << 0) |
Peng Fan | e0e9871 | 2017-11-28 10:31:28 +0800 | [diff] [blame] | 48 | #define PTE_TYPE_PAGE (3 << 0) |
Alexander Graf | e317fe8 | 2016-03-04 01:09:47 +0100 | [diff] [blame] | 49 | #define PTE_TYPE_BLOCK (1 << 0) |
York Sun | 5bb14e0 | 2017-03-06 09:02:33 -0800 | [diff] [blame] | 50 | #define PTE_TYPE_VALID (1 << 0) |
Sergey Temerkhanov | 78eaa49 | 2015-10-14 09:55:45 -0700 | [diff] [blame] | 51 | |
Chris Packham | a6c68c6 | 2023-10-27 13:23:54 +1300 | [diff] [blame] | 52 | #define PTE_TABLE_PXN (1UL << 59) |
| 53 | #define PTE_TABLE_XN (1UL << 60) |
Caleb Connolly | 5067060 | 2024-06-17 10:03:47 +0200 | [diff] [blame] | 54 | #define PTE_TABLE_AP (3UL << 61) |
Chris Packham | a6c68c6 | 2023-10-27 13:23:54 +1300 | [diff] [blame] | 55 | #define PTE_TABLE_NS (1UL << 63) |
Sergey Temerkhanov | 78eaa49 | 2015-10-14 09:55:45 -0700 | [diff] [blame] | 56 | |
| 57 | /* |
| 58 | * Block |
| 59 | */ |
Alexander Graf | e317fe8 | 2016-03-04 01:09:47 +0100 | [diff] [blame] | 60 | #define PTE_BLOCK_MEMTYPE(x) ((x) << 2) |
Alexander Graf | ce0a64e | 2016-03-04 01:09:54 +0100 | [diff] [blame] | 61 | #define PTE_BLOCK_NS (1 << 5) |
Alexander Graf | e317fe8 | 2016-03-04 01:09:47 +0100 | [diff] [blame] | 62 | #define PTE_BLOCK_NON_SHARE (0 << 8) |
| 63 | #define PTE_BLOCK_OUTER_SHARE (2 << 8) |
| 64 | #define PTE_BLOCK_INNER_SHARE (3 << 8) |
| 65 | #define PTE_BLOCK_AF (1 << 10) |
| 66 | #define PTE_BLOCK_NG (1 << 11) |
| 67 | #define PTE_BLOCK_PXN (UL(1) << 53) |
| 68 | #define PTE_BLOCK_UXN (UL(1) << 54) |
Sergey Temerkhanov | 78eaa49 | 2015-10-14 09:55:45 -0700 | [diff] [blame] | 69 | |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 70 | /* |
| 71 | * AttrIndx[2:0] |
| 72 | */ |
| 73 | #define PMD_ATTRINDX(t) ((t) << 2) |
| 74 | #define PMD_ATTRINDX_MASK (7 << 2) |
York Sun | 5bb14e0 | 2017-03-06 09:02:33 -0800 | [diff] [blame] | 75 | #define PMD_ATTRMASK (PTE_BLOCK_PXN | \ |
| 76 | PTE_BLOCK_UXN | \ |
| 77 | PMD_ATTRINDX_MASK | \ |
| 78 | PTE_TYPE_VALID) |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 79 | |
| 80 | /* |
| 81 | * TCR flags. |
| 82 | */ |
| 83 | #define TCR_T0SZ(x) ((64 - (x)) << 0) |
| 84 | #define TCR_IRGN_NC (0 << 8) |
| 85 | #define TCR_IRGN_WBWA (1 << 8) |
| 86 | #define TCR_IRGN_WT (2 << 8) |
| 87 | #define TCR_IRGN_WBNWA (3 << 8) |
| 88 | #define TCR_IRGN_MASK (3 << 8) |
| 89 | #define TCR_ORGN_NC (0 << 10) |
| 90 | #define TCR_ORGN_WBWA (1 << 10) |
| 91 | #define TCR_ORGN_WT (2 << 10) |
| 92 | #define TCR_ORGN_WBNWA (3 << 10) |
| 93 | #define TCR_ORGN_MASK (3 << 10) |
| 94 | #define TCR_SHARED_NON (0 << 12) |
Zhichun Hua | 5d849ac | 2015-06-29 15:49:37 +0800 | [diff] [blame] | 95 | #define TCR_SHARED_OUTER (2 << 12) |
| 96 | #define TCR_SHARED_INNER (3 << 12) |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 97 | #define TCR_TG0_4K (0 << 14) |
| 98 | #define TCR_TG0_64K (1 << 14) |
| 99 | #define TCR_TG0_16K (2 << 14) |
Alexander Graf | f03c0e4 | 2016-03-04 01:09:46 +0100 | [diff] [blame] | 100 | #define TCR_EPD1_DISABLE (1 << 23) |
Sergey Temerkhanov | 78eaa49 | 2015-10-14 09:55:45 -0700 | [diff] [blame] | 101 | |
Andre Przywara | 11af9ed | 2022-05-09 17:08:49 +0100 | [diff] [blame] | 102 | #define TCR_EL1_RSVD (1U << 31) |
| 103 | #define TCR_EL2_RSVD (1U << 31 | 1 << 23) |
| 104 | #define TCR_EL3_RSVD (1U << 31 | 1 << 23) |
Thierry Reding | a3e45ab | 2015-08-20 11:52:14 +0200 | [diff] [blame] | 105 | |
Andre Przywara | 630a794 | 2022-06-14 00:11:10 +0100 | [diff] [blame] | 106 | #define HCR_EL2_E2H_BIT 34 |
| 107 | |
York Sun | ef63194 | 2014-06-23 15:15:53 -0700 | [diff] [blame] | 108 | #ifndef __ASSEMBLY__ |
Paul Barker | 3f00656 | 2023-11-01 20:05:52 +0000 | [diff] [blame] | 109 | #include <linux/types.h> |
| 110 | |
York Sun | ef63194 | 2014-06-23 15:15:53 -0700 | [diff] [blame] | 111 | static inline void set_ttbr_tcr_mair(int el, u64 table, u64 tcr, u64 attr) |
| 112 | { |
| 113 | asm volatile("dsb sy"); |
| 114 | if (el == 1) { |
| 115 | asm volatile("msr ttbr0_el1, %0" : : "r" (table) : "memory"); |
| 116 | asm volatile("msr tcr_el1, %0" : : "r" (tcr) : "memory"); |
| 117 | asm volatile("msr mair_el1, %0" : : "r" (attr) : "memory"); |
| 118 | } else if (el == 2) { |
| 119 | asm volatile("msr ttbr0_el2, %0" : : "r" (table) : "memory"); |
| 120 | asm volatile("msr tcr_el2, %0" : : "r" (tcr) : "memory"); |
| 121 | asm volatile("msr mair_el2, %0" : : "r" (attr) : "memory"); |
| 122 | } else if (el == 3) { |
| 123 | asm volatile("msr ttbr0_el3, %0" : : "r" (table) : "memory"); |
| 124 | asm volatile("msr tcr_el3, %0" : : "r" (tcr) : "memory"); |
| 125 | asm volatile("msr mair_el3, %0" : : "r" (attr) : "memory"); |
| 126 | } else { |
| 127 | hang(); |
| 128 | } |
| 129 | asm volatile("isb"); |
| 130 | } |
Sergey Temerkhanov | 78eaa49 | 2015-10-14 09:55:45 -0700 | [diff] [blame] | 131 | |
Caleb Connolly | 566907c | 2024-06-17 10:03:48 +0200 | [diff] [blame^] | 132 | static inline void get_ttbr_tcr_mair(int el, u64 *table, u64 *tcr, u64 *attr) |
| 133 | { |
| 134 | if (el == 1) { |
| 135 | asm volatile("mrs %0, ttbr0_el1" : "=r" (*table)); |
| 136 | asm volatile("mrs %0, tcr_el1" : "=r" (*tcr)); |
| 137 | asm volatile("mrs %0, mair_el1" : "=r" (*attr)); |
| 138 | } else if (el == 2) { |
| 139 | asm volatile("mrs %0, ttbr0_el2" : "=r" (*table)); |
| 140 | asm volatile("mrs %0, tcr_el2" : "=r" (*tcr)); |
| 141 | asm volatile("mrs %0, mair_el2" : "=r" (*attr)); |
| 142 | } else if (el == 3) { |
| 143 | asm volatile("mrs %0, ttbr0_el3" : "=r" (*table)); |
| 144 | asm volatile("mrs %0, tcr_el3" : "=r" (*tcr)); |
| 145 | asm volatile("mrs %0, mair_el3" : "=r" (*attr)); |
| 146 | } else { |
| 147 | hang(); |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * pte_walker_cb_t - callback function for walk_pagetable. |
| 153 | * |
| 154 | * This function is called when the walker finds a table entry |
| 155 | * or after parsing a block or pages. For a table the @end address |
| 156 | * is 0, and @addr is the address of the table. Otherwise, they |
| 157 | * are the start and end physical addresses of the block or page. |
| 158 | * |
| 159 | * @addr: PTE start address (PA), or address of table. Includes attributes. |
| 160 | * @end: End address of the region (or 0 for a table) |
| 161 | * @va_bits: Number of bits in the virtual address |
| 162 | * @level: Table level |
| 163 | * @priv: Private data for the callback |
| 164 | * |
| 165 | * Return: true to stop walking, false to continue |
| 166 | */ |
| 167 | typedef bool (*pte_walker_cb_t)(u64 addr, u64 end, int va_bits, int level, void *priv); |
| 168 | |
| 169 | /** |
| 170 | * walk_pagetable() - Walk the pagetable at ttbr and call @cb for each region |
| 171 | * |
| 172 | * @ttbr: Address of the pagetable to dump |
| 173 | * @tcr: TCR value to use |
| 174 | * @cb: Callback function to call for each entry |
| 175 | * @priv: Private data for the callback |
| 176 | */ |
| 177 | void walk_pagetable(u64 ttbr, u64 tcr, pte_walker_cb_t cb, void *priv); |
| 178 | |
| 179 | /** |
| 180 | * dump_pagetable() - Dump the pagetable at ttbr, printing each region and |
| 181 | * level. |
| 182 | * |
| 183 | * @ttbr: Address of the pagetable to dump |
| 184 | * @tcr: TCR value to use |
| 185 | */ |
| 186 | void dump_pagetable(u64 ttbr, u64 tcr); |
| 187 | |
Sergey Temerkhanov | 78eaa49 | 2015-10-14 09:55:45 -0700 | [diff] [blame] | 188 | struct mm_region { |
York Sun | c7104e5 | 2016-06-24 16:46:22 -0700 | [diff] [blame] | 189 | u64 virt; |
| 190 | u64 phys; |
Sergey Temerkhanov | 78eaa49 | 2015-10-14 09:55:45 -0700 | [diff] [blame] | 191 | u64 size; |
| 192 | u64 attrs; |
| 193 | }; |
Alexander Graf | 6b3e7ca | 2016-03-04 01:09:48 +0100 | [diff] [blame] | 194 | |
| 195 | extern struct mm_region *mem_map; |
York Sun | a81fcd1 | 2016-06-24 16:46:20 -0700 | [diff] [blame] | 196 | void setup_pgtables(void); |
Andre Przywara | 630a794 | 2022-06-14 00:11:10 +0100 | [diff] [blame] | 197 | u64 get_tcr(u64 *pips, u64 *pva_bits); |
York Sun | ef63194 | 2014-06-23 15:15:53 -0700 | [diff] [blame] | 198 | #endif |
Sergey Temerkhanov | 78eaa49 | 2015-10-14 09:55:45 -0700 | [diff] [blame] | 199 | |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 200 | #endif /* _ASM_ARMV8_MMU_H_ */ |