blob: f1559c22778430680bb053f3446519556e91f89b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * We need constants.h for:
3 * VMA_VM_MM
4 * VMA_VM_FLAGS
5 * VM_EXEC
6 */
Sam Ravnborge6ae7442005-09-09 21:08:59 +02007#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <asm/thread_info.h>
9
10/*
11 * vma_vm_mm - get mm pointer from vma pointer (vma->vm_mm)
12 */
13 .macro vma_vm_mm, rd, rn
14 ldr \rd, [\rn, #VMA_VM_MM]
15 .endm
16
17/*
18 * vma_vm_flags - get vma->vm_flags
19 */
20 .macro vma_vm_flags, rd, rn
21 ldr \rd, [\rn, #VMA_VM_FLAGS]
22 .endm
23
24 .macro tsk_mm, rd, rn
25 ldr \rd, [\rn, #TI_TASK]
26 ldr \rd, [\rd, #TSK_ACTIVE_MM]
27 .endm
28
29/*
30 * act_mm - get current->active_mm
31 */
32 .macro act_mm, rd
33 bic \rd, sp, #8128
34 bic \rd, \rd, #63
35 ldr \rd, [\rd, #TI_TASK]
36 ldr \rd, [\rd, #TSK_ACTIVE_MM]
37 .endm
38
39/*
40 * mmid - get context id from mm pointer (mm->context.id)
41 */
42 .macro mmid, rd, rn
43 ldr \rd, [\rn, #MM_CONTEXT_ID]
44 .endm
45
46/*
47 * mask_asid - mask the ASID from the context ID
48 */
49 .macro asid, rd, rn
50 and \rd, \rn, #255
51 .endm
Russell King22b19082006-06-29 15:09:57 +010052
53 .macro crval, clear, mmuset, ucset
54#ifdef CONFIG_MMU
55 .word \clear
56 .word \mmuset
57#else
58 .word \clear
59 .word \ucset
60#endif
61 .endm
Catalin Marinasbbe88882007-05-08 22:27:46 +010062
63/*
64 * cache_line_size - get the cache line size from the CSIDR register
65 * (available on ARMv7+). It assumes that the CSSR register was configured
66 * to access the L1 data cache CSIDR.
67 */
68 .macro dcache_line_size, reg, tmp
69 mrc p15, 1, \tmp, c0, c0, 0 @ read CSIDR
70 and \tmp, \tmp, #7 @ cache line size encoding
71 mov \reg, #16 @ size offset
72 mov \reg, \reg, lsl \tmp @ actual cache line size
73 .endm
Russell Kingda091652008-09-06 17:19:08 +010074
75
76/*
77 * Sanity check the PTE configuration for the code below - which makes
78 * certain assumptions about how these bits are layed out.
79 */
Catalin Marinas8b79d5f2009-07-24 12:35:04 +010080#ifdef CONFIG_MMU
Russell Kingda091652008-09-06 17:19:08 +010081#if L_PTE_SHARED != PTE_EXT_SHARED
82#error PTE shared bit mismatch
83#endif
84#if L_PTE_BUFFERABLE != PTE_BUFFERABLE
85#error PTE bufferable bit mismatch
86#endif
87#if L_PTE_CACHEABLE != PTE_CACHEABLE
88#error PTE cacheable bit mismatch
89#endif
90#if (L_PTE_EXEC+L_PTE_USER+L_PTE_WRITE+L_PTE_DIRTY+L_PTE_YOUNG+\
91 L_PTE_FILE+L_PTE_PRESENT) > L_PTE_SHARED
92#error Invalid Linux PTE bit settings
93#endif
Catalin Marinas8b79d5f2009-07-24 12:35:04 +010094#endif /* CONFIG_MMU */
Russell Kingda091652008-09-06 17:19:08 +010095
96/*
97 * The ARMv6 and ARMv7 set_pte_ext translation function.
98 *
99 * Permission translation:
100 * YUWD APX AP1 AP0 SVC User
101 * 0xxx 0 0 0 no acc no acc
102 * 100x 1 0 1 r/o no acc
103 * 10x0 1 0 1 r/o no acc
104 * 1011 0 0 1 r/w no acc
105 * 110x 0 1 0 r/w r/o
106 * 11x0 0 1 0 r/w r/o
107 * 1111 0 1 1 r/w r/w
108 */
Russell King639b0ae2008-09-06 21:07:45 +0100109 .macro armv6_mt_table pfx
110\pfx\()_mt_table:
111 .long 0x00 @ L_PTE_MT_UNCACHED
112 .long PTE_EXT_TEX(1) @ L_PTE_MT_BUFFERABLE
113 .long PTE_CACHEABLE @ L_PTE_MT_WRITETHROUGH
114 .long PTE_CACHEABLE | PTE_BUFFERABLE @ L_PTE_MT_WRITEBACK
115 .long PTE_BUFFERABLE @ L_PTE_MT_DEV_SHARED
116 .long 0x00 @ unused
117 .long 0x00 @ L_PTE_MT_MINICACHE (not present)
118 .long PTE_EXT_TEX(1) | PTE_CACHEABLE | PTE_BUFFERABLE @ L_PTE_MT_WRITEALLOC
119 .long 0x00 @ unused
120 .long PTE_EXT_TEX(1) @ L_PTE_MT_DEV_WC
121 .long 0x00 @ unused
122 .long PTE_CACHEABLE | PTE_BUFFERABLE @ L_PTE_MT_DEV_CACHED
123 .long PTE_EXT_TEX(2) @ L_PTE_MT_DEV_NONSHARED
Russell Kingdb5b7162008-09-07 12:42:51 +0100124 .long 0x00 @ unused
Russell King639b0ae2008-09-06 21:07:45 +0100125 .long 0x00 @ unused
126 .long 0x00 @ unused
127 .endm
128
129 .macro armv6_set_pte_ext pfx
Russell Kingda091652008-09-06 17:19:08 +0100130 str r1, [r0], #-2048 @ linux version
131
Russell King639b0ae2008-09-06 21:07:45 +0100132 bic r3, r1, #0x000003fc
Russell Kingda091652008-09-06 17:19:08 +0100133 bic r3, r3, #PTE_TYPE_MASK
134 orr r3, r3, r2
135 orr r3, r3, #PTE_EXT_AP0 | 2
136
Russell King639b0ae2008-09-06 21:07:45 +0100137 adr ip, \pfx\()_mt_table
138 and r2, r1, #L_PTE_MT_MASK
139 ldr r2, [ip, r2]
140
Russell Kingda091652008-09-06 17:19:08 +0100141 tst r1, #L_PTE_WRITE
142 tstne r1, #L_PTE_DIRTY
143 orreq r3, r3, #PTE_EXT_APX
144
145 tst r1, #L_PTE_USER
146 orrne r3, r3, #PTE_EXT_AP1
147 tstne r3, #PTE_EXT_APX
148 bicne r3, r3, #PTE_EXT_APX | PTE_EXT_AP0
149
150 tst r1, #L_PTE_EXEC
151 orreq r3, r3, #PTE_EXT_XN
152
Russell King639b0ae2008-09-06 21:07:45 +0100153 orr r3, r3, r2
154
Russell Kingda091652008-09-06 17:19:08 +0100155 tst r1, #L_PTE_YOUNG
156 tstne r1, #L_PTE_PRESENT
157 moveq r3, #0
158
159 str r3, [r0]
160 mcr p15, 0, r0, c7, c10, 1 @ flush_pte
161 .endm
162
163
164/*
165 * The ARMv3, ARMv4 and ARMv5 set_pte_ext translation function,
166 * covering most CPUs except Xscale and Xscale 3.
167 *
168 * Permission translation:
169 * YUWD AP SVC User
170 * 0xxx 0x00 no acc no acc
171 * 100x 0x00 r/o no acc
172 * 10x0 0x00 r/o no acc
173 * 1011 0x55 r/w no acc
174 * 110x 0xaa r/w r/o
175 * 11x0 0xaa r/w r/o
176 * 1111 0xff r/w r/w
177 */
178 .macro armv3_set_pte_ext wc_disable=1
179 str r1, [r0], #-2048 @ linux version
180
181 eor r3, r1, #L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_WRITE | L_PTE_DIRTY
182
183 bic r2, r1, #PTE_SMALL_AP_MASK @ keep C, B bits
184 bic r2, r2, #PTE_TYPE_MASK
185 orr r2, r2, #PTE_TYPE_SMALL
186
187 tst r3, #L_PTE_USER @ user?
188 orrne r2, r2, #PTE_SMALL_AP_URO_SRW
189
190 tst r3, #L_PTE_WRITE | L_PTE_DIRTY @ write and dirty?
191 orreq r2, r2, #PTE_SMALL_AP_UNO_SRW
192
193 tst r3, #L_PTE_PRESENT | L_PTE_YOUNG @ present and young?
194 movne r2, #0
195
196 .if \wc_disable
197#ifdef CONFIG_CPU_DCACHE_WRITETHROUGH
198 tst r2, #PTE_CACHEABLE
199 bicne r2, r2, #PTE_BUFFERABLE
200#endif
201 .endif
202 str r2, [r0] @ hardware version
203 .endm
204
205
206/*
207 * Xscale set_pte_ext translation, split into two halves to cope
208 * with work-arounds. r3 must be preserved by code between these
209 * two macros.
210 *
211 * Permission translation:
212 * YUWD AP SVC User
213 * 0xxx 00 no acc no acc
214 * 100x 00 r/o no acc
215 * 10x0 00 r/o no acc
216 * 1011 01 r/w no acc
217 * 110x 10 r/w r/o
218 * 11x0 10 r/w r/o
219 * 1111 11 r/w r/w
220 */
221 .macro xscale_set_pte_ext_prologue
222 str r1, [r0], #-2048 @ linux version
223
224 eor r3, r1, #L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_WRITE | L_PTE_DIRTY
225
226 bic r2, r1, #PTE_SMALL_AP_MASK @ keep C, B bits
227 orr r2, r2, #PTE_TYPE_EXT @ extended page
228
229 tst r3, #L_PTE_USER @ user?
230 orrne r2, r2, #PTE_EXT_AP_URO_SRW @ yes -> user r/o, system r/w
231
232 tst r3, #L_PTE_WRITE | L_PTE_DIRTY @ write and dirty?
233 orreq r2, r2, #PTE_EXT_AP_UNO_SRW @ yes -> user n/a, system r/w
234 @ combined with user -> user r/w
235 .endm
236
237 .macro xscale_set_pte_ext_epilogue
238 tst r3, #L_PTE_PRESENT | L_PTE_YOUNG @ present and young?
239 movne r2, #0 @ no -> fault
240
241 str r2, [r0] @ hardware version
242 mov ip, #0
243 mcr p15, 0, r0, c7, c10, 1 @ clean L1 D line
244 mcr p15, 0, ip, c7, c10, 4 @ data write barrier
245 .endm