blob: 5525948976551de08be8e46f5459e6e4572d1cfe [file] [log] [blame]
Vineet Guptacc562d22013-01-18 15:12:19 +05301/*
2 * TLB Exception Handling for ARC
3 *
4 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * Vineetg: April 2011 :
11 * -MMU v1: moved out legacy code into a seperate file
12 * -MMU v3: PD{0,1} bits layout changed: They don't overlap anymore,
13 * helps avoid a shift when preparing PD0 from PTE
14 *
15 * Vineetg: July 2009
16 * -For MMU V2, we need not do heuristics at the time of commiting a D-TLB
17 * entry, so that it doesn't knock out it's I-TLB entry
18 * -Some more fine tuning:
19 * bmsk instead of add, asl.cc instead of branch, delay slot utilise etc
20 *
21 * Vineetg: July 2009
22 * -Practically rewrote the I/D TLB Miss handlers
23 * Now 40 and 135 instructions a peice as compared to 131 and 449 resp.
24 * Hence Leaner by 1.5 K
25 * Used Conditional arithmetic to replace excessive branching
26 * Also used short instructions wherever possible
27 *
28 * Vineetg: Aug 13th 2008
29 * -Passing ECR (Exception Cause REG) to do_page_fault( ) for printing
30 * more information in case of a Fatality
31 *
32 * Vineetg: March 25th Bug #92690
33 * -Added Debug Code to check if sw-ASID == hw-ASID
34
35 * Rahul Trivedi, Amit Bhor: Codito Technologies 2004
36 */
37
Vineet Guptacc562d22013-01-18 15:12:19 +053038#include <linux/linkage.h>
39#include <asm/entry.h>
Vineet Guptada1677b2013-05-14 13:28:17 +053040#include <asm/mmu.h>
Vineet Guptacc562d22013-01-18 15:12:19 +053041#include <asm/pgtable.h>
42#include <asm/arcregs.h>
43#include <asm/cache.h>
44#include <asm/processor.h>
Vineet Guptacc562d22013-01-18 15:12:19 +053045#include <asm/tlb-mmu1.h>
Vineet Guptacc562d22013-01-18 15:12:19 +053046
Vineet Guptad7a512b2015-04-06 17:22:39 +053047#ifdef CONFIG_ISA_ARCOMPACT
Vineet Gupta4b06ff32013-07-10 11:40:27 +053048;-----------------------------------------------------------------
49; ARC700 Exception Handling doesn't auto-switch stack and it only provides
50; ONE scratch AUX reg "ARC_REG_SCRATCH_DATA0"
51;
52; For Non-SMP, the scratch AUX reg is repurposed to cache task PGD, so a
53; "global" is used to free-up FIRST core reg to be able to code the rest of
54; exception prologue (IRQ auto-disabled on Exceptions, so it's IRQ-safe).
55; Since the Fast Path TLB Miss handler is coded with 4 regs, the remaining 3
56; need to be saved as well by extending the "global" to be 4 words. Hence
57; ".size ex_saved_reg1, 16"
58; [All of this dance is to avoid stack switching for each TLB Miss, since we
59; only need to save only a handful of regs, as opposed to complete reg file]
60;
61; For ARC700 SMP, the "global" obviously can't be used for free up the FIRST
62; core reg as it will not be SMP safe.
63; Thus scratch AUX reg is used (and no longer used to cache task PGD).
64; To save the rest of 3 regs - per cpu, the global is made "per-cpu".
65; Epilogue thus has to locate the "per-cpu" storage for regs.
66; To avoid cache line bouncing the per-cpu global is aligned/sized per
67; L1_CACHE_SHIFT, despite fundamentally needing to be 12 bytes only. Hence
68; ".size ex_saved_reg1, (CONFIG_NR_CPUS << L1_CACHE_SHIFT)"
69
70; As simple as that....
Vineet Guptacc562d22013-01-18 15:12:19 +053071;--------------------------------------------------------------------------
72
Vineet Gupta4b06ff32013-07-10 11:40:27 +053073; scratch memory to save [r0-r3] used to code TLB refill Handler
Vineet Gupta8b5850f2013-01-18 15:12:25 +053074ARCFP_DATA ex_saved_reg1
Vineet Gupta4b06ff32013-07-10 11:40:27 +053075 .align 1 << L1_CACHE_SHIFT
Vineet Guptacc562d22013-01-18 15:12:19 +053076 .type ex_saved_reg1, @object
Vineet Gupta41195d22013-01-18 15:12:23 +053077#ifdef CONFIG_SMP
78 .size ex_saved_reg1, (CONFIG_NR_CPUS << L1_CACHE_SHIFT)
79ex_saved_reg1:
80 .zero (CONFIG_NR_CPUS << L1_CACHE_SHIFT)
81#else
Vineet Guptacc562d22013-01-18 15:12:19 +053082 .size ex_saved_reg1, 16
83ex_saved_reg1:
84 .zero 16
Vineet Gupta41195d22013-01-18 15:12:23 +053085#endif
Vineet Guptacc562d22013-01-18 15:12:19 +053086
Vineet Gupta4b06ff32013-07-10 11:40:27 +053087.macro TLBMISS_FREEUP_REGS
88#ifdef CONFIG_SMP
89 sr r0, [ARC_REG_SCRATCH_DATA0] ; freeup r0 to code with
90 GET_CPU_ID r0 ; get to per cpu scratch mem,
91 lsl r0, r0, L1_CACHE_SHIFT ; cache line wide per cpu
92 add r0, @ex_saved_reg1, r0
93#else
94 st r0, [@ex_saved_reg1]
95 mov_s r0, @ex_saved_reg1
96#endif
97 st_s r1, [r0, 4]
98 st_s r2, [r0, 8]
99 st_s r3, [r0, 12]
100
101 ; VERIFY if the ASID in MMU-PID Reg is same as
102 ; one in Linux data structures
103
Vineet Gupta5bd87ad2013-08-23 17:37:18 +0530104 tlb_paranoid_check_asm
Vineet Gupta4b06ff32013-07-10 11:40:27 +0530105.endm
106
107.macro TLBMISS_RESTORE_REGS
108#ifdef CONFIG_SMP
109 GET_CPU_ID r0 ; get to per cpu scratch mem
110 lsl r0, r0, L1_CACHE_SHIFT ; each is cache line wide
111 add r0, @ex_saved_reg1, r0
112 ld_s r3, [r0,12]
113 ld_s r2, [r0, 8]
114 ld_s r1, [r0, 4]
115 lr r0, [ARC_REG_SCRATCH_DATA0]
116#else
117 mov_s r0, @ex_saved_reg1
118 ld_s r3, [r0,12]
119 ld_s r2, [r0, 8]
120 ld_s r1, [r0, 4]
121 ld_s r0, [r0]
122#endif
123.endm
124
Vineet Guptad7a512b2015-04-06 17:22:39 +0530125#else /* ARCv2 */
126
127.macro TLBMISS_FREEUP_REGS
128 PUSH r0
129 PUSH r1
130 PUSH r2
131 PUSH r3
132.endm
133
134.macro TLBMISS_RESTORE_REGS
135 POP r3
136 POP r2
137 POP r1
138 POP r0
139.endm
140
141#endif
142
Vineet Guptacc562d22013-01-18 15:12:19 +0530143;============================================================================
144; Troubleshooting Stuff
145;============================================================================
146
147; Linux keeps ASID (Address Space ID) in task->active_mm->context.asid
148; When Creating TLB Entries, instead of doing 3 dependent loads from memory,
149; we use the MMU PID Reg to get current ASID.
150; In bizzare scenrios SW and HW ASID can get out-of-sync which is trouble.
151; So we try to detect this in TLB Mis shandler
152
Vineet Gupta5bd87ad2013-08-23 17:37:18 +0530153.macro tlb_paranoid_check_asm
Vineet Guptacc562d22013-01-18 15:12:19 +0530154
155#ifdef CONFIG_ARC_DBG_TLB_PARANOIA
156
Vineet Guptacc562d22013-01-18 15:12:19 +0530157 GET_CURR_TASK_ON_CPU r3
158 ld r0, [r3, TASK_ACT_MM]
159 ld r0, [r0, MM_CTXT+MM_CTXT_ASID]
Vineet Gupta947bf102013-07-25 15:45:50 -0700160 breq r0, 0, 55f ; Error if no ASID allocated
Vineet Guptacc562d22013-01-18 15:12:19 +0530161
162 lr r1, [ARC_REG_PID]
163 and r1, r1, 0xFF
Vineet Gupta5bd87ad2013-08-23 17:37:18 +0530164
Vineet Gupta947bf102013-07-25 15:45:50 -0700165 and r2, r0, 0xFF ; MMU PID bits only for comparison
166 breq r1, r2, 5f
Vineet Guptacc562d22013-01-18 15:12:19 +0530167
Vineet Gupta947bf102013-07-25 15:45:50 -070016855:
Vineet Guptacc562d22013-01-18 15:12:19 +0530169 ; Error if H/w and S/w ASID don't match, but NOT if in kernel mode
Vineet Gupta5bd87ad2013-08-23 17:37:18 +0530170 lr r2, [erstatus]
171 bbit0 r2, STATUS_U_BIT, 5f
Vineet Guptacc562d22013-01-18 15:12:19 +0530172
173 ; We sure are in troubled waters, Flag the error, but to do so
174 ; need to switch to kernel mode stack to call error routine
175 GET_TSK_STACK_BASE r3, sp
176
177 ; Call printk to shoutout aloud
Vineet Gupta5bd87ad2013-08-23 17:37:18 +0530178 mov r2, 1
Vineet Guptacc562d22013-01-18 15:12:19 +0530179 j print_asid_mismatch
180
Vineet Gupta5bd87ad2013-08-23 17:37:18 +05301815: ; ASIDs match so proceed normally
Vineet Guptacc562d22013-01-18 15:12:19 +0530182 nop
183
184#endif
185
186.endm
187
188;============================================================================
189;TLB Miss handling Code
190;============================================================================
191
192;-----------------------------------------------------------------------------
193; This macro does the page-table lookup for the faulting address.
194; OUT: r0 = PTE faulted on, r1 = ptr to PTE, r2 = Faulting V-address
195.macro LOAD_FAULT_PTE
196
197 lr r2, [efa]
198
Vineet Gupta41195d22013-01-18 15:12:23 +0530199#ifndef CONFIG_SMP
Vineet Guptacc562d22013-01-18 15:12:19 +0530200 lr r1, [ARC_REG_SCRATCH_DATA0] ; current pgd
Vineet Gupta41195d22013-01-18 15:12:23 +0530201#else
202 GET_CURR_TASK_ON_CPU r1
203 ld r1, [r1, TASK_ACT_MM]
204 ld r1, [r1, MM_PGD]
205#endif
Vineet Guptacc562d22013-01-18 15:12:19 +0530206
207 lsr r0, r2, PGDIR_SHIFT ; Bits for indexing into PGD
Vineet Guptafe6c1b82014-07-08 18:43:47 +0530208 ld.as r3, [r1, r0] ; PGD entry corresp to faulting addr
209 tst r3, r3
210 bz do_slow_path_pf ; if no Page Table, do page fault
211
212#ifdef CONFIG_TRANSPARENT_HUGEPAGE
213 and.f 0, r3, _PAGE_HW_SZ ; Is this Huge PMD (thp)
214 add2.nz r1, r1, r0
215 bnz.d 2f ; YES: PGD == PMD has THP PTE: stop pgd walk
216 mov.nz r0, r3
217
218#endif
219 and r1, r3, PAGE_MASK
Vineet Guptacc562d22013-01-18 15:12:19 +0530220
221 ; Get the PTE entry: The idea is
222 ; (1) x = addr >> PAGE_SHIFT -> masks page-off bits from @fault-addr
223 ; (2) y = x & (PTRS_PER_PTE - 1) -> to get index
224 ; (3) z = pgtbl[y]
225 ; To avoid the multiply by in end, we do the -2, <<2 below
226
227 lsr r0, r2, (PAGE_SHIFT - 2)
228 and r0, r0, ( (PTRS_PER_PTE - 1) << 2)
229 ld.aw r0, [r1, r0] ; get PTE and PTE ptr for fault addr
Vineet Guptafe6c1b82014-07-08 18:43:47 +0530230
2312:
232
Vineet Gupta0ef88a52013-01-18 15:12:23 +0530233#ifdef CONFIG_ARC_DBG_TLB_MISS_COUNT
234 and.f 0, r0, _PAGE_PRESENT
235 bz 1f
Vineet Guptadc81df22013-06-17 14:33:15 +0530236 ld r3, [num_pte_not_present]
237 add r3, r3, 1
238 st r3, [num_pte_not_present]
Vineet Gupta0ef88a52013-01-18 15:12:23 +05302391:
240#endif
Vineet Guptacc562d22013-01-18 15:12:19 +0530241
242.endm
243
244;-----------------------------------------------------------------
245; Convert Linux PTE entry into TLB entry
246; A one-word PTE entry is programmed as two-word TLB Entry [PD0:PD1] in mmu
247; IN: r0 = PTE, r1 = ptr to PTE
248
249.macro CONV_PTE_TO_TLB
Vineet Gupta64b703e2013-06-17 18:12:13 +0530250 and r3, r0, PTE_BITS_RWX ; r w x
Vineet Guptac9a98e182014-06-25 17:14:03 +0530251 lsl r2, r3, 3 ; r w x 0 0 0 (GLOBAL, kernel only)
Vineet Gupta64b703e2013-06-17 18:12:13 +0530252 and.f 0, r0, _PAGE_GLOBAL
Vineet Guptac9a98e182014-06-25 17:14:03 +0530253 or.z r2, r2, r3 ; r w x r w x (!GLOBAL, user page)
Vineet Gupta64b703e2013-06-17 18:12:13 +0530254
255 and r3, r0, PTE_BITS_NON_RWX_IN_PD1 ; Extract PFN+cache bits from PTE
256 or r3, r3, r2
257
258 sr r3, [ARC_REG_TLBPD1] ; these go in PD1
Vineet Guptacc562d22013-01-18 15:12:19 +0530259
260 and r2, r0, PTE_BITS_IN_PD0 ; Extract other PTE flags: (V)alid, (G)lb
Vineet Guptacc562d22013-01-18 15:12:19 +0530261
262 lr r3,[ARC_REG_TLBPD0] ; MMU prepares PD0 with vaddr and asid
263
264 or r3, r3, r2 ; S | vaddr | {sasid|asid}
265 sr r3,[ARC_REG_TLBPD0] ; rewrite PD0
266.endm
267
268;-----------------------------------------------------------------
269; Commit the TLB entry into MMU
270
271.macro COMMIT_ENTRY_TO_MMU
Vineet Guptad7a512b2015-04-06 17:22:39 +0530272#if (CONFIG_ARC_MMU_VER < 4)
Vineet Guptacc562d22013-01-18 15:12:19 +0530273
274 /* Get free TLB slot: Set = computed from vaddr, way = random */
275 sr TLBGetIndex, [ARC_REG_TLBCOMMAND]
276
277 /* Commit the Write */
278#if (CONFIG_ARC_MMU_VER >= 2) /* introduced in v2 */
279 sr TLBWriteNI, [ARC_REG_TLBCOMMAND]
280#else
281 sr TLBWrite, [ARC_REG_TLBCOMMAND]
282#endif
Vineet Guptad7a512b2015-04-06 17:22:39 +0530283
284#else
285 sr TLBInsertEntry, [ARC_REG_TLBCOMMAND]
286#endif
Vineet Guptacc562d22013-01-18 15:12:19 +0530287.endm
288
Vineet Guptacc562d22013-01-18 15:12:19 +0530289
Vineet Gupta8b5850f2013-01-18 15:12:25 +0530290ARCFP_CODE ;Fast Path Code, candidate for ICCM
Vineet Guptacc562d22013-01-18 15:12:19 +0530291
292;-----------------------------------------------------------------------------
293; I-TLB Miss Exception Handler
294;-----------------------------------------------------------------------------
295
Vineet Guptaec7ac6a2014-02-07 13:47:43 +0530296ENTRY(EV_TLBMissI)
Vineet Guptacc562d22013-01-18 15:12:19 +0530297
298 TLBMISS_FREEUP_REGS
299
Vineet Gupta0ef88a52013-01-18 15:12:23 +0530300#ifdef CONFIG_ARC_DBG_TLB_MISS_COUNT
301 ld r0, [@numitlb]
302 add r0, r0, 1
303 st r0, [@numitlb]
304#endif
305
Vineet Guptacc562d22013-01-18 15:12:19 +0530306 ;----------------------------------------------------------------
Vineet Guptadc81df22013-06-17 14:33:15 +0530307 ; Get the PTE corresponding to V-addr accessed, r2 is setup with EFA
Vineet Guptacc562d22013-01-18 15:12:19 +0530308 LOAD_FAULT_PTE
309
310 ;----------------------------------------------------------------
311 ; VERIFY_PTE: Check if PTE permissions approp for executing code
312 cmp_s r2, VMALLOC_START
Vineet Gupta64b703e2013-06-17 18:12:13 +0530313 mov_s r2, (_PAGE_PRESENT | _PAGE_EXECUTE)
314 or.hs r2, r2, _PAGE_GLOBAL
Vineet Guptacc562d22013-01-18 15:12:19 +0530315
316 and r3, r0, r2 ; Mask out NON Flag bits from PTE
317 xor.f r3, r3, r2 ; check ( ( pte & flags_test ) == flags_test )
318 bnz do_slow_path_pf
319
320 ; Let Linux VM know that the page was accessed
Vineet Guptac3e757a2013-06-17 11:35:15 +0530321 or r0, r0, _PAGE_ACCESSED ; set Accessed Bit
322 st_s r0, [r1] ; Write back PTE
Vineet Guptacc562d22013-01-18 15:12:19 +0530323
324 CONV_PTE_TO_TLB
325 COMMIT_ENTRY_TO_MMU
326 TLBMISS_RESTORE_REGS
Ruud Derwig2924cd12014-12-03 15:52:41 +0100327EV_TLBMissI_fast_ret: ; additional label for VDK OS-kit instrumentation
Vineet Guptacc562d22013-01-18 15:12:19 +0530328 rtie
329
Vineet Guptaec7ac6a2014-02-07 13:47:43 +0530330END(EV_TLBMissI)
Vineet Guptacc562d22013-01-18 15:12:19 +0530331
332;-----------------------------------------------------------------------------
333; D-TLB Miss Exception Handler
334;-----------------------------------------------------------------------------
335
Vineet Guptaec7ac6a2014-02-07 13:47:43 +0530336ENTRY(EV_TLBMissD)
Vineet Guptacc562d22013-01-18 15:12:19 +0530337
338 TLBMISS_FREEUP_REGS
339
Vineet Gupta0ef88a52013-01-18 15:12:23 +0530340#ifdef CONFIG_ARC_DBG_TLB_MISS_COUNT
341 ld r0, [@numdtlb]
342 add r0, r0, 1
343 st r0, [@numdtlb]
344#endif
345
Vineet Guptacc562d22013-01-18 15:12:19 +0530346 ;----------------------------------------------------------------
347 ; Get the PTE corresponding to V-addr accessed
Vineet Guptadc81df22013-06-17 14:33:15 +0530348 ; If PTE exists, it will setup, r0 = PTE, r1 = Ptr to PTE, r2 = EFA
Vineet Guptacc562d22013-01-18 15:12:19 +0530349 LOAD_FAULT_PTE
350
351 ;----------------------------------------------------------------
352 ; VERIFY_PTE: Chk if PTE permissions approp for data access (R/W/R+W)
353
Vineet Gupta64b703e2013-06-17 18:12:13 +0530354 cmp_s r2, VMALLOC_START
355 mov_s r2, _PAGE_PRESENT ; common bit for K/U PTE
356 or.hs r2, r2, _PAGE_GLOBAL ; kernel PTE only
357
358 ; Linux PTE [RWX] bits are semantically overloaded:
359 ; -If PAGE_GLOBAL set, they refer to kernel-only flags (vmalloc)
360 ; -Otherwise they are user-mode permissions, and those are exactly
361 ; same for kernel mode as well (e.g. copy_(to|from)_user)
362
Vineet Guptacc562d22013-01-18 15:12:19 +0530363 lr r3, [ecr]
364 btst_s r3, ECR_C_BIT_DTLB_LD_MISS ; Read Access
Vineet Gupta64b703e2013-06-17 18:12:13 +0530365 or.nz r2, r2, _PAGE_READ ; chk for Read flag in PTE
Vineet Guptacc562d22013-01-18 15:12:19 +0530366 btst_s r3, ECR_C_BIT_DTLB_ST_MISS ; Write Access
Vineet Gupta64b703e2013-06-17 18:12:13 +0530367 or.nz r2, r2, _PAGE_WRITE ; chk for Write flag in PTE
368 ; Above laddering takes care of XCHG access (both R and W)
Vineet Guptacc562d22013-01-18 15:12:19 +0530369
370 ; By now, r2 setup with all the Flags we need to check in PTE
371 and r3, r0, r2 ; Mask out NON Flag bits from PTE
372 brne.d r3, r2, do_slow_path_pf ; is ((pte & flags_test) == flags_test)
373
374 ;----------------------------------------------------------------
375 ; UPDATE_PTE: Let Linux VM know that page was accessed/dirty
376 lr r3, [ecr]
Vineet Guptac3e757a2013-06-17 11:35:15 +0530377 or r0, r0, _PAGE_ACCESSED ; Accessed bit always
Vineet Guptacc562d22013-01-18 15:12:19 +0530378 btst_s r3, ECR_C_BIT_DTLB_ST_MISS ; See if it was a Write Access ?
Vineet Gupta129cbed2013-12-05 12:05:05 +0530379 or.nz r0, r0, _PAGE_DIRTY ; if Write, set Dirty bit as well
Vineet Guptacc562d22013-01-18 15:12:19 +0530380 st_s r0, [r1] ; Write back PTE
381
382 CONV_PTE_TO_TLB
383
384#if (CONFIG_ARC_MMU_VER == 1)
385 ; MMU with 2 way set assoc J-TLB, needs some help in pathetic case of
386 ; memcpy where 3 parties contend for 2 ways, ensuing a livelock.
387 ; But only for old MMU or one with Metal Fix
388 TLB_WRITE_HEURISTICS
389#endif
390
391 COMMIT_ENTRY_TO_MMU
392 TLBMISS_RESTORE_REGS
Ruud Derwig2924cd12014-12-03 15:52:41 +0100393EV_TLBMissD_fast_ret: ; additional label for VDK OS-kit instrumentation
Vineet Guptacc562d22013-01-18 15:12:19 +0530394 rtie
395
396;-------- Common routine to call Linux Page Fault Handler -----------
397do_slow_path_pf:
398
399 ; Restore the 4-scratch regs saved by fast path miss handler
400 TLBMISS_RESTORE_REGS
401
402 ; Slow path TLB Miss handled as a regular ARC Exception
403 ; (stack switching / save the complete reg-file).
Vineet Guptaa615b472014-10-13 14:20:39 +0530404 b call_do_page_fault
Vineet Guptaec7ac6a2014-02-07 13:47:43 +0530405END(EV_TLBMissD)