2 * We need constants.h for:
7 #include <asm/asm-offsets.h>
8 #include <asm/thread_info.h>
11 * vma_vm_mm - get mm pointer from vma pointer (vma->vm_mm)
13 .macro vma_vm_mm, rd, rn
14 ldr \rd, [\rn, #VMA_VM_MM]
18 * vma_vm_flags - get vma->vm_flags
20 .macro vma_vm_flags, rd, rn
21 ldr \rd, [\rn, #VMA_VM_FLAGS]
25 ldr \rd, [\rn, #TI_TASK]
26 ldr \rd, [\rd, #TSK_ACTIVE_MM]
30 * act_mm - get current->active_mm
35 ldr \rd, [\rd, #TI_TASK]
36 ldr \rd, [\rd, #TSK_ACTIVE_MM]
40 * mmid - get context id from mm pointer (mm->context.id)
43 ldr \rd, [\rn, #MM_CONTEXT_ID]
47 * mask_asid - mask the ASID from the context ID
53 .macro crval, clear, mmuset, ucset
64 * dcache_line_size - get the minimum D-cache line size from the CTR register
67 .macro dcache_line_size, reg, tmp
68 mrc p15, 0, \tmp, c0, c0, 1 @ read ctr
70 and \tmp, \tmp, #0xf @ cache line size encoding
71 mov \reg, #4 @ bytes per word
72 mov \reg, \reg, lsl \tmp @ actual cache line size
76 * icache_line_size - get the minimum I-cache line size from the CTR register
79 .macro icache_line_size, reg, tmp
80 mrc p15, 0, \tmp, c0, c0, 1 @ read ctr
81 and \tmp, \tmp, #0xf @ cache line size encoding
82 mov \reg, #4 @ bytes per word
83 mov \reg, \reg, lsl \tmp @ actual cache line size
87 * Sanity check the PTE configuration for the code below - which makes
88 * certain assumptions about how these bits are layed out.
91 #if L_PTE_SHARED != PTE_EXT_SHARED
92 #error PTE shared bit mismatch
94 #if (L_PTE_XN+L_PTE_USER+L_PTE_RDONLY+L_PTE_DIRTY+L_PTE_YOUNG+\
95 L_PTE_FILE+L_PTE_PRESENT) > L_PTE_SHARED
96 #error Invalid Linux PTE bit settings
98 #endif /* CONFIG_MMU */
101 * The ARMv6 and ARMv7 set_pte_ext translation function.
103 * Permission translation:
104 * YUWD APX AP1 AP0 SVC User
105 * 0xxx 0 0 0 no acc no acc
106 * 100x 1 0 1 r/o no acc
107 * 10x0 1 0 1 r/o no acc
108 * 1011 0 0 1 r/w no acc
113 * If !CONFIG_CPU_USE_DOMAINS, the following permissions are changed:
117 .macro armv6_mt_table pfx
119 .long 0x00 @ L_PTE_MT_UNCACHED
120 .long PTE_EXT_TEX(1) @ L_PTE_MT_BUFFERABLE
121 .long PTE_CACHEABLE @ L_PTE_MT_WRITETHROUGH
122 .long PTE_CACHEABLE | PTE_BUFFERABLE @ L_PTE_MT_WRITEBACK
123 .long PTE_BUFFERABLE @ L_PTE_MT_DEV_SHARED
125 .long 0x00 @ L_PTE_MT_MINICACHE (not present)
126 .long PTE_EXT_TEX(1) | PTE_CACHEABLE | PTE_BUFFERABLE @ L_PTE_MT_WRITEALLOC
128 .long PTE_EXT_TEX(1) @ L_PTE_MT_DEV_WC
130 .long PTE_CACHEABLE | PTE_BUFFERABLE @ L_PTE_MT_DEV_CACHED
131 .long PTE_EXT_TEX(2) @ L_PTE_MT_DEV_NONSHARED
137 .macro armv6_set_pte_ext pfx
138 str r1, [r0], #2048 @ linux version
140 bic r3, r1, #0x000003fc
141 bic r3, r3, #PTE_TYPE_MASK
143 orr r3, r3, #PTE_EXT_AP0 | 2
145 adr ip, \pfx\()_mt_table
146 and r2, r1, #L_PTE_MT_MASK
149 eor r1, r1, #L_PTE_DIRTY
150 tst r1, #L_PTE_DIRTY|L_PTE_RDONLY
151 orrne r3, r3, #PTE_EXT_APX
154 orrne r3, r3, #PTE_EXT_AP1
155 #ifdef CONFIG_CPU_USE_DOMAINS
156 @ allow kernel read/write access to read-only user pages
157 tstne r3, #PTE_EXT_APX
158 bicne r3, r3, #PTE_EXT_APX | PTE_EXT_AP0
162 orrne r3, r3, #PTE_EXT_XN
167 tstne r1, #L_PTE_PRESENT
171 mcr p15, 0, r0, c7, c10, 1 @ flush_pte
176 * The ARMv3, ARMv4 and ARMv5 set_pte_ext translation function,
177 * covering most CPUs except Xscale and Xscale 3.
179 * Permission translation:
181 * 0xxx 0x00 no acc no acc
182 * 100x 0x00 r/o no acc
183 * 10x0 0x00 r/o no acc
184 * 1011 0x55 r/w no acc
189 .macro armv3_set_pte_ext wc_disable=1
190 str r1, [r0], #2048 @ linux version
192 eor r3, r1, #L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_DIRTY
194 bic r2, r1, #PTE_SMALL_AP_MASK @ keep C, B bits
195 bic r2, r2, #PTE_TYPE_MASK
196 orr r2, r2, #PTE_TYPE_SMALL
198 tst r3, #L_PTE_USER @ user?
199 orrne r2, r2, #PTE_SMALL_AP_URO_SRW
201 tst r3, #L_PTE_RDONLY | L_PTE_DIRTY @ write and dirty?
202 orreq r2, r2, #PTE_SMALL_AP_UNO_SRW
204 tst r3, #L_PTE_PRESENT | L_PTE_YOUNG @ present and young?
208 #ifdef CONFIG_CPU_DCACHE_WRITETHROUGH
209 tst r2, #PTE_CACHEABLE
210 bicne r2, r2, #PTE_BUFFERABLE
213 str r2, [r0] @ hardware version
218 * Xscale set_pte_ext translation, split into two halves to cope
219 * with work-arounds. r3 must be preserved by code between these
222 * Permission translation:
224 * 0xxx 00 no acc no acc
232 .macro xscale_set_pte_ext_prologue
233 str r1, [r0] @ linux version
235 eor r3, r1, #L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_DIRTY
237 bic r2, r1, #PTE_SMALL_AP_MASK @ keep C, B bits
238 orr r2, r2, #PTE_TYPE_EXT @ extended page
240 tst r3, #L_PTE_USER @ user?
241 orrne r2, r2, #PTE_EXT_AP_URO_SRW @ yes -> user r/o, system r/w
243 tst r3, #L_PTE_RDONLY | L_PTE_DIRTY @ write and dirty?
244 orreq r2, r2, #PTE_EXT_AP_UNO_SRW @ yes -> user n/a, system r/w
245 @ combined with user -> user r/w
248 .macro xscale_set_pte_ext_epilogue
249 tst r3, #L_PTE_PRESENT | L_PTE_YOUNG @ present and young?
250 movne r2, #0 @ no -> fault
252 str r2, [r0, #2048]! @ hardware version
254 mcr p15, 0, r0, c7, c10, 1 @ clean L1 D line
255 mcr p15, 0, ip, c7, c10, 4 @ data write barrier