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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Here is where the ball gets rolling as far as the kernel is concerned.
  3.  * When control is transferred to _start, the bootload has already
  4.  * loaded us to the correct address.  All that's left to do here is
  5.  * to set up the kernel's global pointer and jump to the kernel
  6.  * entry point.
  7.  *
  8.  * Copyright (C) 1998-2001 Hewlett-Packard Co
  9.  * David Mosberger-Tang <davidm@hpl.hp.com>
  10.  * Stephane Eranian <eranian@hpl.hp.com>
  11.  * Copyright (C) 1999 VA Linux Systems
  12.  * Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
  13.  * Copyright (C) 1999 Intel Corp.
  14.  * Copyright (C) 1999 Asit Mallick <Asit.K.Mallick@intel.com>
  15.  * Copyright (C) 1999 Don Dugger <Don.Dugger@intel.com>
  16.  */
  17. #include <linux/config.h>
  18. #include <asm/asmmacro.h>
  19. #include <asm/fpu.h>
  20. #include <asm/kregs.h>
  21. #include <asm/mmu_context.h>
  22. #include <asm/offsets.h>
  23. #include <asm/pal.h>
  24. #include <asm/pgtable.h>
  25. #include <asm/processor.h>
  26. #include <asm/ptrace.h>
  27. #include <asm/system.h>
  28. .section __special_page_section,"ax"
  29. .global empty_zero_page
  30. empty_zero_page:
  31. .skip PAGE_SIZE
  32. .global swapper_pg_dir
  33. swapper_pg_dir:
  34. .skip PAGE_SIZE
  35. .rodata
  36. halt_msg:
  37. stringz "Halting kerneln"
  38. .text
  39. .global start_ap
  40. /*
  41.  * Start the kernel.  When the bootloader passes control to _start(), r28
  42.  * points to the address of the boot parameter area.  Execution reaches
  43.  * here in physical mode.
  44.  */
  45. GLOBAL_ENTRY(_start)
  46. start_ap:
  47. .prologue
  48. .save rp, r4 // terminate unwind chain with a NULL rp
  49. mov r4=r0
  50. .body
  51. /*
  52.  * Initialize the region register for region 7 and install a translation register
  53.  * that maps the kernel's text and data:
  54.  */
  55. rsm psr.i | psr.ic
  56. mov r16=((ia64_rid(IA64_REGION_ID_KERNEL, PAGE_OFFSET) << 8) | (IA64_GRANULE_SHIFT << 2))
  57. ;;
  58. srlz.i
  59. mov r18=KERNEL_TR_PAGE_SHIFT<<2
  60. movl r17=KERNEL_START
  61. ;;
  62. mov rr[r17]=r16
  63. mov cr.itir=r18
  64. mov cr.ifa=r17
  65. mov r16=IA64_TR_KERNEL
  66. movl r18=((1 << KERNEL_TR_PAGE_SHIFT) | PAGE_KERNEL)
  67. ;;
  68. srlz.i
  69. ;;
  70. itr.i itr[r16]=r18
  71. ;;
  72. itr.d dtr[r16]=r18
  73. ;;
  74. srlz.i
  75. /*
  76.  * Switch into virtual mode:
  77.  */
  78. movl r16=(IA64_PSR_IT|IA64_PSR_IC|IA64_PSR_DT|IA64_PSR_RT|IA64_PSR_DFH|IA64_PSR_BN 
  79.   |IA64_PSR_DI)
  80. ;;
  81. mov cr.ipsr=r16
  82. movl r17=1f
  83. ;;
  84. mov cr.iip=r17
  85. mov cr.ifs=r0
  86. ;;
  87. rfi
  88. ;;
  89. 1: // now we are in virtual mode
  90. // set IVT entry point---can't access I/O ports without it
  91. movl r3=ia64_ivt
  92. ;;
  93. mov cr.iva=r3
  94. movl r2=FPSR_DEFAULT
  95. ;;
  96. srlz.i
  97. movl gp=__gp
  98. mov ar.fpsr=r2
  99. ;;
  100. #ifdef CONFIG_IA64_EARLY_PRINTK
  101. mov r3=(6<<8) | (IA64_GRANULE_SHIFT<<2)
  102. movl r2=6<<61
  103. ;;
  104. mov rr[r2]=r3
  105. ;;
  106. srlz.i
  107. ;;
  108. #endif
  109. #define isAP p2 // are we an Application Processor?
  110. #define isBP p3 // are we the Bootstrap Processor?
  111. #ifdef CONFIG_SMP
  112. /*
  113.  * Find the init_task for the currently booting CPU.  At poweron, and in
  114.  * UP mode, cpucount is 0.
  115.  */
  116. movl r3=cpucount
  117.   ;;
  118. ld4 r3=[r3] // r3 <- smp_processor_id()
  119. movl r2=init_tasks
  120. ;;
  121. shladd r2=r3,3,r2
  122. ;;
  123. ld8 r2=[r2]
  124. #else
  125. mov r3=0
  126. movl r2=init_task_union
  127. ;;
  128. #endif
  129. cmp4.ne isAP,isBP=r3,r0
  130. ;; // RAW on r2
  131. extr r3=r2,0,61 // r3 == phys addr of task struct
  132. mov r16=KERNEL_TR_PAGE_NUM
  133. ;;
  134. // load the "current" pointer (r13) and ar.k6 with the current task
  135. mov r13=r2
  136. mov IA64_KR(CURRENT)=r3 // Physical address
  137. // initialize k4 to a safe value (64-128MB is mapped by TR_KERNEL)
  138. mov IA64_KR(CURRENT_STACK)=r16
  139. /*
  140.  * Reserve space at the top of the stack for "struct pt_regs".  Kernel threads
  141.  * don't store interesting values in that structure, but the space still needs
  142.  * to be there because time-critical stuff such as the context switching can
  143.  * be implemented more efficiently (for example, __switch_to()
  144.  * always sets the psr.dfh bit of the task it is switching to).
  145.  */
  146. addl r12=IA64_STK_OFFSET-IA64_PT_REGS_SIZE-16,r2
  147. addl r2=IA64_RBS_OFFSET,r2 // initialize the RSE
  148. mov ar.rsc=0 // place RSE in enforced lazy mode
  149. ;;
  150. loadrs // clear the dirty partition
  151. ;;
  152. mov ar.bspstore=r2 // establish the new RSE stack
  153. ;;
  154. mov ar.rsc=0x3 // place RSE in eager mode
  155. (isBP) dep r28=-1,r28,61,3 // make address virtual
  156. (isBP) movl r2=ia64_boot_param
  157. ;;
  158. (isBP) st8 [r2]=r28 // save the address of the boot param area passed by the bootloader
  159. #ifdef CONFIG_IA64_EARLY_PRINTK
  160. .rodata
  161. alive_msg:
  162. stringz "I'm alive and welln"
  163. alive_msg_end:
  164. .previous
  165. alloc r2=ar.pfs,0,0,2,0
  166. movl out0=alive_msg
  167. movl out1=alive_msg_end-alive_msg-1
  168. ;;
  169. br.call.sptk.many rp=early_printk
  170. 1: // force new bundle
  171. #endif /* CONFIG_IA64_EARLY_PRINTK */
  172. #ifdef CONFIG_SMP
  173. (isAP) br.call.sptk.many rp=start_secondary
  174. .ret0:
  175. (isAP) br.cond.sptk self
  176. #endif
  177. // This is executed by the bootstrap processor (bsp) only:
  178. #ifdef CONFIG_IA64_FW_EMU
  179. // initialize PAL & SAL emulator:
  180. br.call.sptk.many rp=sys_fw_init
  181. .ret1:
  182. #endif
  183. br.call.sptk.many rp=start_kernel
  184. .ret2: addl r3=@ltoff(halt_msg),gp
  185. ;;
  186. alloc r2=ar.pfs,8,0,2,0
  187. ;;
  188. ld8 out0=[r3]
  189. br.call.sptk.many b0=console_print
  190. self: br.sptk.many self // endless loop
  191. END(_start)
  192. GLOBAL_ENTRY(ia64_save_debug_regs)
  193. alloc r16=ar.pfs,1,0,0,0
  194. mov r20=ar.lc // preserve ar.lc
  195. mov ar.lc=IA64_NUM_DBG_REGS-1
  196. mov r18=0
  197. add r19=IA64_NUM_DBG_REGS*8,in0
  198. ;;
  199. 1: mov r16=dbr[r18]
  200. #ifdef CONFIG_ITANIUM
  201. ;;
  202. srlz.d
  203. #endif
  204. mov r17=ibr[r18]
  205. add r18=1,r18
  206. ;;
  207. st8.nta [in0]=r16,8
  208. st8.nta [r19]=r17,8
  209. br.cloop.sptk.many 1b
  210. ;;
  211. mov ar.lc=r20 // restore ar.lc
  212. br.ret.sptk.many rp
  213. END(ia64_save_debug_regs)
  214. GLOBAL_ENTRY(ia64_load_debug_regs)
  215. alloc r16=ar.pfs,1,0,0,0
  216. lfetch.nta [in0]
  217. mov r20=ar.lc // preserve ar.lc
  218. add r19=IA64_NUM_DBG_REGS*8,in0
  219. mov ar.lc=IA64_NUM_DBG_REGS-1
  220. mov r18=-1
  221. ;;
  222. 1: ld8.nta r16=[in0],8
  223. ld8.nta r17=[r19],8
  224. add r18=1,r18
  225. ;;
  226. mov dbr[r18]=r16
  227. #ifdef CONFIG_ITANIUM
  228. ;;
  229. srlz.d // Errata 132 (NoFix status)
  230. #endif
  231. mov ibr[r18]=r17
  232. br.cloop.sptk.many 1b
  233. ;;
  234. mov ar.lc=r20 // restore ar.lc
  235. br.ret.sptk.many rp
  236. END(ia64_load_debug_regs)
  237. GLOBAL_ENTRY(__ia64_save_fpu)
  238. alloc r2=ar.pfs,1,0,0,0
  239. adds r3=16,in0
  240. ;;
  241. stf.spill.nta [in0]=f32,32
  242. stf.spill.nta [ r3]=f33,32
  243. ;;
  244. stf.spill.nta [in0]=f34,32
  245. stf.spill.nta [ r3]=f35,32
  246. ;;
  247. stf.spill.nta [in0]=f36,32
  248. stf.spill.nta [ r3]=f37,32
  249. ;;
  250. stf.spill.nta [in0]=f38,32
  251. stf.spill.nta [ r3]=f39,32
  252. ;;
  253. stf.spill.nta [in0]=f40,32
  254. stf.spill.nta [ r3]=f41,32
  255. ;;
  256. stf.spill.nta [in0]=f42,32
  257. stf.spill.nta [ r3]=f43,32
  258. ;;
  259. stf.spill.nta [in0]=f44,32
  260. stf.spill.nta [ r3]=f45,32
  261. ;;
  262. stf.spill.nta [in0]=f46,32
  263. stf.spill.nta [ r3]=f47,32
  264. ;;
  265. stf.spill.nta [in0]=f48,32
  266. stf.spill.nta [ r3]=f49,32
  267. ;;
  268. stf.spill.nta [in0]=f50,32
  269. stf.spill.nta [ r3]=f51,32
  270. ;;
  271. stf.spill.nta [in0]=f52,32
  272. stf.spill.nta [ r3]=f53,32
  273. ;;
  274. stf.spill.nta [in0]=f54,32
  275. stf.spill.nta [ r3]=f55,32
  276. ;;
  277. stf.spill.nta [in0]=f56,32
  278. stf.spill.nta [ r3]=f57,32
  279. ;;
  280. stf.spill.nta [in0]=f58,32
  281. stf.spill.nta [ r3]=f59,32
  282. ;;
  283. stf.spill.nta [in0]=f60,32
  284. stf.spill.nta [ r3]=f61,32
  285. ;;
  286. stf.spill.nta [in0]=f62,32
  287. stf.spill.nta [ r3]=f63,32
  288. ;;
  289. stf.spill.nta [in0]=f64,32
  290. stf.spill.nta [ r3]=f65,32
  291. ;;
  292. stf.spill.nta [in0]=f66,32
  293. stf.spill.nta [ r3]=f67,32
  294. ;;
  295. stf.spill.nta [in0]=f68,32
  296. stf.spill.nta [ r3]=f69,32
  297. ;;
  298. stf.spill.nta [in0]=f70,32
  299. stf.spill.nta [ r3]=f71,32
  300. ;;
  301. stf.spill.nta [in0]=f72,32
  302. stf.spill.nta [ r3]=f73,32
  303. ;;
  304. stf.spill.nta [in0]=f74,32
  305. stf.spill.nta [ r3]=f75,32
  306. ;;
  307. stf.spill.nta [in0]=f76,32
  308. stf.spill.nta [ r3]=f77,32
  309. ;;
  310. stf.spill.nta [in0]=f78,32
  311. stf.spill.nta [ r3]=f79,32
  312. ;;
  313. stf.spill.nta [in0]=f80,32
  314. stf.spill.nta [ r3]=f81,32
  315. ;;
  316. stf.spill.nta [in0]=f82,32
  317. stf.spill.nta [ r3]=f83,32
  318. ;;
  319. stf.spill.nta [in0]=f84,32
  320. stf.spill.nta [ r3]=f85,32
  321. ;;
  322. stf.spill.nta [in0]=f86,32
  323. stf.spill.nta [ r3]=f87,32
  324. ;;
  325. stf.spill.nta [in0]=f88,32
  326. stf.spill.nta [ r3]=f89,32
  327. ;;
  328. stf.spill.nta [in0]=f90,32
  329. stf.spill.nta [ r3]=f91,32
  330. ;;
  331. stf.spill.nta [in0]=f92,32
  332. stf.spill.nta [ r3]=f93,32
  333. ;;
  334. stf.spill.nta [in0]=f94,32
  335. stf.spill.nta [ r3]=f95,32
  336. ;;
  337. stf.spill.nta [in0]=f96,32
  338. stf.spill.nta [ r3]=f97,32
  339. ;;
  340. stf.spill.nta [in0]=f98,32
  341. stf.spill.nta [ r3]=f99,32
  342. ;;
  343. stf.spill.nta [in0]=f100,32
  344. stf.spill.nta [ r3]=f101,32
  345. ;;
  346. stf.spill.nta [in0]=f102,32
  347. stf.spill.nta [ r3]=f103,32
  348. ;;
  349. stf.spill.nta [in0]=f104,32
  350. stf.spill.nta [ r3]=f105,32
  351. ;;
  352. stf.spill.nta [in0]=f106,32
  353. stf.spill.nta [ r3]=f107,32
  354. ;;
  355. stf.spill.nta [in0]=f108,32
  356. stf.spill.nta [ r3]=f109,32
  357. ;;
  358. stf.spill.nta [in0]=f110,32
  359. stf.spill.nta [ r3]=f111,32
  360. ;;
  361. stf.spill.nta [in0]=f112,32
  362. stf.spill.nta [ r3]=f113,32
  363. ;;
  364. stf.spill.nta [in0]=f114,32
  365. stf.spill.nta [ r3]=f115,32
  366. ;;
  367. stf.spill.nta [in0]=f116,32
  368. stf.spill.nta [ r3]=f117,32
  369. ;;
  370. stf.spill.nta [in0]=f118,32
  371. stf.spill.nta [ r3]=f119,32
  372. ;;
  373. stf.spill.nta [in0]=f120,32
  374. stf.spill.nta [ r3]=f121,32
  375. ;;
  376. stf.spill.nta [in0]=f122,32
  377. stf.spill.nta [ r3]=f123,32
  378. ;;
  379. stf.spill.nta [in0]=f124,32
  380. stf.spill.nta [ r3]=f125,32
  381. ;;
  382. stf.spill.nta [in0]=f126,32
  383. stf.spill.nta [ r3]=f127,32
  384. br.ret.sptk.many rp
  385. END(__ia64_save_fpu)
  386. GLOBAL_ENTRY(__ia64_load_fpu)
  387. alloc r2=ar.pfs,1,0,0,0
  388. adds r3=16,in0
  389. ;;
  390. ldf.fill.nta f32=[in0],32
  391. ldf.fill.nta f33=[ r3],32
  392. ;;
  393. ldf.fill.nta f34=[in0],32
  394. ldf.fill.nta f35=[ r3],32
  395. ;;
  396. ldf.fill.nta f36=[in0],32
  397. ldf.fill.nta f37=[ r3],32
  398. ;;
  399. ldf.fill.nta f38=[in0],32
  400. ldf.fill.nta f39=[ r3],32
  401. ;;
  402. ldf.fill.nta f40=[in0],32
  403. ldf.fill.nta f41=[ r3],32
  404. ;;
  405. ldf.fill.nta f42=[in0],32
  406. ldf.fill.nta f43=[ r3],32
  407. ;;
  408. ldf.fill.nta f44=[in0],32
  409. ldf.fill.nta f45=[ r3],32
  410. ;;
  411. ldf.fill.nta f46=[in0],32
  412. ldf.fill.nta f47=[ r3],32
  413. ;;
  414. ldf.fill.nta f48=[in0],32
  415. ldf.fill.nta f49=[ r3],32
  416. ;;
  417. ldf.fill.nta f50=[in0],32
  418. ldf.fill.nta f51=[ r3],32
  419. ;;
  420. ldf.fill.nta f52=[in0],32
  421. ldf.fill.nta f53=[ r3],32
  422. ;;
  423. ldf.fill.nta f54=[in0],32
  424. ldf.fill.nta f55=[ r3],32
  425. ;;
  426. ldf.fill.nta f56=[in0],32
  427. ldf.fill.nta f57=[ r3],32
  428. ;;
  429. ldf.fill.nta f58=[in0],32
  430. ldf.fill.nta f59=[ r3],32
  431. ;;
  432. ldf.fill.nta f60=[in0],32
  433. ldf.fill.nta f61=[ r3],32
  434. ;;
  435. ldf.fill.nta f62=[in0],32
  436. ldf.fill.nta f63=[ r3],32
  437. ;;
  438. ldf.fill.nta f64=[in0],32
  439. ldf.fill.nta f65=[ r3],32
  440. ;;
  441. ldf.fill.nta f66=[in0],32
  442. ldf.fill.nta f67=[ r3],32
  443. ;;
  444. ldf.fill.nta f68=[in0],32
  445. ldf.fill.nta f69=[ r3],32
  446. ;;
  447. ldf.fill.nta f70=[in0],32
  448. ldf.fill.nta f71=[ r3],32
  449. ;;
  450. ldf.fill.nta f72=[in0],32
  451. ldf.fill.nta f73=[ r3],32
  452. ;;
  453. ldf.fill.nta f74=[in0],32
  454. ldf.fill.nta f75=[ r3],32
  455. ;;
  456. ldf.fill.nta f76=[in0],32
  457. ldf.fill.nta f77=[ r3],32
  458. ;;
  459. ldf.fill.nta f78=[in0],32
  460. ldf.fill.nta f79=[ r3],32
  461. ;;
  462. ldf.fill.nta f80=[in0],32
  463. ldf.fill.nta f81=[ r3],32
  464. ;;
  465. ldf.fill.nta f82=[in0],32
  466. ldf.fill.nta f83=[ r3],32
  467. ;;
  468. ldf.fill.nta f84=[in0],32
  469. ldf.fill.nta f85=[ r3],32
  470. ;;
  471. ldf.fill.nta f86=[in0],32
  472. ldf.fill.nta f87=[ r3],32
  473. ;;
  474. ldf.fill.nta f88=[in0],32
  475. ldf.fill.nta f89=[ r3],32
  476. ;;
  477. ldf.fill.nta f90=[in0],32
  478. ldf.fill.nta f91=[ r3],32
  479. ;;
  480. ldf.fill.nta f92=[in0],32
  481. ldf.fill.nta f93=[ r3],32
  482. ;;
  483. ldf.fill.nta f94=[in0],32
  484. ldf.fill.nta f95=[ r3],32
  485. ;;
  486. ldf.fill.nta f96=[in0],32
  487. ldf.fill.nta f97=[ r3],32
  488. ;;
  489. ldf.fill.nta f98=[in0],32
  490. ldf.fill.nta f99=[ r3],32
  491. ;;
  492. ldf.fill.nta f100=[in0],32
  493. ldf.fill.nta f101=[ r3],32
  494. ;;
  495. ldf.fill.nta f102=[in0],32
  496. ldf.fill.nta f103=[ r3],32
  497. ;;
  498. ldf.fill.nta f104=[in0],32
  499. ldf.fill.nta f105=[ r3],32
  500. ;;
  501. ldf.fill.nta f106=[in0],32
  502. ldf.fill.nta f107=[ r3],32
  503. ;;
  504. ldf.fill.nta f108=[in0],32
  505. ldf.fill.nta f109=[ r3],32
  506. ;;
  507. ldf.fill.nta f110=[in0],32
  508. ldf.fill.nta f111=[ r3],32
  509. ;;
  510. ldf.fill.nta f112=[in0],32
  511. ldf.fill.nta f113=[ r3],32
  512. ;;
  513. ldf.fill.nta f114=[in0],32
  514. ldf.fill.nta f115=[ r3],32
  515. ;;
  516. ldf.fill.nta f116=[in0],32
  517. ldf.fill.nta f117=[ r3],32
  518. ;;
  519. ldf.fill.nta f118=[in0],32
  520. ldf.fill.nta f119=[ r3],32
  521. ;;
  522. ldf.fill.nta f120=[in0],32
  523. ldf.fill.nta f121=[ r3],32
  524. ;;
  525. ldf.fill.nta f122=[in0],32
  526. ldf.fill.nta f123=[ r3],32
  527. ;;
  528. ldf.fill.nta f124=[in0],32
  529. ldf.fill.nta f125=[ r3],32
  530. ;;
  531. ldf.fill.nta f126=[in0],32
  532. ldf.fill.nta f127=[ r3],32
  533. br.ret.sptk.many rp
  534. END(__ia64_load_fpu)
  535. GLOBAL_ENTRY(__ia64_init_fpu)
  536. stf.spill [sp]=f0 // M3
  537. mov  f32=f0 // F
  538. nop.b  0
  539. ldfps  f33,f34=[sp] // M0
  540. ldfps  f35,f36=[sp] // M1
  541. mov      f37=f0 // F
  542. ;;
  543. setf.s  f38=r0 // M2
  544. setf.s  f39=r0 // M3
  545. mov      f40=f0 // F
  546. ldfps  f41,f42=[sp] // M0
  547. ldfps  f43,f44=[sp] // M1
  548. mov      f45=f0 // F
  549. setf.s  f46=r0 // M2
  550. setf.s  f47=r0 // M3
  551. mov      f48=f0 // F
  552. ldfps  f49,f50=[sp] // M0
  553. ldfps  f51,f52=[sp] // M1
  554. mov      f53=f0 // F
  555. setf.s  f54=r0 // M2
  556. setf.s  f55=r0 // M3
  557. mov      f56=f0 // F
  558. ldfps  f57,f58=[sp] // M0
  559. ldfps  f59,f60=[sp] // M1
  560. mov      f61=f0 // F
  561. setf.s  f62=r0 // M2
  562. setf.s  f63=r0 // M3
  563. mov      f64=f0 // F
  564. ldfps  f65,f66=[sp] // M0
  565. ldfps  f67,f68=[sp] // M1
  566. mov      f69=f0 // F
  567. setf.s  f70=r0 // M2
  568. setf.s  f71=r0 // M3
  569. mov      f72=f0 // F
  570. ldfps  f73,f74=[sp] // M0
  571. ldfps  f75,f76=[sp] // M1
  572. mov      f77=f0 // F
  573. setf.s  f78=r0 // M2
  574. setf.s  f79=r0 // M3
  575. mov      f80=f0 // F
  576. ldfps  f81,f82=[sp] // M0
  577. ldfps  f83,f84=[sp] // M1
  578. mov      f85=f0 // F
  579. setf.s  f86=r0 // M2
  580. setf.s  f87=r0 // M3
  581. mov      f88=f0 // F
  582. /*
  583.  * When the instructions are cached, it would be faster to initialize
  584.  * the remaining registers with simply mov instructions (F-unit).
  585.  * This gets the time down to ~29 cycles.  However, this would use up
  586.  * 33 bundles, whereas continuing with the above pattern yields
  587.  * 10 bundles and ~30 cycles.
  588.  */
  589. ldfps  f89,f90=[sp] // M0
  590. ldfps  f91,f92=[sp] // M1
  591. mov      f93=f0 // F
  592. setf.s  f94=r0 // M2
  593. setf.s  f95=r0 // M3
  594. mov      f96=f0 // F
  595. ldfps  f97,f98=[sp] // M0
  596. ldfps  f99,f100=[sp] // M1
  597. mov      f101=f0 // F
  598. setf.s  f102=r0 // M2
  599. setf.s  f103=r0 // M3
  600. mov      f104=f0 // F
  601. ldfps  f105,f106=[sp] // M0
  602. ldfps  f107,f108=[sp] // M1
  603. mov      f109=f0 // F
  604. setf.s  f110=r0 // M2
  605. setf.s  f111=r0 // M3
  606. mov      f112=f0 // F
  607. ldfps  f113,f114=[sp] // M0
  608. ldfps  f115,f116=[sp] // M1
  609. mov      f117=f0 // F
  610. setf.s  f118=r0 // M2
  611. setf.s  f119=r0 // M3
  612. mov      f120=f0 // F
  613. ldfps  f121,f122=[sp] // M0
  614. ldfps  f123,f124=[sp] // M1
  615. mov      f125=f0 // F
  616. setf.s  f126=r0 // M2
  617. setf.s  f127=r0 // M3
  618. br.ret.sptk.many rp // F
  619. END(__ia64_init_fpu)
  620. /*
  621.  * Switch execution mode from virtual to physical or vice versa.
  622.  *
  623.  * Inputs:
  624.  * r16 = new psr to establish
  625.  *
  626.  * Note: RSE must already be in enforced lazy mode
  627.  */
  628. GLOBAL_ENTRY(ia64_switch_mode)
  629.  {
  630. alloc r2=ar.pfs,0,0,0,0
  631. rsm psr.i | psr.ic // disable interrupts and interrupt collection
  632. mov r15=ip
  633.  }
  634. ;;
  635.  {
  636. flushrs // must be first insn in group
  637. srlz.i
  638. shr.u r19=r15,61 // r19 <- top 3 bits of current IP
  639.  }
  640. ;;
  641. mov cr.ipsr=r16 // set new PSR
  642. add r3=1f-ia64_switch_mode,r15
  643. xor r15=0x7,r19 // flip the region bits
  644. mov r17=ar.bsp
  645. mov r14=rp // get return address into a general register
  646. // switch RSE backing store:
  647. ;;
  648. dep r17=r15,r17,61,3 // make ar.bsp physical or virtual
  649. mov r18=ar.rnat // save ar.rnat
  650. ;;
  651. mov ar.bspstore=r17 // this steps on ar.rnat
  652. dep r3=r15,r3,61,3 // make rfi return address physical or virtual
  653. ;;
  654. mov cr.iip=r3
  655. mov cr.ifs=r0
  656. dep sp=r15,sp,61,3 // make stack pointer physical or virtual
  657. ;;
  658. mov ar.rnat=r18 // restore ar.rnat
  659. dep r14=r15,r14,61,3 // make function return address physical or virtual
  660. rfi // must be last insn in group
  661. ;;
  662. 1: mov rp=r14
  663. br.ret.sptk.many rp
  664. END(ia64_switch_mode)
  665. #ifdef CONFIG_IA64_BRL_EMU
  666. /*
  667.  *  Assembly routines used by brl_emu.c to set preserved register state.
  668.  */
  669. #define SET_REG(reg)
  670.  GLOBAL_ENTRY(ia64_set_##reg);
  671. alloc r16=ar.pfs,1,0,0,0;
  672. mov reg=r32;
  673. ;;
  674. br.ret.sptk.many rp;
  675.  END(ia64_set_##reg)
  676. SET_REG(b1);
  677. SET_REG(b2);
  678. SET_REG(b3);
  679. SET_REG(b4);
  680. SET_REG(b5);
  681. #endif /* CONFIG_IA64_BRL_EMU */
  682. #ifdef CONFIG_SMP
  683. /*
  684.  * This routine handles spinlock contention.  It uses a simple exponential backoff
  685.  * algorithm to reduce unnecessary bus traffic.  The initial delay is selected from
  686.  * the low-order bits of the cycle counter (a cheap "randomizer").  I'm sure this
  687.  * could use additional tuning, especially on systems with a large number of CPUs.
  688.  * Also, I think the maximum delay should be made a function of the number of CPUs in
  689.  * the system. --davidm 00/08/05
  690.  *
  691.  * WARNING: This is not a normal procedure.  It gets called from C code without
  692.  * the compiler knowing about it.  Thus, we must not use any scratch registers
  693.  * beyond those that were declared "clobbered" at the call-site (see spin_lock()
  694.  * macro).  We may not even use the stacked registers, because that could overwrite
  695.  * output registers.  Similarly, we can't use the scratch stack area as it may be
  696.  * in use, too.
  697.  *
  698.  * Inputs:
  699.  * ar.ccv = 0 (and available for use)
  700.  * r28 = available for use
  701.  * r29 = available for use
  702.  * r30 = non-zero (and available for use)
  703.  * r31 = address of lock we're trying to acquire
  704.  * p15 = available for use
  705.  */
  706. # define delay r28
  707. # define timeout r29
  708. # define tmp r30
  709. GLOBAL_ENTRY(ia64_spinlock_contention)
  710. mov tmp=ar.itc
  711. ;;
  712. and delay=0x3f,tmp
  713. ;;
  714. .retry: add timeout=tmp,delay
  715. shl delay=delay,1
  716. ;;
  717. dep delay=delay,r0,0,13 // limit delay to 8192 cycles
  718. ;;
  719. // delay a little...
  720. .wait: sub tmp=tmp,timeout
  721. or delay=0xf,delay // make sure delay is non-zero (otherwise we get stuck with 0)
  722. ;;
  723. cmp.lt p15,p0=tmp,r0
  724. mov tmp=ar.itc
  725. (p15) br.cond.sptk .wait
  726. ;;
  727. ld4 tmp=[r31]
  728. ;;
  729. cmp.ne p15,p0=tmp,r0
  730. mov tmp=ar.itc
  731. (p15) br.cond.sptk .retry // lock is still busy
  732. ;;
  733. // try acquiring lock (we know ar.ccv is still zero!):
  734. mov tmp=1
  735. ;;
  736. cmpxchg4.acq tmp=[r31],tmp,ar.ccv
  737. ;;
  738. cmp.eq p15,p0=tmp,r0
  739. mov tmp=ar.itc
  740. (p15) br.ret.sptk.many b7 // got lock -> return
  741. br .retry // still no luck, retry
  742. END(ia64_spinlock_contention)
  743. #endif