exception-64e.h 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. /*
  2. * Definitions for use by exception code on Book3-E
  3. *
  4. * Copyright (C) 2008 Ben. Herrenschmidt (benh@kernel.crashing.org), IBM Corp.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the License, or (at your option) any later version.
  10. */
  11. #ifndef _ASM_POWERPC_EXCEPTION_64E_H
  12. #define _ASM_POWERPC_EXCEPTION_64E_H
  13. /*
  14. * SPRGs usage an other considerations...
  15. *
  16. * Since TLB miss and other standard exceptions can be interrupted by
  17. * critical exceptions which can themselves be interrupted by machine
  18. * checks, and since the two later can themselves cause a TLB miss when
  19. * hitting the linear mapping for the kernel stacks, we need to be a bit
  20. * creative on how we use SPRGs.
  21. *
  22. * The base idea is that we have one SRPG reserved for critical and one
  23. * for machine check interrupts. Those are used to save a GPR that can
  24. * then be used to get the PACA, and store as much context as we need
  25. * to save in there. That includes saving the SPRGs used by the TLB miss
  26. * handler for linear mapping misses and the associated SRR0/1 due to
  27. * the above re-entrancy issue.
  28. *
  29. * So here's the current usage pattern. It's done regardless of which
  30. * SPRGs are user-readable though, thus we might have to change some of
  31. * this later. In order to do that more easily, we use special constants
  32. * for naming them
  33. *
  34. * WARNING: Some of these SPRGs are user readable. We need to do something
  35. * about it as some point by making sure they can't be used to leak kernel
  36. * critical data
  37. */
  38. /* We are out of SPRGs so we save some things in the PACA. The normal
  39. * exception frame is smaller than the CRIT or MC one though
  40. */
  41. #define EX_R1 (0 * 8)
  42. #define EX_CR (1 * 8)
  43. #define EX_R10 (2 * 8)
  44. #define EX_R11 (3 * 8)
  45. #define EX_R14 (4 * 8)
  46. #define EX_R15 (5 * 8)
  47. /*
  48. * The TLB miss exception uses different slots.
  49. *
  50. * The bolted variant uses only the first six fields,
  51. * which in combination with pgd and kernel_pgd fits in
  52. * one 64-byte cache line.
  53. */
  54. #define EX_TLB_R10 ( 0 * 8)
  55. #define EX_TLB_R11 ( 1 * 8)
  56. #define EX_TLB_R14 ( 2 * 8)
  57. #define EX_TLB_R15 ( 3 * 8)
  58. #define EX_TLB_R16 ( 4 * 8)
  59. #define EX_TLB_CR ( 5 * 8)
  60. #define EX_TLB_R12 ( 6 * 8)
  61. #define EX_TLB_R13 ( 7 * 8)
  62. #define EX_TLB_DEAR ( 8 * 8) /* Level 0 and 2 only */
  63. #define EX_TLB_ESR ( 9 * 8) /* Level 0 and 2 only */
  64. #define EX_TLB_SRR0 (10 * 8)
  65. #define EX_TLB_SRR1 (11 * 8)
  66. #ifdef CONFIG_BOOK3E_MMU_TLB_STATS
  67. #define EX_TLB_R8 (12 * 8)
  68. #define EX_TLB_R9 (13 * 8)
  69. #define EX_TLB_LR (14 * 8)
  70. #define EX_TLB_SIZE (15 * 8)
  71. #else
  72. #define EX_TLB_SIZE (12 * 8)
  73. #endif
  74. #define START_EXCEPTION(label) \
  75. .globl exc_##label##_book3e; \
  76. exc_##label##_book3e:
  77. /* TLB miss exception prolog
  78. *
  79. * This prolog handles re-entrancy (up to 3 levels supported in the PACA
  80. * though we currently don't test for overflow). It provides you with a
  81. * re-entrancy safe working space of r10...r16 and CR with r12 being used
  82. * as the exception area pointer in the PACA for that level of re-entrancy
  83. * and r13 containing the PACA pointer.
  84. *
  85. * SRR0 and SRR1 are saved, but DEAR and ESR are not, since they don't apply
  86. * as-is for instruction exceptions. It's up to the actual exception code
  87. * to save them as well if required.
  88. */
  89. #define TLB_MISS_PROLOG \
  90. mtspr SPRN_SPRG_TLB_SCRATCH,r12; \
  91. mfspr r12,SPRN_SPRG_TLB_EXFRAME; \
  92. std r10,EX_TLB_R10(r12); \
  93. mfcr r10; \
  94. std r11,EX_TLB_R11(r12); \
  95. mfspr r11,SPRN_SPRG_TLB_SCRATCH; \
  96. std r13,EX_TLB_R13(r12); \
  97. mfspr r13,SPRN_SPRG_PACA; \
  98. std r14,EX_TLB_R14(r12); \
  99. addi r14,r12,EX_TLB_SIZE; \
  100. std r15,EX_TLB_R15(r12); \
  101. mfspr r15,SPRN_SRR1; \
  102. std r16,EX_TLB_R16(r12); \
  103. mfspr r16,SPRN_SRR0; \
  104. std r10,EX_TLB_CR(r12); \
  105. std r11,EX_TLB_R12(r12); \
  106. mtspr SPRN_SPRG_TLB_EXFRAME,r14; \
  107. std r15,EX_TLB_SRR1(r12); \
  108. std r16,EX_TLB_SRR0(r12); \
  109. TLB_MISS_PROLOG_STATS
  110. /* And these are the matching epilogs that restores things
  111. *
  112. * There are 3 epilogs:
  113. *
  114. * - SUCCESS : Unwinds one level
  115. * - ERROR : restore from level 0 and reset
  116. * - ERROR_SPECIAL : restore from current level and reset
  117. *
  118. * Normal errors use ERROR, that is, they restore the initial fault context
  119. * and trigger a fault. However, there is a special case for linear mapping
  120. * errors. Those should basically never happen, but if they do happen, we
  121. * want the error to point out the context that did that linear mapping
  122. * fault, not the initial level 0 (basically, we got a bogus PGF or something
  123. * like that). For userland errors on the linear mapping, there is no
  124. * difference since those are always level 0 anyway
  125. */
  126. #define TLB_MISS_RESTORE(freg) \
  127. ld r14,EX_TLB_CR(r12); \
  128. ld r10,EX_TLB_R10(r12); \
  129. ld r15,EX_TLB_SRR0(r12); \
  130. ld r16,EX_TLB_SRR1(r12); \
  131. mtspr SPRN_SPRG_TLB_EXFRAME,freg; \
  132. ld r11,EX_TLB_R11(r12); \
  133. mtcr r14; \
  134. ld r13,EX_TLB_R13(r12); \
  135. ld r14,EX_TLB_R14(r12); \
  136. mtspr SPRN_SRR0,r15; \
  137. ld r15,EX_TLB_R15(r12); \
  138. mtspr SPRN_SRR1,r16; \
  139. TLB_MISS_RESTORE_STATS \
  140. ld r16,EX_TLB_R16(r12); \
  141. ld r12,EX_TLB_R12(r12); \
  142. #define TLB_MISS_EPILOG_SUCCESS \
  143. TLB_MISS_RESTORE(r12)
  144. #define TLB_MISS_EPILOG_ERROR \
  145. addi r12,r13,PACA_EXTLB; \
  146. TLB_MISS_RESTORE(r12)
  147. #define TLB_MISS_EPILOG_ERROR_SPECIAL \
  148. addi r11,r13,PACA_EXTLB; \
  149. TLB_MISS_RESTORE(r11)
  150. #ifdef CONFIG_BOOK3E_MMU_TLB_STATS
  151. #define TLB_MISS_PROLOG_STATS \
  152. mflr r10; \
  153. std r8,EX_TLB_R8(r12); \
  154. std r9,EX_TLB_R9(r12); \
  155. std r10,EX_TLB_LR(r12);
  156. #define TLB_MISS_RESTORE_STATS \
  157. ld r16,EX_TLB_LR(r12); \
  158. ld r9,EX_TLB_R9(r12); \
  159. ld r8,EX_TLB_R8(r12); \
  160. mtlr r16;
  161. #define TLB_MISS_PROLOG_STATS_BOLTED \
  162. mflr r10; \
  163. std r8,PACA_EXTLB+EX_TLB_R8(r13); \
  164. std r9,PACA_EXTLB+EX_TLB_R9(r13); \
  165. std r10,PACA_EXTLB+EX_TLB_LR(r13);
  166. #define TLB_MISS_RESTORE_STATS_BOLTED \
  167. ld r16,PACA_EXTLB+EX_TLB_LR(r13); \
  168. ld r9,PACA_EXTLB+EX_TLB_R9(r13); \
  169. ld r8,PACA_EXTLB+EX_TLB_R8(r13); \
  170. mtlr r16;
  171. #define TLB_MISS_STATS_D(name) \
  172. addi r9,r13,MMSTAT_DSTATS+name; \
  173. bl .tlb_stat_inc;
  174. #define TLB_MISS_STATS_I(name) \
  175. addi r9,r13,MMSTAT_ISTATS+name; \
  176. bl .tlb_stat_inc;
  177. #define TLB_MISS_STATS_X(name) \
  178. ld r8,PACA_EXTLB+EX_TLB_ESR(r13); \
  179. cmpdi cr2,r8,-1; \
  180. beq cr2,61f; \
  181. addi r9,r13,MMSTAT_DSTATS+name; \
  182. b 62f; \
  183. 61: addi r9,r13,MMSTAT_ISTATS+name; \
  184. 62: bl .tlb_stat_inc;
  185. #define TLB_MISS_STATS_SAVE_INFO \
  186. std r14,EX_TLB_ESR(r12); /* save ESR */
  187. #define TLB_MISS_STATS_SAVE_INFO_BOLTED \
  188. std r14,PACA_EXTLB+EX_TLB_ESR(r13); /* save ESR */
  189. #else
  190. #define TLB_MISS_PROLOG_STATS
  191. #define TLB_MISS_RESTORE_STATS
  192. #define TLB_MISS_PROLOG_STATS_BOLTED
  193. #define TLB_MISS_RESTORE_STATS_BOLTED
  194. #define TLB_MISS_STATS_D(name)
  195. #define TLB_MISS_STATS_I(name)
  196. #define TLB_MISS_STATS_X(name)
  197. #define TLB_MISS_STATS_Y(name)
  198. #define TLB_MISS_STATS_SAVE_INFO
  199. #define TLB_MISS_STATS_SAVE_INFO_BOLTED
  200. #endif
  201. #define SET_IVOR(vector_number, vector_offset) \
  202. li r3,vector_offset@l; \
  203. ori r3,r3,interrupt_base_book3e@l; \
  204. mtspr SPRN_IVOR##vector_number,r3;
  205. #endif /* _ASM_POWERPC_EXCEPTION_64E_H */