intvec_32.S 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905
  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. jal preempt_schedule_irq
  760. FEEDBACK_REENTER(interrupt_return)
  761. 1:
  762. #endif
  763. /* If we're resuming to _cpu_idle_nap, bump PC forward by 8. */
  764. {
  765. PTREGS_PTR(r29, PTREGS_OFFSET_PC)
  766. moveli r27, lo16(_cpu_idle_nap)
  767. }
  768. {
  769. lw r28, r29
  770. auli r27, r27, ha16(_cpu_idle_nap)
  771. }
  772. {
  773. seq r27, r27, r28
  774. }
  775. {
  776. bbns r27, .Lrestore_all
  777. addi r28, r28, 8
  778. }
  779. sw r29, r28
  780. j .Lrestore_all
  781. .Lresume_userspace:
  782. FEEDBACK_REENTER(interrupt_return)
  783. /*
  784. * Use r33 to hold whether we have already loaded the callee-saves
  785. * into ptregs. We don't want to do it twice in this loop, since
  786. * then we'd clobber whatever changes are made by ptrace, etc.
  787. * Get base of stack in r32.
  788. */
  789. {
  790. GET_THREAD_INFO(r32)
  791. movei r33, 0
  792. }
  793. .Lretry_work_pending:
  794. /*
  795. * Disable interrupts so as to make sure we don't
  796. * miss an interrupt that sets any of the thread flags (like
  797. * need_resched or sigpending) between sampling and the iret.
  798. * Routines like schedule() or do_signal() may re-enable
  799. * interrupts before returning.
  800. */
  801. IRQ_DISABLE(r20, r21)
  802. TRACE_IRQS_OFF /* Note: clobbers registers r0-r29 */
  803. /* Check to see if there is any work to do before returning to user. */
  804. {
  805. addi r29, r32, THREAD_INFO_FLAGS_OFFSET
  806. moveli r1, lo16(_TIF_ALLWORK_MASK)
  807. }
  808. {
  809. lw r29, r29
  810. auli r1, r1, ha16(_TIF_ALLWORK_MASK)
  811. }
  812. and r1, r29, r1
  813. bzt r1, .Lrestore_all
  814. /*
  815. * Make sure we have all the registers saved for signal
  816. * handling, notify-resume, or single-step. Call out to C
  817. * code to figure out exactly what we need to do for each flag bit,
  818. * then if necessary, reload the flags and recheck.
  819. */
  820. {
  821. PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
  822. bnz r33, 1f
  823. }
  824. push_extra_callee_saves r0
  825. movei r33, 1
  826. 1: jal do_work_pending
  827. bnz r0, .Lretry_work_pending
  828. /*
  829. * In the NMI case we
  830. * omit the call to single_process_check_nohz, which normally checks
  831. * to see if we should start or stop the scheduler tick, because
  832. * we can't call arbitrary Linux code from an NMI context.
  833. * We always call the homecache TLB deferral code to re-trigger
  834. * the deferral mechanism.
  835. *
  836. * The other chunk of responsibility this code has is to reset the
  837. * interrupt masks appropriately to reset irqs and NMIs. We have
  838. * to call TRACE_IRQS_OFF and TRACE_IRQS_ON to support all the
  839. * lockdep-type stuff, but we can't set ICS until afterwards, since
  840. * ICS can only be used in very tight chunks of code to avoid
  841. * tripping over various assertions that it is off.
  842. *
  843. * (There is what looks like a window of vulnerability here since
  844. * we might take a profile interrupt between the two SPR writes
  845. * that set the mask, but since we write the low SPR word first,
  846. * and our interrupt entry code checks the low SPR word, any
  847. * profile interrupt will actually disable interrupts in both SPRs
  848. * before returning, which is OK.)
  849. */
  850. .Lrestore_all:
  851. PTREGS_PTR(r0, PTREGS_OFFSET_EX1)
  852. {
  853. lw r0, r0
  854. PTREGS_PTR(r32, PTREGS_OFFSET_FLAGS)
  855. }
  856. {
  857. andi r0, r0, SPR_EX_CONTEXT_1_1__PL_MASK
  858. lw r32, r32
  859. }
  860. bnz r0, 1f
  861. j 2f
  862. #if PT_FLAGS_DISABLE_IRQ != 1
  863. # error Assuming PT_FLAGS_DISABLE_IRQ == 1 so we can use bbnst below
  864. #endif
  865. 1: bbnst r32, 2f
  866. IRQ_DISABLE(r20,r21)
  867. TRACE_IRQS_OFF
  868. movei r0, 1
  869. mtspr INTERRUPT_CRITICAL_SECTION, r0
  870. bzt r30, .Lrestore_regs
  871. j 3f
  872. 2: TRACE_IRQS_ON
  873. movei r0, 1
  874. mtspr INTERRUPT_CRITICAL_SECTION, r0
  875. IRQ_ENABLE(r20, r21)
  876. bzt r30, .Lrestore_regs
  877. 3:
  878. /*
  879. * We now commit to returning from this interrupt, since we will be
  880. * doing things like setting EX_CONTEXT SPRs and unwinding the stack
  881. * frame. No calls should be made to any other code after this point.
  882. * This code should only be entered with ICS set.
  883. * r32 must still be set to ptregs.flags.
  884. * We launch loads to each cache line separately first, so we can
  885. * get some parallelism out of the memory subsystem.
  886. * We start zeroing caller-saved registers throughout, since
  887. * that will save some cycles if this turns out to be a syscall.
  888. */
  889. .Lrestore_regs:
  890. FEEDBACK_REENTER(interrupt_return) /* called from elsewhere */
  891. /*
  892. * Rotate so we have one high bit and one low bit to test.
  893. * - low bit says whether to restore all the callee-saved registers,
  894. * or just r30-r33, and r52 up.
  895. * - high bit (i.e. sign bit) says whether to restore all the
  896. * caller-saved registers, or just r0.
  897. */
  898. #if PT_FLAGS_CALLER_SAVES != 2 || PT_FLAGS_RESTORE_REGS != 4
  899. # error Rotate trick does not work :-)
  900. #endif
  901. {
  902. rli r20, r32, 30
  903. PTREGS_PTR(sp, PTREGS_OFFSET_REG(0))
  904. }
  905. /*
  906. * Load cache lines 0, 2, and 3 in that order, then use
  907. * the last loaded value, which makes it likely that the other
  908. * cache lines have also loaded, at which point we should be
  909. * able to safely read all the remaining words on those cache
  910. * lines without waiting for the memory subsystem.
  911. */
  912. pop_reg_zero r0, r28, sp, PTREGS_OFFSET_REG(30) - PTREGS_OFFSET_REG(0)
  913. pop_reg_zero r30, r2, sp, PTREGS_OFFSET_PC - PTREGS_OFFSET_REG(30)
  914. pop_reg_zero r21, r3, sp, PTREGS_OFFSET_EX1 - PTREGS_OFFSET_PC
  915. pop_reg_zero lr, r4, sp, PTREGS_OFFSET_REG(52) - PTREGS_OFFSET_EX1
  916. {
  917. mtspr SPR_EX_CONTEXT_K_0, r21
  918. move r5, zero
  919. }
  920. {
  921. mtspr SPR_EX_CONTEXT_K_1, lr
  922. andi lr, lr, SPR_EX_CONTEXT_1_1__PL_MASK /* mask off ICS */
  923. }
  924. /* Restore callee-saveds that we actually use. */
  925. pop_reg_zero r52, r6, sp, PTREGS_OFFSET_REG(31) - PTREGS_OFFSET_REG(52)
  926. pop_reg_zero r31, r7
  927. pop_reg_zero r32, r8
  928. pop_reg_zero r33, r9, sp, PTREGS_OFFSET_REG(29) - PTREGS_OFFSET_REG(33)
  929. /*
  930. * If we modified other callee-saveds, restore them now.
  931. * This is rare, but could be via ptrace or signal handler.
  932. */
  933. {
  934. move r10, zero
  935. bbs r20, .Lrestore_callees
  936. }
  937. .Lcontinue_restore_regs:
  938. /* Check if we're returning from a syscall. */
  939. {
  940. move r11, zero
  941. blzt r20, 1f /* no, so go restore callee-save registers */
  942. }
  943. /*
  944. * Check if we're returning to userspace.
  945. * Note that if we're not, we don't worry about zeroing everything.
  946. */
  947. {
  948. addli sp, sp, PTREGS_OFFSET_LR - PTREGS_OFFSET_REG(29)
  949. bnz lr, .Lkernel_return
  950. }
  951. /*
  952. * On return from syscall, we've restored r0 from pt_regs, but we
  953. * clear the remainder of the caller-saved registers. We could
  954. * restore the syscall arguments, but there's not much point,
  955. * and it ensures user programs aren't trying to use the
  956. * caller-saves if we clear them, as well as avoiding leaking
  957. * kernel pointers into userspace.
  958. */
  959. pop_reg_zero lr, r12, sp, PTREGS_OFFSET_TP - PTREGS_OFFSET_LR
  960. pop_reg_zero tp, r13, sp, PTREGS_OFFSET_SP - PTREGS_OFFSET_TP
  961. {
  962. lw sp, sp
  963. move r14, zero
  964. move r15, zero
  965. }
  966. { move r16, zero; move r17, zero }
  967. { move r18, zero; move r19, zero }
  968. { move r20, zero; move r21, zero }
  969. { move r22, zero; move r23, zero }
  970. { move r24, zero; move r25, zero }
  971. { move r26, zero; move r27, zero }
  972. /* Set r1 to errno if we are returning an error, otherwise zero. */
  973. {
  974. moveli r29, 4096
  975. sub r1, zero, r0
  976. }
  977. slt_u r29, r1, r29
  978. {
  979. mnz r1, r29, r1
  980. move r29, zero
  981. }
  982. iret
  983. /*
  984. * Not a syscall, so restore caller-saved registers.
  985. * First kick off a load for cache line 1, which we're touching
  986. * for the first time here.
  987. */
  988. .align 64
  989. 1: pop_reg r29, sp, PTREGS_OFFSET_REG(1) - PTREGS_OFFSET_REG(29)
  990. pop_reg r1
  991. pop_reg r2
  992. pop_reg r3
  993. pop_reg r4
  994. pop_reg r5
  995. pop_reg r6
  996. pop_reg r7
  997. pop_reg r8
  998. pop_reg r9
  999. pop_reg r10
  1000. pop_reg r11
  1001. pop_reg r12
  1002. pop_reg r13
  1003. pop_reg r14
  1004. pop_reg r15
  1005. pop_reg r16
  1006. pop_reg r17
  1007. pop_reg r18
  1008. pop_reg r19
  1009. pop_reg r20
  1010. pop_reg r21
  1011. pop_reg r22
  1012. pop_reg r23
  1013. pop_reg r24
  1014. pop_reg r25
  1015. pop_reg r26
  1016. pop_reg r27
  1017. pop_reg r28, sp, PTREGS_OFFSET_LR - PTREGS_OFFSET_REG(28)
  1018. /* r29 already restored above */
  1019. bnz lr, .Lkernel_return
  1020. pop_reg lr, sp, PTREGS_OFFSET_TP - PTREGS_OFFSET_LR
  1021. pop_reg tp, sp, PTREGS_OFFSET_SP - PTREGS_OFFSET_TP
  1022. lw sp, sp
  1023. iret
  1024. /*
  1025. * We can't restore tp when in kernel mode, since a thread might
  1026. * have migrated from another cpu and brought a stale tp value.
  1027. */
  1028. .Lkernel_return:
  1029. pop_reg lr, sp, PTREGS_OFFSET_SP - PTREGS_OFFSET_LR
  1030. lw sp, sp
  1031. iret
  1032. /* Restore callee-saved registers from r34 to r51. */
  1033. .Lrestore_callees:
  1034. addli sp, sp, PTREGS_OFFSET_REG(34) - PTREGS_OFFSET_REG(29)
  1035. pop_reg r34
  1036. pop_reg r35
  1037. pop_reg r36
  1038. pop_reg r37
  1039. pop_reg r38
  1040. pop_reg r39
  1041. pop_reg r40
  1042. pop_reg r41
  1043. pop_reg r42
  1044. pop_reg r43
  1045. pop_reg r44
  1046. pop_reg r45
  1047. pop_reg r46
  1048. pop_reg r47
  1049. pop_reg r48
  1050. pop_reg r49
  1051. pop_reg r50
  1052. pop_reg r51, sp, PTREGS_OFFSET_REG(29) - PTREGS_OFFSET_REG(51)
  1053. j .Lcontinue_restore_regs
  1054. STD_ENDPROC(interrupt_return)
  1055. /*
  1056. * Some interrupts don't check for single stepping
  1057. */
  1058. .pushsection .text.handle_interrupt_no_single_step,"ax"
  1059. handle_interrupt_no_single_step:
  1060. finish_interrupt_save handle_interrupt_no_single_step
  1061. {
  1062. jalr r0
  1063. PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
  1064. }
  1065. FEEDBACK_REENTER(handle_interrupt_no_single_step)
  1066. {
  1067. movei r30, 0 /* not an NMI */
  1068. j interrupt_return
  1069. }
  1070. STD_ENDPROC(handle_interrupt_no_single_step)
  1071. /*
  1072. * "NMI" interrupts mask ALL interrupts before calling the
  1073. * handler, and don't check thread flags, etc., on the way
  1074. * back out. In general, the only things we do here for NMIs
  1075. * are the register save/restore, fixing the PC if we were
  1076. * doing single step, and the dataplane kernel-TLB management.
  1077. * We don't (for example) deal with start/stop of the sched tick.
  1078. */
  1079. .pushsection .text.handle_nmi,"ax"
  1080. handle_nmi:
  1081. finish_interrupt_save handle_nmi
  1082. check_single_stepping normal, .Ldispatch_nmi
  1083. .Ldispatch_nmi:
  1084. {
  1085. jalr r0
  1086. PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
  1087. }
  1088. FEEDBACK_REENTER(handle_nmi)
  1089. j interrupt_return
  1090. STD_ENDPROC(handle_nmi)
  1091. /*
  1092. * Parallel code for syscalls to handle_interrupt.
  1093. */
  1094. .pushsection .text.handle_syscall,"ax"
  1095. handle_syscall:
  1096. finish_interrupt_save handle_syscall
  1097. /*
  1098. * Check for if we are single stepping in user level. If so, then
  1099. * we need to restore the PC.
  1100. */
  1101. check_single_stepping syscall, .Ldispatch_syscall
  1102. .Ldispatch_syscall:
  1103. /* Enable irqs. */
  1104. TRACE_IRQS_ON
  1105. IRQ_ENABLE(r20, r21)
  1106. /* Bump the counter for syscalls made on this tile. */
  1107. moveli r20, lo16(irq_stat + IRQ_CPUSTAT_SYSCALL_COUNT_OFFSET)
  1108. auli r20, r20, ha16(irq_stat + IRQ_CPUSTAT_SYSCALL_COUNT_OFFSET)
  1109. add r20, r20, tp
  1110. lw r21, r20
  1111. addi r21, r21, 1
  1112. {
  1113. sw r20, r21
  1114. GET_THREAD_INFO(r31)
  1115. }
  1116. /* Trace syscalls, if requested. */
  1117. addi r31, r31, THREAD_INFO_FLAGS_OFFSET
  1118. lw r30, r31
  1119. andi r30, r30, _TIF_SYSCALL_TRACE
  1120. bzt r30, .Lrestore_syscall_regs
  1121. {
  1122. PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
  1123. jal do_syscall_trace_enter
  1124. }
  1125. FEEDBACK_REENTER(handle_syscall)
  1126. /*
  1127. * We always reload our registers from the stack at this
  1128. * point. They might be valid, if we didn't build with
  1129. * TRACE_IRQFLAGS, and this isn't a dataplane tile, and we're not
  1130. * doing syscall tracing, but there are enough cases now that it
  1131. * seems simplest just to do the reload unconditionally.
  1132. */
  1133. .Lrestore_syscall_regs:
  1134. PTREGS_PTR(r11, PTREGS_OFFSET_REG(0))
  1135. pop_reg r0, r11
  1136. pop_reg r1, r11
  1137. pop_reg r2, r11
  1138. pop_reg r3, r11
  1139. pop_reg r4, r11
  1140. pop_reg r5, r11, PTREGS_OFFSET_SYSCALL - PTREGS_OFFSET_REG(5)
  1141. pop_reg TREG_SYSCALL_NR_NAME, r11
  1142. /* Ensure that the syscall number is within the legal range. */
  1143. moveli r21, __NR_syscalls
  1144. {
  1145. slt_u r21, TREG_SYSCALL_NR_NAME, r21
  1146. moveli r20, lo16(sys_call_table)
  1147. }
  1148. {
  1149. bbns r21, .Linvalid_syscall
  1150. auli r20, r20, ha16(sys_call_table)
  1151. }
  1152. s2a r20, TREG_SYSCALL_NR_NAME, r20
  1153. lw r20, r20
  1154. /* Jump to syscall handler. */
  1155. jalr r20
  1156. .Lhandle_syscall_link: /* value of "lr" after "jalr r20" above */
  1157. /*
  1158. * Write our r0 onto the stack so it gets restored instead
  1159. * of whatever the user had there before.
  1160. */
  1161. PTREGS_PTR(r29, PTREGS_OFFSET_REG(0))
  1162. sw r29, r0
  1163. .Lsyscall_sigreturn_skip:
  1164. FEEDBACK_REENTER(handle_syscall)
  1165. /* Do syscall trace again, if requested. */
  1166. lw r30, r31
  1167. andi r30, r30, _TIF_SYSCALL_TRACE
  1168. bzt r30, 1f
  1169. {
  1170. PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
  1171. jal do_syscall_trace_exit
  1172. }
  1173. FEEDBACK_REENTER(handle_syscall)
  1174. 1: {
  1175. movei r30, 0 /* not an NMI */
  1176. j .Lresume_userspace /* jump into middle of interrupt_return */
  1177. }
  1178. .Linvalid_syscall:
  1179. /* Report an invalid syscall back to the user program */
  1180. {
  1181. PTREGS_PTR(r29, PTREGS_OFFSET_REG(0))
  1182. movei r28, -ENOSYS
  1183. }
  1184. sw r29, r28
  1185. {
  1186. movei r30, 0 /* not an NMI */
  1187. j .Lresume_userspace /* jump into middle of interrupt_return */
  1188. }
  1189. STD_ENDPROC(handle_syscall)
  1190. /* Return the address for oprofile to suppress in backtraces. */
  1191. STD_ENTRY_SECTION(handle_syscall_link_address, .text.handle_syscall)
  1192. lnk r0
  1193. {
  1194. addli r0, r0, .Lhandle_syscall_link - .
  1195. jrp lr
  1196. }
  1197. STD_ENDPROC(handle_syscall_link_address)
  1198. STD_ENTRY(ret_from_fork)
  1199. jal sim_notify_fork
  1200. jal schedule_tail
  1201. FEEDBACK_REENTER(ret_from_fork)
  1202. {
  1203. movei r30, 0 /* not an NMI */
  1204. j .Lresume_userspace /* jump into middle of interrupt_return */
  1205. }
  1206. STD_ENDPROC(ret_from_fork)
  1207. STD_ENTRY(ret_from_kernel_thread)
  1208. jal sim_notify_fork
  1209. jal schedule_tail
  1210. FEEDBACK_REENTER(ret_from_fork)
  1211. {
  1212. move r0, r31
  1213. jalr r30
  1214. }
  1215. FEEDBACK_REENTER(ret_from_kernel_thread)
  1216. {
  1217. movei r30, 0 /* not an NMI */
  1218. j .Lresume_userspace /* jump into middle of interrupt_return */
  1219. }
  1220. STD_ENDPROC(ret_from_kernel_thread)
  1221. /*
  1222. * Code for ill interrupt.
  1223. */
  1224. .pushsection .text.handle_ill,"ax"
  1225. handle_ill:
  1226. finish_interrupt_save handle_ill
  1227. /*
  1228. * Check for if we are single stepping in user level. If so, then
  1229. * we need to restore the PC.
  1230. */
  1231. check_single_stepping ill, .Ldispatch_normal_ill
  1232. {
  1233. /* See if the PC is the 1st bundle in the buffer */
  1234. seq r25, r27, r26
  1235. /* Point to the 2nd bundle in the buffer */
  1236. addi r26, r26, 8
  1237. }
  1238. {
  1239. /* Point to the original pc */
  1240. addi r24, r29, SINGLESTEP_STATE_ORIG_PC_OFFSET
  1241. /* Branch if the PC is the 1st bundle in the buffer */
  1242. bnz r25, 3f
  1243. }
  1244. {
  1245. /* See if the PC is the 2nd bundle of the buffer */
  1246. seq r25, r27, r26
  1247. /* Set PC to next instruction */
  1248. addi r24, r29, SINGLESTEP_STATE_NEXT_PC_OFFSET
  1249. }
  1250. {
  1251. /* Point to flags */
  1252. addi r25, r29, SINGLESTEP_STATE_FLAGS_OFFSET
  1253. /* Branch if PC is in the second bundle */
  1254. bz r25, 2f
  1255. }
  1256. /* Load flags */
  1257. lw r25, r25
  1258. {
  1259. /*
  1260. * Get the offset for the register to restore
  1261. * Note: the lower bound is 2, so we have implicit scaling by 4.
  1262. * No multiplication of the register number by the size of a register
  1263. * is needed.
  1264. */
  1265. mm r27, r25, zero, SINGLESTEP_STATE_TARGET_LB, \
  1266. SINGLESTEP_STATE_TARGET_UB
  1267. /* Mask Rewrite_LR */
  1268. andi r25, r25, SINGLESTEP_STATE_MASK_UPDATE
  1269. }
  1270. {
  1271. addi r29, r29, SINGLESTEP_STATE_UPDATE_VALUE_OFFSET
  1272. /* Don't rewrite temp register */
  1273. bz r25, 3f
  1274. }
  1275. {
  1276. /* Get the temp value */
  1277. lw r29, r29
  1278. /* Point to where the register is stored */
  1279. add r27, r27, sp
  1280. }
  1281. /* Add in the C ABI save area size to the register offset */
  1282. addi r27, r27, C_ABI_SAVE_AREA_SIZE
  1283. /* Restore the user's register with the temp value */
  1284. sw r27, r29
  1285. j 3f
  1286. 2:
  1287. /* Must be in the third bundle */
  1288. addi r24, r29, SINGLESTEP_STATE_BRANCH_NEXT_PC_OFFSET
  1289. 3:
  1290. /* set PC and continue */
  1291. lw r26, r24
  1292. {
  1293. sw r28, r26
  1294. GET_THREAD_INFO(r0)
  1295. }
  1296. /*
  1297. * Clear TIF_SINGLESTEP to prevent recursion if we execute an ill.
  1298. * The normal non-arch flow redundantly clears TIF_SINGLESTEP, but we
  1299. * need to clear it here and can't really impose on all other arches.
  1300. * So what's another write between friends?
  1301. */
  1302. addi r1, r0, THREAD_INFO_FLAGS_OFFSET
  1303. {
  1304. lw r2, r1
  1305. addi r0, r0, THREAD_INFO_TASK_OFFSET /* currently a no-op */
  1306. }
  1307. andi r2, r2, ~_TIF_SINGLESTEP
  1308. sw r1, r2
  1309. /* Issue a sigtrap */
  1310. {
  1311. lw r0, r0 /* indirect thru thread_info to get task_info*/
  1312. addi r1, sp, C_ABI_SAVE_AREA_SIZE /* put ptregs pointer into r1 */
  1313. }
  1314. jal send_sigtrap /* issue a SIGTRAP */
  1315. FEEDBACK_REENTER(handle_ill)
  1316. {
  1317. movei r30, 0 /* not an NMI */
  1318. j .Lresume_userspace /* jump into middle of interrupt_return */
  1319. }
  1320. .Ldispatch_normal_ill:
  1321. {
  1322. jalr r0
  1323. PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
  1324. }
  1325. FEEDBACK_REENTER(handle_ill)
  1326. {
  1327. movei r30, 0 /* not an NMI */
  1328. j interrupt_return
  1329. }
  1330. STD_ENDPROC(handle_ill)
  1331. /* Various stub interrupt handlers and syscall handlers */
  1332. STD_ENTRY_LOCAL(_kernel_double_fault)
  1333. mfspr r1, SPR_EX_CONTEXT_K_0
  1334. move r2, lr
  1335. move r3, sp
  1336. move r4, r52
  1337. addi sp, sp, -C_ABI_SAVE_AREA_SIZE
  1338. j kernel_double_fault
  1339. STD_ENDPROC(_kernel_double_fault)
  1340. STD_ENTRY_LOCAL(bad_intr)
  1341. mfspr r2, SPR_EX_CONTEXT_K_0
  1342. panic "Unhandled interrupt %#x: PC %#lx"
  1343. STD_ENDPROC(bad_intr)
  1344. /*
  1345. * Special-case sigreturn to not write r0 to the stack on return.
  1346. * This is technically more efficient, but it also avoids difficulties
  1347. * in the 64-bit OS when handling 32-bit compat code, since we must not
  1348. * sign-extend r0 for the sigreturn return-value case.
  1349. */
  1350. #define PTREGS_SYSCALL_SIGRETURN(x, reg) \
  1351. STD_ENTRY(_##x); \
  1352. addli lr, lr, .Lsyscall_sigreturn_skip - .Lhandle_syscall_link; \
  1353. { \
  1354. PTREGS_PTR(reg, PTREGS_OFFSET_BASE); \
  1355. j x \
  1356. }; \
  1357. STD_ENDPROC(_##x)
  1358. PTREGS_SYSCALL_SIGRETURN(sys_rt_sigreturn, r0)
  1359. /* Save additional callee-saves to pt_regs and jump to standard function. */
  1360. STD_ENTRY(_sys_clone)
  1361. push_extra_callee_saves r4
  1362. j sys_clone
  1363. STD_ENDPROC(_sys_clone)
  1364. /*
  1365. * This entrypoint is taken for the cmpxchg and atomic_update fast
  1366. * swints. We may wish to generalize it to other fast swints at some
  1367. * point, but for now there are just two very similar ones, which
  1368. * makes it faster.
  1369. *
  1370. * The fast swint code is designed to have a small footprint. It does
  1371. * not save or restore any GPRs, counting on the caller-save registers
  1372. * to be available to it on entry. It does not modify any callee-save
  1373. * registers (including "lr"). It does not check what PL it is being
  1374. * called at, so you'd better not call it other than at PL0.
  1375. * The <atomic.h> wrapper assumes it only clobbers r20-r29, so if
  1376. * it ever is necessary to use more registers, be aware.
  1377. *
  1378. * It does not use the stack, but since it might be re-interrupted by
  1379. * a page fault which would assume the stack was valid, it does
  1380. * save/restore the stack pointer and zero it out to make sure it gets reset.
  1381. * Since we always keep interrupts disabled, the hypervisor won't
  1382. * clobber our EX_CONTEXT_K_x registers, so we don't save/restore them
  1383. * (other than to advance the PC on return).
  1384. *
  1385. * We have to manually validate the user vs kernel address range
  1386. * (since at PL1 we can read/write both), and for performance reasons
  1387. * we don't allow cmpxchg on the fc000000 memory region, since we only
  1388. * validate that the user address is below PAGE_OFFSET.
  1389. *
  1390. * We place it in the __HEAD section to ensure it is relatively
  1391. * near to the intvec_SWINT_1 code (reachable by a conditional branch).
  1392. *
  1393. * Our use of ATOMIC_LOCK_REG here must match do_page_fault_ics().
  1394. *
  1395. * As we do in lib/atomic_asm_32.S, we bypass a store if the value we
  1396. * would store is the same as the value we just loaded.
  1397. */
  1398. __HEAD
  1399. .align 64
  1400. /* Align much later jump on the start of a cache line. */
  1401. nop
  1402. #if PAGE_SIZE >= 0x10000
  1403. nop
  1404. #endif
  1405. ENTRY(sys_cmpxchg)
  1406. /*
  1407. * Save "sp" and set it zero for any possible page fault.
  1408. *
  1409. * HACK: We want to both zero sp and check r0's alignment,
  1410. * so we do both at once. If "sp" becomes nonzero we
  1411. * know r0 is unaligned and branch to the error handler that
  1412. * restores sp, so this is OK.
  1413. *
  1414. * ICS is disabled right now so having a garbage but nonzero
  1415. * sp is OK, since we won't execute any faulting instructions
  1416. * when it is nonzero.
  1417. */
  1418. {
  1419. move r27, sp
  1420. andi sp, r0, 3
  1421. }
  1422. /*
  1423. * Get the lock address in ATOMIC_LOCK_REG, and also validate that the
  1424. * address is less than PAGE_OFFSET, since that won't trap at PL1.
  1425. * We only use bits less than PAGE_SHIFT to avoid having to worry
  1426. * about aliasing among multiple mappings of the same physical page,
  1427. * and we ignore the low 3 bits so we have one lock that covers
  1428. * both a cmpxchg64() and a cmpxchg() on either its low or high word.
  1429. * NOTE: this must match __atomic_hashed_lock() in lib/atomic_32.c.
  1430. */
  1431. #if (PAGE_OFFSET & 0xffff) != 0
  1432. # error Code here assumes PAGE_OFFSET can be loaded with just hi16()
  1433. #endif
  1434. {
  1435. /* Check for unaligned input. */
  1436. bnz sp, .Lcmpxchg_badaddr
  1437. auli r23, zero, hi16(PAGE_OFFSET) /* hugepage-aligned */
  1438. }
  1439. {
  1440. /*
  1441. * Slide bits into position for 'mm'. We want to ignore
  1442. * the low 3 bits of r0, and consider only the next
  1443. * ATOMIC_HASH_SHIFT bits.
  1444. * Because of C pointer arithmetic, we want to compute this:
  1445. *
  1446. * ((char*)atomic_locks +
  1447. * (((r0 >> 3) & ((1 << ATOMIC_HASH_SHIFT) - 1)) << 2))
  1448. *
  1449. * Instead of two shifts we just ">> 1", and use 'mm'
  1450. * to ignore the low and high bits we don't want.
  1451. */
  1452. shri r25, r0, 1
  1453. slt_u r23, r0, r23
  1454. /*
  1455. * Ensure that the TLB is loaded before we take out the lock.
  1456. * This will start fetching the value all the way into our L1
  1457. * as well (and if it gets modified before we grab the lock,
  1458. * it will be invalidated from our cache before we reload it).
  1459. */
  1460. lw r26, r0
  1461. }
  1462. {
  1463. auli r21, zero, ha16(atomic_locks)
  1464. bbns r23, .Lcmpxchg_badaddr
  1465. }
  1466. #if PAGE_SIZE < 0x10000
  1467. /* atomic_locks is page-aligned so for big pages we don't need this. */
  1468. addli r21, r21, lo16(atomic_locks)
  1469. #endif
  1470. {
  1471. /*
  1472. * Insert the hash bits into the page-aligned pointer.
  1473. * ATOMIC_HASH_SHIFT is so big that we don't actually hash
  1474. * the unmasked address bits, as that may cause unnecessary
  1475. * collisions.
  1476. */
  1477. mm ATOMIC_LOCK_REG_NAME, r25, r21, 2, (ATOMIC_HASH_SHIFT + 2) - 1
  1478. seqi r23, TREG_SYSCALL_NR_NAME, __NR_FAST_cmpxchg64
  1479. }
  1480. {
  1481. /* Branch away at this point if we're doing a 64-bit cmpxchg. */
  1482. bbs r23, .Lcmpxchg64
  1483. andi r23, r0, 7 /* Precompute alignment for cmpxchg64. */
  1484. }
  1485. {
  1486. /*
  1487. * We very carefully align the code that actually runs with
  1488. * the lock held (twelve bundles) so that we know it is all in
  1489. * the icache when we start. This instruction (the jump) is
  1490. * at the start of the first cache line, address zero mod 64;
  1491. * we jump to the very end of the second cache line to get that
  1492. * line loaded in the icache, then fall through to issue the tns
  1493. * in the third cache line, at which point it's all cached.
  1494. * Note that is for performance, not correctness.
  1495. */
  1496. j .Lcmpxchg32_tns
  1497. }
  1498. /* Symbol for do_page_fault_ics() to use to compare against the PC. */
  1499. .global __sys_cmpxchg_grab_lock
  1500. __sys_cmpxchg_grab_lock:
  1501. /*
  1502. * Perform the actual cmpxchg or atomic_update.
  1503. */
  1504. .Ldo_cmpxchg32:
  1505. {
  1506. lw r21, r0
  1507. seqi r23, TREG_SYSCALL_NR_NAME, __NR_FAST_atomic_update
  1508. move r24, r2
  1509. }
  1510. {
  1511. seq r22, r21, r1 /* See if cmpxchg matches. */
  1512. and r25, r21, r1 /* If atomic_update, compute (*mem & mask) */
  1513. }
  1514. {
  1515. or r22, r22, r23 /* Skip compare branch for atomic_update. */
  1516. add r25, r25, r2 /* Compute (*mem & mask) + addend. */
  1517. }
  1518. {
  1519. mvnz r24, r23, r25 /* Use atomic_update value if appropriate. */
  1520. bbns r22, .Lcmpxchg32_nostore
  1521. }
  1522. seq r22, r24, r21 /* Are we storing the value we loaded? */
  1523. bbs r22, .Lcmpxchg32_nostore
  1524. sw r0, r24
  1525. /* The following instruction is the start of the second cache line. */
  1526. /* Do slow mtspr here so the following "mf" waits less. */
  1527. {
  1528. move sp, r27
  1529. mtspr SPR_EX_CONTEXT_K_0, r28
  1530. }
  1531. mf
  1532. {
  1533. move r0, r21
  1534. sw ATOMIC_LOCK_REG_NAME, zero
  1535. }
  1536. iret
  1537. /* Duplicated code here in the case where we don't overlap "mf" */
  1538. .Lcmpxchg32_nostore:
  1539. {
  1540. move r0, r21
  1541. sw ATOMIC_LOCK_REG_NAME, zero
  1542. }
  1543. {
  1544. move sp, r27
  1545. mtspr SPR_EX_CONTEXT_K_0, r28
  1546. }
  1547. iret
  1548. /*
  1549. * The locking code is the same for 32-bit cmpxchg/atomic_update,
  1550. * and for 64-bit cmpxchg. We provide it as a macro and put
  1551. * it into both versions. We can't share the code literally
  1552. * since it depends on having the right branch-back address.
  1553. */
  1554. .macro cmpxchg_lock, bitwidth
  1555. /* Lock; if we succeed, jump back up to the read-modify-write. */
  1556. #ifdef CONFIG_SMP
  1557. tns r21, ATOMIC_LOCK_REG_NAME
  1558. #else
  1559. /*
  1560. * Non-SMP preserves all the lock infrastructure, to keep the
  1561. * code simpler for the interesting (SMP) case. However, we do
  1562. * one small optimization here and in atomic_asm.S, which is
  1563. * to fake out acquiring the actual lock in the atomic_lock table.
  1564. */
  1565. movei r21, 0
  1566. #endif
  1567. /* Issue the slow SPR here while the tns result is in flight. */
  1568. mfspr r28, SPR_EX_CONTEXT_K_0
  1569. {
  1570. addi r28, r28, 8 /* return to the instruction after the swint1 */
  1571. bzt r21, .Ldo_cmpxchg\bitwidth
  1572. }
  1573. /*
  1574. * The preceding instruction is the last thing that must be
  1575. * hot in the icache before we do the "tns" above.
  1576. */
  1577. #ifdef CONFIG_SMP
  1578. /*
  1579. * We failed to acquire the tns lock on our first try. Now use
  1580. * bounded exponential backoff to retry, like __atomic_spinlock().
  1581. */
  1582. {
  1583. moveli r23, 2048 /* maximum backoff time in cycles */
  1584. moveli r25, 32 /* starting backoff time in cycles */
  1585. }
  1586. 1: mfspr r26, CYCLE_LOW /* get start point for this backoff */
  1587. 2: mfspr r22, CYCLE_LOW /* test to see if we've backed off enough */
  1588. sub r22, r22, r26
  1589. slt r22, r22, r25
  1590. bbst r22, 2b
  1591. {
  1592. shli r25, r25, 1 /* double the backoff; retry the tns */
  1593. tns r21, ATOMIC_LOCK_REG_NAME
  1594. }
  1595. slt r26, r23, r25 /* is the proposed backoff too big? */
  1596. {
  1597. mvnz r25, r26, r23
  1598. bzt r21, .Ldo_cmpxchg\bitwidth
  1599. }
  1600. j 1b
  1601. #endif /* CONFIG_SMP */
  1602. .endm
  1603. .Lcmpxchg32_tns:
  1604. /*
  1605. * This is the last instruction on the second cache line.
  1606. * The nop here loads the second line, then we fall through
  1607. * to the tns to load the third line before we take the lock.
  1608. */
  1609. nop
  1610. cmpxchg_lock 32
  1611. /*
  1612. * This code is invoked from sys_cmpxchg after most of the
  1613. * preconditions have been checked. We still need to check
  1614. * that r0 is 8-byte aligned, since if it's not we won't
  1615. * actually be atomic. However, ATOMIC_LOCK_REG has the atomic
  1616. * lock pointer and r27/r28 have the saved SP/PC.
  1617. * r23 is holding "r0 & 7" so we can test for alignment.
  1618. * The compare value is in r2/r3; the new value is in r4/r5.
  1619. * On return, we must put the old value in r0/r1.
  1620. */
  1621. .align 64
  1622. .Lcmpxchg64:
  1623. {
  1624. bzt r23, .Lcmpxchg64_tns
  1625. }
  1626. j .Lcmpxchg_badaddr
  1627. .Ldo_cmpxchg64:
  1628. {
  1629. lw r21, r0
  1630. addi r25, r0, 4
  1631. }
  1632. {
  1633. lw r1, r25
  1634. }
  1635. seq r26, r21, r2
  1636. {
  1637. bz r26, .Lcmpxchg64_mismatch
  1638. seq r26, r1, r3
  1639. }
  1640. {
  1641. bz r26, .Lcmpxchg64_mismatch
  1642. }
  1643. sw r0, r4
  1644. sw r25, r5
  1645. /*
  1646. * The 32-bit path provides optimized "match" and "mismatch"
  1647. * iret paths, but we don't have enough bundles in this cache line
  1648. * to do that, so we just make even the "mismatch" path do an "mf".
  1649. */
  1650. .Lcmpxchg64_mismatch:
  1651. {
  1652. move sp, r27
  1653. mtspr SPR_EX_CONTEXT_K_0, r28
  1654. }
  1655. mf
  1656. {
  1657. move r0, r21
  1658. sw ATOMIC_LOCK_REG_NAME, zero
  1659. }
  1660. iret
  1661. .Lcmpxchg64_tns:
  1662. cmpxchg_lock 64
  1663. /*
  1664. * Reset sp and revector to sys_cmpxchg_badaddr(), which will
  1665. * just raise the appropriate signal and exit. Doing it this
  1666. * way means we don't have to duplicate the code in intvec.S's
  1667. * int_hand macro that locates the top of the stack.
  1668. */
  1669. .Lcmpxchg_badaddr:
  1670. {
  1671. moveli TREG_SYSCALL_NR_NAME, __NR_cmpxchg_badaddr
  1672. move sp, r27
  1673. }
  1674. j intvec_SWINT_1
  1675. ENDPROC(sys_cmpxchg)
  1676. ENTRY(__sys_cmpxchg_end)
  1677. /* The single-step support may need to read all the registers. */
  1678. int_unalign:
  1679. push_extra_callee_saves r0
  1680. j do_trap
  1681. /* Include .intrpt array of interrupt vectors */
  1682. .section ".intrpt", "ax"
  1683. #define op_handle_perf_interrupt bad_intr
  1684. #define op_handle_aux_perf_interrupt bad_intr
  1685. #ifndef CONFIG_HARDWALL
  1686. #define do_hardwall_trap bad_intr
  1687. #endif
  1688. int_hand INT_ITLB_MISS, ITLB_MISS, \
  1689. do_page_fault, handle_interrupt_no_single_step
  1690. int_hand INT_MEM_ERROR, MEM_ERROR, bad_intr
  1691. int_hand INT_ILL, ILL, do_trap, handle_ill
  1692. int_hand INT_GPV, GPV, do_trap
  1693. int_hand INT_SN_ACCESS, SN_ACCESS, do_trap
  1694. int_hand INT_IDN_ACCESS, IDN_ACCESS, do_trap
  1695. int_hand INT_UDN_ACCESS, UDN_ACCESS, do_trap
  1696. int_hand INT_IDN_REFILL, IDN_REFILL, bad_intr
  1697. int_hand INT_UDN_REFILL, UDN_REFILL, bad_intr
  1698. int_hand INT_IDN_COMPLETE, IDN_COMPLETE, bad_intr
  1699. int_hand INT_UDN_COMPLETE, UDN_COMPLETE, bad_intr
  1700. int_hand INT_SWINT_3, SWINT_3, do_trap
  1701. int_hand INT_SWINT_2, SWINT_2, do_trap
  1702. int_hand INT_SWINT_1, SWINT_1, SYSCALL, handle_syscall
  1703. int_hand INT_SWINT_0, SWINT_0, do_trap
  1704. int_hand INT_UNALIGN_DATA, UNALIGN_DATA, int_unalign
  1705. int_hand INT_DTLB_MISS, DTLB_MISS, do_page_fault
  1706. int_hand INT_DTLB_ACCESS, DTLB_ACCESS, do_page_fault
  1707. int_hand INT_DMATLB_MISS, DMATLB_MISS, do_page_fault
  1708. int_hand INT_DMATLB_ACCESS, DMATLB_ACCESS, do_page_fault
  1709. int_hand INT_SNITLB_MISS, SNITLB_MISS, do_page_fault
  1710. int_hand INT_SN_NOTIFY, SN_NOTIFY, bad_intr
  1711. int_hand INT_SN_FIREWALL, SN_FIREWALL, do_hardwall_trap
  1712. int_hand INT_IDN_FIREWALL, IDN_FIREWALL, bad_intr
  1713. int_hand INT_UDN_FIREWALL, UDN_FIREWALL, do_hardwall_trap
  1714. int_hand INT_TILE_TIMER, TILE_TIMER, do_timer_interrupt
  1715. int_hand INT_IDN_TIMER, IDN_TIMER, bad_intr
  1716. int_hand INT_UDN_TIMER, UDN_TIMER, bad_intr
  1717. int_hand INT_DMA_NOTIFY, DMA_NOTIFY, bad_intr
  1718. int_hand INT_IDN_CA, IDN_CA, bad_intr
  1719. int_hand INT_UDN_CA, UDN_CA, bad_intr
  1720. int_hand INT_IDN_AVAIL, IDN_AVAIL, bad_intr
  1721. int_hand INT_UDN_AVAIL, UDN_AVAIL, bad_intr
  1722. int_hand INT_PERF_COUNT, PERF_COUNT, \
  1723. op_handle_perf_interrupt, handle_nmi
  1724. int_hand INT_INTCTRL_3, INTCTRL_3, bad_intr
  1725. #if CONFIG_KERNEL_PL == 2
  1726. dc_dispatch INT_INTCTRL_2, INTCTRL_2
  1727. int_hand INT_INTCTRL_1, INTCTRL_1, bad_intr
  1728. #else
  1729. int_hand INT_INTCTRL_2, INTCTRL_2, bad_intr
  1730. dc_dispatch INT_INTCTRL_1, INTCTRL_1
  1731. #endif
  1732. int_hand INT_INTCTRL_0, INTCTRL_0, bad_intr
  1733. int_hand INT_MESSAGE_RCV_DWNCL, MESSAGE_RCV_DWNCL, \
  1734. hv_message_intr
  1735. int_hand INT_DEV_INTR_DWNCL, DEV_INTR_DWNCL, \
  1736. tile_dev_intr
  1737. int_hand INT_I_ASID, I_ASID, bad_intr
  1738. int_hand INT_D_ASID, D_ASID, bad_intr
  1739. int_hand INT_DMATLB_MISS_DWNCL, DMATLB_MISS_DWNCL, \
  1740. do_page_fault
  1741. int_hand INT_SNITLB_MISS_DWNCL, SNITLB_MISS_DWNCL, \
  1742. do_page_fault
  1743. int_hand INT_DMATLB_ACCESS_DWNCL, DMATLB_ACCESS_DWNCL, \
  1744. do_page_fault
  1745. int_hand INT_SN_CPL, SN_CPL, bad_intr
  1746. int_hand INT_DOUBLE_FAULT, DOUBLE_FAULT, do_trap
  1747. int_hand INT_AUX_PERF_COUNT, AUX_PERF_COUNT, \
  1748. op_handle_aux_perf_interrupt, handle_nmi
  1749. /* Synthetic interrupt delivered only by the simulator */
  1750. int_hand INT_BREAKPOINT, BREAKPOINT, do_breakpoint