smpboot.S 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. /*
  2. * Copyright 2003-2011 NetLogic Microsystems, Inc. (NetLogic). All rights
  3. * reserved.
  4. *
  5. * This software is available to you under a choice of one of two
  6. * licenses. You may choose to be licensed under the terms of the GNU
  7. * General Public License (GPL) Version 2, available from the file
  8. * COPYING in the main directory of this source tree, or the NetLogic
  9. * license below:
  10. *
  11. * Redistribution and use in source and binary forms, with or without
  12. * modification, are permitted provided that the following conditions
  13. * are met:
  14. *
  15. * 1. Redistributions of source code must retain the above copyright
  16. * notice, this list of conditions and the following disclaimer.
  17. * 2. Redistributions in binary form must reproduce the above copyright
  18. * notice, this list of conditions and the following disclaimer in
  19. * the documentation and/or other materials provided with the
  20. * distribution.
  21. *
  22. * THIS SOFTWARE IS PROVIDED BY NETLOGIC ``AS IS'' AND ANY EXPRESS OR
  23. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  24. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25. * ARE DISCLAIMED. IN NO EVENT SHALL NETLOGIC OR CONTRIBUTORS BE LIABLE
  26. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  27. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  28. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  29. * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  30. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  31. * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
  32. * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  33. */
  34. #include <linux/init.h>
  35. #include <asm/asm.h>
  36. #include <asm/asm-offsets.h>
  37. #include <asm/regdef.h>
  38. #include <asm/mipsregs.h>
  39. #include <asm/stackframe.h>
  40. #include <asm/asmmacro.h>
  41. #include <asm/addrspace.h>
  42. #include <asm/netlogic/common.h>
  43. #include <asm/netlogic/xlp-hal/iomap.h>
  44. #include <asm/netlogic/xlp-hal/xlp.h>
  45. #include <asm/netlogic/xlp-hal/sys.h>
  46. #include <asm/netlogic/xlp-hal/cpucontrol.h>
  47. #define CP0_EBASE $15
  48. #define SYS_CPU_COHERENT_BASE(node) CKSEG1ADDR(XLP_DEFAULT_IO_BASE) + \
  49. XLP_IO_SYS_OFFSET(node) + XLP_IO_PCI_HDRSZ + \
  50. SYS_CPU_NONCOHERENT_MODE * 4
  51. .macro __config_lsu
  52. li t0, LSU_DEFEATURE
  53. mfcr t1, t0
  54. lui t2, 0x4080 /* Enable Unaligned Access, L2HPE */
  55. or t1, t1, t2
  56. li t2, ~0xe /* S1RCM */
  57. and t1, t1, t2
  58. mtcr t1, t0
  59. li t0, SCHED_DEFEATURE
  60. lui t1, 0x0100 /* Experimental: Disable BRU accepting ALU ops */
  61. mtcr t1, t0
  62. .endm
  63. /*
  64. * The cores can come start when they are woken up. This is also the NMI
  65. * entry, so check that first.
  66. *
  67. * The data corresponding to reset is stored at RESET_DATA_PHYS location,
  68. * this will have the thread mask (used when core is woken up) and the
  69. * current NMI handler in case we reached here for an NMI.
  70. *
  71. * When a core or thread is newly woken up, it loops in a 'wait'. When
  72. * the CPU really needs waking up, we send an NMI to it, with the NMI
  73. * handler set to prom_boot_secondary_cpus
  74. */
  75. .set noreorder
  76. .set noat
  77. .set arch=xlr /* for mfcr/mtcr, XLR is sufficient */
  78. FEXPORT(nlm_reset_entry)
  79. dmtc0 k0, $22, 6
  80. dmtc0 k1, $22, 7
  81. mfc0 k0, CP0_STATUS
  82. li k1, 0x80000
  83. and k1, k0, k1
  84. beqz k1, 1f /* go to real reset entry */
  85. nop
  86. li k1, CKSEG1ADDR(RESET_DATA_PHYS) /* NMI */
  87. ld k0, BOOT_NMI_HANDLER(k1)
  88. jr k0
  89. nop
  90. 1: /* Entry point on core wakeup */
  91. mfc0 t0, CP0_EBASE, 1
  92. mfc0 t1, CP0_EBASE, 1
  93. srl t1, 5
  94. andi t1, 0x3 /* t1 <- node */
  95. li t2, 0x40000
  96. mul t3, t2, t1 /* t3 = node * 0x40000 */
  97. srl t0, t0, 2
  98. and t0, t0, 0x7 /* t0 <- core */
  99. li t1, 0x1
  100. sll t0, t1, t0
  101. nor t0, t0, zero /* t0 <- ~(1 << core) */
  102. li t2, SYS_CPU_COHERENT_BASE(0)
  103. add t2, t2, t3 /* t2 <- SYS offset for node */
  104. lw t1, 0(t2)
  105. and t1, t1, t0
  106. sw t1, 0(t2)
  107. /* read back to ensure complete */
  108. lw t1, 0(t2)
  109. sync
  110. /* Configure LSU on Non-0 Cores. */
  111. __config_lsu
  112. /*
  113. * Wake up sibling threads from the initial thread in
  114. * a core.
  115. */
  116. EXPORT(nlm_boot_siblings)
  117. li t0, CKSEG1ADDR(RESET_DATA_PHYS)
  118. lw t1, BOOT_THREAD_MODE(t0) /* t1 <- thread mode */
  119. li t0, ((CPU_BLOCKID_MAP << 8) | MAP_THREADMODE)
  120. mfcr t2, t0
  121. or t2, t2, t1
  122. mtcr t2, t0
  123. /*
  124. * The new hardware thread starts at the next instruction
  125. * For all the cases other than core 0 thread 0, we will
  126. * jump to the secondary wait function.
  127. */
  128. mfc0 v0, CP0_EBASE, 1
  129. andi v0, 0x7f /* v0 <- node/core */
  130. #if 1
  131. /* A0 errata - Write MMU_SETUP after changing thread mode register. */
  132. andi v1, v0, 0x3 /* v1 <- thread id */
  133. bnez v1, 2f
  134. nop
  135. li t0, MMU_SETUP
  136. li t1, 0
  137. mtcr t1, t0
  138. ehb
  139. #endif
  140. 2: beqz v0, 4f
  141. nop
  142. /* setup status reg */
  143. mfc0 t1, CP0_STATUS
  144. li t0, ST0_BEV
  145. or t1, t0
  146. xor t1, t0
  147. #ifdef CONFIG_64BIT
  148. ori t1, ST0_KX
  149. #endif
  150. mtc0 t1, CP0_STATUS
  151. /* mark CPU ready */
  152. PTR_LA t1, nlm_cpu_ready
  153. sll v1, v0, 2
  154. PTR_ADDU t1, v1
  155. li t2, 1
  156. sw t2, 0(t1)
  157. /* Wait until NMI hits */
  158. 3: wait
  159. j 3b
  160. nop
  161. /*
  162. * For the boot CPU, we have to restore registers and
  163. * return
  164. */
  165. 4: dmfc0 t0, $4, 2 /* restore SP from UserLocal */
  166. li t1, 0xfadebeef
  167. dmtc0 t1, $4, 2 /* restore SP from UserLocal */
  168. PTR_SUBU sp, t0, PT_SIZE
  169. RESTORE_ALL
  170. jr ra
  171. nop
  172. EXPORT(nlm_reset_entry_end)
  173. FEXPORT(xlp_boot_core0_siblings) /* "Master" cpu starts from here */
  174. __config_lsu
  175. dmtc0 sp, $4, 2 /* SP saved in UserLocal */
  176. SAVE_ALL
  177. sync
  178. /* find the location to which nlm_boot_siblings was relocated */
  179. li t0, CKSEG1ADDR(RESET_VEC_PHYS)
  180. dla t1, nlm_reset_entry
  181. dla t2, nlm_boot_siblings
  182. dsubu t2, t1
  183. daddu t2, t0
  184. /* call it */
  185. jr t2
  186. nop
  187. /* not reached */
  188. __CPUINIT
  189. NESTED(nlm_boot_secondary_cpus, 16, sp)
  190. PTR_LA t1, nlm_next_sp
  191. PTR_L sp, 0(t1)
  192. PTR_LA t1, nlm_next_gp
  193. PTR_L gp, 0(t1)
  194. /* a0 has the processor id */
  195. PTR_LA t0, nlm_early_init_secondary
  196. jalr t0
  197. nop
  198. PTR_LA t0, smp_bootstrap
  199. jr t0
  200. nop
  201. END(nlm_boot_secondary_cpus)
  202. __FINIT
  203. /*
  204. * In case of RMIboot bootloader which is used on XLR boards, the CPUs
  205. * be already woken up and waiting in bootloader code.
  206. * This will get them out of the bootloader code and into linux. Needed
  207. * because the bootloader area will be taken and initialized by linux.
  208. */
  209. __CPUINIT
  210. NESTED(nlm_rmiboot_preboot, 16, sp)
  211. mfc0 t0, $15, 1 # read ebase
  212. andi t0, 0x1f # t0 has the processor_id()
  213. andi t2, t0, 0x3 # thread no
  214. sll t0, 2 # offset in cpu array
  215. PTR_LA t1, nlm_cpu_ready # mark CPU ready
  216. PTR_ADDU t1, t0
  217. li t3, 1
  218. sw t3, 0(t1)
  219. bnez t2, 1f # skip thread programming
  220. nop # for non zero hw threads
  221. /*
  222. * MMU setup only for first thread in core
  223. */
  224. li t0, 0x400
  225. mfcr t1, t0
  226. li t2, 6 # XLR thread mode mask
  227. nor t3, t2, zero
  228. and t2, t1, t2 # t2 - current thread mode
  229. li v0, CKSEG1ADDR(RESET_DATA_PHYS)
  230. lw v1, BOOT_THREAD_MODE(v0) # v1 - new thread mode
  231. sll v1, 1
  232. beq v1, t2, 1f # same as request value
  233. nop # nothing to do */
  234. and t2, t1, t3 # mask out old thread mode
  235. or t1, t2, v1 # put in new value
  236. mtcr t1, t0 # update core control
  237. 1: wait
  238. j 1b
  239. nop
  240. END(nlm_rmiboot_preboot)
  241. __FINIT