head_booke.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __HEAD_BOOKE_H__
  3. #define __HEAD_BOOKE_H__
  4. #include <asm/ptrace.h> /* for STACK_FRAME_REGS_MARKER */
  5. #include <asm/kvm_asm.h>
  6. #include <asm/kvm_booke_hv_asm.h>
  7. /*
  8. * Macros used for common Book-e exception handling
  9. */
  10. #define SET_IVOR(vector_number, vector_label) \
  11. li r26,vector_label@l; \
  12. mtspr SPRN_IVOR##vector_number,r26; \
  13. sync
  14. #if (THREAD_SHIFT < 15)
  15. #define ALLOC_STACK_FRAME(reg, val) \
  16. addi reg,reg,val
  17. #else
  18. #define ALLOC_STACK_FRAME(reg, val) \
  19. addis reg,reg,val@ha; \
  20. addi reg,reg,val@l
  21. #endif
  22. /*
  23. * Macro used to get to thread save registers.
  24. * Note that entries 0-3 are used for the prolog code, and the remaining
  25. * entries are available for specific exception use in the event a handler
  26. * requires more than 4 scratch registers.
  27. */
  28. #define THREAD_NORMSAVE(offset) (THREAD_NORMSAVES + (offset * 4))
  29. #define NORMAL_EXCEPTION_PROLOG(intno) \
  30. mtspr SPRN_SPRG_WSCRATCH0, r10; /* save one register */ \
  31. mfspr r10, SPRN_SPRG_THREAD; \
  32. stw r11, THREAD_NORMSAVE(0)(r10); \
  33. stw r13, THREAD_NORMSAVE(2)(r10); \
  34. mfcr r13; /* save CR in r13 for now */\
  35. mfspr r11, SPRN_SRR1; \
  36. DO_KVM BOOKE_INTERRUPT_##intno SPRN_SRR1; \
  37. andi. r11, r11, MSR_PR; /* check whether user or kernel */\
  38. mr r11, r1; \
  39. beq 1f; \
  40. /* if from user, start at top of this thread's kernel stack */ \
  41. lwz r11, THREAD_INFO-THREAD(r10); \
  42. ALLOC_STACK_FRAME(r11, THREAD_SIZE); \
  43. 1 : subi r11, r11, INT_FRAME_SIZE; /* Allocate exception frame */ \
  44. stw r13, _CCR(r11); /* save various registers */ \
  45. stw r12,GPR12(r11); \
  46. stw r9,GPR9(r11); \
  47. mfspr r13, SPRN_SPRG_RSCRATCH0; \
  48. stw r13, GPR10(r11); \
  49. lwz r12, THREAD_NORMSAVE(0)(r10); \
  50. stw r12,GPR11(r11); \
  51. lwz r13, THREAD_NORMSAVE(2)(r10); /* restore r13 */ \
  52. mflr r10; \
  53. stw r10,_LINK(r11); \
  54. mfspr r12,SPRN_SRR0; \
  55. stw r1, GPR1(r11); \
  56. mfspr r9,SPRN_SRR1; \
  57. stw r1, 0(r11); \
  58. mr r1, r11; \
  59. rlwinm r9,r9,0,14,12; /* clear MSR_WE (necessary?) */\
  60. stw r0,GPR0(r11); \
  61. lis r10, STACK_FRAME_REGS_MARKER@ha;/* exception frame marker */ \
  62. addi r10, r10, STACK_FRAME_REGS_MARKER@l; \
  63. stw r10, 8(r11); \
  64. SAVE_4GPRS(3, r11); \
  65. SAVE_2GPRS(7, r11)
  66. /* To handle the additional exception priority levels on 40x and Book-E
  67. * processors we allocate a stack per additional priority level.
  68. *
  69. * On 40x critical is the only additional level
  70. * On 44x/e500 we have critical and machine check
  71. * On e200 we have critical and debug (machine check occurs via critical)
  72. *
  73. * Additionally we reserve a SPRG for each priority level so we can free up a
  74. * GPR to use as the base for indirect access to the exception stacks. This
  75. * is necessary since the MMU is always on, for Book-E parts, and the stacks
  76. * are offset from KERNELBASE.
  77. *
  78. * There is some space optimization to be had here if desired. However
  79. * to allow for a common kernel with support for debug exceptions either
  80. * going to critical or their own debug level we aren't currently
  81. * providing configurations that micro-optimize space usage.
  82. */
  83. #define MC_STACK_BASE mcheckirq_ctx
  84. #define CRIT_STACK_BASE critirq_ctx
  85. /* only on e500mc/e200 */
  86. #define DBG_STACK_BASE dbgirq_ctx
  87. #define EXC_LVL_FRAME_OVERHEAD (THREAD_SIZE - INT_FRAME_SIZE - EXC_LVL_SIZE)
  88. #ifdef CONFIG_SMP
  89. #define BOOKE_LOAD_EXC_LEVEL_STACK(level) \
  90. mfspr r8,SPRN_PIR; \
  91. slwi r8,r8,2; \
  92. addis r8,r8,level##_STACK_BASE@ha; \
  93. lwz r8,level##_STACK_BASE@l(r8); \
  94. addi r8,r8,EXC_LVL_FRAME_OVERHEAD;
  95. #else
  96. #define BOOKE_LOAD_EXC_LEVEL_STACK(level) \
  97. lis r8,level##_STACK_BASE@ha; \
  98. lwz r8,level##_STACK_BASE@l(r8); \
  99. addi r8,r8,EXC_LVL_FRAME_OVERHEAD;
  100. #endif
  101. /*
  102. * Exception prolog for critical/machine check exceptions. This is a
  103. * little different from the normal exception prolog above since a
  104. * critical/machine check exception can potentially occur at any point
  105. * during normal exception processing. Thus we cannot use the same SPRG
  106. * registers as the normal prolog above. Instead we use a portion of the
  107. * critical/machine check exception stack at low physical addresses.
  108. */
  109. #define EXC_LEVEL_EXCEPTION_PROLOG(exc_level, intno, exc_level_srr0, exc_level_srr1) \
  110. mtspr SPRN_SPRG_WSCRATCH_##exc_level,r8; \
  111. BOOKE_LOAD_EXC_LEVEL_STACK(exc_level);/* r8 points to the exc_level stack*/ \
  112. stw r9,GPR9(r8); /* save various registers */\
  113. mfcr r9; /* save CR in r9 for now */\
  114. stw r10,GPR10(r8); \
  115. stw r11,GPR11(r8); \
  116. stw r9,_CCR(r8); /* save CR on stack */\
  117. mfspr r11,exc_level_srr1; /* check whether user or kernel */\
  118. DO_KVM BOOKE_INTERRUPT_##intno exc_level_srr1; \
  119. andi. r11,r11,MSR_PR; \
  120. mfspr r11,SPRN_SPRG_THREAD; /* if from user, start at top of */\
  121. lwz r11,THREAD_INFO-THREAD(r11); /* this thread's kernel stack */\
  122. addi r11,r11,EXC_LVL_FRAME_OVERHEAD; /* allocate stack frame */\
  123. beq 1f; \
  124. /* COMING FROM USER MODE */ \
  125. stw r9,_CCR(r11); /* save CR */\
  126. lwz r10,GPR10(r8); /* copy regs from exception stack */\
  127. lwz r9,GPR9(r8); \
  128. stw r10,GPR10(r11); \
  129. lwz r10,GPR11(r8); \
  130. stw r9,GPR9(r11); \
  131. stw r10,GPR11(r11); \
  132. b 2f; \
  133. /* COMING FROM PRIV MODE */ \
  134. 1: lwz r9,TI_FLAGS-EXC_LVL_FRAME_OVERHEAD(r11); \
  135. lwz r10,TI_PREEMPT-EXC_LVL_FRAME_OVERHEAD(r11); \
  136. stw r9,TI_FLAGS-EXC_LVL_FRAME_OVERHEAD(r8); \
  137. stw r10,TI_PREEMPT-EXC_LVL_FRAME_OVERHEAD(r8); \
  138. lwz r9,TI_TASK-EXC_LVL_FRAME_OVERHEAD(r11); \
  139. stw r9,TI_TASK-EXC_LVL_FRAME_OVERHEAD(r8); \
  140. mr r11,r8; \
  141. 2: mfspr r8,SPRN_SPRG_RSCRATCH_##exc_level; \
  142. stw r12,GPR12(r11); /* save various registers */\
  143. mflr r10; \
  144. stw r10,_LINK(r11); \
  145. mfspr r12,SPRN_DEAR; /* save DEAR and ESR in the frame */\
  146. stw r12,_DEAR(r11); /* since they may have had stuff */\
  147. mfspr r9,SPRN_ESR; /* in them at the point where the */\
  148. stw r9,_ESR(r11); /* exception was taken */\
  149. mfspr r12,exc_level_srr0; \
  150. stw r1,GPR1(r11); \
  151. mfspr r9,exc_level_srr1; \
  152. stw r1,0(r11); \
  153. mr r1,r11; \
  154. rlwinm r9,r9,0,14,12; /* clear MSR_WE (necessary?) */\
  155. stw r0,GPR0(r11); \
  156. SAVE_4GPRS(3, r11); \
  157. SAVE_2GPRS(7, r11)
  158. #define CRITICAL_EXCEPTION_PROLOG(intno) \
  159. EXC_LEVEL_EXCEPTION_PROLOG(CRIT, intno, SPRN_CSRR0, SPRN_CSRR1)
  160. #define DEBUG_EXCEPTION_PROLOG \
  161. EXC_LEVEL_EXCEPTION_PROLOG(DBG, DEBUG, SPRN_DSRR0, SPRN_DSRR1)
  162. #define MCHECK_EXCEPTION_PROLOG \
  163. EXC_LEVEL_EXCEPTION_PROLOG(MC, MACHINE_CHECK, \
  164. SPRN_MCSRR0, SPRN_MCSRR1)
  165. /*
  166. * Guest Doorbell -- this is a bit odd in that uses GSRR0/1 despite
  167. * being delivered to the host. This exception can only happen
  168. * inside a KVM guest -- so we just handle up to the DO_KVM rather
  169. * than try to fit this into one of the existing prolog macros.
  170. */
  171. #define GUEST_DOORBELL_EXCEPTION \
  172. START_EXCEPTION(GuestDoorbell); \
  173. mtspr SPRN_SPRG_WSCRATCH0, r10; /* save one register */ \
  174. mfspr r10, SPRN_SPRG_THREAD; \
  175. stw r11, THREAD_NORMSAVE(0)(r10); \
  176. mfspr r11, SPRN_SRR1; \
  177. stw r13, THREAD_NORMSAVE(2)(r10); \
  178. mfcr r13; /* save CR in r13 for now */\
  179. DO_KVM BOOKE_INTERRUPT_GUEST_DBELL SPRN_GSRR1; \
  180. trap
  181. /*
  182. * Exception vectors.
  183. */
  184. #define START_EXCEPTION(label) \
  185. .align 5; \
  186. label:
  187. #define EXCEPTION(n, intno, label, hdlr, xfer) \
  188. START_EXCEPTION(label); \
  189. NORMAL_EXCEPTION_PROLOG(intno); \
  190. addi r3,r1,STACK_FRAME_OVERHEAD; \
  191. xfer(n, hdlr)
  192. #define CRITICAL_EXCEPTION(n, intno, label, hdlr) \
  193. START_EXCEPTION(label); \
  194. CRITICAL_EXCEPTION_PROLOG(intno); \
  195. addi r3,r1,STACK_FRAME_OVERHEAD; \
  196. EXC_XFER_TEMPLATE(hdlr, n+2, (MSR_KERNEL & ~(MSR_ME|MSR_DE|MSR_CE)), \
  197. NOCOPY, crit_transfer_to_handler, \
  198. ret_from_crit_exc)
  199. #define MCHECK_EXCEPTION(n, label, hdlr) \
  200. START_EXCEPTION(label); \
  201. MCHECK_EXCEPTION_PROLOG; \
  202. mfspr r5,SPRN_ESR; \
  203. stw r5,_ESR(r11); \
  204. addi r3,r1,STACK_FRAME_OVERHEAD; \
  205. EXC_XFER_TEMPLATE(hdlr, n+4, (MSR_KERNEL & ~(MSR_ME|MSR_DE|MSR_CE)), \
  206. NOCOPY, mcheck_transfer_to_handler, \
  207. ret_from_mcheck_exc)
  208. #define EXC_XFER_TEMPLATE(hdlr, trap, msr, copyee, tfer, ret) \
  209. li r10,trap; \
  210. stw r10,_TRAP(r11); \
  211. lis r10,msr@h; \
  212. ori r10,r10,msr@l; \
  213. copyee(r10, r9); \
  214. bl tfer; \
  215. .long hdlr; \
  216. .long ret
  217. #define COPY_EE(d, s) rlwimi d,s,0,16,16
  218. #define NOCOPY(d, s)
  219. #define EXC_XFER_STD(n, hdlr) \
  220. EXC_XFER_TEMPLATE(hdlr, n, MSR_KERNEL, NOCOPY, transfer_to_handler_full, \
  221. ret_from_except_full)
  222. #define EXC_XFER_LITE(n, hdlr) \
  223. EXC_XFER_TEMPLATE(hdlr, n+1, MSR_KERNEL, NOCOPY, transfer_to_handler, \
  224. ret_from_except)
  225. #define EXC_XFER_EE(n, hdlr) \
  226. EXC_XFER_TEMPLATE(hdlr, n, MSR_KERNEL, COPY_EE, transfer_to_handler_full, \
  227. ret_from_except_full)
  228. #define EXC_XFER_EE_LITE(n, hdlr) \
  229. EXC_XFER_TEMPLATE(hdlr, n+1, MSR_KERNEL, COPY_EE, transfer_to_handler, \
  230. ret_from_except)
  231. /* Check for a single step debug exception while in an exception
  232. * handler before state has been saved. This is to catch the case
  233. * where an instruction that we are trying to single step causes
  234. * an exception (eg ITLB/DTLB miss) and thus the first instruction of
  235. * the exception handler generates a single step debug exception.
  236. *
  237. * If we get a debug trap on the first instruction of an exception handler,
  238. * we reset the MSR_DE in the _exception handler's_ MSR (the debug trap is
  239. * a critical exception, so we are using SPRN_CSRR1 to manipulate the MSR).
  240. * The exception handler was handling a non-critical interrupt, so it will
  241. * save (and later restore) the MSR via SPRN_CSRR1, which will still have
  242. * the MSR_DE bit set.
  243. */
  244. #define DEBUG_DEBUG_EXCEPTION \
  245. START_EXCEPTION(DebugDebug); \
  246. DEBUG_EXCEPTION_PROLOG; \
  247. \
  248. /* \
  249. * If there is a single step or branch-taken exception in an \
  250. * exception entry sequence, it was probably meant to apply to \
  251. * the code where the exception occurred (since exception entry \
  252. * doesn't turn off DE automatically). We simulate the effect \
  253. * of turning off DE on entry to an exception handler by turning \
  254. * off DE in the DSRR1 value and clearing the debug status. \
  255. */ \
  256. mfspr r10,SPRN_DBSR; /* check single-step/branch taken */ \
  257. andis. r10,r10,(DBSR_IC|DBSR_BT)@h; \
  258. beq+ 2f; \
  259. \
  260. lis r10,interrupt_base@h; /* check if exception in vectors */ \
  261. ori r10,r10,interrupt_base@l; \
  262. cmplw r12,r10; \
  263. blt+ 2f; /* addr below exception vectors */ \
  264. \
  265. lis r10,interrupt_end@h; \
  266. ori r10,r10,interrupt_end@l; \
  267. cmplw r12,r10; \
  268. bgt+ 2f; /* addr above exception vectors */ \
  269. \
  270. /* here it looks like we got an inappropriate debug exception. */ \
  271. 1: rlwinm r9,r9,0,~MSR_DE; /* clear DE in the CDRR1 value */ \
  272. lis r10,(DBSR_IC|DBSR_BT)@h; /* clear the IC event */ \
  273. mtspr SPRN_DBSR,r10; \
  274. /* restore state and get out */ \
  275. lwz r10,_CCR(r11); \
  276. lwz r0,GPR0(r11); \
  277. lwz r1,GPR1(r11); \
  278. mtcrf 0x80,r10; \
  279. mtspr SPRN_DSRR0,r12; \
  280. mtspr SPRN_DSRR1,r9; \
  281. lwz r9,GPR9(r11); \
  282. lwz r12,GPR12(r11); \
  283. mtspr SPRN_SPRG_WSCRATCH_DBG,r8; \
  284. BOOKE_LOAD_EXC_LEVEL_STACK(DBG); /* r8 points to the debug stack */ \
  285. lwz r10,GPR10(r8); \
  286. lwz r11,GPR11(r8); \
  287. mfspr r8,SPRN_SPRG_RSCRATCH_DBG; \
  288. \
  289. PPC_RFDI; \
  290. b .; \
  291. \
  292. /* continue normal handling for a debug exception... */ \
  293. 2: mfspr r4,SPRN_DBSR; \
  294. addi r3,r1,STACK_FRAME_OVERHEAD; \
  295. EXC_XFER_TEMPLATE(DebugException, 0x2008, (MSR_KERNEL & ~(MSR_ME|MSR_DE|MSR_CE)), NOCOPY, debug_transfer_to_handler, ret_from_debug_exc)
  296. #define DEBUG_CRIT_EXCEPTION \
  297. START_EXCEPTION(DebugCrit); \
  298. CRITICAL_EXCEPTION_PROLOG(DEBUG); \
  299. \
  300. /* \
  301. * If there is a single step or branch-taken exception in an \
  302. * exception entry sequence, it was probably meant to apply to \
  303. * the code where the exception occurred (since exception entry \
  304. * doesn't turn off DE automatically). We simulate the effect \
  305. * of turning off DE on entry to an exception handler by turning \
  306. * off DE in the CSRR1 value and clearing the debug status. \
  307. */ \
  308. mfspr r10,SPRN_DBSR; /* check single-step/branch taken */ \
  309. andis. r10,r10,(DBSR_IC|DBSR_BT)@h; \
  310. beq+ 2f; \
  311. \
  312. lis r10,interrupt_base@h; /* check if exception in vectors */ \
  313. ori r10,r10,interrupt_base@l; \
  314. cmplw r12,r10; \
  315. blt+ 2f; /* addr below exception vectors */ \
  316. \
  317. lis r10,interrupt_end@h; \
  318. ori r10,r10,interrupt_end@l; \
  319. cmplw r12,r10; \
  320. bgt+ 2f; /* addr above exception vectors */ \
  321. \
  322. /* here it looks like we got an inappropriate debug exception. */ \
  323. 1: rlwinm r9,r9,0,~MSR_DE; /* clear DE in the CSRR1 value */ \
  324. lis r10,(DBSR_IC|DBSR_BT)@h; /* clear the IC event */ \
  325. mtspr SPRN_DBSR,r10; \
  326. /* restore state and get out */ \
  327. lwz r10,_CCR(r11); \
  328. lwz r0,GPR0(r11); \
  329. lwz r1,GPR1(r11); \
  330. mtcrf 0x80,r10; \
  331. mtspr SPRN_CSRR0,r12; \
  332. mtspr SPRN_CSRR1,r9; \
  333. lwz r9,GPR9(r11); \
  334. lwz r12,GPR12(r11); \
  335. mtspr SPRN_SPRG_WSCRATCH_CRIT,r8; \
  336. BOOKE_LOAD_EXC_LEVEL_STACK(CRIT); /* r8 points to the debug stack */ \
  337. lwz r10,GPR10(r8); \
  338. lwz r11,GPR11(r8); \
  339. mfspr r8,SPRN_SPRG_RSCRATCH_CRIT; \
  340. \
  341. rfci; \
  342. b .; \
  343. \
  344. /* continue normal handling for a critical exception... */ \
  345. 2: mfspr r4,SPRN_DBSR; \
  346. addi r3,r1,STACK_FRAME_OVERHEAD; \
  347. EXC_XFER_TEMPLATE(DebugException, 0x2002, (MSR_KERNEL & ~(MSR_ME|MSR_DE|MSR_CE)), NOCOPY, crit_transfer_to_handler, ret_from_crit_exc)
  348. #define DATA_STORAGE_EXCEPTION \
  349. START_EXCEPTION(DataStorage) \
  350. NORMAL_EXCEPTION_PROLOG(DATA_STORAGE); \
  351. mfspr r5,SPRN_ESR; /* Grab the ESR and save it */ \
  352. stw r5,_ESR(r11); \
  353. mfspr r4,SPRN_DEAR; /* Grab the DEAR */ \
  354. EXC_XFER_LITE(0x0300, handle_page_fault)
  355. #define INSTRUCTION_STORAGE_EXCEPTION \
  356. START_EXCEPTION(InstructionStorage) \
  357. NORMAL_EXCEPTION_PROLOG(INST_STORAGE); \
  358. mfspr r5,SPRN_ESR; /* Grab the ESR and save it */ \
  359. stw r5,_ESR(r11); \
  360. mr r4,r12; /* Pass SRR0 as arg2 */ \
  361. li r5,0; /* Pass zero as arg3 */ \
  362. EXC_XFER_LITE(0x0400, handle_page_fault)
  363. #define ALIGNMENT_EXCEPTION \
  364. START_EXCEPTION(Alignment) \
  365. NORMAL_EXCEPTION_PROLOG(ALIGNMENT); \
  366. mfspr r4,SPRN_DEAR; /* Grab the DEAR and save it */ \
  367. stw r4,_DEAR(r11); \
  368. addi r3,r1,STACK_FRAME_OVERHEAD; \
  369. EXC_XFER_EE(0x0600, alignment_exception)
  370. #define PROGRAM_EXCEPTION \
  371. START_EXCEPTION(Program) \
  372. NORMAL_EXCEPTION_PROLOG(PROGRAM); \
  373. mfspr r4,SPRN_ESR; /* Grab the ESR and save it */ \
  374. stw r4,_ESR(r11); \
  375. addi r3,r1,STACK_FRAME_OVERHEAD; \
  376. EXC_XFER_STD(0x0700, program_check_exception)
  377. #define DECREMENTER_EXCEPTION \
  378. START_EXCEPTION(Decrementer) \
  379. NORMAL_EXCEPTION_PROLOG(DECREMENTER); \
  380. lis r0,TSR_DIS@h; /* Setup the DEC interrupt mask */ \
  381. mtspr SPRN_TSR,r0; /* Clear the DEC interrupt */ \
  382. addi r3,r1,STACK_FRAME_OVERHEAD; \
  383. EXC_XFER_LITE(0x0900, timer_interrupt)
  384. #define FP_UNAVAILABLE_EXCEPTION \
  385. START_EXCEPTION(FloatingPointUnavailable) \
  386. NORMAL_EXCEPTION_PROLOG(FP_UNAVAIL); \
  387. beq 1f; \
  388. bl load_up_fpu; /* if from user, just load it up */ \
  389. b fast_exception_return; \
  390. 1: addi r3,r1,STACK_FRAME_OVERHEAD; \
  391. EXC_XFER_EE_LITE(0x800, kernel_fp_unavailable_exception)
  392. #ifndef __ASSEMBLY__
  393. struct exception_regs {
  394. unsigned long mas0;
  395. unsigned long mas1;
  396. unsigned long mas2;
  397. unsigned long mas3;
  398. unsigned long mas6;
  399. unsigned long mas7;
  400. unsigned long srr0;
  401. unsigned long srr1;
  402. unsigned long csrr0;
  403. unsigned long csrr1;
  404. unsigned long dsrr0;
  405. unsigned long dsrr1;
  406. unsigned long saved_ksp_limit;
  407. };
  408. /* ensure this structure is always sized to a multiple of the stack alignment */
  409. #define STACK_EXC_LVL_FRAME_SIZE _ALIGN_UP(sizeof (struct exception_regs), 16)
  410. #endif /* __ASSEMBLY__ */
  411. #endif /* __HEAD_BOOKE_H__ */