blob: 6af8cd111a4418299748af1124256361de39502a [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
David Feng85fd5f12013-12-14 11:47:35 +08002/*
3 * (C) Copyright 2013
4 * David Feng <fenghua@phytium.com.cn>
David Feng85fd5f12013-12-14 11:47:35 +08005 */
6
7#ifndef _ASM_ARMV8_MMU_H_
8#define _ASM_ARMV8_MMU_H_
9
Simon Glassf11478f2019-12-28 10:45:07 -070010#include <hang.h>
Baruch Siach401885a2018-11-11 12:31:01 +020011#include <linux/const.h>
12
David Feng85fd5f12013-12-14 11:47:35 +080013/*
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -070014 * block/section address mask and size definitions.
David Feng85fd5f12013-12-14 11:47:35 +080015 */
Alexander Grafe317fe82016-03-04 01:09:47 +010016
17/* PAGE_SHIFT determines the page size */
18#undef PAGE_SIZE
Alexander Grafe317fe82016-03-04 01:09:47 +010019#define PAGE_SHIFT 12
20#define PAGE_SIZE (1 << PAGE_SHIFT)
Andy Yand2eb8c12017-08-17 15:55:50 +080021#define PAGE_MASK (~(PAGE_SIZE - 1))
Alexander Grafe317fe82016-03-04 01:09:47 +010022
David Feng85fd5f12013-12-14 11:47:35 +080023/***************************************************************/
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 Temerkhanov78eaa492015-10-14 09:55:45 -070034#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 Feng85fd5f12013-12-14 11:47:35 +080039
40/*
41 * Hardware page table definitions.
42 *
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -070043 */
44
Alexander Grafe317fe82016-03-04 01:09:47 +010045#define PTE_TYPE_MASK (3 << 0)
46#define PTE_TYPE_FAULT (0 << 0)
47#define PTE_TYPE_TABLE (3 << 0)
Peng Fane0e98712017-11-28 10:31:28 +080048#define PTE_TYPE_PAGE (3 << 0)
Alexander Grafe317fe82016-03-04 01:09:47 +010049#define PTE_TYPE_BLOCK (1 << 0)
York Sun5bb14e02017-03-06 09:02:33 -080050#define PTE_TYPE_VALID (1 << 0)
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -070051
Chris Packhama6c68c62023-10-27 13:23:54 +130052#define PTE_TABLE_PXN (1UL << 59)
53#define PTE_TABLE_XN (1UL << 60)
Caleb Connolly50670602024-06-17 10:03:47 +020054#define PTE_TABLE_AP (3UL << 61)
Chris Packhama6c68c62023-10-27 13:23:54 +130055#define PTE_TABLE_NS (1UL << 63)
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -070056
57/*
58 * Block
59 */
Alexander Grafe317fe82016-03-04 01:09:47 +010060#define PTE_BLOCK_MEMTYPE(x) ((x) << 2)
Alexander Grafce0a64e2016-03-04 01:09:54 +010061#define PTE_BLOCK_NS (1 << 5)
Alexander Grafe317fe82016-03-04 01:09:47 +010062#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)
Ilias Apalodimasb3c5d252025-02-20 15:54:38 +020069#define PTE_BLOCK_RO (UL(1) << 7)
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -070070
David Feng85fd5f12013-12-14 11:47:35 +080071/*
72 * AttrIndx[2:0]
73 */
74#define PMD_ATTRINDX(t) ((t) << 2)
75#define PMD_ATTRINDX_MASK (7 << 2)
York Sun5bb14e02017-03-06 09:02:33 -080076#define PMD_ATTRMASK (PTE_BLOCK_PXN | \
77 PTE_BLOCK_UXN | \
78 PMD_ATTRINDX_MASK | \
Ilias Apalodimasb3c5d252025-02-20 15:54:38 +020079 PTE_BLOCK_RO | \
York Sun5bb14e02017-03-06 09:02:33 -080080 PTE_TYPE_VALID)
David Feng85fd5f12013-12-14 11:47:35 +080081
82/*
83 * TCR flags.
84 */
85#define TCR_T0SZ(x) ((64 - (x)) << 0)
86#define TCR_IRGN_NC (0 << 8)
87#define TCR_IRGN_WBWA (1 << 8)
88#define TCR_IRGN_WT (2 << 8)
89#define TCR_IRGN_WBNWA (3 << 8)
90#define TCR_IRGN_MASK (3 << 8)
91#define TCR_ORGN_NC (0 << 10)
92#define TCR_ORGN_WBWA (1 << 10)
93#define TCR_ORGN_WT (2 << 10)
94#define TCR_ORGN_WBNWA (3 << 10)
95#define TCR_ORGN_MASK (3 << 10)
96#define TCR_SHARED_NON (0 << 12)
Zhichun Hua5d849ac2015-06-29 15:49:37 +080097#define TCR_SHARED_OUTER (2 << 12)
98#define TCR_SHARED_INNER (3 << 12)
David Feng85fd5f12013-12-14 11:47:35 +080099#define TCR_TG0_4K (0 << 14)
100#define TCR_TG0_64K (1 << 14)
101#define TCR_TG0_16K (2 << 14)
Alexander Graff03c0e42016-03-04 01:09:46 +0100102#define TCR_EPD1_DISABLE (1 << 23)
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -0700103
Andre Przywara11af9ed2022-05-09 17:08:49 +0100104#define TCR_EL1_RSVD (1U << 31)
105#define TCR_EL2_RSVD (1U << 31 | 1 << 23)
106#define TCR_EL3_RSVD (1U << 31 | 1 << 23)
Thierry Redinga3e45ab2015-08-20 11:52:14 +0200107
Andre Przywara630a7942022-06-14 00:11:10 +0100108#define HCR_EL2_E2H_BIT 34
109
York Sunef631942014-06-23 15:15:53 -0700110#ifndef __ASSEMBLY__
Paul Barker3f006562023-11-01 20:05:52 +0000111#include <linux/types.h>
112
York Sunef631942014-06-23 15:15:53 -0700113static inline void set_ttbr_tcr_mair(int el, u64 table, u64 tcr, u64 attr)
114{
115 asm volatile("dsb sy");
116 if (el == 1) {
117 asm volatile("msr ttbr0_el1, %0" : : "r" (table) : "memory");
118 asm volatile("msr tcr_el1, %0" : : "r" (tcr) : "memory");
119 asm volatile("msr mair_el1, %0" : : "r" (attr) : "memory");
120 } else if (el == 2) {
121 asm volatile("msr ttbr0_el2, %0" : : "r" (table) : "memory");
122 asm volatile("msr tcr_el2, %0" : : "r" (tcr) : "memory");
123 asm volatile("msr mair_el2, %0" : : "r" (attr) : "memory");
124 } else if (el == 3) {
125 asm volatile("msr ttbr0_el3, %0" : : "r" (table) : "memory");
126 asm volatile("msr tcr_el3, %0" : : "r" (tcr) : "memory");
127 asm volatile("msr mair_el3, %0" : : "r" (attr) : "memory");
128 } else {
129 hang();
130 }
131 asm volatile("isb");
132}
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -0700133
Caleb Connolly566907c2024-06-17 10:03:48 +0200134static inline void get_ttbr_tcr_mair(int el, u64 *table, u64 *tcr, u64 *attr)
135{
136 if (el == 1) {
137 asm volatile("mrs %0, ttbr0_el1" : "=r" (*table));
138 asm volatile("mrs %0, tcr_el1" : "=r" (*tcr));
139 asm volatile("mrs %0, mair_el1" : "=r" (*attr));
140 } else if (el == 2) {
141 asm volatile("mrs %0, ttbr0_el2" : "=r" (*table));
142 asm volatile("mrs %0, tcr_el2" : "=r" (*tcr));
143 asm volatile("mrs %0, mair_el2" : "=r" (*attr));
144 } else if (el == 3) {
145 asm volatile("mrs %0, ttbr0_el3" : "=r" (*table));
146 asm volatile("mrs %0, tcr_el3" : "=r" (*tcr));
147 asm volatile("mrs %0, mair_el3" : "=r" (*attr));
148 } else {
149 hang();
150 }
151}
152
153/**
Tom Rini05d126b2024-06-25 17:22:36 -0600154 * typedef pte_walker_cb_t - callback function for walk_pagetable.
Caleb Connolly566907c2024-06-17 10:03:48 +0200155 *
156 * This function is called when the walker finds a table entry
157 * or after parsing a block or pages. For a table the @end address
158 * is 0, and @addr is the address of the table. Otherwise, they
159 * are the start and end physical addresses of the block or page.
160 *
161 * @addr: PTE start address (PA), or address of table. Includes attributes.
162 * @end: End address of the region (or 0 for a table)
163 * @va_bits: Number of bits in the virtual address
164 * @level: Table level
165 * @priv: Private data for the callback
166 *
167 * Return: true to stop walking, false to continue
168 */
169typedef bool (*pte_walker_cb_t)(u64 addr, u64 end, int va_bits, int level, void *priv);
170
171/**
172 * walk_pagetable() - Walk the pagetable at ttbr and call @cb for each region
173 *
174 * @ttbr: Address of the pagetable to dump
175 * @tcr: TCR value to use
176 * @cb: Callback function to call for each entry
177 * @priv: Private data for the callback
178 */
179void walk_pagetable(u64 ttbr, u64 tcr, pte_walker_cb_t cb, void *priv);
180
181/**
182 * dump_pagetable() - Dump the pagetable at ttbr, printing each region and
183 * level.
184 *
185 * @ttbr: Address of the pagetable to dump
186 * @tcr: TCR value to use
187 */
188void dump_pagetable(u64 ttbr, u64 tcr);
189
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -0700190struct mm_region {
York Sunc7104e52016-06-24 16:46:22 -0700191 u64 virt;
192 u64 phys;
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -0700193 u64 size;
194 u64 attrs;
195};
Alexander Graf6b3e7ca2016-03-04 01:09:48 +0100196
197extern struct mm_region *mem_map;
York Suna81fcd12016-06-24 16:46:20 -0700198void setup_pgtables(void);
Andre Przywara630a7942022-06-14 00:11:10 +0100199u64 get_tcr(u64 *pips, u64 *pva_bits);
York Sunef631942014-06-23 15:15:53 -0700200#endif
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -0700201
David Feng85fd5f12013-12-14 11:47:35 +0800202#endif /* _ASM_ARMV8_MMU_H_ */