entry.S
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:45k
源码类别:

嵌入式Linux

开发平台:

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.  or %g7, %lo(109f), %g7 ! Merge in below
  727. __do_instruction_access_exception:
  728. rdpr %pstate, %g4
  729. wrpr %g4, PSTATE_MG|PSTATE_AG, %pstate
  730. mov TLB_SFSR, %g3
  731. mov DMMU_SFAR, %g5
  732. ldxa [%g3] ASI_DMMU, %g4 ! Get SFSR
  733. ldxa [%g5] ASI_DMMU, %g5 ! Get SFAR
  734. stxa %g0, [%g3] ASI_IMMU ! Clear FaultValid bit
  735. membar #Sync
  736. sethi %hi(109f), %g7
  737. ba,pt %xcc, etrap
  738. 109:  or %g7, %lo(109b), %g7
  739. mov %l4, %o1
  740. mov %l5, %o2
  741. call instruction_access_exception
  742.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  743. ba,pt %xcc, rtrap
  744.  clr %l6
  745. /* This is the trap handler entry point for ECC correctable
  746.  * errors.  They are corrected, but we listen for the trap
  747.  * so that the event can be logged.
  748.  *
  749.  * Disrupting errors are either:
  750.  * 1) single-bit ECC errors during UDB reads to system
  751.  *    memory
  752.  * 2) data parity errors during write-back events
  753.  *
  754.  * As far as I can make out from the manual, the CEE trap
  755.  * is only for correctable errors during memory read
  756.  * accesses by the front-end of the processor.
  757.  *
  758.  * The code below is only for trap level 1 CEE events,
  759.  * as it is the only situation where we can safely record
  760.  * and log.  For trap level >1 we just clear the CE bit
  761.  * in the AFSR and return.
  762.  */
  763. /* Our trap handling infrastructure allows us to preserve
  764.  * two 64-bit values during etrap for arguments to
  765.  * subsequent C code.  Therefore we encode the information
  766.  * as follows:
  767.  *
  768.  * value 1) Full 64-bits of AFAR
  769.  * value 2) Low 33-bits of AFSR, then bits 33-->42
  770.  *          are UDBL error status and bits 43-->52
  771.  *          are UDBH error status
  772.  */
  773. .align 64
  774. .globl cee_trap
  775. cee_trap:
  776. ldxa [%g0] ASI_AFSR, %g1 ! Read AFSR
  777. ldxa [%g0] ASI_AFAR, %g2 ! Read AFAR
  778. sllx %g1, 31, %g1 ! Clear reserved bits
  779. srlx %g1, 31, %g1 ! in AFSR
  780. /* NOTE: UltraSparc-I/II have high and low UDB error
  781.  *       registers, corresponding to the two UDB units
  782.  *       present on those chips.  UltraSparc-IIi only
  783.  *       has a single UDB, called "SDB" in the manual.
  784.  *       For IIi the upper UDB register always reads
  785.  *       as zero so for our purposes things will just
  786.  *       work with the checks below.
  787.  */
  788. ldxa [%g0] ASI_UDBL_ERROR_R, %g3 ! Read UDB-Low error status
  789. andcc %g3, (1 << 8), %g4 ! Check CE bit
  790. sllx %g3, (64 - 10), %g3 ! Clear reserved bits
  791. srlx %g3, (64 - 10), %g3 ! in UDB-Low error status
  792. sllx %g3, (33 + 0), %g3 ! Shift up to encoding area
  793. or %g1, %g3, %g1 ! Or it in
  794. be,pn %xcc, 1f ! Branch if CE bit was clear
  795.  nop
  796. stxa %g4, [%g0] ASI_UDB_ERROR_W ! Clear CE sticky bit in UDBL
  797. membar #Sync ! Synchronize ASI stores
  798. 1: mov 0x18, %g5 ! Addr of UDB-High error status
  799. ldxa [%g5] ASI_UDBH_ERROR_R, %g3 ! Read it
  800. andcc %g3, (1 << 8), %g4 ! Check CE bit
  801. sllx %g3, (64 - 10), %g3 ! Clear reserved bits
  802. srlx %g3, (64 - 10), %g3 ! in UDB-High error status
  803. sllx %g3, (33 + 10), %g3 ! Shift up to encoding area
  804. or %g1, %g3, %g1 ! Or it in
  805. be,pn %xcc, 1f ! Branch if CE bit was clear
  806.  nop
  807. nop
  808. stxa %g4, [%g5] ASI_UDB_ERROR_W ! Clear CE sticky bit in UDBH
  809. membar #Sync ! Synchronize ASI stores
  810. 1: mov 1, %g5 ! AFSR CE bit is
  811. sllx %g5, 20, %g5 ! bit 20
  812. stxa %g5, [%g0] ASI_AFSR ! Clear CE sticky bit in AFSR
  813. membar #Sync ! Synchronize ASI stores
  814. sllx %g2, (64 - 41), %g2 ! Clear reserved bits
  815. srlx %g2, (64 - 41), %g2 ! in latched AFAR
  816. andn %g2, 0x0f, %g2 ! Finish resv bit clearing
  817. mov %g1, %g4 ! Move AFSR+UDB* into save reg
  818. mov %g2, %g5 ! Move AFAR into save reg
  819. rdpr %pil, %g2
  820. wrpr %g0, 15, %pil
  821. ba,pt %xcc, etrap_irq
  822.  rd %pc, %g7
  823. mov %l4, %o0
  824. mov %l5, %o1
  825. call cee_log
  826.  add %sp, STACK_BIAS + REGWIN_SZ, %o2
  827. ba,a,pt %xcc, rtrap_clr_l6
  828. /* Capture I/D/E-cache state into per-cpu error scoreboard.
  829.  *
  830.  * %g1: (TL>=0) ? 1 : 0
  831.  * %g2: scratch
  832.  * %g3: scratch
  833.  * %g4: AFSR
  834.  * %g5: AFAR
  835.  * %g6: current thread ptr
  836.  * %g7: scratch
  837.  */
  838. #define CHEETAH_LOG_ERROR
  839. /* Put "TL1" software bit into AFSR. */
  840. and %g1, 0x1, %g1;
  841. sllx %g1, 63, %g2;
  842. or %g4, %g2, %g4;
  843. /* Get log entry pointer for this cpu at this trap level. */
  844. ldxa [%g0] ASI_SAFARI_CONFIG, %g2;
  845. srlx %g2, 17, %g2;
  846. and %g2, 0x3ff, %g2;
  847. sllx %g2, 9, %g2;
  848. sethi %hi(cheetah_error_log), %g3;
  849. ldx [%g3 + %lo(cheetah_error_log)], %g3;
  850. brz,pn %g3, 80f;
  851.  nop;
  852. add %g3, %g2, %g3;
  853. sllx %g1, 8, %g1;
  854. add %g3, %g1, %g1;
  855. /* %g1 holds pointer to the top of the logging scoreboard */
  856. ldx [%g1 + 0x0], %g7;
  857. cmp %g7, -1;
  858. bne,pn %xcc, 80f;
  859.  nop;
  860. stx %g4, [%g1 + 0x0];
  861. stx %g5, [%g1 + 0x8];
  862. add %g1, 0x10, %g1;
  863. /* %g1 now points to D-cache logging area */
  864. set 0x3ff8, %g2; /* DC_addr mask */
  865. and %g5, %g2, %g2; /* DC_addr bits of AFAR */
  866. srlx %g5, 12, %g3;
  867. or %g3, 1, %g3; /* PHYS tag + valid */
  868. 10: ldxa [%g2] ASI_DCACHE_TAG, %g7;
  869. cmp %g3, %g7; /* TAG match? */
  870. bne,pt %xcc, 13f;
  871.  nop;
  872. /* Yep, what we want, capture state. */
  873. stx %g2, [%g1 + 0x20];
  874. stx %g7, [%g1 + 0x28];
  875. /* A membar Sync is required before and after utag access. */
  876. membar #Sync;
  877. ldxa [%g2] ASI_DCACHE_UTAG, %g7;
  878. membar #Sync;
  879. stx %g7, [%g1 + 0x30];
  880. ldxa [%g2] ASI_DCACHE_SNOOP_TAG, %g7;
  881. stx %g7, [%g1 + 0x38];
  882. clr %g3;
  883. 12: ldxa [%g2 + %g3] ASI_DCACHE_DATA, %g7;
  884. stx %g7, [%g1];
  885. add %g3, (1 << 5), %g3;
  886. cmp %g3, (4 << 5);
  887. bl,pt %xcc, 12b;
  888.  add %g1, 0x8, %g1;
  889. ba,pt %xcc, 20f;
  890.  add %g1, 0x20, %g1;
  891. 13: sethi %hi(1 << 14), %g7;
  892. add %g2, %g7, %g2;
  893. srlx %g2, 14, %g7;
  894. cmp %g7, 4;
  895. bl,pt %xcc, 10b;
  896.  nop;
  897. add %g1, 0x40, %g1;
  898. 20: /* %g1 now points to I-cache logging area */
  899. set 0x1fe0, %g2; /* IC_addr mask */
  900. and %g5, %g2, %g2; /* IC_addr bits of AFAR */
  901. sllx %g2, 1, %g2; /* IC_addr[13:6]==VA[12:5] */
  902. srlx %g5, (13 - 8), %g3; /* Make PTAG */
  903. andn %g3, 0xff, %g3; /* Mask off undefined bits */
  904. 21: ldxa [%g2] ASI_IC_TAG, %g7;
  905. andn %g7, 0xff, %g7;
  906. cmp %g3, %g7;
  907. bne,pt %xcc, 23f;
  908.  nop;
  909. /* Yep, what we want, capture state. */
  910. stx %g2, [%g1 + 0x40];
  911. stx %g7, [%g1 + 0x48];
  912. add %g2, (1 << 3), %g2;
  913. ldxa [%g2] ASI_IC_TAG, %g7;
  914. add %g2, (1 << 3), %g2;
  915. stx %g7, [%g1 + 0x50];
  916. ldxa [%g2] ASI_IC_TAG, %g7;
  917. add %g2, (1 << 3), %g2;
  918. stx %g7, [%g1 + 0x60];
  919. ldxa [%g2] ASI_IC_TAG, %g7;
  920. stx %g7, [%g1 + 0x68];
  921. sub %g2, (3 << 3), %g2;
  922. ldxa [%g2] ASI_IC_STAG, %g7;
  923. stx %g7, [%g1 + 0x58];
  924. clr %g3;
  925. srlx %g2, 2, %g2;
  926. 22: ldxa [%g2 + %g3] ASI_IC_INSTR, %g7;
  927. stx %g7, [%g1];
  928. add %g3, (1 << 3), %g3;
  929. cmp %g3, (8 << 3);
  930. bl,pt %xcc, 22b;
  931.  add %g1, 0x8, %g1;
  932. ba,pt %xcc, 30f;
  933.  add %g1, 0x30, %g1;
  934. 23: sethi %hi(1 << 14), %g7;
  935. add %g2, %g7, %g2;
  936. srlx %g2, 14, %g7;
  937. cmp %g7, 4;
  938. bl,pt %xcc, 21b;
  939.  nop;
  940. add %g1, 0x70, %g1;
  941. 30: /* %g1 now points to E-cache logging area */
  942. andn %g5, (32 - 1), %g2; /* E-cache subblock */
  943. stx %g2, [%g1 + 0x20];
  944. ldxa [%g2] ASI_EC_TAG_DATA, %g7;
  945. stx %g7, [%g1 + 0x28];
  946. ldxa [%g2] ASI_EC_R, %g0;
  947. clr %g3;
  948. 31: ldxa [%g3] ASI_EC_DATA, %g7;
  949. stx %g7, [%g1 + %g3];
  950. add %g3, 0x8, %g3;
  951. cmp %g3, 0x20;
  952. bl,pt %xcc, 31b;
  953.  nop;
  954. 80: /* DONE */
  955. /* These get patched into the trap table at boot time
  956.  * once we know we have a cheetah processor.
  957.  */
  958. .globl cheetah_fecc_trap_vector, cheetah_fecc_trap_vector_tl1
  959. cheetah_fecc_trap_vector:
  960. membar #Sync
  961. ldxa [%g0] ASI_DCU_CONTROL_REG, %g1
  962. andn %g1, DCU_DC | DCU_IC, %g1
  963. stxa %g1, [%g0] ASI_DCU_CONTROL_REG
  964. membar #Sync
  965. sethi %hi(cheetah_fast_ecc), %g2
  966. jmpl %g2 + %lo(cheetah_fast_ecc), %g0
  967.  mov 0, %g1
  968. cheetah_fecc_trap_vector_tl1:
  969. membar #Sync
  970. ldxa [%g0] ASI_DCU_CONTROL_REG, %g1
  971. andn %g1, DCU_DC | DCU_IC, %g1
  972. stxa %g1, [%g0] ASI_DCU_CONTROL_REG
  973. membar #Sync
  974. sethi %hi(cheetah_fast_ecc), %g2
  975. jmpl %g2 + %lo(cheetah_fast_ecc), %g0
  976.  mov 1, %g1
  977. .globl cheetah_cee_trap_vector, cheetah_cee_trap_vector_tl1
  978. cheetah_cee_trap_vector:
  979. membar #Sync
  980. ldxa [%g0] ASI_DCU_CONTROL_REG, %g1
  981. andn %g1, DCU_IC, %g1
  982. stxa %g1, [%g0] ASI_DCU_CONTROL_REG
  983. membar #Sync
  984. sethi %hi(cheetah_cee), %g2
  985. jmpl %g2 + %lo(cheetah_cee), %g0
  986.  mov 0, %g1
  987. cheetah_cee_trap_vector_tl1:
  988. membar #Sync
  989. ldxa [%g0] ASI_DCU_CONTROL_REG, %g1
  990. andn %g1, DCU_IC, %g1
  991. stxa %g1, [%g0] ASI_DCU_CONTROL_REG
  992. membar #Sync
  993. sethi %hi(cheetah_cee), %g2
  994. jmpl %g2 + %lo(cheetah_cee), %g0
  995.  mov 1, %g1
  996. .globl cheetah_deferred_trap_vector, cheetah_deferred_trap_vector_tl1
  997. cheetah_deferred_trap_vector:
  998. membar #Sync
  999. ldxa [%g0] ASI_DCU_CONTROL_REG, %g1;
  1000. andn %g1, DCU_DC | DCU_IC, %g1;
  1001. stxa %g1, [%g0] ASI_DCU_CONTROL_REG;
  1002. membar #Sync;
  1003. sethi %hi(cheetah_deferred_trap), %g2
  1004. jmpl %g2 + %lo(cheetah_deferred_trap), %g0
  1005.  mov 0, %g1
  1006. cheetah_deferred_trap_vector_tl1:
  1007. membar #Sync;
  1008. ldxa [%g0] ASI_DCU_CONTROL_REG, %g1;
  1009. andn %g1, DCU_DC | DCU_IC, %g1;
  1010. stxa %g1, [%g0] ASI_DCU_CONTROL_REG;
  1011. membar #Sync;
  1012. sethi %hi(cheetah_deferred_trap), %g2
  1013. jmpl %g2 + %lo(cheetah_deferred_trap), %g0
  1014.  mov 1, %g1
  1015. /* Cheetah FECC trap handling, we get here from tl{0,1}_fecc
  1016.  * in the trap table.  That code has done a memory barrier
  1017.  * and has disabled both the I-cache and D-cache in the DCU
  1018.  * control register.  The I-cache is disabled so that we may
  1019.  * capture the corrupted cache line, and the D-cache is disabled
  1020.  * because corrupt data may have been placed there and we don't
  1021.  * want to reference it.
  1022.  *
  1023.  * %g1 is one if this trap occured at %tl >= 1.
  1024.  *
  1025.  * Next, we turn off error reporting so that we don't recurse.
  1026.  */
  1027. .globl cheetah_fast_ecc
  1028. cheetah_fast_ecc:
  1029. ldxa [%g0] ASI_ESTATE_ERROR_EN, %g2
  1030. andn %g2, ESTATE_ERROR_NCEEN | ESTATE_ERROR_CEEN, %g2
  1031. stxa %g2, [%g0] ASI_ESTATE_ERROR_EN
  1032. membar #Sync
  1033. /* Fetch and clear AFSR/AFAR */
  1034. ldxa [%g0] ASI_AFSR, %g4
  1035. ldxa [%g0] ASI_AFAR, %g5
  1036. stxa %g4, [%g0] ASI_AFSR
  1037. membar #Sync
  1038. CHEETAH_LOG_ERROR
  1039. rdpr %pil, %g2
  1040. wrpr %g0, 15, %pil
  1041. ba,pt %xcc, etrap_irq
  1042.  rd %pc, %g7
  1043. mov %l4, %o1
  1044. mov %l5, %o2
  1045. call cheetah_fecc_handler
  1046.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1047. ba,a,pt %xcc, rtrap_clr_l6
  1048. /* Our caller has disabled I-cache and performed membar Sync. */
  1049. .globl cheetah_cee
  1050. cheetah_cee:
  1051. ldxa [%g0] ASI_ESTATE_ERROR_EN, %g2
  1052. andn %g2, ESTATE_ERROR_CEEN, %g2
  1053. stxa %g2, [%g0] ASI_ESTATE_ERROR_EN
  1054. membar #Sync
  1055. /* Fetch and clear AFSR/AFAR */
  1056. ldxa [%g0] ASI_AFSR, %g4
  1057. ldxa [%g0] ASI_AFAR, %g5
  1058. stxa %g4, [%g0] ASI_AFSR
  1059. membar #Sync
  1060. CHEETAH_LOG_ERROR
  1061. rdpr %pil, %g2
  1062. wrpr %g0, 15, %pil
  1063. ba,pt %xcc, etrap_irq
  1064.  rd %pc, %g7
  1065. mov %l4, %o1
  1066. mov %l5, %o2
  1067. call cheetah_cee_handler
  1068.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1069. ba,a,pt %xcc, rtrap_clr_l6
  1070. /* Our caller has disabled I-cache+D-cache and performed membar Sync. */
  1071. .globl cheetah_deferred_trap
  1072. cheetah_deferred_trap:
  1073. ldxa [%g0] ASI_ESTATE_ERROR_EN, %g2
  1074. andn %g2, ESTATE_ERROR_NCEEN | ESTATE_ERROR_CEEN, %g2
  1075. stxa %g2, [%g0] ASI_ESTATE_ERROR_EN
  1076. membar #Sync
  1077. /* Fetch and clear AFSR/AFAR */
  1078. ldxa [%g0] ASI_AFSR, %g4
  1079. ldxa [%g0] ASI_AFAR, %g5
  1080. stxa %g4, [%g0] ASI_AFSR
  1081. membar #Sync
  1082. CHEETAH_LOG_ERROR
  1083. rdpr %pil, %g2
  1084. wrpr %g0, 15, %pil
  1085. ba,pt %xcc, etrap_irq
  1086.  rd %pc, %g7
  1087. mov %l4, %o1
  1088. mov %l5, %o2
  1089. call cheetah_deferred_handler
  1090.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1091. ba,a,pt %xcc, rtrap_clr_l6
  1092. .globl __do_privact
  1093. __do_privact:
  1094. mov TLB_SFSR, %g3
  1095. stxa %g0, [%g3] ASI_DMMU ! Clear FaultValid bit
  1096. membar #Sync
  1097. sethi %hi(109f), %g7
  1098. ba,pt %xcc, etrap
  1099. 109: or %g7, %lo(109b), %g7
  1100. call do_privact
  1101.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1102. ba,pt %xcc, rtrap
  1103.  clr %l6
  1104. .globl do_mna
  1105. do_mna:
  1106. rdpr %tl, %g3
  1107. cmp %g3, 1
  1108. /* Setup %g4/%g5 now as they are used in the
  1109.  * winfixup code.
  1110.  */
  1111. mov TLB_SFSR, %g3
  1112. mov DMMU_SFAR, %g4
  1113. ldxa [%g4] ASI_DMMU, %g4
  1114. ldxa [%g3] ASI_DMMU, %g5
  1115. stxa %g0, [%g3] ASI_DMMU ! Clear FaultValid bit
  1116. membar #Sync
  1117. bgu,pn %icc, winfix_mna
  1118.  rdpr %tpc, %g3
  1119. 1: sethi %hi(109f), %g7
  1120. ba,pt %xcc, etrap
  1121. 109:  or %g7, %lo(109b), %g7
  1122. mov %l4, %o1
  1123. mov %l5, %o2
  1124. call mem_address_unaligned
  1125.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1126. ba,pt %xcc, rtrap
  1127.  clr %l6
  1128. .globl do_lddfmna
  1129. do_lddfmna:
  1130. sethi %hi(109f), %g7
  1131. mov TLB_SFSR, %g4
  1132. ldxa [%g4] ASI_DMMU, %g5
  1133. stxa %g0, [%g4] ASI_DMMU ! Clear FaultValid bit
  1134. membar #Sync
  1135. mov DMMU_SFAR, %g4
  1136. ldxa [%g4] ASI_DMMU, %g4
  1137. ba,pt %xcc, etrap
  1138. 109:  or %g7, %lo(109b), %g7
  1139. mov %l4, %o1
  1140. mov %l5, %o2
  1141. call handle_lddfmna
  1142.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1143. ba,pt %xcc, rtrap
  1144.  clr %l6
  1145. .globl do_stdfmna
  1146. do_stdfmna:
  1147. sethi %hi(109f), %g7
  1148. mov TLB_SFSR, %g4
  1149. ldxa [%g4] ASI_DMMU, %g5
  1150. stxa %g0, [%g4] ASI_DMMU ! Clear FaultValid bit
  1151. membar #Sync
  1152. mov DMMU_SFAR, %g4
  1153. ldxa [%g4] ASI_DMMU, %g4
  1154. ba,pt %xcc, etrap
  1155. 109:  or %g7, %lo(109b), %g7
  1156. mov %l4, %o1
  1157. mov %l5, %o2
  1158. call handle_stdfmna
  1159.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1160. ba,pt %xcc, rtrap
  1161.  clr %l6
  1162. .globl breakpoint_trap
  1163. breakpoint_trap:
  1164. call sparc_breakpoint
  1165.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1166. ba,pt %xcc, rtrap
  1167.  nop
  1168. #if defined(CONFIG_SUNOS_EMUL) || defined(CONFIG_SOLARIS_EMUL) || 
  1169.     defined(CONFIG_SOLARIS_EMUL_MODULE)
  1170. /* SunOS uses syscall zero as the 'indirect syscall' it looks
  1171.  * like indir_syscall(scall_num, arg0, arg1, arg2...);  etc.
  1172.  * This is complete brain damage.
  1173.  */
  1174. .globl sunos_indir
  1175. sunos_indir:
  1176. srl %o0, 0, %o0
  1177. mov %o7, %l4
  1178. cmp %o0, NR_SYSCALLS
  1179. blu,a,pt %icc, 1f
  1180.  sll %o0, 0x2, %o0
  1181. sethi %hi(sunos_nosys), %l6
  1182. b,pt %xcc, 2f
  1183.  or %l6, %lo(sunos_nosys), %l6
  1184. 1: sethi %hi(sunos_sys_table), %l7
  1185. or %l7, %lo(sunos_sys_table), %l7
  1186. lduw [%l7 + %o0], %l6
  1187. 2: mov %o1, %o0
  1188. mov %o2, %o1
  1189. mov %o3, %o2
  1190. mov %o4, %o3
  1191. mov %o5, %o4
  1192. call %l6
  1193.  mov %l4, %o7
  1194. .globl sunos_getpid
  1195. sunos_getpid:
  1196. call sys_getppid
  1197.  nop
  1198. call sys_getpid
  1199.  stx %o0, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I1]
  1200. b,pt %xcc, ret_sys_call
  1201.  stx %o0, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I0]
  1202. /* SunOS getuid() returns uid in %o0 and euid in %o1 */
  1203. .globl sunos_getuid
  1204. sunos_getuid:
  1205. call sys32_geteuid16
  1206.  nop
  1207. call sys32_getuid16
  1208.  stx %o0, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I1]
  1209. b,pt %xcc, ret_sys_call
  1210.  stx %o0, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I0]
  1211. /* SunOS getgid() returns gid in %o0 and egid in %o1 */
  1212. .globl sunos_getgid
  1213. sunos_getgid:
  1214. call sys32_getegid16
  1215.  nop
  1216. call sys32_getgid16
  1217.  stx %o0, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I1]
  1218. b,pt %xcc, ret_sys_call
  1219.  stx %o0, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I0]
  1220. #endif
  1221. /* SunOS's execv() call only specifies the argv argument, the
  1222.  * environment settings are the same as the calling processes.
  1223.  */
  1224. .globl sunos_execv, sys_execve, sys32_execve
  1225. sys_execve:
  1226. sethi %hi(sparc_execve), %g1
  1227. ba,pt %xcc, execve_merge
  1228.  or %g1, %lo(sparc_execve), %g1
  1229. sunos_execv:
  1230. stx %g0, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I2]
  1231. sys32_execve:
  1232. sethi %hi(sparc32_execve), %g1
  1233. or %g1, %lo(sparc32_execve), %g1
  1234. execve_merge:
  1235. flushw
  1236. jmpl %g1, %g0
  1237.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1238. .globl sys_pipe, sys_sigpause, sys_nis_syscall
  1239. .globl sys_sigsuspend, sys_rt_sigsuspend, sys32_rt_sigsuspend
  1240. .globl sys_rt_sigreturn
  1241. .globl sys32_sigreturn, sys32_rt_sigreturn
  1242. .globl sys32_execve, sys_ptrace
  1243. .globl sys_sigaltstack, sys32_sigaltstack
  1244. .globl sys32_sigstack
  1245. .align 32
  1246. sys_pipe: ba,pt %xcc, sparc_pipe
  1247.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1248. sys_nis_syscall:ba,pt %xcc, c_sys_nis_syscall
  1249.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1250. sys_memory_ordering:
  1251. ba,pt %xcc, sparc_memory_ordering
  1252.  add %sp, STACK_BIAS + REGWIN_SZ, %o1
  1253. sys_sigaltstack:ba,pt %xcc, do_sigaltstack
  1254.  add %i6, STACK_BIAS, %o2
  1255. sys32_sigstack: ba,pt %xcc, do_sys32_sigstack
  1256.  mov %i6, %o2
  1257. sys32_sigaltstack:
  1258. ba,pt %xcc, do_sys32_sigaltstack
  1259.  mov %i6, %o2
  1260. .align 32
  1261. sys_sigsuspend: add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1262. call do_sigsuspend
  1263.  add %o7, 1f-.-4, %o7
  1264. nop
  1265. sys_rt_sigsuspend: /* NOTE: %o0,%o1 have a correct value already */
  1266. add %sp, STACK_BIAS + REGWIN_SZ, %o2
  1267. call do_rt_sigsuspend
  1268.  add %o7, 1f-.-4, %o7
  1269. nop
  1270. sys32_rt_sigsuspend: /* NOTE: %o0,%o1 have a correct value already */
  1271. srl %o0, 0, %o0
  1272. add %sp, STACK_BIAS + REGWIN_SZ, %o2
  1273. call do_rt_sigsuspend32
  1274.  add %o7, 1f-.-4, %o7
  1275. /* NOTE: %o0 has a correct value already */
  1276. sys_sigpause: add %sp, STACK_BIAS + REGWIN_SZ, %o1
  1277. call do_sigpause
  1278.  add %o7, 1f-.-4, %o7
  1279. nop
  1280. sys32_sigreturn:
  1281. add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1282. call do_sigreturn32
  1283.  add %o7, 1f-.-4, %o7
  1284. nop
  1285. sys_rt_sigreturn:
  1286. add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1287. call do_rt_sigreturn
  1288.  add %o7, 1f-.-4, %o7
  1289. nop
  1290. sys32_rt_sigreturn:
  1291. add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1292. call do_rt_sigreturn32
  1293.  add %o7, 1f-.-4, %o7
  1294. nop
  1295. sys_ptrace: add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1296. call do_ptrace
  1297.  add %o7, 1f-.-4, %o7
  1298. nop
  1299. .align 32
  1300. 1: ldx [%curptr + AOFF_task_ptrace], %l5
  1301. andcc %l5, 0x02, %g0
  1302. be,pt %icc, rtrap
  1303.  clr %l6
  1304. call syscall_trace
  1305.  nop
  1306. ba,pt %xcc, rtrap
  1307.  clr %l6
  1308. /* This is how fork() was meant to be done, 8 instruction entry.
  1309.  *
  1310.  * I questioned the following code briefly, let me clear things
  1311.  * up so you must not reason on it like I did.
  1312.  *
  1313.  * Know the fork_kpsr etc. we use in the sparc32 port?  We don't
  1314.  * need it here because the only piece of window state we copy to
  1315.  * the child is the CWP register.  Even if the parent sleeps,
  1316.  * we are safe because we stuck it into pt_regs of the parent
  1317.  * so it will not change.
  1318.  *
  1319.  * XXX This raises the question, whether we can do the same on
  1320.  * XXX sparc32 to get rid of fork_kpsr _and_ fork_kwim.  The
  1321.  * XXX answer is yes.  We stick fork_kpsr in UREG_G0 and
  1322.  * XXX fork_kwim in UREG_G1 (global registers are considered
  1323.  * XXX volatile across a system call in the sparc ABI I think
  1324.  * XXX if it isn't we can use regs->y instead, anyone who depends
  1325.  * XXX upon the Y register being preserved across a fork deserves
  1326.  * XXX to lose).
  1327.  *
  1328.  * In fact we should take advantage of that fact for other things
  1329.  * during system calls...
  1330.  */
  1331. .globl sys_fork, sys_vfork, sys_clone, sparc_exit
  1332. .globl ret_from_syscall
  1333. .align 32
  1334. sys_vfork: /* Under Linux, vfork and fork are just special cases of clone. */
  1335. sethi %hi(0x4000 | 0x0100 | SIGCHLD), %o0
  1336. or %o0, %lo(0x4000 | 0x0100 | SIGCHLD), %o0
  1337. ba,pt %xcc, sys_clone
  1338. sys_fork:  clr %o1
  1339. mov SIGCHLD, %o0
  1340. sys_clone: flushw
  1341. movrz %o1, %fp, %o1
  1342. mov 0, %o3
  1343. ba,pt %xcc, do_fork
  1344.  add %sp, STACK_BIAS + REGWIN_SZ, %o2
  1345. ret_from_syscall:
  1346. /* Clear SPARC_FLAG_NEWCHILD, switch_to leaves thread.flags in
  1347.  * %o7 for us.  Check performance counter stuff too.
  1348.  */
  1349. andn %o7, SPARC_FLAG_NEWCHILD, %l0
  1350. mov %g5, %o0 /* 'prev' */
  1351. call schedule_tail
  1352.  stb %l0, [%g6 + AOFF_task_thread + AOFF_thread_flags]
  1353. andcc %l0, SPARC_FLAG_PERFCTR, %g0
  1354. be,pt %icc, 1f
  1355.  nop
  1356. ldx [%g6 + AOFF_task_thread + AOFF_thread_pcr_reg], %o7
  1357. wr %g0, %o7, %pcr
  1358. /* Blackbird errata workaround.  See commentary in
  1359.  * smp.c:smp_percpu_timer_interrupt() for more
  1360.  * information.
  1361.  */
  1362. ba,pt %xcc, 99f
  1363.  nop
  1364. .align 64
  1365. 99: wr %g0, %g0, %pic
  1366. rd %pic, %g0
  1367. 1: b,pt %xcc, ret_sys_call
  1368.  ldx [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I0], %o0
  1369. sparc_exit: wrpr %g0, (PSTATE_RMO | PSTATE_PEF | PSTATE_PRIV), %pstate
  1370. rdpr %otherwin, %g1
  1371. rdpr %cansave, %g3
  1372. add %g3, %g1, %g3
  1373. wrpr %g3, 0x0, %cansave
  1374. wrpr %g0, 0x0, %otherwin
  1375. wrpr %g0, (PSTATE_RMO | PSTATE_PEF | PSTATE_PRIV | PSTATE_IE), %pstate
  1376. ba,pt %xcc, sys_exit
  1377.  stb %g0, [%g6 + AOFF_task_thread + AOFF_thread_w_saved]
  1378. linux_sparc_ni_syscall:
  1379. sethi %hi(sys_ni_syscall), %l7
  1380. b,pt %xcc, 4f
  1381.  or %l7, %lo(sys_ni_syscall), %l7
  1382. linux_syscall_trace32:
  1383. call syscall_trace
  1384.  nop
  1385. srl %i0, 0, %o0
  1386. mov %i4, %o4
  1387. srl %i1, 0, %o1
  1388. srl %i2, 0, %o2
  1389. b,pt %xcc, 2f
  1390.  srl %i3, 0, %o3
  1391. linux_syscall_trace:
  1392. call syscall_trace
  1393.  nop
  1394. mov %i0, %o0
  1395. mov %i1, %o1
  1396. mov %i2, %o2
  1397. mov %i3, %o3
  1398. b,pt %xcc, 2f
  1399.  mov %i4, %o4
  1400. /* Linux 32-bit and SunOS system calls enter here... */
  1401. .align 32
  1402. .globl linux_sparc_syscall32
  1403. linux_sparc_syscall32:
  1404. /* Direct access to user regs, much faster. */
  1405. cmp %g1, NR_SYSCALLS ! IEU1 Group
  1406. bgeu,pn %xcc, linux_sparc_ni_syscall ! CTI
  1407.  srl %i0, 0, %o0 ! IEU0
  1408. sll %g1, 2, %l4 ! IEU0 Group
  1409. #ifdef SYSCALL_TRACING
  1410. call syscall_trace_entry
  1411.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1412. srl %i0, 0, %o0
  1413. #endif
  1414. mov %i4, %o4 ! IEU1
  1415. lduw [%l7 + %l4], %l7 ! Load
  1416. srl %i1, 0, %o1 ! IEU0 Group
  1417. ldx [%curptr + AOFF_task_ptrace], %l0 ! Load
  1418. mov %i5, %o5 ! IEU1
  1419. srl %i2, 0, %o2 ! IEU0 Group
  1420. andcc %l0, 0x02, %g0 ! IEU0 Group
  1421. bne,pn %icc, linux_syscall_trace32 ! CTI
  1422.  mov %i0, %l5 ! IEU1
  1423. call %l7 ! CTI Group brk forced
  1424.  srl %i3, 0, %o3 ! IEU0
  1425. ba,a,pt %xcc, 3f
  1426. /* Linux native and SunOS system calls enter here... */
  1427. .align 32
  1428. .globl linux_sparc_syscall, ret_sys_call
  1429. linux_sparc_syscall:
  1430. /* Direct access to user regs, much faster. */
  1431. cmp %g1, NR_SYSCALLS ! IEU1 Group
  1432. bgeu,pn %xcc, linux_sparc_ni_syscall ! CTI
  1433.  mov %i0, %o0 ! IEU0
  1434. sll %g1, 2, %l4 ! IEU0 Group
  1435. #ifdef SYSCALL_TRACING
  1436. call syscall_trace_entry
  1437.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1438. mov %i0, %o0
  1439. #endif
  1440. mov %i1, %o1 ! IEU1
  1441. lduw [%l7 + %l4], %l7 ! Load
  1442. 4: mov %i2, %o2 ! IEU0 Group
  1443. ldx [%curptr + AOFF_task_ptrace], %l0 ! Load
  1444. mov %i3, %o3 ! IEU1
  1445. mov %i4, %o4 ! IEU0 Group
  1446. andcc %l0, 0x02, %g0 ! IEU1 Group+1 bubble
  1447. bne,pn %icc, linux_syscall_trace ! CTI Group
  1448.  mov %i0, %l5 ! IEU0
  1449. 2: call %l7 ! CTI Group brk forced
  1450.  mov %i5, %o5 ! IEU0
  1451. nop
  1452. 3: stx %o0, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I0]
  1453. ret_sys_call:
  1454. #ifdef SYSCALL_TRACING
  1455. mov %o0, %o1
  1456. call syscall_trace_exit
  1457.  add %sp, STACK_BIAS + REGWIN_SZ, %o0
  1458. mov %o1, %o0
  1459. #endif
  1460. ldx [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TSTATE], %g3
  1461. ldx [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TNPC], %l1 ! pc = npc
  1462. sra %o0, 0, %o0
  1463. mov %ulo(TSTATE_XCARRY | TSTATE_ICARRY), %g2
  1464. cmp %o0, -ENOIOCTLCMD
  1465. sllx %g2, 32, %g2
  1466. bgeu,pn %xcc, 1f
  1467.  andcc %l0, 0x02, %l6
  1468. andn %g3, %g2, %g3 /* System call success, clear Carry condition code. */
  1469. stx %g3, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TSTATE]
  1470. bne,pn %icc, linux_syscall_trace2
  1471.  add %l1, 0x4, %l2          ! npc = npc+4
  1472. stx %l1, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TPC]
  1473. ba,pt %xcc, rtrap_clr_l6
  1474.  stx %l2, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TNPC]
  1475. 1:
  1476. /* System call failure, set Carry condition code.
  1477.  * Also, get abs(errno) to return to the process.
  1478.  */
  1479. sub %g0, %o0, %o0
  1480. or %g3, %g2, %g3
  1481. stx %o0, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_I0]
  1482. mov 1, %l6
  1483. stx %g3, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TSTATE]
  1484. bne,pn %icc, linux_syscall_trace2
  1485.  add %l1, 0x4, %l2          !npc = npc+4
  1486. stx %l1, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TPC]
  1487. b,pt %xcc, rtrap
  1488.  stx %l2, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TNPC]
  1489. linux_syscall_trace2:
  1490. call syscall_trace
  1491.  nop
  1492. stx %l1, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TPC]
  1493. ba,pt %xcc, rtrap
  1494.  stx %l2, [%sp + STACK_BIAS + REGWIN_SZ + PT_V9_TNPC]
  1495. .align 32
  1496. .globl __flushw_user
  1497. __flushw_user:
  1498. rdpr %otherwin, %g1
  1499. brz,pn %g1, 2f
  1500.  clr %g2
  1501. 1: save %sp, -128, %sp
  1502. rdpr %otherwin, %g1
  1503. brnz,pt %g1, 1b
  1504.  add %g2, 1, %g2
  1505. 1: sub %g2, 1, %g2
  1506. brnz,pt %g2, 1b
  1507.  restore %g0, %g0, %g0
  1508. 2: retl
  1509.  nop
  1510. /* This need not obtain the xtime_lock as it is coded in
  1511.  * an implicitly SMP safe way already.
  1512.  */
  1513. .align 64
  1514. .globl do_gettimeofday
  1515. do_gettimeofday: /* %o0 = timevalp */
  1516. /* Load doubles must be used on xtime so that what we get
  1517.  * is guarenteed to be atomic, this is why we can run this
  1518.  * with interrupts on full blast.  Don't touch this... -DaveM
  1519.  *
  1520.  * Note with time_t changes to the timeval type, I must now use
  1521.  * nucleus atomic quad 128-bit loads.
  1522.  *
  1523.  * If xtime was stored recently, I've seen crap from the
  1524.  * quad load on Cheetah.  Putting a membar SYNC before
  1525.  * the quad load seems to make the problem go away. -DaveM
  1526.  * (we should nop out workarounds like this on spitfire)
  1527.  */
  1528. sethi %hi(timer_tick_offset), %g3
  1529. sethi %hi(xtime), %g2
  1530. sethi %hi(timer_tick_compare), %g1
  1531. ldx [%g3 + %lo(timer_tick_offset)], %g3
  1532. or %g2, %lo(xtime), %g2
  1533. or %g1, %lo(timer_tick_compare), %g1
  1534. 1: rdpr %ver, %o2
  1535. sethi %hi(0x003e0014), %o1
  1536. srlx %o2, 32, %o2
  1537. or %o1, %lo(0x003e0014), %o1
  1538. membar #Sync
  1539. ldda [%g2] ASI_NUCLEUS_QUAD_LDD, %o4
  1540. cmp %o2, %o1
  1541. bne,pt %xcc, 2f
  1542.  nop
  1543. ba,pt %xcc, 3f
  1544.  rd %asr24, %o1
  1545. 2: rd %tick, %o1
  1546. 3: ldx [%g1], %g7
  1547. membar #Sync
  1548. ldda [%g2] ASI_NUCLEUS_QUAD_LDD, %o2
  1549. xor %o4, %o2, %o2
  1550. xor %o5, %o3, %o3
  1551. orcc %o2, %o3, %g0
  1552. bne,pn %xcc, 1b
  1553.  sethi %hi(wall_jiffies), %o2
  1554. sethi %hi(jiffies), %o3
  1555. ldx [%o2 + %lo(wall_jiffies)], %o2
  1556. ldx [%o3 + %lo(jiffies)], %o3
  1557. sub %o3, %o2, %o2
  1558. sethi %hi(timer_ticks_per_usec_quotient), %o3
  1559. add %g3, %o1, %o1
  1560. ldx [%o3 + %lo(timer_ticks_per_usec_quotient)], %o3
  1561. sub %o1, %g7, %o1
  1562. mulx %o3, %o1, %o1
  1563. brz,pt %o2, 1f
  1564.  srlx %o1, 32, %o1
  1565. sethi %hi(10000), %g2
  1566. or %g2, %lo(10000), %g2
  1567. add %o1, %g2, %o1
  1568. 1: sethi %hi(1000000), %o2
  1569. srlx %o5, 32, %o5
  1570. or %o2, %lo(1000000), %o2
  1571. add %o5, %o1, %o5
  1572. cmp %o5, %o2
  1573. bl,a,pn %xcc, 1f
  1574.  stx %o4, [%o0 + 0x0]
  1575. add %o4, 0x1, %o4
  1576. sub %o5, %o2, %o5
  1577. stx %o4, [%o0 + 0x0]
  1578. 1: retl
  1579.  st %o5, [%o0 + 0x8]