entry.S
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:49k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: entry.S,v 1.141 2001/12/05 23:56:32 davem Exp $
  2.  * arch/sparc64/kernel/entry.S:  Sparc64 trap low-level entry points.
  3.  *
  4.  * Copyright (C) 1995,1997 David S. Miller (davem@caip.rutgers.edu)
  5.  * Copyright (C) 1996 Eddie C. Dost        (ecd@skynet.be)
  6.  * Copyright (C) 1996 Miguel de Icaza      (miguel@nuclecu.unam.mx)
  7.  * Copyright (C) 1996,98,99 Jakub Jelinek  (jj@sunsite.mff.cuni.cz)
  8.  */
  9. #include <linux/config.h>
  10. #include <linux/errno.h>
  11. #include <asm/head.h>
  12. #include <asm/asi.h>
  13. #include <asm/smp.h>
  14. #include <asm/ptrace.h>
  15. #include <asm/page.h>
  16. #include <asm/signal.h>
  17. #include <asm/pgtable.h>
  18. #include <asm/processor.h>
  19. #include <asm/visasm.h>
  20. #include <asm/estate.h>
  21. /* #define SYSCALL_TRACING 1 */
  22. #define curptr      g6
  23. #define NR_SYSCALLS 256      /* Each OS is different... */
  24. .text
  25. .align 32
  26. .globl sparc64_vpte_patchme1
  27. .globl sparc64_vpte_patchme2
  28. /*
  29.  * On a second level vpte miss, check whether the original fault is to the OBP 
  30.  * range (note that this is only possible for instruction miss, data misses to
  31.  * obp range do not use vpte). If so, go back directly to the faulting address.
  32.  * This is because we want to read the tpc, otherwise we have no way of knowing
  33.  * the 8k aligned faulting address if we are using >8k kernel pagesize. This also
  34.  * ensures no vpte range addresses are dropped into tlb while obp is executing
  35.  * (see inherit_locked_prom_mappings() rant).
  36.  */
  37. sparc64_vpte_nucleus:
  38. mov 0xf, %g5
  39. sllx %g5, 28, %g5 ! Load 0xf0000000
  40. cmp %g4, %g5 ! Is addr >= LOW_OBP_ADDRESS?
  41. blu,pn %xcc, sparc64_vpte_patchme1
  42.  mov 0x1, %g5
  43. sllx %g5, 32, %g5 ! Load 0x100000000
  44. cmp %g4, %g5 ! Is addr < HI_OBP_ADDRESS?
  45. blu,pn %xcc, obp_iaddr_patch
  46.  nop
  47. sparc64_vpte_patchme1:
  48. sethi %hi(0), %g5 ! This has to be patched
  49. sparc64_vpte_patchme2:
  50. or %g5, %lo(0), %g5 ! This is patched too
  51. ba,pt %xcc, sparc64_kpte_continue ! Part of dtlb_backend
  52.  add %g1, %g1, %g1 ! Finish PMD offset adjustment
  53. vpte_noent:
  54. mov TLB_SFSR, %g1 ! Restore %g1 value
  55. stxa %g4, [%g1 + %g1] ASI_DMMU ! Restore previous TAG_ACCESS
  56. done ! Slick trick
  57. .globl obp_iaddr_patch
  58. .globl obp_daddr_patch
  59. obp_iaddr_patch:
  60. sethi %hi(0), %g5 ! This and following is patched
  61. or %g5, %lo(0), %g5 ! g5 now holds obp pmd base physaddr
  62. wrpr %g0, 1, %tl ! Behave as if we are at TL0
  63. rdpr %tpc, %g4 ! Find original faulting iaddr
  64. srlx %g4, 13, %g4 ! Throw out context bits
  65. sllx %g4, 13, %g4 ! g4 has vpn + ctx0 now
  66. mov TLB_SFSR, %g1 ! Restore %g1 value
  67. stxa %g4, [%g1 + %g1] ASI_IMMU ! Restore previous TAG_ACCESS
  68. srlx %g4, 23, %g6 ! Find pmd number
  69. and %g6, 0x7ff, %g6 ! Find pmd number
  70. sllx %g6, 2, %g6 ! Find pmd offset
  71. lduwa [%g5 + %g6] ASI_PHYS_USE_EC, %g5! Load pmd, ie pagetable physaddr
  72. brz,pn %g5, longpath ! Kill the PROM ? :-)
  73.  sllx %g5, 11, %g5 ! Shift into place
  74. srlx %g4, 13, %g6 ! find pte number in pagetable
  75. and %g6, 0x3ff, %g6 ! find pte number in pagetable
  76. sllx %g6, 3, %g6 ! find pte offset in pagetable
  77. ldxa [%g5 + %g6] ASI_PHYS_USE_EC, %g5! Load pte
  78. brgez,pn %g5, longpath ! Kill the PROM ? :-)
  79.  nop
  80. stxa %g5, [%g0] ASI_ITLB_DATA_IN ! put into tlb
  81. retry ! go back to original fault
  82. obp_daddr_patch:
  83. sethi %hi(0), %g5 ! This and following is patched
  84. or %g5, %lo(0), %g5 ! g5 now holds obp pmd base physaddr
  85. srlx %g4, 23, %g6 ! Find pmd number
  86. and %g6, 0x7ff, %g6 ! Find pmd number
  87. sllx %g6, 2, %g6 ! Find pmd offset
  88. lduwa [%g5 + %g6] ASI_PHYS_USE_EC, %g5! Load pmd, ie pagetable physaddr
  89. brz,pn %g5, longpath
  90.  sllx %g5, 11, %g5 ! Shift into place
  91. srlx %g4, 13, %g6 ! find pte number in pagetable
  92. and %g6, 0x3ff, %g6 ! find pte number in pagetable
  93. sllx %g6, 3, %g6 ! find pte offset in pagetable
  94. ldxa [%g5 + %g6] ASI_PHYS_USE_EC, %g5! Load pte
  95. brgez,pn %g5, longpath
  96.  nop
  97. stxa %g5, [%g0] ASI_DTLB_DATA_IN ! put into tlb
  98. retry
  99. /*
  100.  * On a first level data miss, check whether this is to the OBP range (note that
  101.  * such accesses can be made by prom, as well as by kernel using prom_getproperty
  102.  * on "address"), and if so, do not use vpte access ... rather, use information
  103.  * saved during inherit_prom_mappings() using 8k pagesize.
  104.  */
  105. kvmap:
  106. mov 0xf, %g5
  107. sllx %g5, 28, %g5 ! Load 0xf0000000
  108. cmp %g4, %g5 ! Is addr >= LOW_OBP_ADDRESS?
  109. blu,pn %xcc, vmalloc_addr
  110.  mov 0x1, %g5
  111. sllx %g5, 32, %g5 ! Load 0x100000000
  112. cmp %g4, %g5 ! Is addr < HI_OBP_ADDRESS?
  113. blu,pn %xcc, obp_daddr_patch
  114.  nop
  115. vmalloc_addr: ! vmalloc addr accessed
  116. ldxa [%g3 + %g6] ASI_N, %g5 ! Yep, load k-vpte
  117. brgez,pn %g5, longpath ! Valid, load into TLB
  118.  nop
  119. stxa %g5, [%g0] ASI_DTLB_DATA_IN ! Reload TLB
  120. retry
  121. /* This is trivial with the new code... */
  122. .globl do_fpdis
  123. do_fpdis:
  124. sethi %hi(TSTATE_PEF), %g4 ! IEU0
  125. rdpr %tstate, %g5
  126. andcc %g5, %g4, %g0
  127. be,pt %xcc, 1f
  128.  nop
  129. rd %fprs, %g5
  130. andcc %g5, FPRS_FEF, %g0
  131. be,pt %xcc, 1f
  132.  nop
  133. /* Legal state when DCR_IFPOE is set in Cheetah %dcr. */
  134. sethi %hi(109f), %g7
  135. ba,pt %xcc, etrap
  136. 109:  or %g7, %lo(109b), %g7
  137. add %g0, %g0, %g0
  138. ba,a,pt %xcc, rtrap_clr_l6
  139. 1: ldub [%g6 + AOFF_task_thread + AOFF_thread_fpsaved], %g5 ! Load Group
  140. wr %g0, FPRS_FEF, %fprs ! LSU Group+4bubbles
  141. andcc %g5, FPRS_FEF, %g0 ! IEU1 Group
  142. be,a,pt %icc, 1f ! CTI
  143.  clr %g7 ! IEU0
  144. ldx [%g6 + AOFF_task_thread + AOFF_thread_gsr], %g7 ! Load Group
  145. 1: andcc %g5, FPRS_DL, %g0 ! IEU1
  146. bne,pn %icc, 2f ! CTI
  147.  fzero %f0 ! FPA
  148. andcc %g5, FPRS_DU, %g0 ! IEU1  Group
  149. bne,pn %icc, 1f ! CTI
  150.  fzero %f2 ! FPA
  151. faddd %f0, %f2, %f4
  152. fmuld %f0, %f2, %f6
  153. faddd %f0, %f2, %f8
  154. fmuld %f0, %f2, %f10
  155. faddd %f0, %f2, %f12
  156. fmuld %f0, %f2, %f14
  157. faddd %f0, %f2, %f16
  158. fmuld %f0, %f2, %f18
  159. faddd %f0, %f2, %f20
  160. fmuld %f0, %f2, %f22
  161. faddd %f0, %f2, %f24
  162. fmuld %f0, %f2, %f26
  163. faddd %f0, %f2, %f28
  164. fmuld %f0, %f2, %f30
  165. faddd %f0, %f2, %f32
  166. fmuld %f0, %f2, %f34
  167. faddd %f0, %f2, %f36
  168. fmuld %f0, %f2, %f38
  169. faddd %f0, %f2, %f40
  170. fmuld %f0, %f2, %f42
  171. faddd %f0, %f2, %f44
  172. fmuld %f0, %f2, %f46
  173. faddd %f0, %f2, %f48
  174. fmuld %f0, %f2, %f50
  175. faddd %f0, %f2, %f52
  176. fmuld %f0, %f2, %f54
  177. faddd %f0, %f2, %f56
  178. fmuld %f0, %f2, %f58
  179. b,pt %xcc, fpdis_exit2
  180.  faddd %f0, %f2, %f60
  181. 1: mov SECONDARY_CONTEXT, %g3
  182. add %g6, AOFF_task_fpregs + 0x80, %g1
  183. faddd %f0, %f2, %f4
  184. fmuld %f0, %f2, %f6
  185. ldxa [%g3] ASI_DMMU, %g5
  186. add %g6, AOFF_task_fpregs + 0xc0, %g2
  187. stxa %g0, [%g3] ASI_DMMU
  188. membar #Sync
  189. faddd %f0, %f2, %f8
  190. fmuld %f0, %f2, %f10
  191. ldda [%g1] ASI_BLK_S, %f32 ! grrr, where is ASI_BLK_NUCLEUS 8-(
  192. ldda [%g2] ASI_BLK_S, %f48
  193. faddd %f0, %f2, %f12
  194. fmuld %f0, %f2, %f14
  195. faddd %f0, %f2, %f16
  196. fmuld %f0, %f2, %f18
  197. faddd %f0, %f2, %f20
  198. fmuld %f0, %f2, %f22
  199. faddd %f0, %f2, %f24
  200. fmuld %f0, %f2, %f26
  201. faddd %f0, %f2, %f28
  202. fmuld %f0, %f2, %f30
  203. b,pt %xcc, fpdis_exit
  204.  membar #Sync
  205. 2: andcc %g5, FPRS_DU, %g0
  206. bne,pt %icc, 3f
  207.  fzero %f32
  208. mov SECONDARY_CONTEXT, %g3
  209. fzero %f34
  210. ldxa [%g3] ASI_DMMU, %g5
  211. add %g6, AOFF_task_fpregs, %g1
  212. stxa %g0, [%g3] ASI_DMMU
  213. membar #Sync
  214. add %g6, AOFF_task_fpregs + 0x40, %g2
  215. faddd %f32, %f34, %f36
  216. fmuld %f32, %f34, %f38
  217. ldda [%g1] ASI_BLK_S, %f0 ! grrr, where is ASI_BLK_NUCLEUS 8-(
  218. ldda [%g2] ASI_BLK_S, %f16
  219. faddd %f32, %f34, %f40
  220. fmuld %f32, %f34, %f42
  221. faddd %f32, %f34, %f44
  222. fmuld %f32, %f34, %f46
  223. faddd %f32, %f34, %f48
  224. fmuld %f32, %f34, %f50
  225. faddd %f32, %f34, %f52
  226. fmuld %f32, %f34, %f54
  227. faddd %f32, %f34, %f56
  228. fmuld %f32, %f34, %f58
  229. faddd %f32, %f34, %f60
  230. fmuld %f32, %f34, %f62
  231. ba,pt %xcc, fpdis_exit
  232.  membar #Sync
  233. 3: mov SECONDARY_CONTEXT, %g3
  234. add %g6, AOFF_task_fpregs, %g1
  235. ldxa [%g3] ASI_DMMU, %g5
  236. mov 0x40, %g2
  237. stxa %g0, [%g3] ASI_DMMU
  238. membar #Sync
  239. ldda [%g1] ASI_BLK_S, %f0 ! grrr, where is ASI_BLK_NUCLEUS 8-(
  240. ldda [%g1 + %g2] ASI_BLK_S, %f16
  241. add %g1, 0x80, %g1
  242. ldda [%g1] ASI_BLK_S, %f32
  243. ldda [%g1 + %g2] ASI_BLK_S, %f48
  244. membar #Sync
  245. fpdis_exit:
  246. stxa %g5, [%g3] ASI_DMMU
  247. membar #Sync
  248. fpdis_exit2:
  249. wr %g7, 0, %gsr
  250. ldx [%g6 + AOFF_task_thread + AOFF_thread_xfsr], %fsr
  251. rdpr %tstate, %g3
  252. or %g3, %g4, %g3 ! anal...
  253. wrpr %g3, %tstate
  254. wr %g0, FPRS_FEF, %fprs ! clean DU/DL bits
  255. retry
  256. .align 32
  257. fp_other_bounce:
  258. call do_fpother
  259.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  260. ba,pt %xcc, rtrap
  261.  clr %l6
  262. .globl do_fpother_check_fitos
  263. .align 32
  264. do_fpother_check_fitos:
  265. sethi %hi(fp_other_bounce - 4), %g7
  266. or %g7, %lo(fp_other_bounce - 4), %g7
  267. /* NOTE: Need to preserve %g7 until we fully commit
  268.  *       to the fitos fixup.
  269.  */
  270. stx %fsr, [%g6 + AOFF_task_thread + AOFF_thread_xfsr]
  271. rdpr %tstate, %g3
  272. andcc %g3, TSTATE_PRIV, %g0
  273. bne,pn %xcc, do_fptrap_after_fsr
  274.  nop
  275. ldx [%g6 + AOFF_task_thread + AOFF_thread_xfsr], %g3
  276. srlx %g3, 14, %g1
  277. and %g1, 7, %g1
  278. cmp %g1, 2 ! Unfinished FP-OP
  279. bne,pn %xcc, do_fptrap_after_fsr
  280.  sethi %hi(1 << 23), %g1 ! Inexact
  281. andcc %g3, %g1, %g0
  282. bne,pn %xcc, do_fptrap_after_fsr
  283.  rdpr %tpc, %g1
  284. lduwa [%g1] ASI_AIUP, %g3 ! This cannot ever fail
  285. #define FITOS_MASK 0xc1f83fe0
  286. #define FITOS_COMPARE 0x81a01880
  287. sethi %hi(FITOS_MASK), %g1
  288. or %g1, %lo(FITOS_MASK), %g1
  289. and %g3, %g1, %g1
  290. sethi %hi(FITOS_COMPARE), %g2
  291. or %g2, %lo(FITOS_COMPARE), %g2
  292. cmp %g1, %g2
  293. bne,pn %xcc, do_fptrap_after_fsr
  294.  nop
  295. std %f62, [%g6 + AOFF_task_fpregs + (62 * 4)]
  296. sethi %hi(fitos_table_1), %g1
  297. and %g3, 0x1f, %g2
  298. or %g1, %lo(fitos_table_1),  %g1
  299. sllx %g2, 2, %g2
  300. jmpl %g1 + %g2, %g0
  301.  ba,pt %xcc, fitos_emul_continue
  302. fitos_table_1:
  303. fitod %f0, %f62
  304. fitod %f1, %f62
  305. fitod %f2, %f62
  306. fitod %f3, %f62
  307. fitod %f4, %f62
  308. fitod %f5, %f62
  309. fitod %f6, %f62
  310. fitod %f7, %f62
  311. fitod %f8, %f62
  312. fitod %f9, %f62
  313. fitod %f10, %f62
  314. fitod %f11, %f62
  315. fitod %f12, %f62
  316. fitod %f13, %f62
  317. fitod %f14, %f62
  318. fitod %f15, %f62
  319. fitod %f16, %f62
  320. fitod %f17, %f62
  321. fitod %f18, %f62
  322. fitod %f19, %f62
  323. fitod %f20, %f62
  324. fitod %f21, %f62
  325. fitod %f22, %f62
  326. fitod %f23, %f62
  327. fitod %f24, %f62
  328. fitod %f25, %f62
  329. fitod %f26, %f62
  330. fitod %f27, %f62
  331. fitod %f28, %f62
  332. fitod %f29, %f62
  333. fitod %f30, %f62
  334. fitod %f31, %f62
  335. fitos_emul_continue:
  336. sethi %hi(fitos_table_2), %g1
  337. srl %g3, 25, %g2
  338. or %g1, %lo(fitos_table_2), %g1
  339. and %g2, 0x1f, %g2
  340. sllx %g2, 2, %g2
  341. jmpl %g1 + %g2, %g0
  342.  ba,pt %xcc, fitos_emul_fini
  343. fitos_table_2:
  344. fdtos %f62, %f0
  345. fdtos %f62, %f1
  346. fdtos %f62, %f2
  347. fdtos %f62, %f3
  348. fdtos %f62, %f4
  349. fdtos %f62, %f5
  350. fdtos %f62, %f6
  351. fdtos %f62, %f7
  352. fdtos %f62, %f8
  353. fdtos %f62, %f9
  354. fdtos %f62, %f10
  355. fdtos %f62, %f11
  356. fdtos %f62, %f12
  357. fdtos %f62, %f13
  358. fdtos %f62, %f14
  359. fdtos %f62, %f15
  360. fdtos %f62, %f16
  361. fdtos %f62, %f17
  362. fdtos %f62, %f18
  363. fdtos %f62, %f19
  364. fdtos %f62, %f20
  365. fdtos %f62, %f21
  366. fdtos %f62, %f22
  367. fdtos %f62, %f23
  368. fdtos %f62, %f24
  369. fdtos %f62, %f25
  370. fdtos %f62, %f26
  371. fdtos %f62, %f27
  372. fdtos %f62, %f28
  373. fdtos %f62, %f29
  374. fdtos %f62, %f30
  375. fdtos %f62, %f31
  376. fitos_emul_fini:
  377. ldd [%g6 + AOFF_task_fpregs + (62 * 4)], %f62
  378. done
  379. .globl do_fptrap
  380. .align 32
  381. do_fptrap:
  382. stx %fsr, [%g6 + AOFF_task_thread + AOFF_thread_xfsr]
  383. do_fptrap_after_fsr:
  384. ldub [%g6 + AOFF_task_thread + AOFF_thread_fpsaved], %g3
  385. rd %fprs, %g1
  386. or %g3, %g1, %g3
  387. stb %g3, [%g6 + AOFF_task_thread + AOFF_thread_fpsaved]
  388. rd %gsr, %g3
  389. stx %g3, [%g6 + AOFF_task_thread + AOFF_thread_gsr]
  390. mov SECONDARY_CONTEXT, %g3
  391. add %g6, AOFF_task_fpregs, %g2
  392. ldxa [%g3] ASI_DMMU, %g5
  393. stxa %g0, [%g3] ASI_DMMU
  394. membar #Sync
  395. andcc %g1, FPRS_DL, %g0
  396. be,pn %icc, 4f
  397.  mov 0x40, %g3
  398. stda %f0, [%g2] ASI_BLK_S
  399. stda %f16, [%g2 + %g3] ASI_BLK_S
  400. andcc %g1, FPRS_DU, %g0
  401. be,pn %icc, 5f
  402. 4:       add %g2, 128, %g2
  403. stda %f32, [%g2] ASI_BLK_S
  404. stda %f48, [%g2 + %g3] ASI_BLK_S
  405. 5: mov SECONDARY_CONTEXT, %g1
  406. membar #Sync
  407. stxa %g5, [%g1] ASI_DMMU
  408. membar #Sync
  409. ba,pt %xcc, etrap
  410.  wr %g0, 0, %fprs
  411. /* The registers for cross calls will be:
  412.  *
  413.  * DATA 0: [low 32-bits]  Address of function to call, jmp to this
  414.  *         [high 32-bits] MMU Context Argument 0, place in %g5
  415.  * DATA 1: Address Argument 1, place in %g6
  416.  * DATA 2: Address Argument 2, place in %g7
  417.  *
  418.  * With this method we can do most of the cross-call tlb/cache
  419.  * flushing very quickly.
  420.  *
  421.  * Current CPU's IRQ worklist table is locked into %g1,
  422.  * don't touch.
  423.  */
  424. .text
  425. .align 32
  426. .globl do_ivec
  427. do_ivec:
  428. mov 0x40, %g3
  429. ldxa [%g3 + %g0] ASI_INTR_R, %g3
  430. sethi %hi(KERNBASE), %g4
  431. cmp %g3, %g4
  432. bgeu,pn %xcc, do_ivec_xcall
  433.  srlx %g3, 32, %g5
  434. stxa %g0, [%g0] ASI_INTR_RECEIVE
  435. membar #Sync
  436. sethi %hi(ivector_table), %g2
  437. sllx %g3, 5, %g3
  438. or %g2, %lo(ivector_table), %g2
  439. add %g2, %g3, %g3
  440. ldx [%g3 + 0x08], %g2 /* irq_info */
  441. ldub [%g3 + 0x04], %g4 /* pil */
  442. brz,pn %g2, do_ivec_spurious
  443.  mov 1, %g2
  444. sllx %g2, %g4, %g2
  445. sllx %g4, 2, %g4
  446. lduw [%g6 + %g4], %g5 /* g5 = irq_work(cpu, pil) */
  447. stw %g5, [%g3 + 0x00] /* bucket->irq_chain = g5 */
  448. stw %g3, [%g6 + %g4] /* irq_work(cpu, pil) = bucket */
  449. wr %g2, 0x0, %set_softint
  450. retry
  451. do_ivec_xcall:
  452. mov 0x50, %g1
  453. ldxa [%g1 + %g0] ASI_INTR_R, %g1
  454. srl %g3, 0, %g3
  455. mov 0x60, %g7
  456. ldxa [%g7 + %g0] ASI_INTR_R, %g7
  457. stxa %g0, [%g0] ASI_INTR_RECEIVE
  458. membar #Sync
  459. ba,pt %xcc, 1f
  460.  nop
  461. .align 32
  462. 1: jmpl %g3, %g0
  463.  nop
  464. do_ivec_spurious:
  465. stw %g3, [%g6 + 0x00] /* irq_work(cpu, 0) = bucket */
  466. rdpr %pstate, %g5
  467. wrpr %g5, PSTATE_IG | PSTATE_AG, %pstate
  468. sethi %hi(109f), %g7
  469. ba,pt %xcc, etrap
  470. 109:  or %g7, %lo(109b), %g7
  471. call catch_disabled_ivec
  472.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  473. ba,pt %xcc, rtrap
  474.  clr %l6
  475. .globl save_alternate_globals
  476. save_alternate_globals: /* %o0 = save_area */
  477. rdpr %pstate, %o5
  478. andn %o5, PSTATE_IE, %o1
  479. wrpr %o1, PSTATE_AG, %pstate
  480. stx %g0, [%o0 + 0x00]
  481. stx %g1, [%o0 + 0x08]
  482. stx %g2, [%o0 + 0x10]
  483. stx %g3, [%o0 + 0x18]
  484. stx %g4, [%o0 + 0x20]
  485. stx %g5, [%o0 + 0x28]
  486. stx %g6, [%o0 + 0x30]
  487. stx %g7, [%o0 + 0x38]
  488. wrpr %o1, PSTATE_IG, %pstate
  489. stx %g0, [%o0 + 0x40]
  490. stx %g1, [%o0 + 0x48]
  491. stx %g2, [%o0 + 0x50]
  492. stx %g3, [%o0 + 0x58]
  493. stx %g4, [%o0 + 0x60]
  494. stx %g5, [%o0 + 0x68]
  495. stx %g6, [%o0 + 0x70]
  496. stx %g7, [%o0 + 0x78]
  497. wrpr %o1, PSTATE_MG, %pstate
  498. stx %g0, [%o0 + 0x80]
  499. stx %g1, [%o0 + 0x88]
  500. stx %g2, [%o0 + 0x90]
  501. stx %g3, [%o0 + 0x98]
  502. stx %g4, [%o0 + 0xa0]
  503. stx %g5, [%o0 + 0xa8]
  504. stx %g6, [%o0 + 0xb0]
  505. stx %g7, [%o0 + 0xb8]
  506. wrpr %o5, 0x0, %pstate
  507. retl
  508.  nop
  509. .globl restore_alternate_globals
  510. restore_alternate_globals: /* %o0 = save_area */
  511. rdpr %pstate, %o5
  512. andn %o5, PSTATE_IE, %o1
  513. wrpr %o1, PSTATE_AG, %pstate
  514. ldx [%o0 + 0x00], %g0
  515. ldx [%o0 + 0x08], %g1
  516. ldx [%o0 + 0x10], %g2
  517. ldx [%o0 + 0x18], %g3
  518. ldx [%o0 + 0x20], %g4
  519. ldx [%o0 + 0x28], %g5
  520. ldx [%o0 + 0x30], %g6
  521. ldx [%o0 + 0x38], %g7
  522. wrpr %o1, PSTATE_IG, %pstate
  523. ldx [%o0 + 0x40], %g0
  524. ldx [%o0 + 0x48], %g1
  525. ldx [%o0 + 0x50], %g2
  526. ldx [%o0 + 0x58], %g3
  527. ldx [%o0 + 0x60], %g4
  528. ldx [%o0 + 0x68], %g5
  529. ldx [%o0 + 0x70], %g6
  530. ldx [%o0 + 0x78], %g7
  531. wrpr %o1, PSTATE_MG, %pstate
  532. ldx [%o0 + 0x80], %g0
  533. ldx [%o0 + 0x88], %g1
  534. ldx [%o0 + 0x90], %g2
  535. ldx [%o0 + 0x98], %g3
  536. ldx [%o0 + 0xa0], %g4
  537. ldx [%o0 + 0xa8], %g5
  538. ldx [%o0 + 0xb0], %g6
  539. ldx [%o0 + 0xb8], %g7
  540. wrpr %o5, 0x0, %pstate
  541. retl
  542.  nop
  543. .globl getcc, setcc
  544. getcc:
  545. ldx [%o0 + PT_V9_TSTATE], %o1
  546. srlx %o1, 32, %o1
  547. and %o1, 0xf, %o1
  548. retl
  549.  stx %o1, [%o0 + PT_V9_G1]
  550. setcc:
  551. ldx [%o0 + PT_V9_TSTATE], %o1
  552. ldx [%o0 + PT_V9_G1], %o2
  553. or %g0, %ulo(TSTATE_ICC), %o3
  554. sllx %o3, 32, %o3
  555. andn %o1, %o3, %o1
  556. sllx %o2, 32, %o2
  557. and %o2, %o3, %o2
  558. or %o1, %o2, %o1
  559. retl
  560.  stx %o1, [%o0 + PT_V9_TSTATE]
  561. .globl utrap, utrap_ill
  562. utrap: brz,pn %g1, etrap
  563.  nop
  564. save %sp, -128, %sp
  565. rdpr %tstate, %l6
  566. rdpr %cwp, %l7
  567. andn %l6, TSTATE_CWP, %l6
  568. wrpr %l6, %l7, %tstate
  569. rdpr %tpc, %l6
  570. rdpr %tnpc, %l7
  571. wrpr %g1, 0, %tnpc
  572. done
  573. utrap_ill:
  574.         call bad_trap
  575.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  576. ba,pt %xcc, rtrap
  577.  clr %l6
  578. #ifdef CONFIG_BLK_DEV_FD
  579. .globl floppy_hardint
  580. floppy_hardint:
  581. wr %g0, (1 << 11), %clear_softint
  582. sethi %hi(doing_pdma), %g1
  583. ld [%g1 + %lo(doing_pdma)], %g2
  584. brz,pn %g2, floppy_dosoftint
  585.  sethi %hi(fdc_status), %g3
  586. ldx [%g3 + %lo(fdc_status)], %g3
  587. sethi %hi(pdma_vaddr), %g5
  588. ldx [%g5 + %lo(pdma_vaddr)], %g4
  589. sethi %hi(pdma_size), %g5
  590. ldx [%g5 + %lo(pdma_size)], %g5
  591. next_byte:
  592. lduba [%g3] ASI_PHYS_BYPASS_EC_E, %g7
  593. andcc %g7, 0x80, %g0
  594. be,pn %icc, floppy_fifo_emptied
  595.  andcc %g7, 0x20, %g0
  596. be,pn %icc, floppy_overrun
  597.  andcc %g7, 0x40, %g0
  598. be,pn %icc, floppy_write
  599.  sub %g5, 1, %g5
  600. inc %g3
  601. lduba [%g3] ASI_PHYS_BYPASS_EC_E, %g7
  602. dec %g3
  603. orcc %g0, %g5, %g0
  604. stb %g7, [%g4]
  605. bne,pn %xcc, next_byte
  606.  add %g4, 1, %g4
  607. b,pt %xcc, floppy_tdone
  608.  nop
  609. floppy_write:
  610. ldub [%g4], %g7
  611. orcc %g0, %g5, %g0
  612. inc %g3
  613. stba %g7, [%g3] ASI_PHYS_BYPASS_EC_E
  614. dec %g3
  615. bne,pn %xcc, next_byte
  616.  add %g4, 1, %g4
  617. floppy_tdone:
  618. sethi %hi(pdma_vaddr), %g1
  619. stx %g4, [%g1 + %lo(pdma_vaddr)]
  620. sethi %hi(pdma_size), %g1
  621. stx %g5, [%g1 + %lo(pdma_size)]
  622. sethi %hi(auxio_register), %g1
  623. ldx [%g1 + %lo(auxio_register)], %g7
  624. lduba [%g7] ASI_PHYS_BYPASS_EC_E, %g5
  625. or %g5, 0xc2, %g5
  626. stba %g5, [%g7] ASI_PHYS_BYPASS_EC_E
  627. andn %g5, 0x02, %g5
  628. nop; nop;  nop; nop;  nop; nop;
  629. nop; nop;  nop; nop;  nop; nop;
  630. stba %g5, [%g7] ASI_PHYS_BYPASS_EC_E
  631. sethi %hi(doing_pdma), %g1
  632. b,pt %xcc, floppy_dosoftint
  633.  st %g0, [%g1 + %lo(doing_pdma)]
  634. floppy_fifo_emptied:
  635. sethi %hi(pdma_vaddr), %g1
  636. stx %g4, [%g1 + %lo(pdma_vaddr)]
  637. sethi %hi(pdma_size), %g1
  638. stx %g5, [%g1 + %lo(pdma_size)]
  639. sethi %hi(irq_action), %g1
  640. or %g1, %lo(irq_action), %g1
  641. ldx [%g1 + (11 << 3)], %g3 ! irqaction[floppy_irq]
  642. ldx [%g3 + 0x08], %g4 ! action->flags>>48==ino
  643. sethi %hi(ivector_table), %g3
  644. srlx %g4, 48, %g4
  645. or %g3, %lo(ivector_table), %g3
  646. sllx %g4, 5, %g4
  647. ldx [%g3 + %g4], %g4 ! &ivector_table[ino]
  648. ldx [%g4 + 0x10], %g4 ! bucket->iclr
  649. stwa %g0, [%g4] ASI_PHYS_BYPASS_EC_E ! ICLR_IDLE
  650. membar #Sync ! probably not needed...
  651. retry
  652. floppy_overrun:
  653. sethi %hi(pdma_vaddr), %g1
  654. stx %g4, [%g1 + %lo(pdma_vaddr)]
  655. sethi %hi(pdma_size), %g1
  656. stx %g5, [%g1 + %lo(pdma_size)]
  657. sethi %hi(doing_pdma), %g1
  658. st %g0, [%g1 + %lo(doing_pdma)]
  659. floppy_dosoftint:
  660. rdpr %pil, %g2
  661. wrpr %g0, 15, %pil
  662. sethi %hi(109f), %g7
  663. b,pt %xcc, etrap_irq
  664. 109:  or %g7, %lo(109b), %g7
  665. mov 11, %o0
  666. mov 0, %o1
  667. call sparc_floppy_irq
  668.  add %sp, STACK_BIAS + REGWIN_SZ, %o2
  669. b,pt %xcc, rtrap
  670.  clr %l6
  671. #endif /* CONFIG_BLK_DEV_FD */
  672. /* XXX Here is stuff we still need to write... -DaveM XXX */
  673. .globl netbsd_syscall
  674. netbsd_syscall:
  675. retl
  676.  nop
  677. /* These next few routines must be sure to clear the
  678.  * SFSR FaultValid bit so that the fast tlb data protection
  679.  * handler does not flush the wrong context and lock up the
  680.  * box.
  681.  */
  682. .globl __do_data_access_exception
  683. .globl __do_data_access_exception_tl1
  684. __do_data_access_exception_tl1:
  685. rdpr %pstate, %g4
  686. wrpr %g4, PSTATE_MG|PSTATE_AG, %pstate
  687. mov TLB_SFSR, %g3
  688. mov DMMU_SFAR, %g5
  689. ldxa [%g3] ASI_DMMU, %g4 ! Get SFSR
  690. ldxa [%g5] ASI_DMMU, %g5 ! Get SFAR
  691. stxa %g0, [%g3] ASI_DMMU ! Clear SFSR.FaultValid bit
  692. membar #Sync
  693. ba,pt %xcc, winfix_dax
  694.  rdpr %tpc, %g3
  695. __do_data_access_exception:
  696. rdpr %pstate, %g4
  697. wrpr %g4, PSTATE_MG|PSTATE_AG, %pstate
  698. mov TLB_SFSR, %g3
  699. mov DMMU_SFAR, %g5
  700. ldxa [%g3] ASI_DMMU, %g4 ! Get SFSR
  701. ldxa [%g5] ASI_DMMU, %g5 ! Get SFAR
  702. stxa %g0, [%g3] ASI_DMMU ! Clear SFSR.FaultValid bit
  703. membar #Sync
  704. sethi %hi(109f), %g7
  705. ba,pt %xcc, etrap
  706. 109:  or %g7, %lo(109b), %g7
  707. mov %l4, %o1
  708. mov %l5, %o2
  709. call data_access_exception
  710.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  711. ba,pt %xcc, rtrap
  712.  clr %l6
  713. .globl __do_instruction_access_exception
  714. .globl __do_instruction_access_exception_tl1
  715. __do_instruction_access_exception_tl1:
  716. rdpr %pstate, %g4
  717. wrpr %g4, PSTATE_MG|PSTATE_AG, %pstate
  718. mov TLB_SFSR, %g3
  719. mov DMMU_SFAR, %g5
  720. ldxa [%g3] ASI_DMMU, %g4 ! Get SFSR
  721. ldxa [%g5] ASI_DMMU, %g5 ! Get SFAR
  722. stxa %g0, [%g3] ASI_IMMU ! Clear FaultValid bit
  723. membar #Sync
  724. sethi %hi(109f), %g7
  725. ba,pt %xcc, etraptl1
  726. 109:  or %g7, %lo(109b), %g7
  727. mov %l4, %o1
  728. mov %l5, %o2
  729. call instruction_access_exception_tl1
  730.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  731. ba,pt %xcc, rtrap
  732.  clr %l6
  733. __do_instruction_access_exception:
  734. rdpr %pstate, %g4
  735. wrpr %g4, PSTATE_MG|PSTATE_AG, %pstate
  736. mov TLB_SFSR, %g3
  737. mov DMMU_SFAR, %g5
  738. ldxa [%g3] ASI_DMMU, %g4 ! Get SFSR
  739. ldxa [%g5] ASI_DMMU, %g5 ! Get SFAR
  740. stxa %g0, [%g3] ASI_IMMU ! Clear FaultValid bit
  741. membar #Sync
  742. sethi %hi(109f), %g7
  743. ba,pt %xcc, etrap
  744. 109:  or %g7, %lo(109b), %g7
  745. mov %l4, %o1
  746. mov %l5, %o2
  747. call instruction_access_exception
  748.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  749. ba,pt %xcc, rtrap
  750.  clr %l6
  751. /* This is the trap handler entry point for ECC correctable
  752.  * errors.  They are corrected, but we listen for the trap
  753.  * so that the event can be logged.
  754.  *
  755.  * Disrupting errors are either:
  756.  * 1) single-bit ECC errors during UDB reads to system
  757.  *    memory
  758.  * 2) data parity errors during write-back events
  759.  *
  760.  * As far as I can make out from the manual, the CEE trap
  761.  * is only for correctable errors during memory read
  762.  * accesses by the front-end of the processor.
  763.  *
  764.  * The code below is only for trap level 1 CEE events,
  765.  * as it is the only situation where we can safely record
  766.  * and log.  For trap level >1 we just clear the CE bit
  767.  * in the AFSR and return.
  768.  */
  769. /* Our trap handling infrastructure allows us to preserve
  770.  * two 64-bit values during etrap for arguments to
  771.  * subsequent C code.  Therefore we encode the information
  772.  * as follows:
  773.  *
  774.  * value 1) Full 64-bits of AFAR
  775.  * value 2) Low 33-bits of AFSR, then bits 33-->42
  776.  *          are UDBL error status and bits 43-->52
  777.  *          are UDBH error status
  778.  */
  779. .align 64
  780. .globl cee_trap
  781. cee_trap:
  782. ldxa [%g0] ASI_AFSR, %g1 ! Read AFSR
  783. ldxa [%g0] ASI_AFAR, %g2 ! Read AFAR
  784. sllx %g1, 31, %g1 ! Clear reserved bits
  785. srlx %g1, 31, %g1 ! in AFSR
  786. /* NOTE: UltraSparc-I/II have high and low UDB error
  787.  *       registers, corresponding to the two UDB units
  788.  *       present on those chips.  UltraSparc-IIi only
  789.  *       has a single UDB, called "SDB" in the manual.
  790.  *       For IIi the upper UDB register always reads
  791.  *       as zero so for our purposes things will just
  792.  *       work with the checks below.
  793.  */
  794. ldxa [%g0] ASI_UDBL_ERROR_R, %g3 ! Read UDB-Low error status
  795. andcc %g3, (1 << 8), %g4 ! Check CE bit
  796. sllx %g3, (64 - 10), %g3 ! Clear reserved bits
  797. srlx %g3, (64 - 10), %g3 ! in UDB-Low error status
  798. sllx %g3, (33 + 0), %g3 ! Shift up to encoding area
  799. or %g1, %g3, %g1 ! Or it in
  800. be,pn %xcc, 1f ! Branch if CE bit was clear
  801.  nop
  802. stxa %g4, [%g0] ASI_UDB_ERROR_W ! Clear CE sticky bit in UDBL
  803. membar #Sync ! Synchronize ASI stores
  804. 1: mov 0x18, %g5 ! Addr of UDB-High error status
  805. ldxa [%g5] ASI_UDBH_ERROR_R, %g3 ! Read it
  806. andcc %g3, (1 << 8), %g4 ! Check CE bit
  807. sllx %g3, (64 - 10), %g3 ! Clear reserved bits
  808. srlx %g3, (64 - 10), %g3 ! in UDB-High error status
  809. sllx %g3, (33 + 10), %g3 ! Shift up to encoding area
  810. or %g1, %g3, %g1 ! Or it in
  811. be,pn %xcc, 1f ! Branch if CE bit was clear
  812.  nop
  813. nop
  814. stxa %g4, [%g5] ASI_UDB_ERROR_W ! Clear CE sticky bit in UDBH
  815. membar #Sync ! Synchronize ASI stores
  816. 1: mov 1, %g5 ! AFSR CE bit is
  817. sllx %g5, 20, %g5 ! bit 20
  818. stxa %g5, [%g0] ASI_AFSR ! Clear CE sticky bit in AFSR
  819. membar #Sync ! Synchronize ASI stores
  820. sllx %g2, (64 - 41), %g2 ! Clear reserved bits
  821. srlx %g2, (64 - 41), %g2 ! in latched AFAR
  822. andn %g2, 0x0f, %g2 ! Finish resv bit clearing
  823. mov %g1, %g4 ! Move AFSR+UDB* into save reg
  824. mov %g2, %g5 ! Move AFAR into save reg
  825. rdpr %pil, %g2
  826. wrpr %g0, 15, %pil
  827. ba,pt %xcc, etrap_irq
  828.  rd %pc, %g7
  829. mov %l4, %o0
  830. mov %l5, %o1
  831. call cee_log
  832.  add %sp, STACK_BIAS + REGWIN_SZ, %o2
  833. ba,a,pt %xcc, rtrap_clr_l6
  834. /* Capture I/D/E-cache state into per-cpu error scoreboard.
  835.  *
  836.  * %g1: (TL>=0) ? 1 : 0
  837.  * %g2: scratch
  838.  * %g3: scratch
  839.  * %g4: AFSR
  840.  * %g5: AFAR
  841.  * %g6: current thread ptr
  842.  * %g7: scratch
  843.  */
  844. #define CHEETAH_LOG_ERROR
  845. /* Put "TL1" software bit into AFSR. */
  846. and %g1, 0x1, %g1;
  847. sllx %g1, 63, %g2;
  848. or %g4, %g2, %g4;
  849. /* Get log entry pointer for this cpu at this trap level. */
  850. ldxa [%g0] ASI_SAFARI_CONFIG, %g2;
  851. srlx %g2, 17, %g2;
  852. and %g2, 0x3ff, %g2;
  853. sllx %g2, 9, %g2;
  854. sethi %hi(cheetah_error_log), %g3;
  855. ldx [%g3 + %lo(cheetah_error_log)], %g3;
  856. brz,pn %g3, 80f;
  857.  nop;
  858. add %g3, %g2, %g3;
  859. sllx %g1, 8, %g1;
  860. add %g3, %g1, %g1;
  861. /* %g1 holds pointer to the top of the logging scoreboard */
  862. ldx [%g1 + 0x0], %g7;
  863. cmp %g7, -1;
  864. bne,pn %xcc, 80f;
  865.  nop;
  866. stx %g4, [%g1 + 0x0];
  867. stx %g5, [%g1 + 0x8];
  868. add %g1, 0x10, %g1;
  869. /* %g1 now points to D-cache logging area */
  870. set 0x3ff8, %g2; /* DC_addr mask */
  871. and %g5, %g2, %g2; /* DC_addr bits of AFAR */
  872. srlx %g5, 12, %g3;
  873. or %g3, 1, %g3; /* PHYS tag + valid */
  874. 10: ldxa [%g2] ASI_DCACHE_TAG, %g7;
  875. cmp %g3, %g7; /* TAG match? */
  876. bne,pt %xcc, 13f;
  877.  nop;
  878. /* Yep, what we want, capture state. */
  879. stx %g2, [%g1 + 0x20];
  880. stx %g7, [%g1 + 0x28];
  881. /* A membar Sync is required before and after utag access. */
  882. membar #Sync;
  883. ldxa [%g2] ASI_DCACHE_UTAG, %g7;
  884. membar #Sync;
  885. stx %g7, [%g1 + 0x30];
  886. ldxa [%g2] ASI_DCACHE_SNOOP_TAG, %g7;
  887. stx %g7, [%g1 + 0x38];
  888. clr %g3;
  889. 12: ldxa [%g2 + %g3] ASI_DCACHE_DATA, %g7;
  890. stx %g7, [%g1];
  891. add %g3, (1 << 5), %g3;
  892. cmp %g3, (4 << 5);
  893. bl,pt %xcc, 12b;
  894.  add %g1, 0x8, %g1;
  895. ba,pt %xcc, 20f;
  896.  add %g1, 0x20, %g1;
  897. 13: sethi %hi(1 << 14), %g7;
  898. add %g2, %g7, %g2;
  899. srlx %g2, 14, %g7;
  900. cmp %g7, 4;
  901. bl,pt %xcc, 10b;
  902.  nop;
  903. add %g1, 0x40, %g1;
  904. 20: /* %g1 now points to I-cache logging area */
  905. set 0x1fe0, %g2; /* IC_addr mask */
  906. and %g5, %g2, %g2; /* IC_addr bits of AFAR */
  907. sllx %g2, 1, %g2; /* IC_addr[13:6]==VA[12:5] */
  908. srlx %g5, (13 - 8), %g3; /* Make PTAG */
  909. andn %g3, 0xff, %g3; /* Mask off undefined bits */
  910. 21: ldxa [%g2] ASI_IC_TAG, %g7;
  911. andn %g7, 0xff, %g7;
  912. cmp %g3, %g7;
  913. bne,pt %xcc, 23f;
  914.  nop;
  915. /* Yep, what we want, capture state. */
  916. stx %g2, [%g1 + 0x40];
  917. stx %g7, [%g1 + 0x48];
  918. add %g2, (1 << 3), %g2;
  919. ldxa [%g2] ASI_IC_TAG, %g7;
  920. add %g2, (1 << 3), %g2;
  921. stx %g7, [%g1 + 0x50];
  922. ldxa [%g2] ASI_IC_TAG, %g7;
  923. add %g2, (1 << 3), %g2;
  924. stx %g7, [%g1 + 0x60];
  925. ldxa [%g2] ASI_IC_TAG, %g7;
  926. stx %g7, [%g1 + 0x68];
  927. sub %g2, (3 << 3), %g2;
  928. ldxa [%g2] ASI_IC_STAG, %g7;
  929. stx %g7, [%g1 + 0x58];
  930. clr %g3;
  931. srlx %g2, 2, %g2;
  932. 22: ldxa [%g2 + %g3] ASI_IC_INSTR, %g7;
  933. stx %g7, [%g1];
  934. add %g3, (1 << 3), %g3;
  935. cmp %g3, (8 << 3);
  936. bl,pt %xcc, 22b;
  937.  add %g1, 0x8, %g1;
  938. ba,pt %xcc, 30f;
  939.  add %g1, 0x30, %g1;
  940. 23: sethi %hi(1 << 14), %g7;
  941. add %g2, %g7, %g2;
  942. srlx %g2, 14, %g7;
  943. cmp %g7, 4;
  944. bl,pt %xcc, 21b;
  945.  nop;
  946. add %g1, 0x70, %g1;
  947. 30: /* %g1 now points to E-cache logging area */
  948. andn %g5, (32 - 1), %g2; /* E-cache subblock */
  949. stx %g2, [%g1 + 0x20];
  950. ldxa [%g2] ASI_EC_TAG_DATA, %g7;
  951. stx %g7, [%g1 + 0x28];
  952. ldxa [%g2] ASI_EC_R, %g0;
  953. clr %g3;
  954. 31: ldxa [%g3] ASI_EC_DATA, %g7;
  955. stx %g7, [%g1 + %g3];
  956. add %g3, 0x8, %g3;
  957. cmp %g3, 0x20;
  958. bl,pt %xcc, 31b;
  959.  nop;
  960. 80: /* DONE */
  961. /* These get patched into the trap table at boot time
  962.  * once we know we have a cheetah processor.
  963.  */
  964. .globl cheetah_fecc_trap_vector, cheetah_fecc_trap_vector_tl1
  965. cheetah_fecc_trap_vector:
  966. membar #Sync
  967. ldxa [%g0] ASI_DCU_CONTROL_REG, %g1
  968. andn %g1, DCU_DC | DCU_IC, %g1
  969. stxa %g1, [%g0] ASI_DCU_CONTROL_REG
  970. membar #Sync
  971. sethi %hi(cheetah_fast_ecc), %g2
  972. jmpl %g2 + %lo(cheetah_fast_ecc), %g0
  973.  mov 0, %g1
  974. cheetah_fecc_trap_vector_tl1:
  975. membar #Sync
  976. ldxa [%g0] ASI_DCU_CONTROL_REG, %g1
  977. andn %g1, DCU_DC | DCU_IC, %g1
  978. stxa %g1, [%g0] ASI_DCU_CONTROL_REG
  979. membar #Sync
  980. sethi %hi(cheetah_fast_ecc), %g2
  981. jmpl %g2 + %lo(cheetah_fast_ecc), %g0
  982.  mov 1, %g1
  983. .globl cheetah_cee_trap_vector, cheetah_cee_trap_vector_tl1
  984. cheetah_cee_trap_vector:
  985. membar #Sync
  986. ldxa [%g0] ASI_DCU_CONTROL_REG, %g1
  987. andn %g1, DCU_IC, %g1
  988. stxa %g1, [%g0] ASI_DCU_CONTROL_REG
  989. membar #Sync
  990. sethi %hi(cheetah_cee), %g2
  991. jmpl %g2 + %lo(cheetah_cee), %g0
  992.  mov 0, %g1
  993. cheetah_cee_trap_vector_tl1:
  994. membar #Sync
  995. ldxa [%g0] ASI_DCU_CONTROL_REG, %g1
  996. andn %g1, DCU_IC, %g1
  997. stxa %g1, [%g0] ASI_DCU_CONTROL_REG
  998. membar #Sync
  999. sethi %hi(cheetah_cee), %g2
  1000. jmpl %g2 + %lo(cheetah_cee), %g0
  1001.  mov 1, %g1
  1002. .globl cheetah_deferred_trap_vector, cheetah_deferred_trap_vector_tl1
  1003. cheetah_deferred_trap_vector:
  1004. membar #Sync
  1005. ldxa [%g0] ASI_DCU_CONTROL_REG, %g1;
  1006. andn %g1, DCU_DC | DCU_IC, %g1;
  1007. stxa %g1, [%g0] ASI_DCU_CONTROL_REG;
  1008. membar #Sync;
  1009. sethi %hi(cheetah_deferred_trap), %g2
  1010. jmpl %g2 + %lo(cheetah_deferred_trap), %g0
  1011.  mov 0, %g1
  1012. cheetah_deferred_trap_vector_tl1:
  1013. membar #Sync;
  1014. ldxa [%g0] ASI_DCU_CONTROL_REG, %g1;
  1015. andn %g1, DCU_DC | DCU_IC, %g1;
  1016. stxa %g1, [%g0] ASI_DCU_CONTROL_REG;
  1017. membar #Sync;
  1018. sethi %hi(cheetah_deferred_trap), %g2
  1019. jmpl %g2 + %lo(cheetah_deferred_trap), %g0
  1020.  mov 1, %g1
  1021. /* Cheetah+ specific traps. These are for the new I/D cache parity
  1022.  * error traps.  The first argument to cheetah_plus_parity_handler
  1023.  * is encoded as follows:
  1024.  *
  1025.  * Bit0: 0=dcache,1=icache
  1026.  * Bit1: 0=recoverable,1=unrecoverable
  1027.  */
  1028. .globl cheetah_plus_dcpe_trap_vector, cheetah_plus_dcpe_trap_vector_tl1
  1029. cheetah_plus_dcpe_trap_vector:
  1030. membar #Sync
  1031. sethi %hi(do_cheetah_plus_data_parity), %g7
  1032. jmpl %g7 + %lo(do_cheetah_plus_data_parity), %g0
  1033.  nop
  1034. nop
  1035. nop
  1036. nop
  1037. nop
  1038. do_cheetah_plus_data_parity:
  1039. ba,pt %xcc, etrap
  1040.  rd %pc, %g7
  1041. mov 0x0, %o0
  1042. call cheetah_plus_parity_error
  1043.  add %sp, STACK_BIAS + REGWIN_SZ, %o1
  1044. ba,pt %xcc, rtrap
  1045.  clr %l6
  1046. cheetah_plus_dcpe_trap_vector_tl1:
  1047. membar #Sync
  1048. wrpr PSTATE_IG | PSTATE_PEF | PSTATE_PRIV, %pstate
  1049. sethi %hi(do_dcpe_tl1), %g3
  1050. jmpl %g3 + %lo(do_dcpe_tl1), %g0
  1051.  nop
  1052. nop
  1053. nop
  1054. nop
  1055. .globl cheetah_plus_icpe_trap_vector, cheetah_plus_icpe_trap_vector_tl1
  1056. cheetah_plus_icpe_trap_vector:
  1057. membar #Sync
  1058. sethi %hi(do_cheetah_plus_insn_parity), %g7
  1059. jmpl %g7 + %lo(do_cheetah_plus_insn_parity), %g0
  1060.  nop
  1061. nop
  1062. nop
  1063. nop
  1064. nop
  1065. do_cheetah_plus_insn_parity:
  1066. ba,pt %xcc, etrap
  1067.  rd %pc, %g7
  1068. mov 0x1, %o0
  1069. call cheetah_plus_parity_error
  1070.  add %sp, STACK_BIAS + REGWIN_SZ, %o1
  1071. ba,pt %xcc, rtrap
  1072.  clr %l6
  1073. cheetah_plus_icpe_trap_vector_tl1:
  1074. membar #Sync
  1075. wrpr PSTATE_IG | PSTATE_PEF | PSTATE_PRIV, %pstate
  1076. sethi %hi(do_icpe_tl1), %g3
  1077. jmpl %g3 + %lo(do_icpe_tl1), %g0
  1078.  nop
  1079. nop
  1080. nop
  1081. nop
  1082. /* If we take one of these traps when tl >= 1, then we
  1083.  * jump to interrupt globals.  If some trap level above us
  1084.  * was also using interrupt globals, we cannot recover.
  1085.  * We may use all interrupt global registers except %g6.
  1086.  */
  1087. .globl do_dcpe_tl1, do_icpe_tl1
  1088. do_dcpe_tl1:
  1089. rdpr %tl, %g1 ! Save original trap level
  1090. mov 1, %g2 ! Setup TSTATE checking loop
  1091. sethi %hi(TSTATE_IG), %g3 ! TSTATE mask bit
  1092. 1: wrpr %g2, %tl ! Set trap level to check
  1093. rdpr %tstate, %g4 ! Read TSTATE for this level
  1094. andcc %g4, %g3, %g0 ! Interrupt globals in use?
  1095. bne,a,pn %xcc, do_dcpe_tl1_fatal ! Yep, irrecoverable
  1096.  wrpr %g1, %tl ! Restore original trap level
  1097. add %g2, 1, %g2 ! Next trap level
  1098. cmp %g2, %g1 ! Hit them all yet?
  1099. ble,pt %icc, 1b ! Not yet
  1100.  nop
  1101. wrpr %g1, %tl ! Restore original trap level
  1102. do_dcpe_tl1_nonfatal: /* Ok we may use interrupt globals safely. */
  1103. /* Reset D-cache parity */
  1104. sethi %hi(1 << 16), %g1 ! D-cache size
  1105. mov (1 << 5), %g2 ! D-cache line size
  1106. sub %g1, %g2, %g1 ! Move down 1 cacheline
  1107. 1: srl %g1, 14, %g3 ! Compute UTAG
  1108. membar #Sync
  1109. stxa %g3, [%g1] ASI_DCACHE_UTAG
  1110. membar #Sync
  1111. sub %g2, 8, %g3 ! 64-bit data word within line
  1112. 2: membar #Sync
  1113. stxa %g0, [%g1 + %g3] ASI_DCACHE_DATA
  1114. membar #Sync
  1115. subcc %g3, 8, %g3 ! Next 64-bit data word
  1116. bge,pt %icc, 2b
  1117.  nop
  1118. subcc %g1, %g2, %g1 ! Next cacheline
  1119. bge,pt %icc, 1b
  1120.  nop
  1121. ba,pt %xcc, dcpe_icpe_tl1_common
  1122.  nop
  1123. do_dcpe_tl1_fatal:
  1124. sethi %hi(1f), %g7
  1125. ba,pt %xcc, etraptl1
  1126. 1: or %g7, %lo(1b), %g7
  1127. mov 0x2, %o0
  1128. call cheetah_plus_parity_error
  1129.  add %sp, STACK_BIAS + REGWIN_SZ, %o1
  1130. ba,pt %xcc, rtrap
  1131.  clr %l6
  1132. do_icpe_tl1:
  1133. rdpr %tl, %g1 ! Save original trap level
  1134. mov 1, %g2 ! Setup TSTATE checking loop
  1135. sethi %hi(TSTATE_IG), %g3 ! TSTATE mask bit
  1136. 1: wrpr %g2, %tl ! Set trap level to check
  1137. rdpr %tstate, %g4 ! Read TSTATE for this level
  1138. andcc %g4, %g3, %g0 ! Interrupt globals in use?
  1139. bne,a,pn %xcc, do_icpe_tl1_fatal ! Yep, irrecoverable
  1140.  wrpr %g1, %tl ! Restore original trap level
  1141. add %g2, 1, %g2 ! Next trap level
  1142. cmp %g2, %g1 ! Hit them all yet?
  1143. ble,pt %icc, 1b ! Not yet
  1144.  nop
  1145. wrpr %g1, %tl ! Restore original trap level
  1146. do_icpe_tl1_nonfatal: /* Ok we may use interrupt globals safely. */
  1147. /* Flush I-cache */
  1148. sethi %hi(1 << 15), %g1 ! I-cache size
  1149. mov (1 << 5), %g2 ! I-cache line size
  1150. sub %g1, %g2, %g1
  1151. 1: or %g1, (2 << 3), %g3
  1152. stxa %g0, [%g3] ASI_IC_TAG
  1153. membar #Sync
  1154. subcc %g1, %g2, %g1
  1155. bge,pt %icc, 1b
  1156.  nop
  1157. ba,pt %xcc, dcpe_icpe_tl1_common
  1158.  nop
  1159. do_icpe_tl1_fatal:
  1160. sethi %hi(1f), %g7
  1161. ba,pt %xcc, etraptl1
  1162. 1: or %g7, %lo(1b), %g7
  1163. mov 0x3, %o0
  1164. call cheetah_plus_parity_error
  1165.  add %sp, STACK_BIAS + REGWIN_SZ, %o1
  1166. ba,pt %xcc, rtrap
  1167.  clr %l6
  1168. dcpe_icpe_tl1_common:
  1169. /* Flush D-cache, re-enable D/I caches in DCU and finally
  1170.  * retry the trapping instruction.
  1171.  */
  1172. sethi %hi(1 << 16), %g1 ! D-cache size
  1173. mov (1 << 5), %g2 ! D-cache line size
  1174. sub %g1, %g2, %g1
  1175. 1: stxa %g0, [%g1] ASI_DCACHE_TAG
  1176. membar #Sync
  1177. subcc %g1, %g2, %g1
  1178. bge,pt %icc, 1b
  1179.  nop
  1180. ldxa [%g0] ASI_DCU_CONTROL_REG, %g1
  1181. or %g1, (DCU_DC | DCU_IC), %g1
  1182. stxa %g1, [%g0] ASI_DCU_CONTROL_REG
  1183. membar #Sync
  1184. retry
  1185. /* Cheetah FECC trap handling, we get here from tl{0,1}_fecc
  1186.  * in the trap table.  That code has done a memory barrier
  1187.  * and has disabled both the I-cache and D-cache in the DCU
  1188.  * control register.  The I-cache is disabled so that we may
  1189.  * capture the corrupted cache line, and the D-cache is disabled
  1190.  * because corrupt data may have been placed there and we don't
  1191.  * want to reference it.
  1192.  *
  1193.  * %g1 is one if this trap occured at %tl >= 1.
  1194.  *
  1195.  * Next, we turn off error reporting so that we don't recurse.
  1196.  */
  1197. .globl cheetah_fast_ecc
  1198. cheetah_fast_ecc:
  1199. ldxa [%g0] ASI_ESTATE_ERROR_EN, %g2
  1200. andn %g2, ESTATE_ERROR_NCEEN | ESTATE_ERROR_CEEN, %g2
  1201. stxa %g2, [%g0] ASI_ESTATE_ERROR_EN
  1202. membar #Sync
  1203. /* Fetch and clear AFSR/AFAR */
  1204. ldxa [%g0] ASI_AFSR, %g4
  1205. ldxa [%g0] ASI_AFAR, %g5
  1206. stxa %g4, [%g0] ASI_AFSR
  1207. membar #Sync
  1208. CHEETAH_LOG_ERROR
  1209. rdpr %pil, %g2
  1210. wrpr %g0, 15, %pil
  1211. ba,pt %xcc, etrap_irq
  1212.  rd %pc, %g7
  1213. mov %l4, %o1
  1214. mov %l5, %o2
  1215. call cheetah_fecc_handler
  1216.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1217. ba,a,pt %xcc, rtrap_clr_l6
  1218. /* Our caller has disabled I-cache and performed membar Sync. */
  1219. .globl cheetah_cee
  1220. cheetah_cee:
  1221. ldxa [%g0] ASI_ESTATE_ERROR_EN, %g2
  1222. andn %g2, ESTATE_ERROR_CEEN, %g2
  1223. stxa %g2, [%g0] ASI_ESTATE_ERROR_EN
  1224. membar #Sync
  1225. /* Fetch and clear AFSR/AFAR */
  1226. ldxa [%g0] ASI_AFSR, %g4
  1227. ldxa [%g0] ASI_AFAR, %g5
  1228. stxa %g4, [%g0] ASI_AFSR
  1229. membar #Sync
  1230. CHEETAH_LOG_ERROR
  1231. rdpr %pil, %g2
  1232. wrpr %g0, 15, %pil
  1233. ba,pt %xcc, etrap_irq
  1234.  rd %pc, %g7
  1235. mov %l4, %o1
  1236. mov %l5, %o2
  1237. call cheetah_cee_handler
  1238.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1239. ba,a,pt %xcc, rtrap_clr_l6
  1240. /* Our caller has disabled I-cache+D-cache and performed membar Sync. */
  1241. .globl cheetah_deferred_trap
  1242. cheetah_deferred_trap:
  1243. ldxa [%g0] ASI_ESTATE_ERROR_EN, %g2
  1244. andn %g2, ESTATE_ERROR_NCEEN | ESTATE_ERROR_CEEN, %g2
  1245. stxa %g2, [%g0] ASI_ESTATE_ERROR_EN
  1246. membar #Sync
  1247. /* Fetch and clear AFSR/AFAR */
  1248. ldxa [%g0] ASI_AFSR, %g4
  1249. ldxa [%g0] ASI_AFAR, %g5
  1250. stxa %g4, [%g0] ASI_AFSR
  1251. membar #Sync
  1252. CHEETAH_LOG_ERROR
  1253. rdpr %pil, %g2
  1254. wrpr %g0, 15, %pil
  1255. ba,pt %xcc, etrap_irq
  1256.  rd %pc, %g7
  1257. mov %l4, %o1
  1258. mov %l5, %o2
  1259. call cheetah_deferred_handler
  1260.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1261. ba,a,pt %xcc, rtrap_clr_l6
  1262. .globl __do_privact
  1263. __do_privact:
  1264. mov TLB_SFSR, %g3
  1265. stxa %g0, [%g3] ASI_DMMU ! Clear FaultValid bit
  1266. membar #Sync
  1267. sethi %hi(109f), %g7
  1268. ba,pt %xcc, etrap
  1269. 109: or %g7, %lo(109b), %g7
  1270. call do_privact
  1271.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1272. ba,pt %xcc, rtrap
  1273.  clr %l6
  1274. .globl do_mna
  1275. do_mna:
  1276. rdpr %tl, %g3
  1277. cmp %g3, 1
  1278. /* Setup %g4/%g5 now as they are used in the
  1279.  * winfixup code.
  1280.  */
  1281. mov TLB_SFSR, %g3
  1282. mov DMMU_SFAR, %g4
  1283. ldxa [%g4] ASI_DMMU, %g4
  1284. ldxa [%g3] ASI_DMMU, %g5
  1285. stxa %g0, [%g3] ASI_DMMU ! Clear FaultValid bit
  1286. membar #Sync
  1287. bgu,pn %icc, winfix_mna
  1288.  rdpr %tpc, %g3
  1289. 1: sethi %hi(109f), %g7
  1290. ba,pt %xcc, etrap
  1291. 109:  or %g7, %lo(109b), %g7
  1292. mov %l4, %o1
  1293. mov %l5, %o2
  1294. call mem_address_unaligned
  1295.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1296. ba,pt %xcc, rtrap
  1297.  clr %l6
  1298. .globl do_lddfmna
  1299. do_lddfmna:
  1300. sethi %hi(109f), %g7
  1301. mov TLB_SFSR, %g4
  1302. ldxa [%g4] ASI_DMMU, %g5
  1303. stxa %g0, [%g4] ASI_DMMU ! Clear FaultValid bit
  1304. membar #Sync
  1305. mov DMMU_SFAR, %g4
  1306. ldxa [%g4] ASI_DMMU, %g4
  1307. ba,pt %xcc, etrap
  1308. 109:  or %g7, %lo(109b), %g7
  1309. mov %l4, %o1
  1310. mov %l5, %o2
  1311. call handle_lddfmna
  1312.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1313. ba,pt %xcc, rtrap
  1314.  clr %l6
  1315. .globl do_stdfmna
  1316. do_stdfmna:
  1317. sethi %hi(109f), %g7
  1318. mov TLB_SFSR, %g4
  1319. ldxa [%g4] ASI_DMMU, %g5
  1320. stxa %g0, [%g4] ASI_DMMU ! Clear FaultValid bit
  1321. membar #Sync
  1322. mov DMMU_SFAR, %g4
  1323. ldxa [%g4] ASI_DMMU, %g4
  1324. ba,pt %xcc, etrap
  1325. 109:  or %g7, %lo(109b), %g7
  1326. mov %l4, %o1
  1327. mov %l5, %o2
  1328. call handle_stdfmna
  1329.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1330. ba,pt %xcc, rtrap
  1331.  clr %l6
  1332. .globl breakpoint_trap
  1333. breakpoint_trap:
  1334. call sparc_breakpoint
  1335.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1336. ba,pt %xcc, rtrap
  1337.  nop
  1338. #if defined(CONFIG_SUNOS_EMUL) || defined(CONFIG_SOLARIS_EMUL) || 
  1339.     defined(CONFIG_SOLARIS_EMUL_MODULE)
  1340. /* SunOS uses syscall zero as the 'indirect syscall' it looks
  1341.  * like indir_syscall(scall_num, arg0, arg1, arg2...);  etc.
  1342.  * This is complete brain damage.
  1343.  */
  1344. .globl sunos_indir
  1345. sunos_indir:
  1346. srl %o0, 0, %o0
  1347. mov %o7, %l4
  1348. cmp %o0, NR_SYSCALLS
  1349. blu,a,pt %icc, 1f
  1350.  sll %o0, 0x2, %o0
  1351. sethi %hi(sunos_nosys), %l6
  1352. b,pt %xcc, 2f
  1353.  or %l6, %lo(sunos_nosys), %l6
  1354. 1: sethi %hi(sunos_sys_table), %l7
  1355. or %l7, %lo(sunos_sys_table), %l7
  1356. lduw [%l7 + %o0], %l6
  1357. 2: mov %o1, %o0
  1358. mov %o2, %o1
  1359. mov %o3, %o2
  1360. mov %o4, %o3
  1361. mov %o5, %o4
  1362. call %l6
  1363.  mov %l4, %o7
  1364. .globl sunos_getpid
  1365. sunos_getpid:
  1366. call sys_getppid
  1367.  nop
  1368. call sys_getpid
  1369.  stx %o0, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I1]
  1370. b,pt %xcc, ret_sys_call
  1371.  stx %o0, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I0]
  1372. /* SunOS getuid() returns uid in %o0 and euid in %o1 */
  1373. .globl sunos_getuid
  1374. sunos_getuid:
  1375. call sys32_geteuid16
  1376.  nop
  1377. call sys32_getuid16
  1378.  stx %o0, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I1]
  1379. b,pt %xcc, ret_sys_call
  1380.  stx %o0, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I0]
  1381. /* SunOS getgid() returns gid in %o0 and egid in %o1 */
  1382. .globl sunos_getgid
  1383. sunos_getgid:
  1384. call sys32_getegid16
  1385.  nop
  1386. call sys32_getgid16
  1387.  stx %o0, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I1]
  1388. b,pt %xcc, ret_sys_call
  1389.  stx %o0, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I0]
  1390. #endif
  1391. /* SunOS's execv() call only specifies the argv argument, the
  1392.  * environment settings are the same as the calling processes.
  1393.  */
  1394. .globl sunos_execv, sys_execve, sys32_execve
  1395. sys_execve:
  1396. sethi %hi(sparc_execve), %g1
  1397. ba,pt %xcc, execve_merge
  1398.  or %g1, %lo(sparc_execve), %g1
  1399. sunos_execv:
  1400. stx %g0, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I2]
  1401. sys32_execve:
  1402. sethi %hi(sparc32_execve), %g1
  1403. or %g1, %lo(sparc32_execve), %g1
  1404. execve_merge:
  1405. flushw
  1406. jmpl %g1, %g0
  1407.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1408. .globl sys_pipe, sys_sigpause, sys_nis_syscall
  1409. .globl sys_sigsuspend, sys_rt_sigsuspend, sys32_rt_sigsuspend
  1410. .globl sys_rt_sigreturn
  1411. .globl sys32_sigreturn, sys32_rt_sigreturn
  1412. .globl sys32_execve, sys_ptrace
  1413. .globl sys_sigaltstack, sys32_sigaltstack
  1414. .globl sys32_sigstack
  1415. .align 32
  1416. sys_pipe: ba,pt %xcc, sparc_pipe
  1417.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1418. sys_nis_syscall:ba,pt %xcc, c_sys_nis_syscall
  1419.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1420. sys_memory_ordering:
  1421. ba,pt %xcc, sparc_memory_ordering
  1422.  add %sp, STACK_BIAS + REGWIN_SZ, %o1
  1423. sys_sigaltstack:ba,pt %xcc, do_sigaltstack
  1424.  add %i6, STACK_BIAS, %o2
  1425. sys32_sigstack: ba,pt %xcc, do_sys32_sigstack
  1426.  mov %i6, %o2
  1427. sys32_sigaltstack:
  1428. ba,pt %xcc, do_sys32_sigaltstack
  1429.  mov %i6, %o2
  1430. .align 32
  1431. sys_sigsuspend: add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1432. call do_sigsuspend
  1433.  add %o7, 1f-.-4, %o7
  1434. nop
  1435. sys_rt_sigsuspend: /* NOTE: %o0,%o1 have a correct value already */
  1436. add %sp, STACK_BIAS + REGWIN_SZ, %o2
  1437. call do_rt_sigsuspend
  1438.  add %o7, 1f-.-4, %o7
  1439. nop
  1440. sys32_rt_sigsuspend: /* NOTE: %o0,%o1 have a correct value already */
  1441. srl %o0, 0, %o0
  1442. add %sp, STACK_BIAS + REGWIN_SZ, %o2
  1443. call do_rt_sigsuspend32
  1444.  add %o7, 1f-.-4, %o7
  1445. /* NOTE: %o0 has a correct value already */
  1446. sys_sigpause: add %sp, STACK_BIAS + REGWIN_SZ, %o1
  1447. call do_sigpause
  1448.  add %o7, 1f-.-4, %o7
  1449. nop
  1450. sys32_sigreturn:
  1451. add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1452. call do_sigreturn32
  1453.  add %o7, 1f-.-4, %o7
  1454. nop
  1455. sys_rt_sigreturn:
  1456. add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1457. call do_rt_sigreturn
  1458.  add %o7, 1f-.-4, %o7
  1459. nop
  1460. sys32_rt_sigreturn:
  1461. add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1462. call do_rt_sigreturn32
  1463.  add %o7, 1f-.-4, %o7
  1464. nop
  1465. sys_ptrace: add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1466. call do_ptrace
  1467.  add %o7, 1f-.-4, %o7
  1468. nop
  1469. .align 32
  1470. 1: ldx [%curptr + AOFF_task_ptrace], %l5
  1471. andcc %l5, 0x02, %g0
  1472. be,pt %icc, rtrap
  1473.  clr %l6
  1474. call syscall_trace
  1475.  nop
  1476. ba,pt %xcc, rtrap
  1477.  clr %l6
  1478. /* This is how fork() was meant to be done, 8 instruction entry.
  1479.  *
  1480.  * I questioned the following code briefly, let me clear things
  1481.  * up so you must not reason on it like I did.
  1482.  *
  1483.  * Know the fork_kpsr etc. we use in the sparc32 port?  We don't
  1484.  * need it here because the only piece of window state we copy to
  1485.  * the child is the CWP register.  Even if the parent sleeps,
  1486.  * we are safe because we stuck it into pt_regs of the parent
  1487.  * so it will not change.
  1488.  *
  1489.  * XXX This raises the question, whether we can do the same on
  1490.  * XXX sparc32 to get rid of fork_kpsr _and_ fork_kwim.  The
  1491.  * XXX answer is yes.  We stick fork_kpsr in UREG_G0 and
  1492.  * XXX fork_kwim in UREG_G1 (global registers are considered
  1493.  * XXX volatile across a system call in the sparc ABI I think
  1494.  * XXX if it isn't we can use regs->y instead, anyone who depends
  1495.  * XXX upon the Y register being preserved across a fork deserves
  1496.  * XXX to lose).
  1497.  *
  1498.  * In fact we should take advantage of that fact for other things
  1499.  * during system calls...
  1500.  */
  1501. .globl sys_fork, sys_vfork, sys_clone, sparc_exit
  1502. .globl ret_from_syscall
  1503. .align 32
  1504. sys_vfork: /* Under Linux, vfork and fork are just special cases of clone. */
  1505. sethi %hi(0x4000 | 0x0100 | SIGCHLD), %o0
  1506. or %o0, %lo(0x4000 | 0x0100 | SIGCHLD), %o0
  1507. ba,pt %xcc, sys_clone
  1508. sys_fork:  clr %o1
  1509. mov SIGCHLD, %o0
  1510. sys_clone: flushw
  1511. movrz %o1, %fp, %o1
  1512. mov 0, %o3
  1513. ba,pt %xcc, do_fork
  1514.  add %sp, STACK_BIAS + REGWIN_SZ, %o2
  1515. ret_from_syscall:
  1516. /* Clear SPARC_FLAG_NEWCHILD, switch_to leaves thread.flags in
  1517.  * %o7 for us.  Check performance counter stuff too.
  1518.  */
  1519. andn %o7, SPARC_FLAG_NEWCHILD, %l0
  1520. mov %g5, %o0 /* 'prev' */
  1521. call schedule_tail
  1522.  stb %l0, [%g6 + AOFF_task_thread + AOFF_thread_flags]
  1523. andcc %l0, SPARC_FLAG_PERFCTR, %g0
  1524. be,pt %icc, 1f
  1525.  nop
  1526. ldx [%g6 + AOFF_task_thread + AOFF_thread_pcr_reg], %o7
  1527. wr %g0, %o7, %pcr
  1528. /* Blackbird errata workaround.  See commentary in
  1529.  * smp.c:smp_percpu_timer_interrupt() for more
  1530.  * information.
  1531.  */
  1532. ba,pt %xcc, 99f
  1533.  nop
  1534. .align 64
  1535. 99: wr %g0, %g0, %pic
  1536. rd %pic, %g0
  1537. 1: b,pt %xcc, ret_sys_call
  1538.  ldx [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I0], %o0
  1539. sparc_exit: wrpr %g0, (PSTATE_RMO | PSTATE_PEF | PSTATE_PRIV), %pstate
  1540. rdpr %otherwin, %g1
  1541. rdpr %cansave, %g3
  1542. add %g3, %g1, %g3
  1543. wrpr %g3, 0x0, %cansave
  1544. wrpr %g0, 0x0, %otherwin
  1545. wrpr %g0, (PSTATE_RMO | PSTATE_PEF | PSTATE_PRIV | PSTATE_IE), %pstate
  1546. ba,pt %xcc, sys_exit
  1547.  stb %g0, [%g6 + AOFF_task_thread + AOFF_thread_w_saved]
  1548. linux_sparc_ni_syscall:
  1549. sethi %hi(sys_ni_syscall), %l7
  1550. b,pt %xcc, 4f
  1551.  or %l7, %lo(sys_ni_syscall), %l7
  1552. linux_syscall_trace32:
  1553. call syscall_trace
  1554.  nop
  1555. srl %i0, 0, %o0
  1556. mov %i4, %o4
  1557. srl %i1, 0, %o1
  1558. srl %i2, 0, %o2
  1559. b,pt %xcc, 2f
  1560.  srl %i3, 0, %o3
  1561. linux_syscall_trace:
  1562. call syscall_trace
  1563.  nop
  1564. mov %i0, %o0
  1565. mov %i1, %o1
  1566. mov %i2, %o2
  1567. mov %i3, %o3
  1568. b,pt %xcc, 2f
  1569.  mov %i4, %o4
  1570. /* Linux 32-bit and SunOS system calls enter here... */
  1571. .align 32
  1572. .globl linux_sparc_syscall32
  1573. linux_sparc_syscall32:
  1574. /* Direct access to user regs, much faster. */
  1575. cmp %g1, NR_SYSCALLS ! IEU1 Group
  1576. bgeu,pn %xcc, linux_sparc_ni_syscall ! CTI
  1577.  srl %i0, 0, %o0 ! IEU0
  1578. sll %g1, 2, %l4 ! IEU0 Group
  1579. #ifdef SYSCALL_TRACING
  1580. call syscall_trace_entry
  1581.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1582. srl %i0, 0, %o0
  1583. #endif
  1584. mov %i4, %o4 ! IEU1
  1585. lduw [%l7 + %l4], %l7 ! Load
  1586. srl %i1, 0, %o1 ! IEU0 Group
  1587. ldx [%curptr + AOFF_task_ptrace], %l0 ! Load
  1588. mov %i5, %o5 ! IEU1
  1589. srl %i2, 0, %o2 ! IEU0 Group
  1590. andcc %l0, 0x02, %g0 ! IEU0 Group
  1591. bne,pn %icc, linux_syscall_trace32 ! CTI
  1592.  mov %i0, %l5 ! IEU1
  1593. call %l7 ! CTI Group brk forced
  1594.  srl %i3, 0, %o3 ! IEU0
  1595. ba,a,pt %xcc, 3f
  1596. /* Linux native and SunOS system calls enter here... */
  1597. .align 32
  1598. .globl linux_sparc_syscall, ret_sys_call
  1599. linux_sparc_syscall:
  1600. /* Direct access to user regs, much faster. */
  1601. cmp %g1, NR_SYSCALLS ! IEU1 Group
  1602. bgeu,pn %xcc, linux_sparc_ni_syscall ! CTI
  1603.  mov %i0, %o0 ! IEU0
  1604. sll %g1, 2, %l4 ! IEU0 Group
  1605. #ifdef SYSCALL_TRACING
  1606. call syscall_trace_entry
  1607.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1608. mov %i0, %o0
  1609. #endif
  1610. mov %i1, %o1 ! IEU1
  1611. lduw [%l7 + %l4], %l7 ! Load
  1612. 4: mov %i2, %o2 ! IEU0 Group
  1613. ldx [%curptr + AOFF_task_ptrace], %l0 ! Load
  1614. mov %i3, %o3 ! IEU1
  1615. mov %i4, %o4 ! IEU0 Group
  1616. andcc %l0, 0x02, %g0 ! IEU1 Group+1 bubble
  1617. bne,pn %icc, linux_syscall_trace ! CTI Group
  1618.  mov %i0, %l5 ! IEU0
  1619. 2: call %l7 ! CTI Group brk forced
  1620.  mov %i5, %o5 ! IEU0
  1621. nop
  1622. 3: stx %o0, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I0]
  1623. ret_sys_call:
  1624. #ifdef SYSCALL_TRACING
  1625. mov %o0, %o1
  1626. call syscall_trace_exit
  1627.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1628. mov %o1, %o0
  1629. #endif
  1630. ldx [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TSTATE], %g3
  1631. ldx [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TNPC], %l1 ! pc = npc
  1632. sra %o0, 0, %o0
  1633. mov %ulo(TSTATE_XCARRY | TSTATE_ICARRY), %g2
  1634. cmp %o0, -ENOIOCTLCMD
  1635. sllx %g2, 32, %g2
  1636. bgeu,pn %xcc, 1f
  1637.  andcc %l0, 0x02, %l6
  1638. andn %g3, %g2, %g3 /* System call success, clear Carry condition code. */
  1639. stx %g3, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TSTATE]
  1640. bne,pn %icc, linux_syscall_trace2
  1641.  add %l1, 0x4, %l2          ! npc = npc+4
  1642. stx %l1, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TPC]
  1643. ba,pt %xcc, rtrap_clr_l6
  1644.  stx %l2, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TNPC]
  1645. 1:
  1646. /* System call failure, set Carry condition code.
  1647.  * Also, get abs(errno) to return to the process.
  1648.  */
  1649. sub %g0, %o0, %o0
  1650. or %g3, %g2, %g3
  1651. stx %o0, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I0]
  1652. mov 1, %l6
  1653. stx %g3, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TSTATE]
  1654. bne,pn %icc, linux_syscall_trace2
  1655.  add %l1, 0x4, %l2          !npc = npc+4
  1656. stx %l1, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TPC]
  1657. b,pt %xcc, rtrap
  1658.  stx %l2, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TNPC]
  1659. linux_syscall_trace2:
  1660. call syscall_trace
  1661.  nop
  1662. stx %l1, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TPC]
  1663. ba,pt %xcc, rtrap
  1664.  stx %l2, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TNPC]
  1665. .align 32
  1666. .globl __flushw_user
  1667. __flushw_user:
  1668. rdpr %otherwin, %g1
  1669. brz,pn %g1, 2f
  1670.  clr %g2
  1671. 1: save %sp, -128, %sp
  1672. rdpr %otherwin, %g1
  1673. brnz,pt %g1, 1b
  1674.  add %g2, 1, %g2
  1675. 1: sub %g2, 1, %g2
  1676. brnz,pt %g2, 1b
  1677.  restore %g0, %g0, %g0
  1678. 2: retl
  1679.  nop
  1680. /* This need not obtain the xtime_lock as it is coded in
  1681.  * an implicitly SMP safe way already.
  1682.  */
  1683. .align 64
  1684. .globl do_gettimeofday
  1685. do_gettimeofday: /* %o0 = timevalp */
  1686. /* Load doubles must be used on xtime so that what we get
  1687.  * is guarenteed to be atomic, this is why we can run this
  1688.  * with interrupts on full blast.  Don't touch this... -DaveM
  1689.  *
  1690.  * Note with time_t changes to the timeval type, I must now use
  1691.  * nucleus atomic quad 128-bit loads.
  1692.  *
  1693.  * If xtime was stored recently, I've seen crap from the
  1694.  * quad load on Cheetah.  Putting a membar SYNC before
  1695.  * the quad load seems to make the problem go away. -DaveM
  1696.  * (we should nop out workarounds like this on spitfire)
  1697.  */
  1698. sethi %hi(timer_tick_offset), %g3
  1699. sethi %hi(xtime), %g2
  1700. sethi %hi(timer_tick_compare), %g1
  1701. ldx [%g3 + %lo(timer_tick_offset)], %g3
  1702. or %g2, %lo(xtime), %g2
  1703. or %g1, %lo(timer_tick_compare), %g1
  1704. 1: membar #Sync
  1705. ldda [%g2] ASI_NUCLEUS_QUAD_LDD, %o4
  1706. BRANCH_IF_ANY_CHEETAH(o2,o1,2f)
  1707. ba,pt %xcc, 3f
  1708.  rd %tick, %o1
  1709. 2: ba,pt %xcc, 3f
  1710.  rd %asr24, %o1
  1711. 3: ldx [%g1], %g7
  1712. membar #Sync
  1713. ldda [%g2] ASI_NUCLEUS_QUAD_LDD, %o2
  1714. xor %o4, %o2, %o2
  1715. xor %o5, %o3, %o3
  1716. orcc %o2, %o3, %g0
  1717. bne,pn %xcc, 1b
  1718.  sethi %hi(wall_jiffies), %o2
  1719. sethi %hi(jiffies), %o3
  1720. ldx [%o2 + %lo(wall_jiffies)], %o2
  1721. ldx [%o3 + %lo(jiffies)], %o3
  1722. sub %o3, %o2, %o2
  1723. sethi %hi(timer_ticks_per_usec_quotient), %o3
  1724. add %g3, %o1, %o1
  1725. ldx [%o3 + %lo(timer_ticks_per_usec_quotient)], %o3
  1726. sub %o1, %g7, %o1
  1727. mulx %o3, %o1, %o1
  1728. brz,pt %o2, 1f
  1729.  srlx %o1, 32, %o1
  1730. sethi %hi(10000), %g2
  1731. or %g2, %lo(10000), %g2
  1732. add %o1, %g2, %o1
  1733. 1: sethi %hi(1000000), %o2
  1734. srlx %o5, 32, %o5
  1735. or %o2, %lo(1000000), %o2
  1736. add %o5, %o1, %o5
  1737. cmp %o5, %o2
  1738. bl,a,pn %xcc, 1f
  1739.  stx %o4, [%o0 + 0x0]
  1740. add %o4, 0x1, %o4
  1741. sub %o5, %o2, %o5
  1742. stx %o4, [%o0 + 0x0]
  1743. 1: retl
  1744.  st %o5, [%o0 + 0x8]