syscall.S 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964
  1. /*
  2. * Linux/PA-RISC Project (http://www.parisc-linux.org/)
  3. *
  4. * System call entry code / Linux gateway page
  5. * Copyright (c) Matthew Wilcox 1999 <willy@bofh.ai>
  6. * Licensed under the GNU GPL.
  7. * thanks to Philipp Rumpf, Mike Shaver and various others
  8. * sorry about the wall, puffin..
  9. */
  10. /*
  11. How does the Linux gateway page on PA-RISC work?
  12. ------------------------------------------------
  13. The Linux gateway page on PA-RISC is "special".
  14. It actually has PAGE_GATEWAY bits set (this is linux terminology; in parisc
  15. terminology it's Execute, promote to PL0) in the page map. So anything
  16. executing on this page executes with kernel level privilege (there's more to it
  17. than that: to have this happen, you also have to use a branch with a ,gate
  18. completer to activate the privilege promotion). The upshot is that everything
  19. that runs on the gateway page runs at kernel privilege but with the current
  20. user process address space (although you have access to kernel space via %sr2).
  21. For the 0x100 syscall entry, we redo the space registers to point to the kernel
  22. address space (preserving the user address space in %sr3), move to wide mode if
  23. required, save the user registers and branch into the kernel syscall entry
  24. point. For all the other functions, we execute at kernel privilege but don't
  25. flip address spaces. The basic upshot of this is that these code snippets are
  26. executed atomically (because the kernel can't be pre-empted) and they may
  27. perform architecturally forbidden (to PL3) operations (like setting control
  28. registers).
  29. */
  30. #include <asm/asm-offsets.h>
  31. #include <asm/unistd.h>
  32. #include <asm/errno.h>
  33. #include <asm/page.h>
  34. #include <asm/psw.h>
  35. #include <asm/thread_info.h>
  36. #include <asm/assembly.h>
  37. #include <asm/processor.h>
  38. #include <asm/cache.h>
  39. #include <linux/linkage.h>
  40. /* We fill the empty parts of the gateway page with
  41. * something that will kill the kernel or a
  42. * userspace application.
  43. */
  44. #define KILL_INSN break 0,0
  45. .level PA_ASM_LEVEL
  46. .text
  47. .import syscall_exit,code
  48. .import syscall_exit_rfi,code
  49. /* Linux gateway page is aliased to virtual page 0 in the kernel
  50. * address space. Since it is a gateway page it cannot be
  51. * dereferenced, so null pointers will still fault. We start
  52. * the actual entry point at 0x100. We put break instructions
  53. * at the beginning of the page to trap null indirect function
  54. * pointers.
  55. */
  56. .align PAGE_SIZE
  57. ENTRY(linux_gateway_page)
  58. /* ADDRESS 0x00 to 0xb0 = 176 bytes / 4 bytes per insn = 44 insns */
  59. .rept 44
  60. KILL_INSN
  61. .endr
  62. /* ADDRESS 0xb0 to 0xb8, lws uses two insns for entry */
  63. /* Light-weight-syscall entry must always be located at 0xb0 */
  64. /* WARNING: Keep this number updated with table size changes */
  65. #define __NR_lws_entries (3)
  66. lws_entry:
  67. gate lws_start, %r0 /* increase privilege */
  68. depi 3, 31, 2, %r31 /* Ensure we return into user mode. */
  69. /* Fill from 0xb8 to 0xe0 */
  70. .rept 10
  71. KILL_INSN
  72. .endr
  73. /* This function MUST be located at 0xe0 for glibc's threading
  74. mechanism to work. DO NOT MOVE THIS CODE EVER! */
  75. set_thread_pointer:
  76. gate .+8, %r0 /* increase privilege */
  77. depi 3, 31, 2, %r31 /* Ensure we return into user mode. */
  78. be 0(%sr7,%r31) /* return to user space */
  79. mtctl %r26, %cr27 /* move arg0 to the control register */
  80. /* Increase the chance of trapping if random jumps occur to this
  81. address, fill from 0xf0 to 0x100 */
  82. .rept 4
  83. KILL_INSN
  84. .endr
  85. /* This address must remain fixed at 0x100 for glibc's syscalls to work */
  86. .align LINUX_GATEWAY_ADDR
  87. linux_gateway_entry:
  88. gate .+8, %r0 /* become privileged */
  89. mtsp %r0,%sr4 /* get kernel space into sr4 */
  90. mtsp %r0,%sr5 /* get kernel space into sr5 */
  91. mtsp %r0,%sr6 /* get kernel space into sr6 */
  92. #ifdef CONFIG_64BIT
  93. /* Store W bit on entry to the syscall in case it's a wide userland
  94. * process. */
  95. ssm PSW_SM_W, %r1
  96. extrd,u %r1,PSW_W_BIT,1,%r1
  97. /* sp must be aligned on 4, so deposit the W bit setting into
  98. * the bottom of sp temporarily */
  99. or,ev %r1,%r30,%r30
  100. b,n 1f
  101. /* The top halves of argument registers must be cleared on syscall
  102. * entry from narrow executable.
  103. */
  104. depdi 0, 31, 32, %r26
  105. depdi 0, 31, 32, %r25
  106. depdi 0, 31, 32, %r24
  107. depdi 0, 31, 32, %r23
  108. depdi 0, 31, 32, %r22
  109. depdi 0, 31, 32, %r21
  110. 1:
  111. #endif
  112. /* We use a rsm/ssm pair to prevent sr3 from being clobbered
  113. * by external interrupts.
  114. */
  115. mfsp %sr7,%r1 /* save user sr7 */
  116. rsm PSW_SM_I, %r0 /* disable interrupts */
  117. mtsp %r1,%sr3 /* and store it in sr3 */
  118. mfctl %cr30,%r1
  119. xor %r1,%r30,%r30 /* ye olde xor trick */
  120. xor %r1,%r30,%r1
  121. xor %r1,%r30,%r30
  122. ldo THREAD_SZ_ALGN+FRAME_SIZE(%r30),%r30 /* set up kernel stack */
  123. /* N.B.: It is critical that we don't set sr7 to 0 until r30
  124. * contains a valid kernel stack pointer. It is also
  125. * critical that we don't start using the kernel stack
  126. * until after sr7 has been set to 0.
  127. */
  128. mtsp %r0,%sr7 /* get kernel space into sr7 */
  129. ssm PSW_SM_I, %r0 /* enable interrupts */
  130. STREGM %r1,FRAME_SIZE(%r30) /* save r1 (usp) here for now */
  131. mfctl %cr30,%r1 /* get task ptr in %r1 */
  132. LDREG TI_TASK(%r1),%r1
  133. /* Save some registers for sigcontext and potential task
  134. switch (see entry.S for the details of which ones are
  135. saved/restored). TASK_PT_PSW is zeroed so we can see whether
  136. a process is on a syscall or not. For an interrupt the real
  137. PSW value is stored. This is needed for gdb and sys_ptrace. */
  138. STREG %r0, TASK_PT_PSW(%r1)
  139. STREG %r2, TASK_PT_GR2(%r1) /* preserve rp */
  140. STREG %r19, TASK_PT_GR19(%r1)
  141. LDREGM -FRAME_SIZE(%r30), %r2 /* get users sp back */
  142. #ifdef CONFIG_64BIT
  143. extrd,u %r2,63,1,%r19 /* W hidden in bottom bit */
  144. #if 0
  145. xor %r19,%r2,%r2 /* clear bottom bit */
  146. depd,z %r19,1,1,%r19
  147. std %r19,TASK_PT_PSW(%r1)
  148. #endif
  149. #endif
  150. STREG %r2, TASK_PT_GR30(%r1) /* ... and save it */
  151. STREG %r20, TASK_PT_GR20(%r1) /* Syscall number */
  152. STREG %r21, TASK_PT_GR21(%r1)
  153. STREG %r22, TASK_PT_GR22(%r1)
  154. STREG %r23, TASK_PT_GR23(%r1) /* 4th argument */
  155. STREG %r24, TASK_PT_GR24(%r1) /* 3rd argument */
  156. STREG %r25, TASK_PT_GR25(%r1) /* 2nd argument */
  157. STREG %r26, TASK_PT_GR26(%r1) /* 1st argument */
  158. STREG %r27, TASK_PT_GR27(%r1) /* user dp */
  159. STREG %r28, TASK_PT_GR28(%r1) /* return value 0 */
  160. STREG %r0, TASK_PT_ORIG_R28(%r1) /* don't prohibit restarts */
  161. STREG %r29, TASK_PT_GR29(%r1) /* return value 1 */
  162. STREG %r31, TASK_PT_GR31(%r1) /* preserve syscall return ptr */
  163. ldo TASK_PT_FR0(%r1), %r27 /* save fpregs from the kernel */
  164. save_fp %r27 /* or potential task switch */
  165. mfctl %cr11, %r27 /* i.e. SAR */
  166. STREG %r27, TASK_PT_SAR(%r1)
  167. loadgp
  168. #ifdef CONFIG_64BIT
  169. ldo -16(%r30),%r29 /* Reference param save area */
  170. copy %r19,%r2 /* W bit back to r2 */
  171. #else
  172. /* no need to save these on stack in wide mode because the first 8
  173. * args are passed in registers */
  174. stw %r22, -52(%r30) /* 5th argument */
  175. stw %r21, -56(%r30) /* 6th argument */
  176. #endif
  177. /* Are we being ptraced? */
  178. mfctl %cr30, %r1
  179. LDREG TI_FLAGS(%r1),%r1
  180. ldi _TIF_SYSCALL_TRACE_MASK, %r19
  181. and,COND(=) %r1, %r19, %r0
  182. b,n .Ltracesys
  183. /* Note! We cannot use the syscall table that is mapped
  184. nearby since the gateway page is mapped execute-only. */
  185. #ifdef CONFIG_64BIT
  186. ldil L%sys_call_table, %r1
  187. or,= %r2,%r2,%r2
  188. addil L%(sys_call_table64-sys_call_table), %r1
  189. ldo R%sys_call_table(%r1), %r19
  190. or,= %r2,%r2,%r2
  191. ldo R%sys_call_table64(%r1), %r19
  192. #else
  193. load32 sys_call_table, %r19
  194. #endif
  195. comiclr,>> __NR_Linux_syscalls, %r20, %r0
  196. b,n .Lsyscall_nosys
  197. LDREGX %r20(%r19), %r19
  198. /* If this is a sys_rt_sigreturn call, and the signal was received
  199. * when not in_syscall, then we want to return via syscall_exit_rfi,
  200. * not syscall_exit. Signal no. in r20, in_syscall in r25 (see
  201. * trampoline code in signal.c).
  202. */
  203. ldi __NR_rt_sigreturn,%r2
  204. comb,= %r2,%r20,.Lrt_sigreturn
  205. .Lin_syscall:
  206. ldil L%syscall_exit,%r2
  207. be 0(%sr7,%r19)
  208. ldo R%syscall_exit(%r2),%r2
  209. .Lrt_sigreturn:
  210. comib,<> 0,%r25,.Lin_syscall
  211. ldil L%syscall_exit_rfi,%r2
  212. be 0(%sr7,%r19)
  213. ldo R%syscall_exit_rfi(%r2),%r2
  214. /* Note! Because we are not running where we were linked, any
  215. calls to functions external to this file must be indirect. To
  216. be safe, we apply the opposite rule to functions within this
  217. file, with local labels given to them to ensure correctness. */
  218. .Lsyscall_nosys:
  219. syscall_nosys:
  220. ldil L%syscall_exit,%r1
  221. be R%syscall_exit(%sr7,%r1)
  222. ldo -ENOSYS(%r0),%r28 /* set errno */
  223. /* Warning! This trace code is a virtual duplicate of the code above so be
  224. * sure to maintain both! */
  225. .Ltracesys:
  226. tracesys:
  227. /* Need to save more registers so the debugger can see where we
  228. * are. This saves only the lower 8 bits of PSW, so that the C
  229. * bit is still clear on syscalls, and the D bit is set if this
  230. * full register save path has been executed. We check the D
  231. * bit on syscall_return_rfi to determine which registers to
  232. * restore. An interrupt results in a full PSW saved with the
  233. * C bit set, a non-straced syscall entry results in C and D clear
  234. * in the saved PSW.
  235. */
  236. ldo -THREAD_SZ_ALGN-FRAME_SIZE(%r30),%r1 /* get task ptr */
  237. LDREG TI_TASK(%r1), %r1
  238. ssm 0,%r2
  239. STREG %r2,TASK_PT_PSW(%r1) /* Lower 8 bits only!! */
  240. mfsp %sr0,%r2
  241. STREG %r2,TASK_PT_SR0(%r1)
  242. mfsp %sr1,%r2
  243. STREG %r2,TASK_PT_SR1(%r1)
  244. mfsp %sr2,%r2
  245. STREG %r2,TASK_PT_SR2(%r1)
  246. mfsp %sr3,%r2
  247. STREG %r2,TASK_PT_SR3(%r1)
  248. STREG %r2,TASK_PT_SR4(%r1)
  249. STREG %r2,TASK_PT_SR5(%r1)
  250. STREG %r2,TASK_PT_SR6(%r1)
  251. STREG %r2,TASK_PT_SR7(%r1)
  252. STREG %r2,TASK_PT_IASQ0(%r1)
  253. STREG %r2,TASK_PT_IASQ1(%r1)
  254. LDREG TASK_PT_GR31(%r1),%r2
  255. STREG %r2,TASK_PT_IAOQ0(%r1)
  256. ldo 4(%r2),%r2
  257. STREG %r2,TASK_PT_IAOQ1(%r1)
  258. ldo TASK_REGS(%r1),%r2
  259. /* reg_save %r2 */
  260. STREG %r3,PT_GR3(%r2)
  261. STREG %r4,PT_GR4(%r2)
  262. STREG %r5,PT_GR5(%r2)
  263. STREG %r6,PT_GR6(%r2)
  264. STREG %r7,PT_GR7(%r2)
  265. STREG %r8,PT_GR8(%r2)
  266. STREG %r9,PT_GR9(%r2)
  267. STREG %r10,PT_GR10(%r2)
  268. STREG %r11,PT_GR11(%r2)
  269. STREG %r12,PT_GR12(%r2)
  270. STREG %r13,PT_GR13(%r2)
  271. STREG %r14,PT_GR14(%r2)
  272. STREG %r15,PT_GR15(%r2)
  273. STREG %r16,PT_GR16(%r2)
  274. STREG %r17,PT_GR17(%r2)
  275. STREG %r18,PT_GR18(%r2)
  276. /* Finished saving things for the debugger */
  277. copy %r2,%r26
  278. ldil L%do_syscall_trace_enter,%r1
  279. ldil L%tracesys_next,%r2
  280. be R%do_syscall_trace_enter(%sr7,%r1)
  281. ldo R%tracesys_next(%r2),%r2
  282. tracesys_next:
  283. /* do_syscall_trace_enter either returned the syscallno, or -1L,
  284. * so we skip restoring the PT_GR20 below, since we pulled it from
  285. * task->thread.regs.gr[20] above.
  286. */
  287. copy %ret0,%r20
  288. ldo -THREAD_SZ_ALGN-FRAME_SIZE(%r30),%r1 /* get task ptr */
  289. LDREG TI_TASK(%r1), %r1
  290. LDREG TASK_PT_GR28(%r1), %r28 /* Restore return value */
  291. LDREG TASK_PT_GR26(%r1), %r26 /* Restore the users args */
  292. LDREG TASK_PT_GR25(%r1), %r25
  293. LDREG TASK_PT_GR24(%r1), %r24
  294. LDREG TASK_PT_GR23(%r1), %r23
  295. LDREG TASK_PT_GR22(%r1), %r22
  296. LDREG TASK_PT_GR21(%r1), %r21
  297. #ifdef CONFIG_64BIT
  298. ldo -16(%r30),%r29 /* Reference param save area */
  299. #else
  300. stw %r22, -52(%r30) /* 5th argument */
  301. stw %r21, -56(%r30) /* 6th argument */
  302. #endif
  303. cmpib,COND(=),n -1,%r20,tracesys_exit /* seccomp may have returned -1 */
  304. comiclr,>> __NR_Linux_syscalls, %r20, %r0
  305. b,n .Ltracesys_nosys
  306. /* Note! We cannot use the syscall table that is mapped
  307. nearby since the gateway page is mapped execute-only. */
  308. #ifdef CONFIG_64BIT
  309. LDREG TASK_PT_GR30(%r1), %r19 /* get users sp back */
  310. extrd,u %r19,63,1,%r2 /* W hidden in bottom bit */
  311. ldil L%sys_call_table, %r1
  312. or,= %r2,%r2,%r2
  313. addil L%(sys_call_table64-sys_call_table), %r1
  314. ldo R%sys_call_table(%r1), %r19
  315. or,= %r2,%r2,%r2
  316. ldo R%sys_call_table64(%r1), %r19
  317. #else
  318. load32 sys_call_table, %r19
  319. #endif
  320. LDREGX %r20(%r19), %r19
  321. /* If this is a sys_rt_sigreturn call, and the signal was received
  322. * when not in_syscall, then we want to return via syscall_exit_rfi,
  323. * not syscall_exit. Signal no. in r20, in_syscall in r25 (see
  324. * trampoline code in signal.c).
  325. */
  326. ldi __NR_rt_sigreturn,%r2
  327. comb,= %r2,%r20,.Ltrace_rt_sigreturn
  328. .Ltrace_in_syscall:
  329. ldil L%tracesys_exit,%r2
  330. be 0(%sr7,%r19)
  331. ldo R%tracesys_exit(%r2),%r2
  332. .Ltracesys_nosys:
  333. ldo -ENOSYS(%r0),%r28 /* set errno */
  334. /* Do *not* call this function on the gateway page, because it
  335. makes a direct call to syscall_trace. */
  336. tracesys_exit:
  337. ldo -THREAD_SZ_ALGN-FRAME_SIZE(%r30),%r1 /* get task ptr */
  338. LDREG TI_TASK(%r1), %r1
  339. #ifdef CONFIG_64BIT
  340. ldo -16(%r30),%r29 /* Reference param save area */
  341. #endif
  342. ldo TASK_REGS(%r1),%r26
  343. BL do_syscall_trace_exit,%r2
  344. STREG %r28,TASK_PT_GR28(%r1) /* save return value now */
  345. ldo -THREAD_SZ_ALGN-FRAME_SIZE(%r30),%r1 /* get task ptr */
  346. LDREG TI_TASK(%r1), %r1
  347. LDREG TASK_PT_GR28(%r1), %r28 /* Restore return val. */
  348. ldil L%syscall_exit,%r1
  349. be,n R%syscall_exit(%sr7,%r1)
  350. .Ltrace_rt_sigreturn:
  351. comib,<> 0,%r25,.Ltrace_in_syscall
  352. ldil L%tracesys_sigexit,%r2
  353. be 0(%sr7,%r19)
  354. ldo R%tracesys_sigexit(%r2),%r2
  355. tracesys_sigexit:
  356. ldo -THREAD_SZ_ALGN-FRAME_SIZE(%r30),%r1 /* get task ptr */
  357. LDREG TI_TASK(%r1), %r1
  358. #ifdef CONFIG_64BIT
  359. ldo -16(%r30),%r29 /* Reference param save area */
  360. #endif
  361. BL do_syscall_trace_exit,%r2
  362. ldo TASK_REGS(%r1),%r26
  363. ldil L%syscall_exit_rfi,%r1
  364. be,n R%syscall_exit_rfi(%sr7,%r1)
  365. /*********************************************************
  366. 32/64-bit Light-Weight-Syscall ABI
  367. * - Indicates a hint for userspace inline asm
  368. implementations.
  369. Syscall number (caller-saves)
  370. - %r20
  371. * In asm clobber.
  372. Argument registers (caller-saves)
  373. - %r26, %r25, %r24, %r23, %r22
  374. * In asm input.
  375. Return registers (caller-saves)
  376. - %r28 (return), %r21 (errno)
  377. * In asm output.
  378. Caller-saves registers
  379. - %r1, %r27, %r29
  380. - %r2 (return pointer)
  381. - %r31 (ble link register)
  382. * In asm clobber.
  383. Callee-saves registers
  384. - %r3-%r18
  385. - %r30 (stack pointer)
  386. * Not in asm clobber.
  387. If userspace is 32-bit:
  388. Callee-saves registers
  389. - %r19 (32-bit PIC register)
  390. Differences from 32-bit calling convention:
  391. - Syscall number in %r20
  392. - Additional argument register %r22 (arg4)
  393. - Callee-saves %r19.
  394. If userspace is 64-bit:
  395. Callee-saves registers
  396. - %r27 (64-bit PIC register)
  397. Differences from 64-bit calling convention:
  398. - Syscall number in %r20
  399. - Additional argument register %r22 (arg4)
  400. - Callee-saves %r27.
  401. Error codes returned by entry path:
  402. ENOSYS - r20 was an invalid LWS number.
  403. *********************************************************/
  404. lws_start:
  405. #ifdef CONFIG_64BIT
  406. ssm PSW_SM_W, %r1
  407. extrd,u %r1,PSW_W_BIT,1,%r1
  408. /* sp must be aligned on 4, so deposit the W bit setting into
  409. * the bottom of sp temporarily */
  410. or,ev %r1,%r30,%r30
  411. /* Clip LWS number to a 32-bit value for 32-bit processes */
  412. depdi 0, 31, 32, %r20
  413. #endif
  414. /* Is the lws entry number valid? */
  415. comiclr,>> __NR_lws_entries, %r20, %r0
  416. b,n lws_exit_nosys
  417. /* Load table start */
  418. ldil L%lws_table, %r1
  419. ldo R%lws_table(%r1), %r28 /* Scratch use of r28 */
  420. LDREGX %r20(%sr2,r28), %r21 /* Scratch use of r21 */
  421. /* Jump to lws, lws table pointers already relocated */
  422. be,n 0(%sr2,%r21)
  423. lws_exit_nosys:
  424. ldo -ENOSYS(%r0),%r21 /* set errno */
  425. /* Fall through: Return to userspace */
  426. lws_exit:
  427. #ifdef CONFIG_64BIT
  428. /* decide whether to reset the wide mode bit
  429. *
  430. * For a syscall, the W bit is stored in the lowest bit
  431. * of sp. Extract it and reset W if it is zero */
  432. extrd,u,*<> %r30,63,1,%r1
  433. rsm PSW_SM_W, %r0
  434. /* now reset the lowest bit of sp if it was set */
  435. xor %r30,%r1,%r30
  436. #endif
  437. be,n 0(%sr7, %r31)
  438. /***************************************************
  439. Implementing 32bit CAS as an atomic operation:
  440. %r26 - Address to examine
  441. %r25 - Old value to check (old)
  442. %r24 - New value to set (new)
  443. %r28 - Return prev through this register.
  444. %r21 - Kernel error code
  445. If debugging is DISabled:
  446. %r21 has the following meanings:
  447. EAGAIN - CAS is busy, ldcw failed, try again.
  448. EFAULT - Read or write failed.
  449. If debugging is enabled:
  450. EDEADLOCK - CAS called recursively.
  451. EAGAIN && r28 == 1 - CAS is busy. Lock contended.
  452. EAGAIN && r28 == 2 - CAS is busy. ldcw failed.
  453. EFAULT - Read or write failed.
  454. Scratch: r20, r28, r1
  455. ****************************************************/
  456. /* Do not enable LWS debugging */
  457. #define ENABLE_LWS_DEBUG 0
  458. /* ELF64 Process entry path */
  459. lws_compare_and_swap64:
  460. #ifdef CONFIG_64BIT
  461. b,n lws_compare_and_swap
  462. #else
  463. /* If we are not a 64-bit kernel, then we don't
  464. * have 64-bit input registers, and calling
  465. * the 64-bit LWS CAS returns ENOSYS.
  466. */
  467. b,n lws_exit_nosys
  468. #endif
  469. /* ELF32 Process entry path */
  470. lws_compare_and_swap32:
  471. #ifdef CONFIG_64BIT
  472. /* Clip all the input registers */
  473. depdi 0, 31, 32, %r26
  474. depdi 0, 31, 32, %r25
  475. depdi 0, 31, 32, %r24
  476. #endif
  477. lws_compare_and_swap:
  478. /* Load start of lock table */
  479. ldil L%lws_lock_start, %r20
  480. ldo R%lws_lock_start(%r20), %r28
  481. /* Extract four bits from r26 and hash lock (Bits 4-7) */
  482. extru %r26, 27, 4, %r20
  483. /* Find lock to use, the hash is either one of 0 to
  484. 15, multiplied by 16 (keep it 16-byte aligned)
  485. and add to the lock table offset. */
  486. shlw %r20, 4, %r20
  487. add %r20, %r28, %r20
  488. # if ENABLE_LWS_DEBUG
  489. /*
  490. DEBUG, check for deadlock!
  491. If the thread register values are the same
  492. then we were the one that locked it last and
  493. this is a recurisve call that will deadlock.
  494. We *must* giveup this call and fail.
  495. */
  496. ldw 4(%sr2,%r20), %r28 /* Load thread register */
  497. /* WARNING: If cr27 cycles to the same value we have problems */
  498. mfctl %cr27, %r21 /* Get current thread register */
  499. cmpb,<>,n %r21, %r28, cas_lock /* Called recursive? */
  500. b lws_exit /* Return error! */
  501. ldo -EDEADLOCK(%r0), %r21
  502. cas_lock:
  503. cmpb,=,n %r0, %r28, cas_nocontend /* Is nobody using it? */
  504. ldo 1(%r0), %r28 /* 1st case */
  505. b lws_exit /* Contended... */
  506. ldo -EAGAIN(%r0), %r21 /* Spin in userspace */
  507. cas_nocontend:
  508. # endif
  509. /* ENABLE_LWS_DEBUG */
  510. rsm PSW_SM_I, %r0 /* Disable interrupts */
  511. /* COW breaks can cause contention on UP systems */
  512. LDCW 0(%sr2,%r20), %r28 /* Try to acquire the lock */
  513. cmpb,<>,n %r0, %r28, cas_action /* Did we get it? */
  514. cas_wouldblock:
  515. ldo 2(%r0), %r28 /* 2nd case */
  516. ssm PSW_SM_I, %r0
  517. b lws_exit /* Contended... */
  518. ldo -EAGAIN(%r0), %r21 /* Spin in userspace */
  519. /*
  520. prev = *addr;
  521. if ( prev == old )
  522. *addr = new;
  523. return prev;
  524. */
  525. /* NOTES:
  526. This all works becuse intr_do_signal
  527. and schedule both check the return iasq
  528. and see that we are on the kernel page
  529. so this process is never scheduled off
  530. or is ever sent any signal of any sort,
  531. thus it is wholly atomic from usrspaces
  532. perspective
  533. */
  534. cas_action:
  535. #if defined CONFIG_SMP && ENABLE_LWS_DEBUG
  536. /* DEBUG */
  537. mfctl %cr27, %r1
  538. stw %r1, 4(%sr2,%r20)
  539. #endif
  540. /* The load and store could fail */
  541. 1: ldw 0(%r26), %r28
  542. sub,<> %r28, %r25, %r0
  543. 2: stw %r24, 0(%r26)
  544. /* Free lock */
  545. sync
  546. stw %r20, 0(%sr2,%r20)
  547. #if ENABLE_LWS_DEBUG
  548. /* Clear thread register indicator */
  549. stw %r0, 4(%sr2,%r20)
  550. #endif
  551. /* Enable interrupts */
  552. ssm PSW_SM_I, %r0
  553. /* Return to userspace, set no error */
  554. b lws_exit
  555. copy %r0, %r21
  556. 3:
  557. /* Error occurred on load or store */
  558. /* Free lock */
  559. sync
  560. stw %r20, 0(%sr2,%r20)
  561. #if ENABLE_LWS_DEBUG
  562. stw %r0, 4(%sr2,%r20)
  563. #endif
  564. ssm PSW_SM_I, %r0
  565. b lws_exit
  566. ldo -EFAULT(%r0),%r21 /* set errno */
  567. nop
  568. nop
  569. nop
  570. nop
  571. /* Two exception table entries, one for the load,
  572. the other for the store. Either return -EFAULT.
  573. Each of the entries must be relocated. */
  574. ASM_EXCEPTIONTABLE_ENTRY(1b-linux_gateway_page, 3b-linux_gateway_page)
  575. ASM_EXCEPTIONTABLE_ENTRY(2b-linux_gateway_page, 3b-linux_gateway_page)
  576. /***************************************************
  577. New CAS implementation which uses pointers and variable size
  578. information. The value pointed by old and new MUST NOT change
  579. while performing CAS. The lock only protect the value at %r26.
  580. %r26 - Address to examine
  581. %r25 - Pointer to the value to check (old)
  582. %r24 - Pointer to the value to set (new)
  583. %r23 - Size of the variable (0/1/2/3 for 8/16/32/64 bit)
  584. %r28 - Return non-zero on failure
  585. %r21 - Kernel error code
  586. %r21 has the following meanings:
  587. EAGAIN - CAS is busy, ldcw failed, try again.
  588. EFAULT - Read or write failed.
  589. Scratch: r20, r22, r28, r29, r1, fr4 (32bit for 64bit CAS only)
  590. ****************************************************/
  591. /* ELF32 Process entry path */
  592. lws_compare_and_swap_2:
  593. #ifdef CONFIG_64BIT
  594. /* Clip the input registers. We don't need to clip %r23 as we
  595. only use it for word operations */
  596. depdi 0, 31, 32, %r26
  597. depdi 0, 31, 32, %r25
  598. depdi 0, 31, 32, %r24
  599. #endif
  600. /* Check the validity of the size pointer */
  601. subi,>>= 3, %r23, %r0
  602. b,n lws_exit_nosys
  603. /* Jump to the functions which will load the old and new values into
  604. registers depending on the their size */
  605. shlw %r23, 2, %r29
  606. blr %r29, %r0
  607. nop
  608. /* 8bit load */
  609. 4: ldb 0(%r25), %r25
  610. b cas2_lock_start
  611. 5: ldb 0(%r24), %r24
  612. nop
  613. nop
  614. nop
  615. nop
  616. nop
  617. /* 16bit load */
  618. 6: ldh 0(%r25), %r25
  619. b cas2_lock_start
  620. 7: ldh 0(%r24), %r24
  621. nop
  622. nop
  623. nop
  624. nop
  625. nop
  626. /* 32bit load */
  627. 8: ldw 0(%r25), %r25
  628. b cas2_lock_start
  629. 9: ldw 0(%r24), %r24
  630. nop
  631. nop
  632. nop
  633. nop
  634. nop
  635. /* 64bit load */
  636. #ifdef CONFIG_64BIT
  637. 10: ldd 0(%r25), %r25
  638. 11: ldd 0(%r24), %r24
  639. #else
  640. /* Load old value into r22/r23 - high/low */
  641. 10: ldw 0(%r25), %r22
  642. 11: ldw 4(%r25), %r23
  643. /* Load new value into fr4 for atomic store later */
  644. 12: flddx 0(%r24), %fr4
  645. #endif
  646. cas2_lock_start:
  647. /* Load start of lock table */
  648. ldil L%lws_lock_start, %r20
  649. ldo R%lws_lock_start(%r20), %r28
  650. /* Extract four bits from r26 and hash lock (Bits 4-7) */
  651. extru %r26, 27, 4, %r20
  652. /* Find lock to use, the hash is either one of 0 to
  653. 15, multiplied by 16 (keep it 16-byte aligned)
  654. and add to the lock table offset. */
  655. shlw %r20, 4, %r20
  656. add %r20, %r28, %r20
  657. rsm PSW_SM_I, %r0 /* Disable interrupts */
  658. /* COW breaks can cause contention on UP systems */
  659. LDCW 0(%sr2,%r20), %r28 /* Try to acquire the lock */
  660. cmpb,<>,n %r0, %r28, cas2_action /* Did we get it? */
  661. cas2_wouldblock:
  662. ldo 2(%r0), %r28 /* 2nd case */
  663. ssm PSW_SM_I, %r0
  664. b lws_exit /* Contended... */
  665. ldo -EAGAIN(%r0), %r21 /* Spin in userspace */
  666. /*
  667. prev = *addr;
  668. if ( prev == old )
  669. *addr = new;
  670. return prev;
  671. */
  672. /* NOTES:
  673. This all works becuse intr_do_signal
  674. and schedule both check the return iasq
  675. and see that we are on the kernel page
  676. so this process is never scheduled off
  677. or is ever sent any signal of any sort,
  678. thus it is wholly atomic from usrspaces
  679. perspective
  680. */
  681. cas2_action:
  682. /* Jump to the correct function */
  683. blr %r29, %r0
  684. /* Set %r28 as non-zero for now */
  685. ldo 1(%r0),%r28
  686. /* 8bit CAS */
  687. 13: ldb 0(%r26), %r29
  688. sub,= %r29, %r25, %r0
  689. b,n cas2_end
  690. 14: stb %r24, 0(%r26)
  691. b cas2_end
  692. copy %r0, %r28
  693. nop
  694. nop
  695. /* 16bit CAS */
  696. 15: ldh 0(%r26), %r29
  697. sub,= %r29, %r25, %r0
  698. b,n cas2_end
  699. 16: sth %r24, 0(%r26)
  700. b cas2_end
  701. copy %r0, %r28
  702. nop
  703. nop
  704. /* 32bit CAS */
  705. 17: ldw 0(%r26), %r29
  706. sub,= %r29, %r25, %r0
  707. b,n cas2_end
  708. 18: stw %r24, 0(%r26)
  709. b cas2_end
  710. copy %r0, %r28
  711. nop
  712. nop
  713. /* 64bit CAS */
  714. #ifdef CONFIG_64BIT
  715. 19: ldd 0(%r26), %r29
  716. sub,*= %r29, %r25, %r0
  717. b,n cas2_end
  718. 20: std %r24, 0(%r26)
  719. copy %r0, %r28
  720. #else
  721. /* Compare first word */
  722. 19: ldw 0(%r26), %r29
  723. sub,= %r29, %r22, %r0
  724. b,n cas2_end
  725. /* Compare second word */
  726. 20: ldw 4(%r26), %r29
  727. sub,= %r29, %r23, %r0
  728. b,n cas2_end
  729. /* Perform the store */
  730. 21: fstdx %fr4, 0(%r26)
  731. copy %r0, %r28
  732. #endif
  733. cas2_end:
  734. /* Free lock */
  735. sync
  736. stw %r20, 0(%sr2,%r20)
  737. /* Enable interrupts */
  738. ssm PSW_SM_I, %r0
  739. /* Return to userspace, set no error */
  740. b lws_exit
  741. copy %r0, %r21
  742. 22:
  743. /* Error occurred on load or store */
  744. /* Free lock */
  745. sync
  746. stw %r20, 0(%sr2,%r20)
  747. ssm PSW_SM_I, %r0
  748. ldo 1(%r0),%r28
  749. b lws_exit
  750. ldo -EFAULT(%r0),%r21 /* set errno */
  751. nop
  752. nop
  753. nop
  754. /* Exception table entries, for the load and store, return EFAULT.
  755. Each of the entries must be relocated. */
  756. ASM_EXCEPTIONTABLE_ENTRY(4b-linux_gateway_page, 22b-linux_gateway_page)
  757. ASM_EXCEPTIONTABLE_ENTRY(5b-linux_gateway_page, 22b-linux_gateway_page)
  758. ASM_EXCEPTIONTABLE_ENTRY(6b-linux_gateway_page, 22b-linux_gateway_page)
  759. ASM_EXCEPTIONTABLE_ENTRY(7b-linux_gateway_page, 22b-linux_gateway_page)
  760. ASM_EXCEPTIONTABLE_ENTRY(8b-linux_gateway_page, 22b-linux_gateway_page)
  761. ASM_EXCEPTIONTABLE_ENTRY(9b-linux_gateway_page, 22b-linux_gateway_page)
  762. ASM_EXCEPTIONTABLE_ENTRY(10b-linux_gateway_page, 22b-linux_gateway_page)
  763. ASM_EXCEPTIONTABLE_ENTRY(11b-linux_gateway_page, 22b-linux_gateway_page)
  764. ASM_EXCEPTIONTABLE_ENTRY(13b-linux_gateway_page, 22b-linux_gateway_page)
  765. ASM_EXCEPTIONTABLE_ENTRY(14b-linux_gateway_page, 22b-linux_gateway_page)
  766. ASM_EXCEPTIONTABLE_ENTRY(15b-linux_gateway_page, 22b-linux_gateway_page)
  767. ASM_EXCEPTIONTABLE_ENTRY(16b-linux_gateway_page, 22b-linux_gateway_page)
  768. ASM_EXCEPTIONTABLE_ENTRY(17b-linux_gateway_page, 22b-linux_gateway_page)
  769. ASM_EXCEPTIONTABLE_ENTRY(18b-linux_gateway_page, 22b-linux_gateway_page)
  770. ASM_EXCEPTIONTABLE_ENTRY(19b-linux_gateway_page, 22b-linux_gateway_page)
  771. ASM_EXCEPTIONTABLE_ENTRY(20b-linux_gateway_page, 22b-linux_gateway_page)
  772. #ifndef CONFIG_64BIT
  773. ASM_EXCEPTIONTABLE_ENTRY(12b-linux_gateway_page, 22b-linux_gateway_page)
  774. ASM_EXCEPTIONTABLE_ENTRY(21b-linux_gateway_page, 22b-linux_gateway_page)
  775. #endif
  776. /* Make sure nothing else is placed on this page */
  777. .align PAGE_SIZE
  778. END(linux_gateway_page)
  779. ENTRY(end_linux_gateway_page)
  780. /* Relocate symbols assuming linux_gateway_page is mapped
  781. to virtual address 0x0 */
  782. #define LWS_ENTRY(_name_) ASM_ULONG_INSN (lws_##_name_ - linux_gateway_page)
  783. .section .rodata,"a"
  784. .align 8
  785. /* Light-weight-syscall table */
  786. /* Start of lws table. */
  787. ENTRY(lws_table)
  788. LWS_ENTRY(compare_and_swap32) /* 0 - ELF32 Atomic 32bit CAS */
  789. LWS_ENTRY(compare_and_swap64) /* 1 - ELF64 Atomic 32bit CAS */
  790. LWS_ENTRY(compare_and_swap_2) /* 2 - ELF32 Atomic 64bit CAS */
  791. END(lws_table)
  792. /* End of lws table */
  793. .align 8
  794. ENTRY(sys_call_table)
  795. .export sys_call_table,data
  796. #include "syscall_table.S"
  797. END(sys_call_table)
  798. #ifdef CONFIG_64BIT
  799. .align 8
  800. ENTRY(sys_call_table64)
  801. #define SYSCALL_TABLE_64BIT
  802. #include "syscall_table.S"
  803. END(sys_call_table64)
  804. #endif
  805. /*
  806. All light-weight-syscall atomic operations
  807. will use this set of locks
  808. NOTE: The lws_lock_start symbol must be
  809. at least 16-byte aligned for safe use
  810. with ldcw.
  811. */
  812. .section .data
  813. .align L1_CACHE_BYTES
  814. ENTRY(lws_lock_start)
  815. /* lws locks */
  816. .rept 16
  817. /* Keep locks aligned at 16-bytes */
  818. .word 1
  819. .word 0
  820. .word 0
  821. .word 0
  822. .endr
  823. END(lws_lock_start)
  824. .previous
  825. .end