head_32.S 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. /*
  2. * Copyright 2010 Tilera Corporation. All Rights Reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation, version 2.
  7. *
  8. * This program is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  11. * NON INFRINGEMENT. See the GNU General Public License for
  12. * more details.
  13. *
  14. * TILE startup code.
  15. */
  16. #include <linux/linkage.h>
  17. #include <linux/init.h>
  18. #include <asm/page.h>
  19. #include <asm/pgtable.h>
  20. #include <asm/thread_info.h>
  21. #include <asm/processor.h>
  22. #include <asm/asm-offsets.h>
  23. #include <hv/hypervisor.h>
  24. #include <arch/chip.h>
  25. #include <arch/spr_def.h>
  26. /*
  27. * This module contains the entry code for kernel images. It performs the
  28. * minimal setup needed to call the generic C routines.
  29. */
  30. __HEAD
  31. ENTRY(_start)
  32. /* Notify the hypervisor of what version of the API we want */
  33. {
  34. movei r1, TILE_CHIP
  35. movei r2, TILE_CHIP_REV
  36. }
  37. {
  38. moveli r0, _HV_VERSION_OLD_HV_INIT
  39. jal _hv_init
  40. }
  41. /* Get a reasonable default ASID in r0 */
  42. {
  43. move r0, zero
  44. jal _hv_inquire_asid
  45. }
  46. /* Install the default page table */
  47. {
  48. moveli r6, lo16(swapper_pgprot - PAGE_OFFSET)
  49. move r4, r0 /* use starting ASID of range for this page table */
  50. }
  51. {
  52. moveli r0, lo16(swapper_pg_dir - PAGE_OFFSET)
  53. auli r6, r6, ha16(swapper_pgprot - PAGE_OFFSET)
  54. }
  55. {
  56. lw r2, r6
  57. addi r6, r6, 4
  58. }
  59. {
  60. lw r3, r6
  61. auli r0, r0, ha16(swapper_pg_dir - PAGE_OFFSET)
  62. }
  63. {
  64. finv r6
  65. move r1, zero /* high 32 bits of CPA is zero */
  66. }
  67. {
  68. moveli lr, lo16(1f)
  69. moveli r5, CTX_PAGE_FLAG
  70. }
  71. {
  72. auli lr, lr, ha16(1f)
  73. j _hv_install_context
  74. }
  75. 1:
  76. /* Get our processor number and save it away in SAVE_K_0. */
  77. jal _hv_inquire_topology
  78. mulll_uu r4, r1, r2 /* r1 == y, r2 == width */
  79. add r4, r4, r0 /* r0 == x, so r4 == cpu == y*width + x */
  80. #ifdef CONFIG_SMP
  81. /*
  82. * Load up our per-cpu offset. When the first (master) tile
  83. * boots, this value is still zero, so we will load boot_pc
  84. * with start_kernel, and boot_sp at the top of init_stack.
  85. * The master tile initializes the per-cpu offset array, so that
  86. * when subsequent (secondary) tiles boot, they will instead load
  87. * from their per-cpu versions of boot_sp and boot_pc.
  88. */
  89. moveli r5, lo16(__per_cpu_offset)
  90. auli r5, r5, ha16(__per_cpu_offset)
  91. s2a r5, r4, r5
  92. lw r5, r5
  93. bnz r5, 1f
  94. /*
  95. * Save the width and height to the smp_topology variable
  96. * for later use.
  97. */
  98. moveli r0, lo16(smp_topology + HV_TOPOLOGY_WIDTH_OFFSET)
  99. auli r0, r0, ha16(smp_topology + HV_TOPOLOGY_WIDTH_OFFSET)
  100. {
  101. sw r0, r2
  102. addi r0, r0, (HV_TOPOLOGY_HEIGHT_OFFSET - HV_TOPOLOGY_WIDTH_OFFSET)
  103. }
  104. sw r0, r3
  105. 1:
  106. #else
  107. move r5, zero
  108. #endif
  109. /* Load and go with the correct pc and sp. */
  110. {
  111. addli r1, r5, lo16(boot_sp)
  112. addli r0, r5, lo16(boot_pc)
  113. }
  114. {
  115. auli r1, r1, ha16(boot_sp)
  116. auli r0, r0, ha16(boot_pc)
  117. }
  118. lw r0, r0
  119. lw sp, r1
  120. or r4, sp, r4
  121. mtspr SPR_SYSTEM_SAVE_K_0, r4 /* save ksp0 + cpu */
  122. {
  123. move lr, zero /* stop backtraces in the called function */
  124. jr r0
  125. }
  126. ENDPROC(_start)
  127. __PAGE_ALIGNED_BSS
  128. .align PAGE_SIZE
  129. ENTRY(empty_zero_page)
  130. .fill PAGE_SIZE,1,0
  131. END(empty_zero_page)
  132. .macro PTE va, cpa, bits1, no_org=0
  133. .ifeq \no_org
  134. .org swapper_pg_dir + PGD_INDEX(\va) * HV_PTE_SIZE
  135. .endif
  136. .word HV_PTE_PAGE | HV_PTE_DIRTY | HV_PTE_PRESENT | HV_PTE_ACCESSED | \
  137. (HV_PTE_MODE_CACHE_NO_L3 << HV_PTE_INDEX_MODE)
  138. .word (\bits1) | (HV_CPA_TO_PTFN(\cpa) << (HV_PTE_INDEX_PTFN - 32))
  139. .endm
  140. __PAGE_ALIGNED_DATA
  141. .align PAGE_SIZE
  142. ENTRY(swapper_pg_dir)
  143. /*
  144. * All data pages from PAGE_OFFSET to MEM_USER_INTRPT are mapped as
  145. * VA = PA + PAGE_OFFSET. We remap things with more precise access
  146. * permissions and more respect for size of RAM later.
  147. */
  148. .set addr, 0
  149. .rept (MEM_USER_INTRPT - PAGE_OFFSET) >> PGDIR_SHIFT
  150. PTE addr + PAGE_OFFSET, addr, (1 << (HV_PTE_INDEX_READABLE - 32)) | \
  151. (1 << (HV_PTE_INDEX_WRITABLE - 32))
  152. .set addr, addr + PGDIR_SIZE
  153. .endr
  154. /* The true text VAs are mapped as VA = PA + MEM_SV_START */
  155. PTE MEM_SV_START, 0, (1 << (HV_PTE_INDEX_READABLE - 32)) | \
  156. (1 << (HV_PTE_INDEX_EXECUTABLE - 32))
  157. .org swapper_pg_dir + PGDIR_SIZE
  158. END(swapper_pg_dir)
  159. /*
  160. * Isolate swapper_pgprot to its own cache line, since each cpu
  161. * starting up will read it using VA-is-PA and local homing.
  162. * This would otherwise likely conflict with other data on the cache
  163. * line, once we have set its permanent home in the page tables.
  164. */
  165. __INITDATA
  166. .align CHIP_L2_LINE_SIZE()
  167. ENTRY(swapper_pgprot)
  168. PTE 0, 0, (1 << (HV_PTE_INDEX_READABLE - 32)) | \
  169. (1 << (HV_PTE_INDEX_WRITABLE - 32)), 1
  170. .align CHIP_L2_LINE_SIZE()
  171. END(swapper_pgprot)