smpboot.S 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  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. #define XLP_AX_WORKAROUND /* enable Ax silicon workarounds */
  52. /* Enable XLP features and workarounds in the LSU */
  53. .macro xlp_config_lsu
  54. li t0, LSU_DEFEATURE
  55. mfcr t1, t0
  56. lui t2, 0xc080 /* SUE, Enable Unaligned Access, L2HPE */
  57. or t1, t1, t2
  58. #ifdef XLP_AX_WORKAROUND
  59. li t2, ~0xe /* S1RCM */
  60. and t1, t1, t2
  61. #endif
  62. mtcr t1, t0
  63. li t0, ICU_DEFEATURE
  64. mfcr t1, t0
  65. ori t1, 0x1000 /* Enable Icache partitioning */
  66. mtcr t1, t0
  67. #ifdef XLP_AX_WORKAROUND
  68. li t0, SCHED_DEFEATURE
  69. lui t1, 0x0100 /* Disable BRU accepting ALU ops */
  70. mtcr t1, t0
  71. #endif
  72. .endm
  73. /*
  74. * This is the code that will be copied to the reset entry point for
  75. * XLR and XLP. The XLP cores start here when they are woken up. This
  76. * is also the NMI entry point.
  77. */
  78. .macro xlp_flush_l1_dcache
  79. li t0, LSU_DEBUG_DATA0
  80. li t1, LSU_DEBUG_ADDR
  81. li t2, 0 /* index */
  82. li t3, 0x1000 /* loop count */
  83. 1:
  84. sll v0, t2, 5
  85. mtcr zero, t0
  86. ori v1, v0, 0x3 /* way0 | write_enable | write_active */
  87. mtcr v1, t1
  88. 2:
  89. mfcr v1, t1
  90. andi v1, 0x1 /* wait for write_active == 0 */
  91. bnez v1, 2b
  92. nop
  93. mtcr zero, t0
  94. ori v1, v0, 0x7 /* way1 | write_enable | write_active */
  95. mtcr v1, t1
  96. 3:
  97. mfcr v1, t1
  98. andi v1, 0x1 /* wait for write_active == 0 */
  99. bnez v1, 3b
  100. nop
  101. addi t2, 1
  102. bne t3, t2, 1b
  103. nop
  104. .endm
  105. /*
  106. * The cores can come start when they are woken up. This is also the NMI
  107. * entry, so check that first.
  108. *
  109. * The data corresponding to reset/NMI is stored at RESET_DATA_PHYS
  110. * location, this will have the thread mask (used when core is woken up)
  111. * and the current NMI handler in case we reached here for an NMI.
  112. *
  113. * When a core or thread is newly woken up, it loops in a 'wait'. When
  114. * the CPU really needs waking up, we send an NMI to it, with the NMI
  115. * handler set to prom_boot_secondary_cpus
  116. */
  117. .set noreorder
  118. .set noat
  119. .set arch=xlr /* for mfcr/mtcr, XLR is sufficient */
  120. FEXPORT(nlm_reset_entry)
  121. dmtc0 k0, $22, 6
  122. dmtc0 k1, $22, 7
  123. mfc0 k0, CP0_STATUS
  124. li k1, 0x80000
  125. and k1, k0, k1
  126. beqz k1, 1f /* go to real reset entry */
  127. nop
  128. li k1, CKSEG1ADDR(RESET_DATA_PHYS) /* NMI */
  129. ld k0, BOOT_NMI_HANDLER(k1)
  130. jr k0
  131. nop
  132. 1: /* Entry point on core wakeup */
  133. mfc0 t0, CP0_EBASE, 1
  134. mfc0 t1, CP0_EBASE, 1
  135. srl t1, 5
  136. andi t1, 0x3 /* t1 <- node */
  137. li t2, 0x40000
  138. mul t3, t2, t1 /* t3 = node * 0x40000 */
  139. srl t0, t0, 2
  140. and t0, t0, 0x7 /* t0 <- core */
  141. li t1, 0x1
  142. sll t0, t1, t0
  143. nor t0, t0, zero /* t0 <- ~(1 << core) */
  144. li t2, SYS_CPU_COHERENT_BASE(0)
  145. add t2, t2, t3 /* t2 <- SYS offset for node */
  146. lw t1, 0(t2)
  147. and t1, t1, t0
  148. sw t1, 0(t2)
  149. /* read back to ensure complete */
  150. lw t1, 0(t2)
  151. sync
  152. /* Configure LSU on Non-0 Cores. */
  153. xlp_config_lsu
  154. /* FALL THROUGH */
  155. /*
  156. * Wake up sibling threads from the initial thread in
  157. * a core.
  158. */
  159. EXPORT(nlm_boot_siblings)
  160. /* core L1D flush before enable threads */
  161. xlp_flush_l1_dcache
  162. /* Enable hw threads by writing to MAP_THREADMODE of the core */
  163. li t0, CKSEG1ADDR(RESET_DATA_PHYS)
  164. lw t1, BOOT_THREAD_MODE(t0) /* t1 <- thread mode */
  165. li t0, ((CPU_BLOCKID_MAP << 8) | MAP_THREADMODE)
  166. mfcr t2, t0
  167. or t2, t2, t1
  168. mtcr t2, t0
  169. /*
  170. * The new hardware thread starts at the next instruction
  171. * For all the cases other than core 0 thread 0, we will
  172. * jump to the secondary wait function.
  173. */
  174. mfc0 v0, CP0_EBASE, 1
  175. andi v0, 0x3ff /* v0 <- node/core */
  176. /* Init MMU in the first thread after changing THREAD_MODE
  177. * register (Ax Errata?)
  178. */
  179. andi v1, v0, 0x3 /* v1 <- thread id */
  180. bnez v1, 2f
  181. nop
  182. li t0, MMU_SETUP
  183. li t1, 0
  184. mtcr t1, t0
  185. _ehb
  186. 2: beqz v0, 4f /* boot cpu (cpuid == 0)? */
  187. nop
  188. /* setup status reg */
  189. move t1, zero
  190. #ifdef CONFIG_64BIT
  191. ori t1, ST0_KX
  192. #endif
  193. mtc0 t1, CP0_STATUS
  194. /* mark CPU ready */
  195. PTR_LA t1, nlm_cpu_ready
  196. sll v1, v0, 2
  197. PTR_ADDU t1, v1
  198. li t2, 1
  199. sw t2, 0(t1)
  200. /* Wait until NMI hits */
  201. 3: wait
  202. j 3b
  203. nop
  204. /*
  205. * For the boot CPU, we have to restore registers and
  206. * return
  207. */
  208. 4: dmfc0 t0, $4, 2 /* restore SP from UserLocal */
  209. li t1, 0xfadebeef
  210. dmtc0 t1, $4, 2 /* restore SP from UserLocal */
  211. PTR_SUBU sp, t0, PT_SIZE
  212. RESTORE_ALL
  213. jr ra
  214. nop
  215. EXPORT(nlm_reset_entry_end)
  216. FEXPORT(xlp_boot_core0_siblings) /* "Master" cpu starts from here */
  217. xlp_config_lsu
  218. dmtc0 sp, $4, 2 /* SP saved in UserLocal */
  219. SAVE_ALL
  220. sync
  221. /* find the location to which nlm_boot_siblings was relocated */
  222. li t0, CKSEG1ADDR(RESET_VEC_PHYS)
  223. dla t1, nlm_reset_entry
  224. dla t2, nlm_boot_siblings
  225. dsubu t2, t1
  226. daddu t2, t0
  227. /* call it */
  228. jr t2
  229. nop
  230. /* not reached */
  231. __CPUINIT
  232. NESTED(nlm_boot_secondary_cpus, 16, sp)
  233. /* Initialize CP0 Status */
  234. move t1, zero
  235. #ifdef CONFIG_64BIT
  236. ori t1, ST0_KX
  237. #endif
  238. mtc0 t1, CP0_STATUS
  239. PTR_LA t1, nlm_next_sp
  240. PTR_L sp, 0(t1)
  241. PTR_LA t1, nlm_next_gp
  242. PTR_L gp, 0(t1)
  243. /* a0 has the processor id */
  244. mfc0 a0, CP0_EBASE, 1
  245. andi a0, 0x3ff /* a0 <- node/core */
  246. PTR_LA t0, nlm_early_init_secondary
  247. jalr t0
  248. nop
  249. PTR_LA t0, smp_bootstrap
  250. jr t0
  251. nop
  252. END(nlm_boot_secondary_cpus)
  253. __FINIT
  254. /*
  255. * In case of RMIboot bootloader which is used on XLR boards, the CPUs
  256. * be already woken up and waiting in bootloader code.
  257. * This will get them out of the bootloader code and into linux. Needed
  258. * because the bootloader area will be taken and initialized by linux.
  259. */
  260. __CPUINIT
  261. NESTED(nlm_rmiboot_preboot, 16, sp)
  262. mfc0 t0, $15, 1 /* read ebase */
  263. andi t0, 0x1f /* t0 has the processor_id() */
  264. andi t2, t0, 0x3 /* thread num */
  265. sll t0, 2 /* offset in cpu array */
  266. PTR_LA t1, nlm_cpu_ready /* mark CPU ready */
  267. PTR_ADDU t1, t0
  268. li t3, 1
  269. sw t3, 0(t1)
  270. bnez t2, 1f /* skip thread programming */
  271. nop /* for thread id != 0 */
  272. /*
  273. * XLR MMU setup only for first thread in core
  274. */
  275. li t0, 0x400
  276. mfcr t1, t0
  277. li t2, 6 /* XLR thread mode mask */
  278. nor t3, t2, zero
  279. and t2, t1, t2 /* t2 - current thread mode */
  280. li v0, CKSEG1ADDR(RESET_DATA_PHYS)
  281. lw v1, BOOT_THREAD_MODE(v0) /* v1 - new thread mode */
  282. sll v1, 1
  283. beq v1, t2, 1f /* same as request value */
  284. nop /* nothing to do */
  285. and t2, t1, t3 /* mask out old thread mode */
  286. or t1, t2, v1 /* put in new value */
  287. mtcr t1, t0 /* update core control */
  288. 1: wait
  289. j 1b
  290. nop
  291. END(nlm_rmiboot_preboot)
  292. __FINIT