ARM: LPAE: use 64-bit accessors for TTBR registers
[deliverable/linux.git] / arch / arm / mm / proc-v7-3level.S
CommitLineData
1b6ba46b
CM
1/*
2 * arch/arm/mm/proc-v7-3level.S
3 *
4 * Copyright (C) 2001 Deep Blue Solutions Ltd.
5 * Copyright (C) 2011 ARM Ltd.
6 * Author: Catalin Marinas <catalin.marinas@arm.com>
7 * based on arch/arm/mm/proc-v7-2level.S
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23#define TTB_IRGN_NC (0 << 8)
24#define TTB_IRGN_WBWA (1 << 8)
25#define TTB_IRGN_WT (2 << 8)
26#define TTB_IRGN_WB (3 << 8)
27#define TTB_RGN_NC (0 << 10)
28#define TTB_RGN_OC_WBWA (1 << 10)
29#define TTB_RGN_OC_WT (2 << 10)
30#define TTB_RGN_OC_WB (3 << 10)
31#define TTB_S (3 << 12)
32#define TTB_EAE (1 << 31)
33
34/* PTWs cacheable, inner WB not shareable, outer WB not shareable */
35#define TTB_FLAGS_UP (TTB_IRGN_WB|TTB_RGN_OC_WB)
36#define PMD_FLAGS_UP (PMD_SECT_WB)
37
38/* PTWs cacheable, inner WBWA shareable, outer WBWA not shareable */
39#define TTB_FLAGS_SMP (TTB_IRGN_WBWA|TTB_S|TTB_RGN_OC_WBWA)
40#define PMD_FLAGS_SMP (PMD_SECT_WBWA|PMD_SECT_S)
41
13f659b0
CC
42#ifndef __ARMEB__
43# define rpgdl r0
44# define rpgdh r1
45#else
46# define rpgdl r1
47# define rpgdh r0
48#endif
49
1b6ba46b
CM
50/*
51 * cpu_v7_switch_mm(pgd_phys, tsk)
52 *
53 * Set the translation table base pointer to be pgd_phys (physical address of
54 * the new TTB).
55 */
56ENTRY(cpu_v7_switch_mm)
57#ifdef CONFIG_MMU
13f659b0
CC
58 mmid r2, r2
59 asid r2, r2
60 orr rpgdh, rpgdh, r2, lsl #(48 - 32) @ upper 32-bits of pgd
61 mcrr p15, 0, rpgdl, rpgdh, c2 @ set TTB 0
1b6ba46b
CM
62 isb
63#endif
64 mov pc, lr
65ENDPROC(cpu_v7_switch_mm)
66
67/*
68 * cpu_v7_set_pte_ext(ptep, pte)
69 *
70 * Set a level 2 translation table entry.
71 * - ptep - pointer to level 3 translation table entry
72 * - pte - PTE value to store (64-bit in r2 and r3)
73 */
74ENTRY(cpu_v7_set_pte_ext)
75#ifdef CONFIG_MMU
dbf62d50 76 tst r2, #L_PTE_VALID
1b6ba46b 77 beq 1f
26ffd0d4
WD
78 tst r3, #1 << (57 - 32) @ L_PTE_NONE
79 bicne r2, #L_PTE_VALID
80 bne 1f
1b6ba46b
CM
81 tst r3, #1 << (55 - 32) @ L_PTE_DIRTY
82 orreq r2, #L_PTE_RDONLY
831: strd r2, r3, [r0]
ae8a8b95
WD
84 ALT_SMP(mov pc, lr)
85 ALT_UP (mcr p15, 0, r0, c7, c10, 1) @ flush_pte
1b6ba46b
CM
86#endif
87 mov pc, lr
88ENDPROC(cpu_v7_set_pte_ext)
89
90 /*
91 * Memory region attributes for LPAE (defined in pgtable-3level.h):
92 *
93 * n = AttrIndx[2:0]
94 *
95 * n MAIR
96 * UNCACHED 000 00000000
97 * BUFFERABLE 001 01000100
98 * DEV_WC 001 01000100
99 * WRITETHROUGH 010 10101010
100 * WRITEBACK 011 11101110
101 * DEV_CACHED 011 11101110
102 * DEV_SHARED 100 00000100
103 * DEV_NONSHARED 100 00000100
104 * unused 101
105 * unused 110
106 * WRITEALLOC 111 11111111
107 */
108.equ PRRR, 0xeeaa4400 @ MAIR0
109.equ NMRR, 0xff000004 @ MAIR1
110
111 /*
112 * Macro for setting up the TTBRx and TTBCR registers.
113 * - \ttbr1 updated.
114 */
115 .macro v7_ttb_setup, zero, ttbr0, ttbr1, tmp
116 ldr \tmp, =swapper_pg_dir @ swapper_pg_dir virtual address
117 cmp \ttbr1, \tmp @ PHYS_OFFSET > PAGE_OFFSET? (branch below)
118 mrc p15, 0, \tmp, c2, c0, 2 @ TTB control register
119 orr \tmp, \tmp, #TTB_EAE
120 ALT_SMP(orr \tmp, \tmp, #TTB_FLAGS_SMP)
121 ALT_UP(orr \tmp, \tmp, #TTB_FLAGS_UP)
122 ALT_SMP(orr \tmp, \tmp, #TTB_FLAGS_SMP << 16)
123 ALT_UP(orr \tmp, \tmp, #TTB_FLAGS_UP << 16)
124 /*
125 * TTBR0/TTBR1 split (PAGE_OFFSET):
126 * 0x40000000: T0SZ = 2, T1SZ = 0 (not used)
127 * 0x80000000: T0SZ = 0, T1SZ = 1
128 * 0xc0000000: T0SZ = 0, T1SZ = 2
129 *
130 * Only use this feature if PHYS_OFFSET <= PAGE_OFFSET, otherwise
131 * booting secondary CPUs would end up using TTBR1 for the identity
132 * mapping set up in TTBR0.
133 */
134 bhi 9001f @ PHYS_OFFSET > PAGE_OFFSET?
135 orr \tmp, \tmp, #(((PAGE_OFFSET >> 30) - 1) << 16) @ TTBCR.T1SZ
136#if defined CONFIG_VMSPLIT_2G
137 /* PAGE_OFFSET == 0x80000000, T1SZ == 1 */
138 add \ttbr1, \ttbr1, #1 << 4 @ skip two L1 entries
139#elif defined CONFIG_VMSPLIT_3G
140 /* PAGE_OFFSET == 0xc0000000, T1SZ == 2 */
141 add \ttbr1, \ttbr1, #4096 * (1 + 3) @ only L2 used, skip pgd+3*pmd
142#endif
143 /* CONFIG_VMSPLIT_1G does not need TTBR1 adjustment */
1449001: mcr p15, 0, \tmp, c2, c0, 2 @ TTB control register
145 mcrr p15, 1, \ttbr1, \zero, c2 @ load TTBR1
146 .endm
147
148 __CPUINIT
149
150 /*
151 * AT
152 * TFR EV X F IHD LR S
153 * .EEE ..EE PUI. .TAT 4RVI ZWRS BLDP WCAM
154 * rxxx rrxx xxx0 0101 xxxx xxxx x111 xxxx < forced
155 * 11 0 110 1 0011 1100 .111 1101 < we want
156 */
157 .align 2
158 .type v7_crval, #object
159v7_crval:
160 crval clear=0x0120c302, mmuset=0x30c23c7d, ucset=0x00c01c7c
161
162 .previous
This page took 0.106135 seconds and 5 git commands to generate.