blob: a34990368e4b61f023d84da95966aff15efa998c [file] [log] [blame]
David Feng85fd5f12013-12-14 11:47:35 +08001/*
2 * (C) Copyright 2013
3 * David Feng <fenghua@phytium.com.cn>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#ifndef _ASM_ARMV8_MMU_H_
9#define _ASM_ARMV8_MMU_H_
10
David Feng85fd5f12013-12-14 11:47:35 +080011/***************************************************************/
12/*
13 * The following definitions are related each other, shoud be
14 * calculated specifically.
15 */
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -070016
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -070017#define VA_BITS CONFIG_SYS_VA_BITS
Alexander Grafe317fe82016-03-04 01:09:47 +010018#define PTE_BLOCK_BITS CONFIG_SYS_PTL2_BITS
David Feng85fd5f12013-12-14 11:47:35 +080019
David Feng85fd5f12013-12-14 11:47:35 +080020/*
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -070021 * block/section address mask and size definitions.
David Feng85fd5f12013-12-14 11:47:35 +080022 */
Alexander Grafe317fe82016-03-04 01:09:47 +010023
24/* PAGE_SHIFT determines the page size */
25#undef PAGE_SIZE
Alexander Grafe317fe82016-03-04 01:09:47 +010026#define PAGE_SHIFT 12
27#define PAGE_SIZE (1 << PAGE_SHIFT)
28#define PAGE_MASK (~(PAGE_SIZE-1))
29
David Feng85fd5f12013-12-14 11:47:35 +080030/***************************************************************/
31
32/*
33 * Memory types
34 */
35#define MT_DEVICE_NGNRNE 0
36#define MT_DEVICE_NGNRE 1
37#define MT_DEVICE_GRE 2
38#define MT_NORMAL_NC 3
39#define MT_NORMAL 4
40
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -070041#define MEMORY_ATTRIBUTES ((0x00 << (MT_DEVICE_NGNRNE * 8)) | \
42 (0x04 << (MT_DEVICE_NGNRE * 8)) | \
43 (0x0c << (MT_DEVICE_GRE * 8)) | \
44 (0x44 << (MT_NORMAL_NC * 8)) | \
45 (UL(0xff) << (MT_NORMAL * 8)))
David Feng85fd5f12013-12-14 11:47:35 +080046
47/*
48 * Hardware page table definitions.
49 *
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -070050 */
51
Alexander Grafe317fe82016-03-04 01:09:47 +010052#define PTE_TYPE_MASK (3 << 0)
53#define PTE_TYPE_FAULT (0 << 0)
54#define PTE_TYPE_TABLE (3 << 0)
55#define PTE_TYPE_BLOCK (1 << 0)
York Sun5bb14e02017-03-06 09:02:33 -080056#define PTE_TYPE_VALID (1 << 0)
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -070057
Alexander Grafe317fe82016-03-04 01:09:47 +010058#define PTE_TABLE_PXN (1UL << 59)
59#define PTE_TABLE_XN (1UL << 60)
60#define PTE_TABLE_AP (1UL << 61)
61#define PTE_TABLE_NS (1UL << 63)
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -070062
63/*
64 * Block
65 */
Alexander Grafe317fe82016-03-04 01:09:47 +010066#define PTE_BLOCK_MEMTYPE(x) ((x) << 2)
Alexander Grafce0a64e2016-03-04 01:09:54 +010067#define PTE_BLOCK_NS (1 << 5)
Alexander Grafe317fe82016-03-04 01:09:47 +010068#define PTE_BLOCK_NON_SHARE (0 << 8)
69#define PTE_BLOCK_OUTER_SHARE (2 << 8)
70#define PTE_BLOCK_INNER_SHARE (3 << 8)
71#define PTE_BLOCK_AF (1 << 10)
72#define PTE_BLOCK_NG (1 << 11)
73#define PTE_BLOCK_PXN (UL(1) << 53)
74#define PTE_BLOCK_UXN (UL(1) << 54)
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -070075
David Feng85fd5f12013-12-14 11:47:35 +080076/*
77 * AttrIndx[2:0]
78 */
79#define PMD_ATTRINDX(t) ((t) << 2)
80#define PMD_ATTRINDX_MASK (7 << 2)
York Sun5bb14e02017-03-06 09:02:33 -080081#define PMD_ATTRMASK (PTE_BLOCK_PXN | \
82 PTE_BLOCK_UXN | \
83 PMD_ATTRINDX_MASK | \
84 PTE_TYPE_VALID)
David Feng85fd5f12013-12-14 11:47:35 +080085
86/*
87 * TCR flags.
88 */
89#define TCR_T0SZ(x) ((64 - (x)) << 0)
90#define TCR_IRGN_NC (0 << 8)
91#define TCR_IRGN_WBWA (1 << 8)
92#define TCR_IRGN_WT (2 << 8)
93#define TCR_IRGN_WBNWA (3 << 8)
94#define TCR_IRGN_MASK (3 << 8)
95#define TCR_ORGN_NC (0 << 10)
96#define TCR_ORGN_WBWA (1 << 10)
97#define TCR_ORGN_WT (2 << 10)
98#define TCR_ORGN_WBNWA (3 << 10)
99#define TCR_ORGN_MASK (3 << 10)
100#define TCR_SHARED_NON (0 << 12)
Zhichun Hua5d849ac2015-06-29 15:49:37 +0800101#define TCR_SHARED_OUTER (2 << 12)
102#define TCR_SHARED_INNER (3 << 12)
David Feng85fd5f12013-12-14 11:47:35 +0800103#define TCR_TG0_4K (0 << 14)
104#define TCR_TG0_64K (1 << 14)
105#define TCR_TG0_16K (2 << 14)
Alexander Graff03c0e42016-03-04 01:09:46 +0100106#define TCR_EPD1_DISABLE (1 << 23)
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -0700107
Thierry Redinga3e45ab2015-08-20 11:52:14 +0200108#define TCR_EL1_RSVD (1 << 31)
109#define TCR_EL2_RSVD (1 << 31 | 1 << 23)
110#define TCR_EL3_RSVD (1 << 31 | 1 << 23)
111
York Sunef631942014-06-23 15:15:53 -0700112#ifndef __ASSEMBLY__
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
134struct mm_region {
York Sunc7104e52016-06-24 16:46:22 -0700135 u64 virt;
136 u64 phys;
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -0700137 u64 size;
138 u64 attrs;
139};
Alexander Graf6b3e7ca2016-03-04 01:09:48 +0100140
141extern struct mm_region *mem_map;
York Suna81fcd12016-06-24 16:46:20 -0700142void setup_pgtables(void);
143u64 get_tcr(int el, u64 *pips, u64 *pva_bits);
York Sunef631942014-06-23 15:15:53 -0700144#endif
Sergey Temerkhanov78eaa492015-10-14 09:55:45 -0700145
David Feng85fd5f12013-12-14 11:47:35 +0800146#endif /* _ASM_ARMV8_MMU_H_ */