blob: 88897a112d554d98e0ce4dd1812c4cb368996d2a [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
38 .cpu A7
39
40#include <linux/linkage.h>
41#include <asm/entry.h>
Vineet Guptada1677b2013-05-14 13:28:17 +053042#include <asm/mmu.h>
Vineet Guptacc562d22013-01-18 15:12:19 +053043#include <asm/pgtable.h>
44#include <asm/arcregs.h>
45#include <asm/cache.h>
46#include <asm/processor.h>
Vineet Guptacc562d22013-01-18 15:12:19 +053047#include <asm/tlb-mmu1.h>
Vineet Guptacc562d22013-01-18 15:12:19 +053048
Vineet Gupta4b06ff32013-07-10 11:40:27 +053049;-----------------------------------------------------------------
50; ARC700 Exception Handling doesn't auto-switch stack and it only provides
51; ONE scratch AUX reg "ARC_REG_SCRATCH_DATA0"
52;
53; For Non-SMP, the scratch AUX reg is repurposed to cache task PGD, so a
54; "global" is used to free-up FIRST core reg to be able to code the rest of
55; exception prologue (IRQ auto-disabled on Exceptions, so it's IRQ-safe).
56; Since the Fast Path TLB Miss handler is coded with 4 regs, the remaining 3
57; need to be saved as well by extending the "global" to be 4 words. Hence
58; ".size ex_saved_reg1, 16"
59; [All of this dance is to avoid stack switching for each TLB Miss, since we
60; only need to save only a handful of regs, as opposed to complete reg file]
61;
62; For ARC700 SMP, the "global" obviously can't be used for free up the FIRST
63; core reg as it will not be SMP safe.
64; Thus scratch AUX reg is used (and no longer used to cache task PGD).
65; To save the rest of 3 regs - per cpu, the global is made "per-cpu".
66; Epilogue thus has to locate the "per-cpu" storage for regs.
67; To avoid cache line bouncing the per-cpu global is aligned/sized per
68; L1_CACHE_SHIFT, despite fundamentally needing to be 12 bytes only. Hence
69; ".size ex_saved_reg1, (CONFIG_NR_CPUS << L1_CACHE_SHIFT)"
70
71; As simple as that....
Vineet Guptacc562d22013-01-18 15:12:19 +053072;--------------------------------------------------------------------------
73
Vineet Gupta4b06ff32013-07-10 11:40:27 +053074; scratch memory to save [r0-r3] used to code TLB refill Handler
Vineet Gupta8b5850f2013-01-18 15:12:25 +053075ARCFP_DATA ex_saved_reg1
Vineet Gupta4b06ff32013-07-10 11:40:27 +053076 .align 1 << L1_CACHE_SHIFT
Vineet Guptacc562d22013-01-18 15:12:19 +053077 .type ex_saved_reg1, @object
Vineet Gupta41195d22013-01-18 15:12:23 +053078#ifdef CONFIG_SMP
79 .size ex_saved_reg1, (CONFIG_NR_CPUS << L1_CACHE_SHIFT)
80ex_saved_reg1:
81 .zero (CONFIG_NR_CPUS << L1_CACHE_SHIFT)
82#else
Vineet Guptacc562d22013-01-18 15:12:19 +053083 .size ex_saved_reg1, 16
84ex_saved_reg1:
85 .zero 16
Vineet Gupta41195d22013-01-18 15:12:23 +053086#endif
Vineet Guptacc562d22013-01-18 15:12:19 +053087
Vineet Gupta4b06ff32013-07-10 11:40:27 +053088.macro TLBMISS_FREEUP_REGS
89#ifdef CONFIG_SMP
90 sr r0, [ARC_REG_SCRATCH_DATA0] ; freeup r0 to code with
91 GET_CPU_ID r0 ; get to per cpu scratch mem,
92 lsl r0, r0, L1_CACHE_SHIFT ; cache line wide per cpu
93 add r0, @ex_saved_reg1, r0
94#else
95 st r0, [@ex_saved_reg1]
96 mov_s r0, @ex_saved_reg1
97#endif
98 st_s r1, [r0, 4]
99 st_s r2, [r0, 8]
100 st_s r3, [r0, 12]
101
102 ; VERIFY if the ASID in MMU-PID Reg is same as
103 ; one in Linux data structures
104
Vineet Gupta5bd87ad2013-08-23 17:37:18 +0530105 tlb_paranoid_check_asm
Vineet Gupta4b06ff32013-07-10 11:40:27 +0530106.endm
107
108.macro TLBMISS_RESTORE_REGS
109#ifdef CONFIG_SMP
110 GET_CPU_ID r0 ; get to per cpu scratch mem
111 lsl r0, r0, L1_CACHE_SHIFT ; each is cache line wide
112 add r0, @ex_saved_reg1, r0
113 ld_s r3, [r0,12]
114 ld_s r2, [r0, 8]
115 ld_s r1, [r0, 4]
116 lr r0, [ARC_REG_SCRATCH_DATA0]
117#else
118 mov_s r0, @ex_saved_reg1
119 ld_s r3, [r0,12]
120 ld_s r2, [r0, 8]
121 ld_s r1, [r0, 4]
122 ld_s r0, [r0]
123#endif
124.endm
125
Vineet Guptacc562d22013-01-18 15:12:19 +0530126;============================================================================
127; Troubleshooting Stuff
128;============================================================================
129
130; Linux keeps ASID (Address Space ID) in task->active_mm->context.asid
131; When Creating TLB Entries, instead of doing 3 dependent loads from memory,
132; we use the MMU PID Reg to get current ASID.
133; In bizzare scenrios SW and HW ASID can get out-of-sync which is trouble.
134; So we try to detect this in TLB Mis shandler
135
Vineet Gupta5bd87ad2013-08-23 17:37:18 +0530136.macro tlb_paranoid_check_asm
Vineet Guptacc562d22013-01-18 15:12:19 +0530137
138#ifdef CONFIG_ARC_DBG_TLB_PARANOIA
139
Vineet Guptacc562d22013-01-18 15:12:19 +0530140 GET_CURR_TASK_ON_CPU r3
141 ld r0, [r3, TASK_ACT_MM]
142 ld r0, [r0, MM_CTXT+MM_CTXT_ASID]
143
144 lr r1, [ARC_REG_PID]
145 and r1, r1, 0xFF
Vineet Gupta5bd87ad2013-08-23 17:37:18 +0530146
Vineet Guptacc562d22013-01-18 15:12:19 +0530147 breq r1, r0, 5f
148
149 ; Error if H/w and S/w ASID don't match, but NOT if in kernel mode
Vineet Gupta5bd87ad2013-08-23 17:37:18 +0530150 lr r2, [erstatus]
151 bbit0 r2, STATUS_U_BIT, 5f
Vineet Guptacc562d22013-01-18 15:12:19 +0530152
153 ; We sure are in troubled waters, Flag the error, but to do so
154 ; need to switch to kernel mode stack to call error routine
155 GET_TSK_STACK_BASE r3, sp
156
157 ; Call printk to shoutout aloud
Vineet Gupta5bd87ad2013-08-23 17:37:18 +0530158 mov r2, 1
Vineet Guptacc562d22013-01-18 15:12:19 +0530159 j print_asid_mismatch
160
Vineet Gupta5bd87ad2013-08-23 17:37:18 +05301615: ; ASIDs match so proceed normally
Vineet Guptacc562d22013-01-18 15:12:19 +0530162 nop
163
164#endif
165
166.endm
167
168;============================================================================
169;TLB Miss handling Code
170;============================================================================
171
172;-----------------------------------------------------------------------------
173; This macro does the page-table lookup for the faulting address.
174; OUT: r0 = PTE faulted on, r1 = ptr to PTE, r2 = Faulting V-address
175.macro LOAD_FAULT_PTE
176
177 lr r2, [efa]
178
Vineet Gupta41195d22013-01-18 15:12:23 +0530179#ifndef CONFIG_SMP
Vineet Guptacc562d22013-01-18 15:12:19 +0530180 lr r1, [ARC_REG_SCRATCH_DATA0] ; current pgd
Vineet Gupta41195d22013-01-18 15:12:23 +0530181#else
182 GET_CURR_TASK_ON_CPU r1
183 ld r1, [r1, TASK_ACT_MM]
184 ld r1, [r1, MM_PGD]
185#endif
Vineet Guptacc562d22013-01-18 15:12:19 +0530186
187 lsr r0, r2, PGDIR_SHIFT ; Bits for indexing into PGD
188 ld.as r1, [r1, r0] ; PGD entry corresp to faulting addr
189 and.f r1, r1, PAGE_MASK ; Ignoring protection and other flags
190 ; contains Ptr to Page Table
191 bz.d do_slow_path_pf ; if no Page Table, do page fault
192
193 ; Get the PTE entry: The idea is
194 ; (1) x = addr >> PAGE_SHIFT -> masks page-off bits from @fault-addr
195 ; (2) y = x & (PTRS_PER_PTE - 1) -> to get index
196 ; (3) z = pgtbl[y]
197 ; To avoid the multiply by in end, we do the -2, <<2 below
198
199 lsr r0, r2, (PAGE_SHIFT - 2)
200 and r0, r0, ( (PTRS_PER_PTE - 1) << 2)
201 ld.aw r0, [r1, r0] ; get PTE and PTE ptr for fault addr
Vineet Gupta0ef88a52013-01-18 15:12:23 +0530202#ifdef CONFIG_ARC_DBG_TLB_MISS_COUNT
203 and.f 0, r0, _PAGE_PRESENT
204 bz 1f
Vineet Guptadc81df22013-06-17 14:33:15 +0530205 ld r3, [num_pte_not_present]
206 add r3, r3, 1
207 st r3, [num_pte_not_present]
Vineet Gupta0ef88a52013-01-18 15:12:23 +05302081:
209#endif
Vineet Guptacc562d22013-01-18 15:12:19 +0530210
211.endm
212
213;-----------------------------------------------------------------
214; Convert Linux PTE entry into TLB entry
215; A one-word PTE entry is programmed as two-word TLB Entry [PD0:PD1] in mmu
216; IN: r0 = PTE, r1 = ptr to PTE
217
218.macro CONV_PTE_TO_TLB
Vineet Gupta64b703e2013-06-17 18:12:13 +0530219 and r3, r0, PTE_BITS_RWX ; r w x
220 lsl r2, r3, 3 ; r w x 0 0 0
221 and.f 0, r0, _PAGE_GLOBAL
222 or.z r2, r2, r3 ; r w x r w x
223
224 and r3, r0, PTE_BITS_NON_RWX_IN_PD1 ; Extract PFN+cache bits from PTE
225 or r3, r3, r2
226
227 sr r3, [ARC_REG_TLBPD1] ; these go in PD1
Vineet Guptacc562d22013-01-18 15:12:19 +0530228
229 and r2, r0, PTE_BITS_IN_PD0 ; Extract other PTE flags: (V)alid, (G)lb
Vineet Guptacc562d22013-01-18 15:12:19 +0530230
231 lr r3,[ARC_REG_TLBPD0] ; MMU prepares PD0 with vaddr and asid
232
233 or r3, r3, r2 ; S | vaddr | {sasid|asid}
234 sr r3,[ARC_REG_TLBPD0] ; rewrite PD0
235.endm
236
237;-----------------------------------------------------------------
238; Commit the TLB entry into MMU
239
240.macro COMMIT_ENTRY_TO_MMU
241
242 /* Get free TLB slot: Set = computed from vaddr, way = random */
243 sr TLBGetIndex, [ARC_REG_TLBCOMMAND]
244
245 /* Commit the Write */
246#if (CONFIG_ARC_MMU_VER >= 2) /* introduced in v2 */
247 sr TLBWriteNI, [ARC_REG_TLBCOMMAND]
248#else
249 sr TLBWrite, [ARC_REG_TLBCOMMAND]
250#endif
251.endm
252
Vineet Guptacc562d22013-01-18 15:12:19 +0530253
Vineet Gupta8b5850f2013-01-18 15:12:25 +0530254ARCFP_CODE ;Fast Path Code, candidate for ICCM
Vineet Guptacc562d22013-01-18 15:12:19 +0530255
256;-----------------------------------------------------------------------------
257; I-TLB Miss Exception Handler
258;-----------------------------------------------------------------------------
259
260ARC_ENTRY EV_TLBMissI
261
262 TLBMISS_FREEUP_REGS
263
Vineet Gupta0ef88a52013-01-18 15:12:23 +0530264#ifdef CONFIG_ARC_DBG_TLB_MISS_COUNT
265 ld r0, [@numitlb]
266 add r0, r0, 1
267 st r0, [@numitlb]
268#endif
269
Vineet Guptacc562d22013-01-18 15:12:19 +0530270 ;----------------------------------------------------------------
Vineet Guptadc81df22013-06-17 14:33:15 +0530271 ; Get the PTE corresponding to V-addr accessed, r2 is setup with EFA
Vineet Guptacc562d22013-01-18 15:12:19 +0530272 LOAD_FAULT_PTE
273
274 ;----------------------------------------------------------------
275 ; VERIFY_PTE: Check if PTE permissions approp for executing code
276 cmp_s r2, VMALLOC_START
Vineet Gupta64b703e2013-06-17 18:12:13 +0530277 mov_s r2, (_PAGE_PRESENT | _PAGE_EXECUTE)
278 or.hs r2, r2, _PAGE_GLOBAL
Vineet Guptacc562d22013-01-18 15:12:19 +0530279
280 and r3, r0, r2 ; Mask out NON Flag bits from PTE
281 xor.f r3, r3, r2 ; check ( ( pte & flags_test ) == flags_test )
282 bnz do_slow_path_pf
283
284 ; Let Linux VM know that the page was accessed
Vineet Guptac3e757a2013-06-17 11:35:15 +0530285 or r0, r0, _PAGE_ACCESSED ; set Accessed Bit
286 st_s r0, [r1] ; Write back PTE
Vineet Guptacc562d22013-01-18 15:12:19 +0530287
288 CONV_PTE_TO_TLB
289 COMMIT_ENTRY_TO_MMU
290 TLBMISS_RESTORE_REGS
291 rtie
292
293ARC_EXIT EV_TLBMissI
294
295;-----------------------------------------------------------------------------
296; D-TLB Miss Exception Handler
297;-----------------------------------------------------------------------------
298
299ARC_ENTRY EV_TLBMissD
300
301 TLBMISS_FREEUP_REGS
302
Vineet Gupta0ef88a52013-01-18 15:12:23 +0530303#ifdef CONFIG_ARC_DBG_TLB_MISS_COUNT
304 ld r0, [@numdtlb]
305 add r0, r0, 1
306 st r0, [@numdtlb]
307#endif
308
Vineet Guptacc562d22013-01-18 15:12:19 +0530309 ;----------------------------------------------------------------
310 ; Get the PTE corresponding to V-addr accessed
Vineet Guptadc81df22013-06-17 14:33:15 +0530311 ; If PTE exists, it will setup, r0 = PTE, r1 = Ptr to PTE, r2 = EFA
Vineet Guptacc562d22013-01-18 15:12:19 +0530312 LOAD_FAULT_PTE
313
314 ;----------------------------------------------------------------
315 ; VERIFY_PTE: Chk if PTE permissions approp for data access (R/W/R+W)
316
Vineet Gupta64b703e2013-06-17 18:12:13 +0530317 cmp_s r2, VMALLOC_START
318 mov_s r2, _PAGE_PRESENT ; common bit for K/U PTE
319 or.hs r2, r2, _PAGE_GLOBAL ; kernel PTE only
320
321 ; Linux PTE [RWX] bits are semantically overloaded:
322 ; -If PAGE_GLOBAL set, they refer to kernel-only flags (vmalloc)
323 ; -Otherwise they are user-mode permissions, and those are exactly
324 ; same for kernel mode as well (e.g. copy_(to|from)_user)
325
Vineet Guptacc562d22013-01-18 15:12:19 +0530326 lr r3, [ecr]
327 btst_s r3, ECR_C_BIT_DTLB_LD_MISS ; Read Access
Vineet Gupta64b703e2013-06-17 18:12:13 +0530328 or.nz r2, r2, _PAGE_READ ; chk for Read flag in PTE
Vineet Guptacc562d22013-01-18 15:12:19 +0530329 btst_s r3, ECR_C_BIT_DTLB_ST_MISS ; Write Access
Vineet Gupta64b703e2013-06-17 18:12:13 +0530330 or.nz r2, r2, _PAGE_WRITE ; chk for Write flag in PTE
331 ; Above laddering takes care of XCHG access (both R and W)
Vineet Guptacc562d22013-01-18 15:12:19 +0530332
333 ; By now, r2 setup with all the Flags we need to check in PTE
334 and r3, r0, r2 ; Mask out NON Flag bits from PTE
335 brne.d r3, r2, do_slow_path_pf ; is ((pte & flags_test) == flags_test)
336
337 ;----------------------------------------------------------------
338 ; UPDATE_PTE: Let Linux VM know that page was accessed/dirty
339 lr r3, [ecr]
Vineet Guptac3e757a2013-06-17 11:35:15 +0530340 or r0, r0, _PAGE_ACCESSED ; Accessed bit always
Vineet Guptacc562d22013-01-18 15:12:19 +0530341 btst_s r3, ECR_C_BIT_DTLB_ST_MISS ; See if it was a Write Access ?
342 or.nz r0, r0, _PAGE_MODIFIED ; if Write, set Dirty bit as well
343 st_s r0, [r1] ; Write back PTE
344
345 CONV_PTE_TO_TLB
346
347#if (CONFIG_ARC_MMU_VER == 1)
348 ; MMU with 2 way set assoc J-TLB, needs some help in pathetic case of
349 ; memcpy where 3 parties contend for 2 ways, ensuing a livelock.
350 ; But only for old MMU or one with Metal Fix
351 TLB_WRITE_HEURISTICS
352#endif
353
354 COMMIT_ENTRY_TO_MMU
355 TLBMISS_RESTORE_REGS
356 rtie
357
358;-------- Common routine to call Linux Page Fault Handler -----------
359do_slow_path_pf:
360
361 ; Restore the 4-scratch regs saved by fast path miss handler
362 TLBMISS_RESTORE_REGS
363
364 ; Slow path TLB Miss handled as a regular ARC Exception
365 ; (stack switching / save the complete reg-file).
Vineet Gupta37f3ac42013-07-09 15:07:13 +0530366 EXCEPTION_PROLOGUE
Vineet Guptacc562d22013-01-18 15:12:19 +0530367
368 ; ------- setup args for Linux Page fault Hanlder ---------
369 mov_s r0, sp
Vineet Gupta3e1ae4412013-06-12 13:49:02 +0530370 lr r1, [efa]
Vineet Guptacc562d22013-01-18 15:12:19 +0530371
372 ; We don't want exceptions to be disabled while the fault is handled.
373 ; Now that we have saved the context we return from exception hence
374 ; exceptions get re-enable
375
376 FAKE_RET_FROM_EXCPN r9
377
378 bl do_page_fault
379 b ret_from_exception
380
381ARC_EXIT EV_TLBMissD
382
383ARC_ENTRY EV_TLBMissB ; Bogus entry to measure sz of DTLBMiss hdlr