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