tlbex.S 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. /*
  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. * Rahul Trivedi, Amit Bhor: Codito Technologies 2004
  35. */
  36. .cpu A7
  37. #include <linux/linkage.h>
  38. #include <asm/entry.h>
  39. #include <asm/tlb.h>
  40. #include <asm/pgtable.h>
  41. #include <asm/arcregs.h>
  42. #include <asm/cache.h>
  43. #include <asm/processor.h>
  44. #if (CONFIG_ARC_MMU_VER == 1)
  45. #include <asm/tlb-mmu1.h>
  46. #endif
  47. ;--------------------------------------------------------------------------
  48. ; scratch memory to save the registers (r0-r3) used to code TLB refill Handler
  49. ; For details refer to comments before TLBMISS_FREEUP_REGS below
  50. ;--------------------------------------------------------------------------
  51. .section .data
  52. .global ex_saved_reg1
  53. .align 1 << L1_CACHE_SHIFT ; IMP: Must be Cache Line aligned
  54. .type ex_saved_reg1, @object
  55. .size ex_saved_reg1, 16
  56. ex_saved_reg1:
  57. .zero 16
  58. ;============================================================================
  59. ; Troubleshooting Stuff
  60. ;============================================================================
  61. ; Linux keeps ASID (Address Space ID) in task->active_mm->context.asid
  62. ; When Creating TLB Entries, instead of doing 3 dependent loads from memory,
  63. ; we use the MMU PID Reg to get current ASID.
  64. ; In bizzare scenrios SW and HW ASID can get out-of-sync which is trouble.
  65. ; So we try to detect this in TLB Mis shandler
  66. .macro DBG_ASID_MISMATCH
  67. #ifdef CONFIG_ARC_DBG_TLB_PARANOIA
  68. ; make sure h/w ASID is same as s/w ASID
  69. GET_CURR_TASK_ON_CPU r3
  70. ld r0, [r3, TASK_ACT_MM]
  71. ld r0, [r0, MM_CTXT+MM_CTXT_ASID]
  72. lr r1, [ARC_REG_PID]
  73. and r1, r1, 0xFF
  74. breq r1, r0, 5f
  75. ; Error if H/w and S/w ASID don't match, but NOT if in kernel mode
  76. lr r0, [erstatus]
  77. bbit0 r0, STATUS_U_BIT, 5f
  78. ; We sure are in troubled waters, Flag the error, but to do so
  79. ; need to switch to kernel mode stack to call error routine
  80. GET_TSK_STACK_BASE r3, sp
  81. ; Call printk to shoutout aloud
  82. mov r0, 1
  83. j print_asid_mismatch
  84. 5: ; ASIDs match so proceed normally
  85. nop
  86. #endif
  87. .endm
  88. ;============================================================================
  89. ;TLB Miss handling Code
  90. ;============================================================================
  91. ;-----------------------------------------------------------------------------
  92. ; This macro does the page-table lookup for the faulting address.
  93. ; OUT: r0 = PTE faulted on, r1 = ptr to PTE, r2 = Faulting V-address
  94. .macro LOAD_FAULT_PTE
  95. lr r2, [efa]
  96. lr r1, [ARC_REG_SCRATCH_DATA0] ; current pgd
  97. lsr r0, r2, PGDIR_SHIFT ; Bits for indexing into PGD
  98. ld.as r1, [r1, r0] ; PGD entry corresp to faulting addr
  99. and.f r1, r1, PAGE_MASK ; Ignoring protection and other flags
  100. ; contains Ptr to Page Table
  101. bz.d do_slow_path_pf ; if no Page Table, do page fault
  102. ; Get the PTE entry: The idea is
  103. ; (1) x = addr >> PAGE_SHIFT -> masks page-off bits from @fault-addr
  104. ; (2) y = x & (PTRS_PER_PTE - 1) -> to get index
  105. ; (3) z = pgtbl[y]
  106. ; To avoid the multiply by in end, we do the -2, <<2 below
  107. lsr r0, r2, (PAGE_SHIFT - 2)
  108. and r0, r0, ( (PTRS_PER_PTE - 1) << 2)
  109. ld.aw r0, [r1, r0] ; get PTE and PTE ptr for fault addr
  110. .endm
  111. ;-----------------------------------------------------------------
  112. ; Convert Linux PTE entry into TLB entry
  113. ; A one-word PTE entry is programmed as two-word TLB Entry [PD0:PD1] in mmu
  114. ; IN: r0 = PTE, r1 = ptr to PTE
  115. .macro CONV_PTE_TO_TLB
  116. and r3, r0, PTE_BITS_IN_PD1 ; Extract permission flags+PFN from PTE
  117. sr r3, [ARC_REG_TLBPD1] ; these go in PD1
  118. and r2, r0, PTE_BITS_IN_PD0 ; Extract other PTE flags: (V)alid, (G)lb
  119. #if (CONFIG_ARC_MMU_VER <= 2) /* Neednot be done with v3 onwards */
  120. lsr r2, r2 ; shift PTE flags to match layout in PD0
  121. #endif
  122. lr r3,[ARC_REG_TLBPD0] ; MMU prepares PD0 with vaddr and asid
  123. or r3, r3, r2 ; S | vaddr | {sasid|asid}
  124. sr r3,[ARC_REG_TLBPD0] ; rewrite PD0
  125. .endm
  126. ;-----------------------------------------------------------------
  127. ; Commit the TLB entry into MMU
  128. .macro COMMIT_ENTRY_TO_MMU
  129. /* Get free TLB slot: Set = computed from vaddr, way = random */
  130. sr TLBGetIndex, [ARC_REG_TLBCOMMAND]
  131. /* Commit the Write */
  132. #if (CONFIG_ARC_MMU_VER >= 2) /* introduced in v2 */
  133. sr TLBWriteNI, [ARC_REG_TLBCOMMAND]
  134. #else
  135. sr TLBWrite, [ARC_REG_TLBCOMMAND]
  136. #endif
  137. .endm
  138. ;-----------------------------------------------------------------
  139. ; ARC700 Exception Handling doesn't auto-switch stack and it only provides
  140. ; ONE scratch AUX reg "ARC_REG_SCRATCH_DATA0"
  141. ;
  142. ; For Non-SMP, the scratch AUX reg is repurposed to cache task PGD, so a
  143. ; "global" is used to free-up FIRST core reg to be able to code the rest of
  144. ; exception prologue (IRQ auto-disabled on Exceptions, so it's IRQ-safe).
  145. ; Since the Fast Path TLB Miss handler is coded with 4 regs, the remaining 3
  146. ; need to be saved as well by extending the "global" to be 4 words. Hence
  147. ; ".size ex_saved_reg1, 16"
  148. ; [All of this dance is to avoid stack switching for each TLB Miss, since we
  149. ; only need to save only a handful of regs, as opposed to complete reg file]
  150. ; As simple as that....
  151. .macro TLBMISS_FREEUP_REGS
  152. st r0, [@ex_saved_reg1]
  153. mov_s r0, @ex_saved_reg1
  154. st_s r1, [r0, 4]
  155. st_s r2, [r0, 8]
  156. st_s r3, [r0, 12]
  157. ; VERIFY if the ASID in MMU-PID Reg is same as
  158. ; one in Linux data structures
  159. DBG_ASID_MISMATCH
  160. .endm
  161. ;-----------------------------------------------------------------
  162. .macro TLBMISS_RESTORE_REGS
  163. mov_s r0, @ex_saved_reg1
  164. ld_s r3, [r0,12]
  165. ld_s r2, [r0, 8]
  166. ld_s r1, [r0, 4]
  167. ld_s r0, [r0]
  168. .endm
  169. .section .text, "ax",@progbits ;Fast Path Code, candidate for ICCM
  170. ;-----------------------------------------------------------------------------
  171. ; I-TLB Miss Exception Handler
  172. ;-----------------------------------------------------------------------------
  173. ARC_ENTRY EV_TLBMissI
  174. TLBMISS_FREEUP_REGS
  175. ;----------------------------------------------------------------
  176. ; Get the PTE corresponding to V-addr accessed
  177. LOAD_FAULT_PTE
  178. ;----------------------------------------------------------------
  179. ; VERIFY_PTE: Check if PTE permissions approp for executing code
  180. cmp_s r2, VMALLOC_START
  181. mov.lo r2, (_PAGE_PRESENT | _PAGE_READ | _PAGE_EXECUTE)
  182. mov.hs r2, (_PAGE_PRESENT | _PAGE_K_READ | _PAGE_K_EXECUTE)
  183. and r3, r0, r2 ; Mask out NON Flag bits from PTE
  184. xor.f r3, r3, r2 ; check ( ( pte & flags_test ) == flags_test )
  185. bnz do_slow_path_pf
  186. ; Let Linux VM know that the page was accessed
  187. or r0, r0, (_PAGE_PRESENT | _PAGE_ACCESSED) ; set Accessed Bit
  188. st_s r0, [r1] ; Write back PTE
  189. CONV_PTE_TO_TLB
  190. COMMIT_ENTRY_TO_MMU
  191. TLBMISS_RESTORE_REGS
  192. rtie
  193. ARC_EXIT EV_TLBMissI
  194. ;-----------------------------------------------------------------------------
  195. ; D-TLB Miss Exception Handler
  196. ;-----------------------------------------------------------------------------
  197. ARC_ENTRY EV_TLBMissD
  198. TLBMISS_FREEUP_REGS
  199. ;----------------------------------------------------------------
  200. ; Get the PTE corresponding to V-addr accessed
  201. ; If PTE exists, it will setup, r0 = PTE, r1 = Ptr to PTE
  202. LOAD_FAULT_PTE
  203. ;----------------------------------------------------------------
  204. ; VERIFY_PTE: Chk if PTE permissions approp for data access (R/W/R+W)
  205. mov_s r2, 0
  206. lr r3, [ecr]
  207. btst_s r3, ECR_C_BIT_DTLB_LD_MISS ; Read Access
  208. or.nz r2, r2, _PAGE_READ ; chk for Read flag in PTE
  209. btst_s r3, ECR_C_BIT_DTLB_ST_MISS ; Write Access
  210. or.nz r2, r2, _PAGE_WRITE ; chk for Write flag in PTE
  211. ; Above laddering takes care of XCHG access
  212. ; which is both Read and Write
  213. ; If kernel mode access, ; make _PAGE_xx flags as _PAGE_K_xx
  214. ; For copy_(to|from)_user, despite exception taken in kernel mode,
  215. ; this code is not hit, because EFA would still be the user mode
  216. ; address (EFA < 0x6000_0000).
  217. ; This code is for legit kernel mode faults, vmalloc specifically
  218. ; (EFA: 0x7000_0000 to 0x7FFF_FFFF)
  219. lr r3, [efa]
  220. cmp r3, VMALLOC_START - 1 ; If kernel mode access
  221. asl.hi r2, r2, 3 ; make _PAGE_xx flags as _PAGE_K_xx
  222. or r2, r2, _PAGE_PRESENT ; Common flag for K/U mode
  223. ; By now, r2 setup with all the Flags we need to check in PTE
  224. and r3, r0, r2 ; Mask out NON Flag bits from PTE
  225. brne.d r3, r2, do_slow_path_pf ; is ((pte & flags_test) == flags_test)
  226. ;----------------------------------------------------------------
  227. ; UPDATE_PTE: Let Linux VM know that page was accessed/dirty
  228. lr r3, [ecr]
  229. or r0, r0, (_PAGE_PRESENT | _PAGE_ACCESSED) ; Accessed bit always
  230. btst_s r3, ECR_C_BIT_DTLB_ST_MISS ; See if it was a Write Access ?
  231. or.nz r0, r0, _PAGE_MODIFIED ; if Write, set Dirty bit as well
  232. st_s r0, [r1] ; Write back PTE
  233. CONV_PTE_TO_TLB
  234. #if (CONFIG_ARC_MMU_VER == 1)
  235. ; MMU with 2 way set assoc J-TLB, needs some help in pathetic case of
  236. ; memcpy where 3 parties contend for 2 ways, ensuing a livelock.
  237. ; But only for old MMU or one with Metal Fix
  238. TLB_WRITE_HEURISTICS
  239. #endif
  240. COMMIT_ENTRY_TO_MMU
  241. TLBMISS_RESTORE_REGS
  242. rtie
  243. ;-------- Common routine to call Linux Page Fault Handler -----------
  244. do_slow_path_pf:
  245. ; Restore the 4-scratch regs saved by fast path miss handler
  246. TLBMISS_RESTORE_REGS
  247. ; Slow path TLB Miss handled as a regular ARC Exception
  248. ; (stack switching / save the complete reg-file).
  249. ; That requires freeing up r9
  250. EXCPN_PROLOG_FREEUP_REG r9
  251. lr r9, [erstatus]
  252. SWITCH_TO_KERNEL_STK
  253. SAVE_ALL_SYS
  254. ; ------- setup args for Linux Page fault Hanlder ---------
  255. mov_s r0, sp
  256. lr r2, [efa]
  257. lr r3, [ecr]
  258. ; Both st and ex imply WRITE access of some sort, hence do_page_fault( )
  259. ; invoked with write=1 for DTLB-st/ex Miss and write=0 for ITLB miss or
  260. ; DTLB-ld Miss
  261. ; DTLB Miss Cause code is ld = 0x01 , st = 0x02, ex = 0x03
  262. ; Following code uses that fact that st/ex have one bit in common
  263. btst_s r3, ECR_C_BIT_DTLB_ST_MISS
  264. mov.z r1, 0
  265. mov.nz r1, 1
  266. ; We don't want exceptions to be disabled while the fault is handled.
  267. ; Now that we have saved the context we return from exception hence
  268. ; exceptions get re-enable
  269. FAKE_RET_FROM_EXCPN r9
  270. bl do_page_fault
  271. b ret_from_exception
  272. ARC_EXIT EV_TLBMissD
  273. ARC_ENTRY EV_TLBMissB ; Bogus entry to measure sz of DTLBMiss hdlr