intvec_32.S 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908
  1. /*
  2. * Copyright 2010 Tilera Corporation. All Rights Reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation, version 2.
  7. *
  8. * This program is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  11. * NON INFRINGEMENT. See the GNU General Public License for
  12. * more details.
  13. *
  14. * Linux interrupt vectors.
  15. */
  16. #include <linux/linkage.h>
  17. #include <linux/errno.h>
  18. #include <linux/init.h>
  19. #include <linux/unistd.h>
  20. #include <asm/ptrace.h>
  21. #include <asm/thread_info.h>
  22. #include <asm/irqflags.h>
  23. #include <asm/atomic_32.h>
  24. #include <asm/asm-offsets.h>
  25. #include <hv/hypervisor.h>
  26. #include <arch/abi.h>
  27. #include <arch/interrupts.h>
  28. #include <arch/spr_def.h>
  29. #define PTREGS_PTR(reg, ptreg) addli reg, sp, C_ABI_SAVE_AREA_SIZE + (ptreg)
  30. #define PTREGS_OFFSET_SYSCALL PTREGS_OFFSET_REG(TREG_SYSCALL_NR)
  31. .macro push_reg reg, ptr=sp, delta=-4
  32. {
  33. sw \ptr, \reg
  34. addli \ptr, \ptr, \delta
  35. }
  36. .endm
  37. .macro pop_reg reg, ptr=sp, delta=4
  38. {
  39. lw \reg, \ptr
  40. addli \ptr, \ptr, \delta
  41. }
  42. .endm
  43. .macro pop_reg_zero reg, zreg, ptr=sp, delta=4
  44. {
  45. move \zreg, zero
  46. lw \reg, \ptr
  47. addi \ptr, \ptr, \delta
  48. }
  49. .endm
  50. .macro push_extra_callee_saves reg
  51. PTREGS_PTR(\reg, PTREGS_OFFSET_REG(51))
  52. push_reg r51, \reg
  53. push_reg r50, \reg
  54. push_reg r49, \reg
  55. push_reg r48, \reg
  56. push_reg r47, \reg
  57. push_reg r46, \reg
  58. push_reg r45, \reg
  59. push_reg r44, \reg
  60. push_reg r43, \reg
  61. push_reg r42, \reg
  62. push_reg r41, \reg
  63. push_reg r40, \reg
  64. push_reg r39, \reg
  65. push_reg r38, \reg
  66. push_reg r37, \reg
  67. push_reg r36, \reg
  68. push_reg r35, \reg
  69. push_reg r34, \reg, PTREGS_OFFSET_BASE - PTREGS_OFFSET_REG(34)
  70. .endm
  71. .macro panic str
  72. .pushsection .rodata, "a"
  73. 1:
  74. .asciz "\str"
  75. .popsection
  76. {
  77. moveli r0, lo16(1b)
  78. }
  79. {
  80. auli r0, r0, ha16(1b)
  81. jal panic
  82. }
  83. .endm
  84. #ifdef __COLLECT_LINKER_FEEDBACK__
  85. .pushsection .text.intvec_feedback,"ax"
  86. intvec_feedback:
  87. .popsection
  88. #endif
  89. /*
  90. * Default interrupt handler.
  91. *
  92. * vecnum is where we'll put this code.
  93. * c_routine is the C routine we'll call.
  94. *
  95. * The C routine is passed two arguments:
  96. * - A pointer to the pt_regs state.
  97. * - The interrupt vector number.
  98. *
  99. * The "processing" argument specifies the code for processing
  100. * the interrupt. Defaults to "handle_interrupt".
  101. */
  102. .macro int_hand vecnum, vecname, c_routine, processing=handle_interrupt
  103. .org (\vecnum << 8)
  104. intvec_\vecname:
  105. .ifc \vecnum, INT_SWINT_1
  106. blz TREG_SYSCALL_NR_NAME, sys_cmpxchg
  107. .endif
  108. /* Temporarily save a register so we have somewhere to work. */
  109. mtspr SPR_SYSTEM_SAVE_K_1, r0
  110. mfspr r0, SPR_EX_CONTEXT_K_1
  111. /* The cmpxchg code clears sp to force us to reset it here on fault. */
  112. {
  113. bz sp, 2f
  114. andi r0, r0, SPR_EX_CONTEXT_1_1__PL_MASK /* mask off ICS */
  115. }
  116. .ifc \vecnum, INT_DOUBLE_FAULT
  117. /*
  118. * For double-faults from user-space, fall through to the normal
  119. * register save and stack setup path. Otherwise, it's the
  120. * hypervisor giving us one last chance to dump diagnostics, and we
  121. * branch to the kernel_double_fault routine to do so.
  122. */
  123. bz r0, 1f
  124. j _kernel_double_fault
  125. 1:
  126. .else
  127. /*
  128. * If we're coming from user-space, then set sp to the top of
  129. * the kernel stack. Otherwise, assume sp is already valid.
  130. */
  131. {
  132. bnz r0, 0f
  133. move r0, sp
  134. }
  135. .endif
  136. .ifc \c_routine, do_page_fault
  137. /*
  138. * The page_fault handler may be downcalled directly by the
  139. * hypervisor even when Linux is running and has ICS set.
  140. *
  141. * In this case the contents of EX_CONTEXT_K_1 reflect the
  142. * previous fault and can't be relied on to choose whether or
  143. * not to reinitialize the stack pointer. So we add a test
  144. * to see whether SYSTEM_SAVE_K_2 has the high bit set,
  145. * and if so we don't reinitialize sp, since we must be coming
  146. * from Linux. (In fact the precise case is !(val & ~1),
  147. * but any Linux PC has to have the high bit set.)
  148. *
  149. * Note that the hypervisor *always* sets SYSTEM_SAVE_K_2 for
  150. * any path that turns into a downcall to one of our TLB handlers.
  151. */
  152. mfspr r0, SPR_SYSTEM_SAVE_K_2
  153. {
  154. blz r0, 0f /* high bit in S_S_1_2 is for a PC to use */
  155. move r0, sp
  156. }
  157. .endif
  158. 2:
  159. /*
  160. * SYSTEM_SAVE_K_0 holds the cpu number in the low bits, and
  161. * the current stack top in the higher bits. So we recover
  162. * our stack top by just masking off the low bits, then
  163. * point sp at the top aligned address on the actual stack page.
  164. */
  165. mfspr r0, SPR_SYSTEM_SAVE_K_0
  166. mm r0, r0, zero, LOG2_NR_CPU_IDS, 31
  167. 0:
  168. /*
  169. * Align the stack mod 64 so we can properly predict what
  170. * cache lines we need to write-hint to reduce memory fetch
  171. * latency as we enter the kernel. The layout of memory is
  172. * as follows, with cache line 0 at the lowest VA, and cache
  173. * line 4 just below the r0 value this "andi" computes.
  174. * Note that we never write to cache line 4, and we skip
  175. * cache line 1 for syscalls.
  176. *
  177. * cache line 4: ptregs padding (two words)
  178. * cache line 3: r46...lr, pc, ex1, faultnum, orig_r0, flags, pad
  179. * cache line 2: r30...r45
  180. * cache line 1: r14...r29
  181. * cache line 0: 2 x frame, r0..r13
  182. */
  183. #if STACK_TOP_DELTA != 64
  184. #error STACK_TOP_DELTA must be 64 for assumptions here and in task_pt_regs()
  185. #endif
  186. andi r0, r0, -64
  187. /*
  188. * Push the first four registers on the stack, so that we can set
  189. * them to vector-unique values before we jump to the common code.
  190. *
  191. * Registers are pushed on the stack as a struct pt_regs,
  192. * with the sp initially just above the struct, and when we're
  193. * done, sp points to the base of the struct, minus
  194. * C_ABI_SAVE_AREA_SIZE, so we can directly jal to C code.
  195. *
  196. * This routine saves just the first four registers, plus the
  197. * stack context so we can do proper backtracing right away,
  198. * and defers to handle_interrupt to save the rest.
  199. * The backtracer needs pc, ex1, lr, sp, r52, and faultnum.
  200. */
  201. addli r0, r0, PTREGS_OFFSET_LR - (PTREGS_SIZE + KSTK_PTREGS_GAP)
  202. wh64 r0 /* cache line 3 */
  203. {
  204. sw r0, lr
  205. addli r0, r0, PTREGS_OFFSET_SP - PTREGS_OFFSET_LR
  206. }
  207. {
  208. sw r0, sp
  209. addli sp, r0, PTREGS_OFFSET_REG(52) - PTREGS_OFFSET_SP
  210. }
  211. {
  212. sw sp, r52
  213. addli sp, sp, PTREGS_OFFSET_REG(1) - PTREGS_OFFSET_REG(52)
  214. }
  215. wh64 sp /* cache line 0 */
  216. {
  217. sw sp, r1
  218. addli sp, sp, PTREGS_OFFSET_REG(2) - PTREGS_OFFSET_REG(1)
  219. }
  220. {
  221. sw sp, r2
  222. addli sp, sp, PTREGS_OFFSET_REG(3) - PTREGS_OFFSET_REG(2)
  223. }
  224. {
  225. sw sp, r3
  226. addli sp, sp, PTREGS_OFFSET_PC - PTREGS_OFFSET_REG(3)
  227. }
  228. mfspr r0, SPR_EX_CONTEXT_K_0
  229. .ifc \processing,handle_syscall
  230. /*
  231. * Bump the saved PC by one bundle so that when we return, we won't
  232. * execute the same swint instruction again. We need to do this while
  233. * we're in the critical section.
  234. */
  235. addi r0, r0, 8
  236. .endif
  237. {
  238. sw sp, r0
  239. addli sp, sp, PTREGS_OFFSET_EX1 - PTREGS_OFFSET_PC
  240. }
  241. mfspr r0, SPR_EX_CONTEXT_K_1
  242. {
  243. sw sp, r0
  244. addi sp, sp, PTREGS_OFFSET_FAULTNUM - PTREGS_OFFSET_EX1
  245. /*
  246. * Use r0 for syscalls so it's a temporary; use r1 for interrupts
  247. * so that it gets passed through unchanged to the handler routine.
  248. * Note that the .if conditional confusingly spans bundles.
  249. */
  250. .ifc \processing,handle_syscall
  251. movei r0, \vecnum
  252. }
  253. {
  254. sw sp, r0
  255. .else
  256. movei r1, \vecnum
  257. }
  258. {
  259. sw sp, r1
  260. .endif
  261. addli sp, sp, PTREGS_OFFSET_REG(0) - PTREGS_OFFSET_FAULTNUM
  262. }
  263. mfspr r0, SPR_SYSTEM_SAVE_K_1 /* Original r0 */
  264. {
  265. sw sp, r0
  266. addi sp, sp, -PTREGS_OFFSET_REG(0) - 4
  267. }
  268. {
  269. sw sp, zero /* write zero into "Next SP" frame pointer */
  270. addi sp, sp, -4 /* leave SP pointing at bottom of frame */
  271. }
  272. .ifc \processing,handle_syscall
  273. j handle_syscall
  274. .else
  275. /*
  276. * Capture per-interrupt SPR context to registers.
  277. * We overload the meaning of r3 on this path such that if its bit 31
  278. * is set, we have to mask all interrupts including NMIs before
  279. * clearing the interrupt critical section bit.
  280. * See discussion below at "finish_interrupt_save".
  281. */
  282. .ifc \c_routine, do_page_fault
  283. mfspr r2, SPR_SYSTEM_SAVE_K_3 /* address of page fault */
  284. mfspr r3, SPR_SYSTEM_SAVE_K_2 /* info about page fault */
  285. .else
  286. .ifc \vecnum, INT_DOUBLE_FAULT
  287. {
  288. mfspr r2, SPR_SYSTEM_SAVE_K_2 /* double fault info from HV */
  289. movei r3, 0
  290. }
  291. .else
  292. .ifc \c_routine, do_trap
  293. {
  294. mfspr r2, GPV_REASON
  295. movei r3, 0
  296. }
  297. .else
  298. .ifc \c_routine, op_handle_perf_interrupt
  299. {
  300. mfspr r2, PERF_COUNT_STS
  301. movei r3, -1 /* not used, but set for consistency */
  302. }
  303. .else
  304. .ifc \c_routine, op_handle_aux_perf_interrupt
  305. {
  306. mfspr r2, AUX_PERF_COUNT_STS
  307. movei r3, -1 /* not used, but set for consistency */
  308. }
  309. .else
  310. movei r3, 0
  311. .endif
  312. .endif
  313. .endif
  314. .endif
  315. .endif
  316. /* Put function pointer in r0 */
  317. moveli r0, lo16(\c_routine)
  318. {
  319. auli r0, r0, ha16(\c_routine)
  320. j \processing
  321. }
  322. .endif
  323. ENDPROC(intvec_\vecname)
  324. #ifdef __COLLECT_LINKER_FEEDBACK__
  325. .pushsection .text.intvec_feedback,"ax"
  326. .org (\vecnum << 5)
  327. FEEDBACK_ENTER_EXPLICIT(intvec_\vecname, .intrpt, 1 << 8)
  328. jrp lr
  329. .popsection
  330. #endif
  331. .endm
  332. /*
  333. * Save the rest of the registers that we didn't save in the actual
  334. * vector itself. We can't use r0-r10 inclusive here.
  335. */
  336. .macro finish_interrupt_save, function
  337. /* If it's a syscall, save a proper orig_r0, otherwise just zero. */
  338. PTREGS_PTR(r52, PTREGS_OFFSET_ORIG_R0)
  339. {
  340. .ifc \function,handle_syscall
  341. sw r52, r0
  342. .else
  343. sw r52, zero
  344. .endif
  345. PTREGS_PTR(r52, PTREGS_OFFSET_TP)
  346. }
  347. /*
  348. * For ordinary syscalls, we save neither caller- nor callee-
  349. * save registers, since the syscall invoker doesn't expect the
  350. * caller-saves to be saved, and the called kernel functions will
  351. * take care of saving the callee-saves for us.
  352. *
  353. * For interrupts we save just the caller-save registers. Saving
  354. * them is required (since the "caller" can't save them). Again,
  355. * the called kernel functions will restore the callee-save
  356. * registers for us appropriately.
  357. *
  358. * On return, we normally restore nothing special for syscalls,
  359. * and just the caller-save registers for interrupts.
  360. *
  361. * However, there are some important caveats to all this:
  362. *
  363. * - We always save a few callee-save registers to give us
  364. * some scratchpad registers to carry across function calls.
  365. *
  366. * - fork/vfork/etc require us to save all the callee-save
  367. * registers, which we do in PTREGS_SYSCALL_ALL_REGS, below.
  368. *
  369. * - We always save r0..r5 and r10 for syscalls, since we need
  370. * to reload them a bit later for the actual kernel call, and
  371. * since we might need them for -ERESTARTNOINTR, etc.
  372. *
  373. * - Before invoking a signal handler, we save the unsaved
  374. * callee-save registers so they are visible to the
  375. * signal handler or any ptracer.
  376. *
  377. * - If the unsaved callee-save registers are modified, we set
  378. * a bit in pt_regs so we know to reload them from pt_regs
  379. * and not just rely on the kernel function unwinding.
  380. * (Done for ptrace register writes and SA_SIGINFO handler.)
  381. */
  382. {
  383. sw r52, tp
  384. PTREGS_PTR(r52, PTREGS_OFFSET_REG(33))
  385. }
  386. wh64 r52 /* cache line 2 */
  387. push_reg r33, r52
  388. push_reg r32, r52
  389. push_reg r31, r52
  390. .ifc \function,handle_syscall
  391. push_reg r30, r52, PTREGS_OFFSET_SYSCALL - PTREGS_OFFSET_REG(30)
  392. push_reg TREG_SYSCALL_NR_NAME, r52, \
  393. PTREGS_OFFSET_REG(5) - PTREGS_OFFSET_SYSCALL
  394. .else
  395. push_reg r30, r52, PTREGS_OFFSET_REG(29) - PTREGS_OFFSET_REG(30)
  396. wh64 r52 /* cache line 1 */
  397. push_reg r29, r52
  398. push_reg r28, r52
  399. push_reg r27, r52
  400. push_reg r26, r52
  401. push_reg r25, r52
  402. push_reg r24, r52
  403. push_reg r23, r52
  404. push_reg r22, r52
  405. push_reg r21, r52
  406. push_reg r20, r52
  407. push_reg r19, r52
  408. push_reg r18, r52
  409. push_reg r17, r52
  410. push_reg r16, r52
  411. push_reg r15, r52
  412. push_reg r14, r52
  413. push_reg r13, r52
  414. push_reg r12, r52
  415. push_reg r11, r52
  416. push_reg r10, r52
  417. push_reg r9, r52
  418. push_reg r8, r52
  419. push_reg r7, r52
  420. push_reg r6, r52
  421. .endif
  422. push_reg r5, r52
  423. sw r52, r4
  424. /* Load tp with our per-cpu offset. */
  425. #ifdef CONFIG_SMP
  426. {
  427. mfspr r20, SPR_SYSTEM_SAVE_K_0
  428. moveli r21, lo16(__per_cpu_offset)
  429. }
  430. {
  431. auli r21, r21, ha16(__per_cpu_offset)
  432. mm r20, r20, zero, 0, LOG2_NR_CPU_IDS-1
  433. }
  434. s2a r20, r20, r21
  435. lw tp, r20
  436. #else
  437. move tp, zero
  438. #endif
  439. /*
  440. * If we will be returning to the kernel, we will need to
  441. * reset the interrupt masks to the state they had before.
  442. * Set DISABLE_IRQ in flags iff we came from PL1 with irqs disabled.
  443. * We load flags in r32 here so we can jump to .Lrestore_regs
  444. * directly after do_page_fault_ics() if necessary.
  445. */
  446. mfspr r32, SPR_EX_CONTEXT_K_1
  447. {
  448. andi r32, r32, SPR_EX_CONTEXT_1_1__PL_MASK /* mask off ICS */
  449. PTREGS_PTR(r21, PTREGS_OFFSET_FLAGS)
  450. }
  451. bzt r32, 1f /* zero if from user space */
  452. IRQS_DISABLED(r32) /* zero if irqs enabled */
  453. #if PT_FLAGS_DISABLE_IRQ != 1
  454. # error Value of IRQS_DISABLED used to set PT_FLAGS_DISABLE_IRQ; fix
  455. #endif
  456. 1:
  457. .ifnc \function,handle_syscall
  458. /* Record the fact that we saved the caller-save registers above. */
  459. ori r32, r32, PT_FLAGS_CALLER_SAVES
  460. .endif
  461. sw r21, r32
  462. #ifdef __COLLECT_LINKER_FEEDBACK__
  463. /*
  464. * Notify the feedback routines that we were in the
  465. * appropriate fixed interrupt vector area. Note that we
  466. * still have ICS set at this point, so we can't invoke any
  467. * atomic operations or we will panic. The feedback
  468. * routines internally preserve r0..r10 and r30 up.
  469. */
  470. .ifnc \function,handle_syscall
  471. shli r20, r1, 5
  472. .else
  473. moveli r20, INT_SWINT_1 << 5
  474. .endif
  475. addli r20, r20, lo16(intvec_feedback)
  476. auli r20, r20, ha16(intvec_feedback)
  477. jalr r20
  478. /* And now notify the feedback routines that we are here. */
  479. FEEDBACK_ENTER(\function)
  480. #endif
  481. /*
  482. * we've captured enough state to the stack (including in
  483. * particular our EX_CONTEXT state) that we can now release
  484. * the interrupt critical section and replace it with our
  485. * standard "interrupts disabled" mask value. This allows
  486. * synchronous interrupts (and profile interrupts) to punch
  487. * through from this point onwards.
  488. *
  489. * If bit 31 of r3 is set during a non-NMI interrupt, we know we
  490. * are on the path where the hypervisor has punched through our
  491. * ICS with a page fault, so we call out to do_page_fault_ics()
  492. * to figure out what to do with it. If the fault was in
  493. * an atomic op, we unlock the atomic lock, adjust the
  494. * saved register state a little, and return "zero" in r4,
  495. * falling through into the normal page-fault interrupt code.
  496. * If the fault was in a kernel-space atomic operation, then
  497. * do_page_fault_ics() resolves it itself, returns "one" in r4,
  498. * and as a result goes directly to restoring registers and iret,
  499. * without trying to adjust the interrupt masks at all.
  500. * The do_page_fault_ics() API involves passing and returning
  501. * a five-word struct (in registers) to avoid writing the
  502. * save and restore code here.
  503. */
  504. .ifc \function,handle_nmi
  505. IRQ_DISABLE_ALL(r20)
  506. .else
  507. .ifnc \function,handle_syscall
  508. bgezt r3, 1f
  509. {
  510. PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
  511. jal do_page_fault_ics
  512. }
  513. FEEDBACK_REENTER(\function)
  514. bzt r4, 1f
  515. j .Lrestore_regs
  516. 1:
  517. .endif
  518. IRQ_DISABLE(r20, r21)
  519. .endif
  520. mtspr INTERRUPT_CRITICAL_SECTION, zero
  521. /*
  522. * Prepare the first 256 stack bytes to be rapidly accessible
  523. * without having to fetch the background data. We don't really
  524. * know how far to write-hint, but kernel stacks generally
  525. * aren't that big, and write-hinting here does take some time.
  526. */
  527. addi r52, sp, -64
  528. {
  529. wh64 r52
  530. addi r52, r52, -64
  531. }
  532. {
  533. wh64 r52
  534. addi r52, r52, -64
  535. }
  536. {
  537. wh64 r52
  538. addi r52, r52, -64
  539. }
  540. wh64 r52
  541. #ifdef CONFIG_TRACE_IRQFLAGS
  542. .ifnc \function,handle_nmi
  543. /*
  544. * We finally have enough state set up to notify the irq
  545. * tracing code that irqs were disabled on entry to the handler.
  546. * The TRACE_IRQS_OFF call clobbers registers r0-r29.
  547. * For syscalls, we already have the register state saved away
  548. * on the stack, so we don't bother to do any register saves here,
  549. * and later we pop the registers back off the kernel stack.
  550. * For interrupt handlers, save r0-r3 in callee-saved registers.
  551. */
  552. .ifnc \function,handle_syscall
  553. { move r30, r0; move r31, r1 }
  554. { move r32, r2; move r33, r3 }
  555. .endif
  556. TRACE_IRQS_OFF
  557. .ifnc \function,handle_syscall
  558. { move r0, r30; move r1, r31 }
  559. { move r2, r32; move r3, r33 }
  560. .endif
  561. .endif
  562. #endif
  563. .endm
  564. .macro check_single_stepping, kind, not_single_stepping
  565. /*
  566. * Check for single stepping in user-level priv
  567. * kind can be "normal", "ill", or "syscall"
  568. * At end, if fall-thru
  569. * r29: thread_info->step_state
  570. * r28: &pt_regs->pc
  571. * r27: pt_regs->pc
  572. * r26: thread_info->step_state->buffer
  573. */
  574. /* Check for single stepping */
  575. GET_THREAD_INFO(r29)
  576. {
  577. /* Get pointer to field holding step state */
  578. addi r29, r29, THREAD_INFO_STEP_STATE_OFFSET
  579. /* Get pointer to EX1 in register state */
  580. PTREGS_PTR(r27, PTREGS_OFFSET_EX1)
  581. }
  582. {
  583. /* Get pointer to field holding PC */
  584. PTREGS_PTR(r28, PTREGS_OFFSET_PC)
  585. /* Load the pointer to the step state */
  586. lw r29, r29
  587. }
  588. /* Load EX1 */
  589. lw r27, r27
  590. {
  591. /* Points to flags */
  592. addi r23, r29, SINGLESTEP_STATE_FLAGS_OFFSET
  593. /* No single stepping if there is no step state structure */
  594. bzt r29, \not_single_stepping
  595. }
  596. {
  597. /* mask off ICS and any other high bits */
  598. andi r27, r27, SPR_EX_CONTEXT_1_1__PL_MASK
  599. /* Load pointer to single step instruction buffer */
  600. lw r26, r29
  601. }
  602. /* Check priv state */
  603. bnz r27, \not_single_stepping
  604. /* Get flags */
  605. lw r22, r23
  606. {
  607. /* Branch if single-step mode not enabled */
  608. bbnst r22, \not_single_stepping
  609. /* Clear enabled flag */
  610. andi r22, r22, ~SINGLESTEP_STATE_MASK_IS_ENABLED
  611. }
  612. .ifc \kind,normal
  613. {
  614. /* Load PC */
  615. lw r27, r28
  616. /* Point to the entry containing the original PC */
  617. addi r24, r29, SINGLESTEP_STATE_ORIG_PC_OFFSET
  618. }
  619. {
  620. /* Disable single stepping flag */
  621. sw r23, r22
  622. }
  623. {
  624. /* Get the original pc */
  625. lw r24, r24
  626. /* See if the PC is at the start of the single step buffer */
  627. seq r25, r26, r27
  628. }
  629. /*
  630. * NOTE: it is really expected that the PC be in the single step buffer
  631. * at this point
  632. */
  633. bzt r25, \not_single_stepping
  634. /* Restore the original PC */
  635. sw r28, r24
  636. .else
  637. .ifc \kind,syscall
  638. {
  639. /* Load PC */
  640. lw r27, r28
  641. /* Point to the entry containing the next PC */
  642. addi r24, r29, SINGLESTEP_STATE_NEXT_PC_OFFSET
  643. }
  644. {
  645. /* Increment the stopped PC by the bundle size */
  646. addi r26, r26, 8
  647. /* Disable single stepping flag */
  648. sw r23, r22
  649. }
  650. {
  651. /* Get the next pc */
  652. lw r24, r24
  653. /*
  654. * See if the PC is one bundle past the start of the
  655. * single step buffer
  656. */
  657. seq r25, r26, r27
  658. }
  659. {
  660. /*
  661. * NOTE: it is really expected that the PC be in the
  662. * single step buffer at this point
  663. */
  664. bzt r25, \not_single_stepping
  665. }
  666. /* Set to the next PC */
  667. sw r28, r24
  668. .else
  669. {
  670. /* Point to 3rd bundle in buffer */
  671. addi r25, r26, 16
  672. /* Load PC */
  673. lw r27, r28
  674. }
  675. {
  676. /* Disable single stepping flag */
  677. sw r23, r22
  678. /* See if the PC is in the single step buffer */
  679. slte_u r24, r26, r27
  680. }
  681. {
  682. slte_u r25, r27, r25
  683. /*
  684. * NOTE: it is really expected that the PC be in the
  685. * single step buffer at this point
  686. */
  687. bzt r24, \not_single_stepping
  688. }
  689. bzt r25, \not_single_stepping
  690. .endif
  691. .endif
  692. .endm
  693. /*
  694. * Redispatch a downcall.
  695. */
  696. .macro dc_dispatch vecnum, vecname
  697. .org (\vecnum << 8)
  698. intvec_\vecname:
  699. j _hv_downcall_dispatch
  700. ENDPROC(intvec_\vecname)
  701. .endm
  702. /*
  703. * Common code for most interrupts. The C function we're eventually
  704. * going to is in r0, and the faultnum is in r1; the original
  705. * values for those registers are on the stack.
  706. */
  707. .pushsection .text.handle_interrupt,"ax"
  708. handle_interrupt:
  709. finish_interrupt_save handle_interrupt
  710. /*
  711. * Check for if we are single stepping in user level. If so, then
  712. * we need to restore the PC.
  713. */
  714. check_single_stepping normal, .Ldispatch_interrupt
  715. .Ldispatch_interrupt:
  716. /* Jump to the C routine; it should enable irqs as soon as possible. */
  717. {
  718. jalr r0
  719. PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
  720. }
  721. FEEDBACK_REENTER(handle_interrupt)
  722. {
  723. movei r30, 0 /* not an NMI */
  724. j interrupt_return
  725. }
  726. STD_ENDPROC(handle_interrupt)
  727. /*
  728. * This routine takes a boolean in r30 indicating if this is an NMI.
  729. * If so, we also expect a boolean in r31 indicating whether to
  730. * re-enable the oprofile interrupts.
  731. *
  732. * Note that .Lresume_userspace is jumped to directly in several
  733. * places, and we need to make sure r30 is set correctly in those
  734. * callers as well.
  735. */
  736. STD_ENTRY(interrupt_return)
  737. /* If we're resuming to kernel space, don't check thread flags. */
  738. {
  739. bnz r30, .Lrestore_all /* NMIs don't special-case user-space */
  740. PTREGS_PTR(r29, PTREGS_OFFSET_EX1)
  741. }
  742. lw r29, r29
  743. andi r29, r29, SPR_EX_CONTEXT_1_1__PL_MASK /* mask off ICS */
  744. bzt r29, .Lresume_userspace
  745. #ifdef CONFIG_PREEMPT
  746. /* Returning to kernel space. Check if we need preemption. */
  747. GET_THREAD_INFO(r29)
  748. addli r28, r29, THREAD_INFO_FLAGS_OFFSET
  749. {
  750. lw r28, r28
  751. addli r29, r29, THREAD_INFO_PREEMPT_COUNT_OFFSET
  752. }
  753. {
  754. andi r28, r28, _TIF_NEED_RESCHED
  755. lw r29, r29
  756. }
  757. bzt r28, 1f
  758. bnz r29, 1f
  759. /* Disable interrupts explicitly for preemption. */
  760. IRQ_DISABLE(r20,r21)
  761. TRACE_IRQS_OFF
  762. jal preempt_schedule_irq
  763. FEEDBACK_REENTER(interrupt_return)
  764. 1:
  765. #endif
  766. /* If we're resuming to _cpu_idle_nap, bump PC forward by 8. */
  767. {
  768. PTREGS_PTR(r29, PTREGS_OFFSET_PC)
  769. moveli r27, lo16(_cpu_idle_nap)
  770. }
  771. {
  772. lw r28, r29
  773. auli r27, r27, ha16(_cpu_idle_nap)
  774. }
  775. {
  776. seq r27, r27, r28
  777. }
  778. {
  779. bbns r27, .Lrestore_all
  780. addi r28, r28, 8
  781. }
  782. sw r29, r28
  783. j .Lrestore_all
  784. .Lresume_userspace:
  785. FEEDBACK_REENTER(interrupt_return)
  786. /*
  787. * Use r33 to hold whether we have already loaded the callee-saves
  788. * into ptregs. We don't want to do it twice in this loop, since
  789. * then we'd clobber whatever changes are made by ptrace, etc.
  790. * Get base of stack in r32.
  791. */
  792. {
  793. GET_THREAD_INFO(r32)
  794. movei r33, 0
  795. }
  796. .Lretry_work_pending:
  797. /*
  798. * Disable interrupts so as to make sure we don't
  799. * miss an interrupt that sets any of the thread flags (like
  800. * need_resched or sigpending) between sampling and the iret.
  801. * Routines like schedule() or do_signal() may re-enable
  802. * interrupts before returning.
  803. */
  804. IRQ_DISABLE(r20, r21)
  805. TRACE_IRQS_OFF /* Note: clobbers registers r0-r29 */
  806. /* Check to see if there is any work to do before returning to user. */
  807. {
  808. addi r29, r32, THREAD_INFO_FLAGS_OFFSET
  809. moveli r1, lo16(_TIF_ALLWORK_MASK)
  810. }
  811. {
  812. lw r29, r29
  813. auli r1, r1, ha16(_TIF_ALLWORK_MASK)
  814. }
  815. and r1, r29, r1
  816. bzt r1, .Lrestore_all
  817. /*
  818. * Make sure we have all the registers saved for signal
  819. * handling, notify-resume, or single-step. Call out to C
  820. * code to figure out exactly what we need to do for each flag bit,
  821. * then if necessary, reload the flags and recheck.
  822. */
  823. {
  824. PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
  825. bnz r33, 1f
  826. }
  827. push_extra_callee_saves r0
  828. movei r33, 1
  829. 1: jal do_work_pending
  830. bnz r0, .Lretry_work_pending
  831. /*
  832. * In the NMI case we
  833. * omit the call to single_process_check_nohz, which normally checks
  834. * to see if we should start or stop the scheduler tick, because
  835. * we can't call arbitrary Linux code from an NMI context.
  836. * We always call the homecache TLB deferral code to re-trigger
  837. * the deferral mechanism.
  838. *
  839. * The other chunk of responsibility this code has is to reset the
  840. * interrupt masks appropriately to reset irqs and NMIs. We have
  841. * to call TRACE_IRQS_OFF and TRACE_IRQS_ON to support all the
  842. * lockdep-type stuff, but we can't set ICS until afterwards, since
  843. * ICS can only be used in very tight chunks of code to avoid
  844. * tripping over various assertions that it is off.
  845. *
  846. * (There is what looks like a window of vulnerability here since
  847. * we might take a profile interrupt between the two SPR writes
  848. * that set the mask, but since we write the low SPR word first,
  849. * and our interrupt entry code checks the low SPR word, any
  850. * profile interrupt will actually disable interrupts in both SPRs
  851. * before returning, which is OK.)
  852. */
  853. .Lrestore_all:
  854. PTREGS_PTR(r0, PTREGS_OFFSET_EX1)
  855. {
  856. lw r0, r0
  857. PTREGS_PTR(r32, PTREGS_OFFSET_FLAGS)
  858. }
  859. {
  860. andi r0, r0, SPR_EX_CONTEXT_1_1__PL_MASK
  861. lw r32, r32
  862. }
  863. bnz r0, 1f
  864. j 2f
  865. #if PT_FLAGS_DISABLE_IRQ != 1
  866. # error Assuming PT_FLAGS_DISABLE_IRQ == 1 so we can use bbnst below
  867. #endif
  868. 1: bbnst r32, 2f
  869. IRQ_DISABLE(r20,r21)
  870. TRACE_IRQS_OFF
  871. movei r0, 1
  872. mtspr INTERRUPT_CRITICAL_SECTION, r0
  873. bzt r30, .Lrestore_regs
  874. j 3f
  875. 2: TRACE_IRQS_ON
  876. movei r0, 1
  877. mtspr INTERRUPT_CRITICAL_SECTION, r0
  878. IRQ_ENABLE(r20, r21)
  879. bzt r30, .Lrestore_regs
  880. 3:
  881. /*
  882. * We now commit to returning from this interrupt, since we will be
  883. * doing things like setting EX_CONTEXT SPRs and unwinding the stack
  884. * frame. No calls should be made to any other code after this point.
  885. * This code should only be entered with ICS set.
  886. * r32 must still be set to ptregs.flags.
  887. * We launch loads to each cache line separately first, so we can
  888. * get some parallelism out of the memory subsystem.
  889. * We start zeroing caller-saved registers throughout, since
  890. * that will save some cycles if this turns out to be a syscall.
  891. */
  892. .Lrestore_regs:
  893. FEEDBACK_REENTER(interrupt_return) /* called from elsewhere */
  894. /*
  895. * Rotate so we have one high bit and one low bit to test.
  896. * - low bit says whether to restore all the callee-saved registers,
  897. * or just r30-r33, and r52 up.
  898. * - high bit (i.e. sign bit) says whether to restore all the
  899. * caller-saved registers, or just r0.
  900. */
  901. #if PT_FLAGS_CALLER_SAVES != 2 || PT_FLAGS_RESTORE_REGS != 4
  902. # error Rotate trick does not work :-)
  903. #endif
  904. {
  905. rli r20, r32, 30
  906. PTREGS_PTR(sp, PTREGS_OFFSET_REG(0))
  907. }
  908. /*
  909. * Load cache lines 0, 2, and 3 in that order, then use
  910. * the last loaded value, which makes it likely that the other
  911. * cache lines have also loaded, at which point we should be
  912. * able to safely read all the remaining words on those cache
  913. * lines without waiting for the memory subsystem.
  914. */
  915. pop_reg_zero r0, r28, sp, PTREGS_OFFSET_REG(30) - PTREGS_OFFSET_REG(0)
  916. pop_reg_zero r30, r2, sp, PTREGS_OFFSET_PC - PTREGS_OFFSET_REG(30)
  917. pop_reg_zero r21, r3, sp, PTREGS_OFFSET_EX1 - PTREGS_OFFSET_PC
  918. pop_reg_zero lr, r4, sp, PTREGS_OFFSET_REG(52) - PTREGS_OFFSET_EX1
  919. {
  920. mtspr SPR_EX_CONTEXT_K_0, r21
  921. move r5, zero
  922. }
  923. {
  924. mtspr SPR_EX_CONTEXT_K_1, lr
  925. andi lr, lr, SPR_EX_CONTEXT_1_1__PL_MASK /* mask off ICS */
  926. }
  927. /* Restore callee-saveds that we actually use. */
  928. pop_reg_zero r52, r6, sp, PTREGS_OFFSET_REG(31) - PTREGS_OFFSET_REG(52)
  929. pop_reg_zero r31, r7
  930. pop_reg_zero r32, r8
  931. pop_reg_zero r33, r9, sp, PTREGS_OFFSET_REG(29) - PTREGS_OFFSET_REG(33)
  932. /*
  933. * If we modified other callee-saveds, restore them now.
  934. * This is rare, but could be via ptrace or signal handler.
  935. */
  936. {
  937. move r10, zero
  938. bbs r20, .Lrestore_callees
  939. }
  940. .Lcontinue_restore_regs:
  941. /* Check if we're returning from a syscall. */
  942. {
  943. move r11, zero
  944. blzt r20, 1f /* no, so go restore callee-save registers */
  945. }
  946. /*
  947. * Check if we're returning to userspace.
  948. * Note that if we're not, we don't worry about zeroing everything.
  949. */
  950. {
  951. addli sp, sp, PTREGS_OFFSET_LR - PTREGS_OFFSET_REG(29)
  952. bnz lr, .Lkernel_return
  953. }
  954. /*
  955. * On return from syscall, we've restored r0 from pt_regs, but we
  956. * clear the remainder of the caller-saved registers. We could
  957. * restore the syscall arguments, but there's not much point,
  958. * and it ensures user programs aren't trying to use the
  959. * caller-saves if we clear them, as well as avoiding leaking
  960. * kernel pointers into userspace.
  961. */
  962. pop_reg_zero lr, r12, sp, PTREGS_OFFSET_TP - PTREGS_OFFSET_LR
  963. pop_reg_zero tp, r13, sp, PTREGS_OFFSET_SP - PTREGS_OFFSET_TP
  964. {
  965. lw sp, sp
  966. move r14, zero
  967. move r15, zero
  968. }
  969. { move r16, zero; move r17, zero }
  970. { move r18, zero; move r19, zero }
  971. { move r20, zero; move r21, zero }
  972. { move r22, zero; move r23, zero }
  973. { move r24, zero; move r25, zero }
  974. { move r26, zero; move r27, zero }
  975. /* Set r1 to errno if we are returning an error, otherwise zero. */
  976. {
  977. moveli r29, 4096
  978. sub r1, zero, r0
  979. }
  980. slt_u r29, r1, r29
  981. {
  982. mnz r1, r29, r1
  983. move r29, zero
  984. }
  985. iret
  986. /*
  987. * Not a syscall, so restore caller-saved registers.
  988. * First kick off a load for cache line 1, which we're touching
  989. * for the first time here.
  990. */
  991. .align 64
  992. 1: pop_reg r29, sp, PTREGS_OFFSET_REG(1) - PTREGS_OFFSET_REG(29)
  993. pop_reg r1
  994. pop_reg r2
  995. pop_reg r3
  996. pop_reg r4
  997. pop_reg r5
  998. pop_reg r6
  999. pop_reg r7
  1000. pop_reg r8
  1001. pop_reg r9
  1002. pop_reg r10
  1003. pop_reg r11
  1004. pop_reg r12
  1005. pop_reg r13
  1006. pop_reg r14
  1007. pop_reg r15
  1008. pop_reg r16
  1009. pop_reg r17
  1010. pop_reg r18
  1011. pop_reg r19
  1012. pop_reg r20
  1013. pop_reg r21
  1014. pop_reg r22
  1015. pop_reg r23
  1016. pop_reg r24
  1017. pop_reg r25
  1018. pop_reg r26
  1019. pop_reg r27
  1020. pop_reg r28, sp, PTREGS_OFFSET_LR - PTREGS_OFFSET_REG(28)
  1021. /* r29 already restored above */
  1022. bnz lr, .Lkernel_return
  1023. pop_reg lr, sp, PTREGS_OFFSET_TP - PTREGS_OFFSET_LR
  1024. pop_reg tp, sp, PTREGS_OFFSET_SP - PTREGS_OFFSET_TP
  1025. lw sp, sp
  1026. iret
  1027. /*
  1028. * We can't restore tp when in kernel mode, since a thread might
  1029. * have migrated from another cpu and brought a stale tp value.
  1030. */
  1031. .Lkernel_return:
  1032. pop_reg lr, sp, PTREGS_OFFSET_SP - PTREGS_OFFSET_LR
  1033. lw sp, sp
  1034. iret
  1035. /* Restore callee-saved registers from r34 to r51. */
  1036. .Lrestore_callees:
  1037. addli sp, sp, PTREGS_OFFSET_REG(34) - PTREGS_OFFSET_REG(29)
  1038. pop_reg r34
  1039. pop_reg r35
  1040. pop_reg r36
  1041. pop_reg r37
  1042. pop_reg r38
  1043. pop_reg r39
  1044. pop_reg r40
  1045. pop_reg r41
  1046. pop_reg r42
  1047. pop_reg r43
  1048. pop_reg r44
  1049. pop_reg r45
  1050. pop_reg r46
  1051. pop_reg r47
  1052. pop_reg r48
  1053. pop_reg r49
  1054. pop_reg r50
  1055. pop_reg r51, sp, PTREGS_OFFSET_REG(29) - PTREGS_OFFSET_REG(51)
  1056. j .Lcontinue_restore_regs
  1057. STD_ENDPROC(interrupt_return)
  1058. /*
  1059. * Some interrupts don't check for single stepping
  1060. */
  1061. .pushsection .text.handle_interrupt_no_single_step,"ax"
  1062. handle_interrupt_no_single_step:
  1063. finish_interrupt_save handle_interrupt_no_single_step
  1064. {
  1065. jalr r0
  1066. PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
  1067. }
  1068. FEEDBACK_REENTER(handle_interrupt_no_single_step)
  1069. {
  1070. movei r30, 0 /* not an NMI */
  1071. j interrupt_return
  1072. }
  1073. STD_ENDPROC(handle_interrupt_no_single_step)
  1074. /*
  1075. * "NMI" interrupts mask ALL interrupts before calling the
  1076. * handler, and don't check thread flags, etc., on the way
  1077. * back out. In general, the only things we do here for NMIs
  1078. * are the register save/restore, fixing the PC if we were
  1079. * doing single step, and the dataplane kernel-TLB management.
  1080. * We don't (for example) deal with start/stop of the sched tick.
  1081. */
  1082. .pushsection .text.handle_nmi,"ax"
  1083. handle_nmi:
  1084. finish_interrupt_save handle_nmi
  1085. check_single_stepping normal, .Ldispatch_nmi
  1086. .Ldispatch_nmi:
  1087. {
  1088. jalr r0
  1089. PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
  1090. }
  1091. FEEDBACK_REENTER(handle_nmi)
  1092. j interrupt_return
  1093. STD_ENDPROC(handle_nmi)
  1094. /*
  1095. * Parallel code for syscalls to handle_interrupt.
  1096. */
  1097. .pushsection .text.handle_syscall,"ax"
  1098. handle_syscall:
  1099. finish_interrupt_save handle_syscall
  1100. /*
  1101. * Check for if we are single stepping in user level. If so, then
  1102. * we need to restore the PC.
  1103. */
  1104. check_single_stepping syscall, .Ldispatch_syscall
  1105. .Ldispatch_syscall:
  1106. /* Enable irqs. */
  1107. TRACE_IRQS_ON
  1108. IRQ_ENABLE(r20, r21)
  1109. /* Bump the counter for syscalls made on this tile. */
  1110. moveli r20, lo16(irq_stat + IRQ_CPUSTAT_SYSCALL_COUNT_OFFSET)
  1111. auli r20, r20, ha16(irq_stat + IRQ_CPUSTAT_SYSCALL_COUNT_OFFSET)
  1112. add r20, r20, tp
  1113. lw r21, r20
  1114. addi r21, r21, 1
  1115. {
  1116. sw r20, r21
  1117. GET_THREAD_INFO(r31)
  1118. }
  1119. /* Trace syscalls, if requested. */
  1120. addi r31, r31, THREAD_INFO_FLAGS_OFFSET
  1121. lw r30, r31
  1122. andi r30, r30, _TIF_SYSCALL_TRACE
  1123. bzt r30, .Lrestore_syscall_regs
  1124. {
  1125. PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
  1126. jal do_syscall_trace_enter
  1127. }
  1128. FEEDBACK_REENTER(handle_syscall)
  1129. /*
  1130. * We always reload our registers from the stack at this
  1131. * point. They might be valid, if we didn't build with
  1132. * TRACE_IRQFLAGS, and this isn't a dataplane tile, and we're not
  1133. * doing syscall tracing, but there are enough cases now that it
  1134. * seems simplest just to do the reload unconditionally.
  1135. */
  1136. .Lrestore_syscall_regs:
  1137. PTREGS_PTR(r11, PTREGS_OFFSET_REG(0))
  1138. pop_reg r0, r11
  1139. pop_reg r1, r11
  1140. pop_reg r2, r11
  1141. pop_reg r3, r11
  1142. pop_reg r4, r11
  1143. pop_reg r5, r11, PTREGS_OFFSET_SYSCALL - PTREGS_OFFSET_REG(5)
  1144. pop_reg TREG_SYSCALL_NR_NAME, r11
  1145. /* Ensure that the syscall number is within the legal range. */
  1146. moveli r21, __NR_syscalls
  1147. {
  1148. slt_u r21, TREG_SYSCALL_NR_NAME, r21
  1149. moveli r20, lo16(sys_call_table)
  1150. }
  1151. {
  1152. bbns r21, .Linvalid_syscall
  1153. auli r20, r20, ha16(sys_call_table)
  1154. }
  1155. s2a r20, TREG_SYSCALL_NR_NAME, r20
  1156. lw r20, r20
  1157. /* Jump to syscall handler. */
  1158. jalr r20
  1159. .Lhandle_syscall_link: /* value of "lr" after "jalr r20" above */
  1160. /*
  1161. * Write our r0 onto the stack so it gets restored instead
  1162. * of whatever the user had there before.
  1163. */
  1164. PTREGS_PTR(r29, PTREGS_OFFSET_REG(0))
  1165. sw r29, r0
  1166. .Lsyscall_sigreturn_skip:
  1167. FEEDBACK_REENTER(handle_syscall)
  1168. /* Do syscall trace again, if requested. */
  1169. lw r30, r31
  1170. andi r30, r30, _TIF_SYSCALL_TRACE
  1171. bzt r30, 1f
  1172. {
  1173. PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
  1174. jal do_syscall_trace_exit
  1175. }
  1176. FEEDBACK_REENTER(handle_syscall)
  1177. 1: {
  1178. movei r30, 0 /* not an NMI */
  1179. j .Lresume_userspace /* jump into middle of interrupt_return */
  1180. }
  1181. .Linvalid_syscall:
  1182. /* Report an invalid syscall back to the user program */
  1183. {
  1184. PTREGS_PTR(r29, PTREGS_OFFSET_REG(0))
  1185. movei r28, -ENOSYS
  1186. }
  1187. sw r29, r28
  1188. {
  1189. movei r30, 0 /* not an NMI */
  1190. j .Lresume_userspace /* jump into middle of interrupt_return */
  1191. }
  1192. STD_ENDPROC(handle_syscall)
  1193. /* Return the address for oprofile to suppress in backtraces. */
  1194. STD_ENTRY_SECTION(handle_syscall_link_address, .text.handle_syscall)
  1195. lnk r0
  1196. {
  1197. addli r0, r0, .Lhandle_syscall_link - .
  1198. jrp lr
  1199. }
  1200. STD_ENDPROC(handle_syscall_link_address)
  1201. STD_ENTRY(ret_from_fork)
  1202. jal sim_notify_fork
  1203. jal schedule_tail
  1204. FEEDBACK_REENTER(ret_from_fork)
  1205. {
  1206. movei r30, 0 /* not an NMI */
  1207. j .Lresume_userspace /* jump into middle of interrupt_return */
  1208. }
  1209. STD_ENDPROC(ret_from_fork)
  1210. STD_ENTRY(ret_from_kernel_thread)
  1211. jal sim_notify_fork
  1212. jal schedule_tail
  1213. FEEDBACK_REENTER(ret_from_fork)
  1214. {
  1215. move r0, r31
  1216. jalr r30
  1217. }
  1218. FEEDBACK_REENTER(ret_from_kernel_thread)
  1219. {
  1220. movei r30, 0 /* not an NMI */
  1221. j .Lresume_userspace /* jump into middle of interrupt_return */
  1222. }
  1223. STD_ENDPROC(ret_from_kernel_thread)
  1224. /*
  1225. * Code for ill interrupt.
  1226. */
  1227. .pushsection .text.handle_ill,"ax"
  1228. handle_ill:
  1229. finish_interrupt_save handle_ill
  1230. /*
  1231. * Check for if we are single stepping in user level. If so, then
  1232. * we need to restore the PC.
  1233. */
  1234. check_single_stepping ill, .Ldispatch_normal_ill
  1235. {
  1236. /* See if the PC is the 1st bundle in the buffer */
  1237. seq r25, r27, r26
  1238. /* Point to the 2nd bundle in the buffer */
  1239. addi r26, r26, 8
  1240. }
  1241. {
  1242. /* Point to the original pc */
  1243. addi r24, r29, SINGLESTEP_STATE_ORIG_PC_OFFSET
  1244. /* Branch if the PC is the 1st bundle in the buffer */
  1245. bnz r25, 3f
  1246. }
  1247. {
  1248. /* See if the PC is the 2nd bundle of the buffer */
  1249. seq r25, r27, r26
  1250. /* Set PC to next instruction */
  1251. addi r24, r29, SINGLESTEP_STATE_NEXT_PC_OFFSET
  1252. }
  1253. {
  1254. /* Point to flags */
  1255. addi r25, r29, SINGLESTEP_STATE_FLAGS_OFFSET
  1256. /* Branch if PC is in the second bundle */
  1257. bz r25, 2f
  1258. }
  1259. /* Load flags */
  1260. lw r25, r25
  1261. {
  1262. /*
  1263. * Get the offset for the register to restore
  1264. * Note: the lower bound is 2, so we have implicit scaling by 4.
  1265. * No multiplication of the register number by the size of a register
  1266. * is needed.
  1267. */
  1268. mm r27, r25, zero, SINGLESTEP_STATE_TARGET_LB, \
  1269. SINGLESTEP_STATE_TARGET_UB
  1270. /* Mask Rewrite_LR */
  1271. andi r25, r25, SINGLESTEP_STATE_MASK_UPDATE
  1272. }
  1273. {
  1274. addi r29, r29, SINGLESTEP_STATE_UPDATE_VALUE_OFFSET
  1275. /* Don't rewrite temp register */
  1276. bz r25, 3f
  1277. }
  1278. {
  1279. /* Get the temp value */
  1280. lw r29, r29
  1281. /* Point to where the register is stored */
  1282. add r27, r27, sp
  1283. }
  1284. /* Add in the C ABI save area size to the register offset */
  1285. addi r27, r27, C_ABI_SAVE_AREA_SIZE
  1286. /* Restore the user's register with the temp value */
  1287. sw r27, r29
  1288. j 3f
  1289. 2:
  1290. /* Must be in the third bundle */
  1291. addi r24, r29, SINGLESTEP_STATE_BRANCH_NEXT_PC_OFFSET
  1292. 3:
  1293. /* set PC and continue */
  1294. lw r26, r24
  1295. {
  1296. sw r28, r26
  1297. GET_THREAD_INFO(r0)
  1298. }
  1299. /*
  1300. * Clear TIF_SINGLESTEP to prevent recursion if we execute an ill.
  1301. * The normal non-arch flow redundantly clears TIF_SINGLESTEP, but we
  1302. * need to clear it here and can't really impose on all other arches.
  1303. * So what's another write between friends?
  1304. */
  1305. addi r1, r0, THREAD_INFO_FLAGS_OFFSET
  1306. {
  1307. lw r2, r1
  1308. addi r0, r0, THREAD_INFO_TASK_OFFSET /* currently a no-op */
  1309. }
  1310. andi r2, r2, ~_TIF_SINGLESTEP
  1311. sw r1, r2
  1312. /* Issue a sigtrap */
  1313. {
  1314. lw r0, r0 /* indirect thru thread_info to get task_info*/
  1315. addi r1, sp, C_ABI_SAVE_AREA_SIZE /* put ptregs pointer into r1 */
  1316. }
  1317. jal send_sigtrap /* issue a SIGTRAP */
  1318. FEEDBACK_REENTER(handle_ill)
  1319. {
  1320. movei r30, 0 /* not an NMI */
  1321. j .Lresume_userspace /* jump into middle of interrupt_return */
  1322. }
  1323. .Ldispatch_normal_ill:
  1324. {
  1325. jalr r0
  1326. PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
  1327. }
  1328. FEEDBACK_REENTER(handle_ill)
  1329. {
  1330. movei r30, 0 /* not an NMI */
  1331. j interrupt_return
  1332. }
  1333. STD_ENDPROC(handle_ill)
  1334. /* Various stub interrupt handlers and syscall handlers */
  1335. STD_ENTRY_LOCAL(_kernel_double_fault)
  1336. mfspr r1, SPR_EX_CONTEXT_K_0
  1337. move r2, lr
  1338. move r3, sp
  1339. move r4, r52
  1340. addi sp, sp, -C_ABI_SAVE_AREA_SIZE
  1341. j kernel_double_fault
  1342. STD_ENDPROC(_kernel_double_fault)
  1343. STD_ENTRY_LOCAL(bad_intr)
  1344. mfspr r2, SPR_EX_CONTEXT_K_0
  1345. panic "Unhandled interrupt %#x: PC %#lx"
  1346. STD_ENDPROC(bad_intr)
  1347. /*
  1348. * Special-case sigreturn to not write r0 to the stack on return.
  1349. * This is technically more efficient, but it also avoids difficulties
  1350. * in the 64-bit OS when handling 32-bit compat code, since we must not
  1351. * sign-extend r0 for the sigreturn return-value case.
  1352. */
  1353. #define PTREGS_SYSCALL_SIGRETURN(x, reg) \
  1354. STD_ENTRY(_##x); \
  1355. addli lr, lr, .Lsyscall_sigreturn_skip - .Lhandle_syscall_link; \
  1356. { \
  1357. PTREGS_PTR(reg, PTREGS_OFFSET_BASE); \
  1358. j x \
  1359. }; \
  1360. STD_ENDPROC(_##x)
  1361. PTREGS_SYSCALL_SIGRETURN(sys_rt_sigreturn, r0)
  1362. /* Save additional callee-saves to pt_regs and jump to standard function. */
  1363. STD_ENTRY(_sys_clone)
  1364. push_extra_callee_saves r4
  1365. j sys_clone
  1366. STD_ENDPROC(_sys_clone)
  1367. /*
  1368. * This entrypoint is taken for the cmpxchg and atomic_update fast
  1369. * swints. We may wish to generalize it to other fast swints at some
  1370. * point, but for now there are just two very similar ones, which
  1371. * makes it faster.
  1372. *
  1373. * The fast swint code is designed to have a small footprint. It does
  1374. * not save or restore any GPRs, counting on the caller-save registers
  1375. * to be available to it on entry. It does not modify any callee-save
  1376. * registers (including "lr"). It does not check what PL it is being
  1377. * called at, so you'd better not call it other than at PL0.
  1378. * The <atomic.h> wrapper assumes it only clobbers r20-r29, so if
  1379. * it ever is necessary to use more registers, be aware.
  1380. *
  1381. * It does not use the stack, but since it might be re-interrupted by
  1382. * a page fault which would assume the stack was valid, it does
  1383. * save/restore the stack pointer and zero it out to make sure it gets reset.
  1384. * Since we always keep interrupts disabled, the hypervisor won't
  1385. * clobber our EX_CONTEXT_K_x registers, so we don't save/restore them
  1386. * (other than to advance the PC on return).
  1387. *
  1388. * We have to manually validate the user vs kernel address range
  1389. * (since at PL1 we can read/write both), and for performance reasons
  1390. * we don't allow cmpxchg on the fc000000 memory region, since we only
  1391. * validate that the user address is below PAGE_OFFSET.
  1392. *
  1393. * We place it in the __HEAD section to ensure it is relatively
  1394. * near to the intvec_SWINT_1 code (reachable by a conditional branch).
  1395. *
  1396. * Our use of ATOMIC_LOCK_REG here must match do_page_fault_ics().
  1397. *
  1398. * As we do in lib/atomic_asm_32.S, we bypass a store if the value we
  1399. * would store is the same as the value we just loaded.
  1400. */
  1401. __HEAD
  1402. .align 64
  1403. /* Align much later jump on the start of a cache line. */
  1404. nop
  1405. #if PAGE_SIZE >= 0x10000
  1406. nop
  1407. #endif
  1408. ENTRY(sys_cmpxchg)
  1409. /*
  1410. * Save "sp" and set it zero for any possible page fault.
  1411. *
  1412. * HACK: We want to both zero sp and check r0's alignment,
  1413. * so we do both at once. If "sp" becomes nonzero we
  1414. * know r0 is unaligned and branch to the error handler that
  1415. * restores sp, so this is OK.
  1416. *
  1417. * ICS is disabled right now so having a garbage but nonzero
  1418. * sp is OK, since we won't execute any faulting instructions
  1419. * when it is nonzero.
  1420. */
  1421. {
  1422. move r27, sp
  1423. andi sp, r0, 3
  1424. }
  1425. /*
  1426. * Get the lock address in ATOMIC_LOCK_REG, and also validate that the
  1427. * address is less than PAGE_OFFSET, since that won't trap at PL1.
  1428. * We only use bits less than PAGE_SHIFT to avoid having to worry
  1429. * about aliasing among multiple mappings of the same physical page,
  1430. * and we ignore the low 3 bits so we have one lock that covers
  1431. * both a cmpxchg64() and a cmpxchg() on either its low or high word.
  1432. * NOTE: this must match __atomic_hashed_lock() in lib/atomic_32.c.
  1433. */
  1434. #if (PAGE_OFFSET & 0xffff) != 0
  1435. # error Code here assumes PAGE_OFFSET can be loaded with just hi16()
  1436. #endif
  1437. {
  1438. /* Check for unaligned input. */
  1439. bnz sp, .Lcmpxchg_badaddr
  1440. auli r23, zero, hi16(PAGE_OFFSET) /* hugepage-aligned */
  1441. }
  1442. {
  1443. /*
  1444. * Slide bits into position for 'mm'. We want to ignore
  1445. * the low 3 bits of r0, and consider only the next
  1446. * ATOMIC_HASH_SHIFT bits.
  1447. * Because of C pointer arithmetic, we want to compute this:
  1448. *
  1449. * ((char*)atomic_locks +
  1450. * (((r0 >> 3) & ((1 << ATOMIC_HASH_SHIFT) - 1)) << 2))
  1451. *
  1452. * Instead of two shifts we just ">> 1", and use 'mm'
  1453. * to ignore the low and high bits we don't want.
  1454. */
  1455. shri r25, r0, 1
  1456. slt_u r23, r0, r23
  1457. /*
  1458. * Ensure that the TLB is loaded before we take out the lock.
  1459. * This will start fetching the value all the way into our L1
  1460. * as well (and if it gets modified before we grab the lock,
  1461. * it will be invalidated from our cache before we reload it).
  1462. */
  1463. lw r26, r0
  1464. }
  1465. {
  1466. auli r21, zero, ha16(atomic_locks)
  1467. bbns r23, .Lcmpxchg_badaddr
  1468. }
  1469. #if PAGE_SIZE < 0x10000
  1470. /* atomic_locks is page-aligned so for big pages we don't need this. */
  1471. addli r21, r21, lo16(atomic_locks)
  1472. #endif
  1473. {
  1474. /*
  1475. * Insert the hash bits into the page-aligned pointer.
  1476. * ATOMIC_HASH_SHIFT is so big that we don't actually hash
  1477. * the unmasked address bits, as that may cause unnecessary
  1478. * collisions.
  1479. */
  1480. mm ATOMIC_LOCK_REG_NAME, r25, r21, 2, (ATOMIC_HASH_SHIFT + 2) - 1
  1481. seqi r23, TREG_SYSCALL_NR_NAME, __NR_FAST_cmpxchg64
  1482. }
  1483. {
  1484. /* Branch away at this point if we're doing a 64-bit cmpxchg. */
  1485. bbs r23, .Lcmpxchg64
  1486. andi r23, r0, 7 /* Precompute alignment for cmpxchg64. */
  1487. }
  1488. {
  1489. /*
  1490. * We very carefully align the code that actually runs with
  1491. * the lock held (twelve bundles) so that we know it is all in
  1492. * the icache when we start. This instruction (the jump) is
  1493. * at the start of the first cache line, address zero mod 64;
  1494. * we jump to the very end of the second cache line to get that
  1495. * line loaded in the icache, then fall through to issue the tns
  1496. * in the third cache line, at which point it's all cached.
  1497. * Note that is for performance, not correctness.
  1498. */
  1499. j .Lcmpxchg32_tns
  1500. }
  1501. /* Symbol for do_page_fault_ics() to use to compare against the PC. */
  1502. .global __sys_cmpxchg_grab_lock
  1503. __sys_cmpxchg_grab_lock:
  1504. /*
  1505. * Perform the actual cmpxchg or atomic_update.
  1506. */
  1507. .Ldo_cmpxchg32:
  1508. {
  1509. lw r21, r0
  1510. seqi r23, TREG_SYSCALL_NR_NAME, __NR_FAST_atomic_update
  1511. move r24, r2
  1512. }
  1513. {
  1514. seq r22, r21, r1 /* See if cmpxchg matches. */
  1515. and r25, r21, r1 /* If atomic_update, compute (*mem & mask) */
  1516. }
  1517. {
  1518. or r22, r22, r23 /* Skip compare branch for atomic_update. */
  1519. add r25, r25, r2 /* Compute (*mem & mask) + addend. */
  1520. }
  1521. {
  1522. mvnz r24, r23, r25 /* Use atomic_update value if appropriate. */
  1523. bbns r22, .Lcmpxchg32_nostore
  1524. }
  1525. seq r22, r24, r21 /* Are we storing the value we loaded? */
  1526. bbs r22, .Lcmpxchg32_nostore
  1527. sw r0, r24
  1528. /* The following instruction is the start of the second cache line. */
  1529. /* Do slow mtspr here so the following "mf" waits less. */
  1530. {
  1531. move sp, r27
  1532. mtspr SPR_EX_CONTEXT_K_0, r28
  1533. }
  1534. mf
  1535. {
  1536. move r0, r21
  1537. sw ATOMIC_LOCK_REG_NAME, zero
  1538. }
  1539. iret
  1540. /* Duplicated code here in the case where we don't overlap "mf" */
  1541. .Lcmpxchg32_nostore:
  1542. {
  1543. move r0, r21
  1544. sw ATOMIC_LOCK_REG_NAME, zero
  1545. }
  1546. {
  1547. move sp, r27
  1548. mtspr SPR_EX_CONTEXT_K_0, r28
  1549. }
  1550. iret
  1551. /*
  1552. * The locking code is the same for 32-bit cmpxchg/atomic_update,
  1553. * and for 64-bit cmpxchg. We provide it as a macro and put
  1554. * it into both versions. We can't share the code literally
  1555. * since it depends on having the right branch-back address.
  1556. */
  1557. .macro cmpxchg_lock, bitwidth
  1558. /* Lock; if we succeed, jump back up to the read-modify-write. */
  1559. #ifdef CONFIG_SMP
  1560. tns r21, ATOMIC_LOCK_REG_NAME
  1561. #else
  1562. /*
  1563. * Non-SMP preserves all the lock infrastructure, to keep the
  1564. * code simpler for the interesting (SMP) case. However, we do
  1565. * one small optimization here and in atomic_asm.S, which is
  1566. * to fake out acquiring the actual lock in the atomic_lock table.
  1567. */
  1568. movei r21, 0
  1569. #endif
  1570. /* Issue the slow SPR here while the tns result is in flight. */
  1571. mfspr r28, SPR_EX_CONTEXT_K_0
  1572. {
  1573. addi r28, r28, 8 /* return to the instruction after the swint1 */
  1574. bzt r21, .Ldo_cmpxchg\bitwidth
  1575. }
  1576. /*
  1577. * The preceding instruction is the last thing that must be
  1578. * hot in the icache before we do the "tns" above.
  1579. */
  1580. #ifdef CONFIG_SMP
  1581. /*
  1582. * We failed to acquire the tns lock on our first try. Now use
  1583. * bounded exponential backoff to retry, like __atomic_spinlock().
  1584. */
  1585. {
  1586. moveli r23, 2048 /* maximum backoff time in cycles */
  1587. moveli r25, 32 /* starting backoff time in cycles */
  1588. }
  1589. 1: mfspr r26, CYCLE_LOW /* get start point for this backoff */
  1590. 2: mfspr r22, CYCLE_LOW /* test to see if we've backed off enough */
  1591. sub r22, r22, r26
  1592. slt r22, r22, r25
  1593. bbst r22, 2b
  1594. {
  1595. shli r25, r25, 1 /* double the backoff; retry the tns */
  1596. tns r21, ATOMIC_LOCK_REG_NAME
  1597. }
  1598. slt r26, r23, r25 /* is the proposed backoff too big? */
  1599. {
  1600. mvnz r25, r26, r23
  1601. bzt r21, .Ldo_cmpxchg\bitwidth
  1602. }
  1603. j 1b
  1604. #endif /* CONFIG_SMP */
  1605. .endm
  1606. .Lcmpxchg32_tns:
  1607. /*
  1608. * This is the last instruction on the second cache line.
  1609. * The nop here loads the second line, then we fall through
  1610. * to the tns to load the third line before we take the lock.
  1611. */
  1612. nop
  1613. cmpxchg_lock 32
  1614. /*
  1615. * This code is invoked from sys_cmpxchg after most of the
  1616. * preconditions have been checked. We still need to check
  1617. * that r0 is 8-byte aligned, since if it's not we won't
  1618. * actually be atomic. However, ATOMIC_LOCK_REG has the atomic
  1619. * lock pointer and r27/r28 have the saved SP/PC.
  1620. * r23 is holding "r0 & 7" so we can test for alignment.
  1621. * The compare value is in r2/r3; the new value is in r4/r5.
  1622. * On return, we must put the old value in r0/r1.
  1623. */
  1624. .align 64
  1625. .Lcmpxchg64:
  1626. {
  1627. bzt r23, .Lcmpxchg64_tns
  1628. }
  1629. j .Lcmpxchg_badaddr
  1630. .Ldo_cmpxchg64:
  1631. {
  1632. lw r21, r0
  1633. addi r25, r0, 4
  1634. }
  1635. {
  1636. lw r1, r25
  1637. }
  1638. seq r26, r21, r2
  1639. {
  1640. bz r26, .Lcmpxchg64_mismatch
  1641. seq r26, r1, r3
  1642. }
  1643. {
  1644. bz r26, .Lcmpxchg64_mismatch
  1645. }
  1646. sw r0, r4
  1647. sw r25, r5
  1648. /*
  1649. * The 32-bit path provides optimized "match" and "mismatch"
  1650. * iret paths, but we don't have enough bundles in this cache line
  1651. * to do that, so we just make even the "mismatch" path do an "mf".
  1652. */
  1653. .Lcmpxchg64_mismatch:
  1654. {
  1655. move sp, r27
  1656. mtspr SPR_EX_CONTEXT_K_0, r28
  1657. }
  1658. mf
  1659. {
  1660. move r0, r21
  1661. sw ATOMIC_LOCK_REG_NAME, zero
  1662. }
  1663. iret
  1664. .Lcmpxchg64_tns:
  1665. cmpxchg_lock 64
  1666. /*
  1667. * Reset sp and revector to sys_cmpxchg_badaddr(), which will
  1668. * just raise the appropriate signal and exit. Doing it this
  1669. * way means we don't have to duplicate the code in intvec.S's
  1670. * int_hand macro that locates the top of the stack.
  1671. */
  1672. .Lcmpxchg_badaddr:
  1673. {
  1674. moveli TREG_SYSCALL_NR_NAME, __NR_cmpxchg_badaddr
  1675. move sp, r27
  1676. }
  1677. j intvec_SWINT_1
  1678. ENDPROC(sys_cmpxchg)
  1679. ENTRY(__sys_cmpxchg_end)
  1680. /* The single-step support may need to read all the registers. */
  1681. int_unalign:
  1682. push_extra_callee_saves r0
  1683. j do_trap
  1684. /* Include .intrpt array of interrupt vectors */
  1685. .section ".intrpt", "ax"
  1686. #define op_handle_perf_interrupt bad_intr
  1687. #define op_handle_aux_perf_interrupt bad_intr
  1688. #ifndef CONFIG_HARDWALL
  1689. #define do_hardwall_trap bad_intr
  1690. #endif
  1691. int_hand INT_ITLB_MISS, ITLB_MISS, \
  1692. do_page_fault, handle_interrupt_no_single_step
  1693. int_hand INT_MEM_ERROR, MEM_ERROR, bad_intr
  1694. int_hand INT_ILL, ILL, do_trap, handle_ill
  1695. int_hand INT_GPV, GPV, do_trap
  1696. int_hand INT_SN_ACCESS, SN_ACCESS, do_trap
  1697. int_hand INT_IDN_ACCESS, IDN_ACCESS, do_trap
  1698. int_hand INT_UDN_ACCESS, UDN_ACCESS, do_trap
  1699. int_hand INT_IDN_REFILL, IDN_REFILL, bad_intr
  1700. int_hand INT_UDN_REFILL, UDN_REFILL, bad_intr
  1701. int_hand INT_IDN_COMPLETE, IDN_COMPLETE, bad_intr
  1702. int_hand INT_UDN_COMPLETE, UDN_COMPLETE, bad_intr
  1703. int_hand INT_SWINT_3, SWINT_3, do_trap
  1704. int_hand INT_SWINT_2, SWINT_2, do_trap
  1705. int_hand INT_SWINT_1, SWINT_1, SYSCALL, handle_syscall
  1706. int_hand INT_SWINT_0, SWINT_0, do_trap
  1707. int_hand INT_UNALIGN_DATA, UNALIGN_DATA, int_unalign
  1708. int_hand INT_DTLB_MISS, DTLB_MISS, do_page_fault
  1709. int_hand INT_DTLB_ACCESS, DTLB_ACCESS, do_page_fault
  1710. int_hand INT_DMATLB_MISS, DMATLB_MISS, do_page_fault
  1711. int_hand INT_DMATLB_ACCESS, DMATLB_ACCESS, do_page_fault
  1712. int_hand INT_SNITLB_MISS, SNITLB_MISS, do_page_fault
  1713. int_hand INT_SN_NOTIFY, SN_NOTIFY, bad_intr
  1714. int_hand INT_SN_FIREWALL, SN_FIREWALL, do_hardwall_trap
  1715. int_hand INT_IDN_FIREWALL, IDN_FIREWALL, bad_intr
  1716. int_hand INT_UDN_FIREWALL, UDN_FIREWALL, do_hardwall_trap
  1717. int_hand INT_TILE_TIMER, TILE_TIMER, do_timer_interrupt
  1718. int_hand INT_IDN_TIMER, IDN_TIMER, bad_intr
  1719. int_hand INT_UDN_TIMER, UDN_TIMER, bad_intr
  1720. int_hand INT_DMA_NOTIFY, DMA_NOTIFY, bad_intr
  1721. int_hand INT_IDN_CA, IDN_CA, bad_intr
  1722. int_hand INT_UDN_CA, UDN_CA, bad_intr
  1723. int_hand INT_IDN_AVAIL, IDN_AVAIL, bad_intr
  1724. int_hand INT_UDN_AVAIL, UDN_AVAIL, bad_intr
  1725. int_hand INT_PERF_COUNT, PERF_COUNT, \
  1726. op_handle_perf_interrupt, handle_nmi
  1727. int_hand INT_INTCTRL_3, INTCTRL_3, bad_intr
  1728. #if CONFIG_KERNEL_PL == 2
  1729. dc_dispatch INT_INTCTRL_2, INTCTRL_2
  1730. int_hand INT_INTCTRL_1, INTCTRL_1, bad_intr
  1731. #else
  1732. int_hand INT_INTCTRL_2, INTCTRL_2, bad_intr
  1733. dc_dispatch INT_INTCTRL_1, INTCTRL_1
  1734. #endif
  1735. int_hand INT_INTCTRL_0, INTCTRL_0, bad_intr
  1736. int_hand INT_MESSAGE_RCV_DWNCL, MESSAGE_RCV_DWNCL, \
  1737. hv_message_intr
  1738. int_hand INT_DEV_INTR_DWNCL, DEV_INTR_DWNCL, \
  1739. tile_dev_intr
  1740. int_hand INT_I_ASID, I_ASID, bad_intr
  1741. int_hand INT_D_ASID, D_ASID, bad_intr
  1742. int_hand INT_DMATLB_MISS_DWNCL, DMATLB_MISS_DWNCL, \
  1743. do_page_fault
  1744. int_hand INT_SNITLB_MISS_DWNCL, SNITLB_MISS_DWNCL, \
  1745. do_page_fault
  1746. int_hand INT_DMATLB_ACCESS_DWNCL, DMATLB_ACCESS_DWNCL, \
  1747. do_page_fault
  1748. int_hand INT_SN_CPL, SN_CPL, bad_intr
  1749. int_hand INT_DOUBLE_FAULT, DOUBLE_FAULT, do_trap
  1750. int_hand INT_AUX_PERF_COUNT, AUX_PERF_COUNT, \
  1751. op_handle_aux_perf_interrupt, handle_nmi
  1752. /* Synthetic interrupt delivered only by the simulator */
  1753. int_hand INT_BREAKPOINT, BREAKPOINT, do_breakpoint