smpboot.S 8.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
/*
 * Copyright 2003-2011 NetLogic Microsystems, Inc. (NetLogic). All rights
 * reserved.
 *
 * This software is available to you under a choice of one of two
 * licenses.  You may choose to be licensed under the terms of the GNU
 * General Public License (GPL) Version 2, available from the file
 * COPYING in the main directory of this source tree, or the NetLogic
 * license below:
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY NETLOGIC ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL NETLOGIC OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include <linux/init.h>

#include <asm/asm.h>
#include <asm/asm-offsets.h>
#include <asm/regdef.h>
#include <asm/mipsregs.h>
#include <asm/stackframe.h>
#include <asm/asmmacro.h>
#include <asm/addrspace.h>

45 46
#include <asm/netlogic/common.h>

47 48 49 50 51 52 53 54 55 56
#include <asm/netlogic/xlp-hal/iomap.h>
#include <asm/netlogic/xlp-hal/xlp.h>
#include <asm/netlogic/xlp-hal/sys.h>
#include <asm/netlogic/xlp-hal/cpucontrol.h>

#define	CP0_EBASE	$15
#define SYS_CPU_COHERENT_BASE(node)	CKSEG1ADDR(XLP_DEFAULT_IO_BASE) + \
			XLP_IO_SYS_OFFSET(node) + XLP_IO_PCI_HDRSZ + \
			SYS_CPU_NONCOHERENT_MODE * 4

57
#define	XLP_AX_WORKAROUND	/* enable Ax silicon workarounds */
58

59 60 61 62 63
/* Enable XLP features and workarounds in the LSU */
.macro xlp_config_lsu
	li	t0, LSU_DEFEATURE
	mfcr	t1, t0

64
	lui	t2, 0xc080	/* SUE, Enable Unaligned Access, L2HPE */
65 66 67
	or	t1, t1, t2
#ifdef XLP_AX_WORKAROUND
	li	t2, ~0xe	/* S1RCM */
68
	and	t1, t1, t2
69
#endif
70
	mtcr	t1, t0
71

72 73 74 75 76
#ifdef XLP_AX_WORKAROUND
	li	t0, SCHED_DEFEATURE
	lui	t1, 0x0100	/* Disable BRU accepting ALU ops */
	mtcr	t1, t0
#endif
77 78
.endm

79
/*
80 81 82
 * This is the code that will be copied to the reset entry point for
 * XLR and XLP. The XLP cores start here when they are woken up. This
 * is also the NMI entry point.
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
 */
.macro	xlp_flush_l1_dcache
	li	t0, LSU_DEBUG_DATA0
	li	t1, LSU_DEBUG_ADDR
	li	t2, 0		/* index */
	li 	t3, 0x1000	/* loop count */
1:
	sll	v0, t2, 5
	mtcr	zero, t0
	ori	v1, v0, 0x3	/* way0 | write_enable | write_active */
	mtcr	v1, t1
2:
	mfcr	v1, t1
	andi	v1, 0x1		/* wait for write_active == 0 */
	bnez	v1, 2b
	nop
	mtcr	zero, t0
	ori	v1, v0, 0x7	/* way1 | write_enable | write_active */
	mtcr	v1, t1
3:
	mfcr	v1, t1
	andi	v1, 0x1		/* wait for write_active == 0 */
	bnez	v1, 3b
	nop
	addi	t2, 1
	bne	t3, t2, 1b
	nop
.endm

/*
 * The cores can come start when they are woken up. This is also the NMI
 * entry, so check that first.
115
 *
116 117 118
 * The data corresponding to reset/NMI is stored at RESET_DATA_PHYS
 * location, this will have the thread mask (used when core is woken up)
 * and the current NMI handler in case we reached here for an NMI.
119 120 121 122 123 124
 *
 * When a core or thread is newly woken up, it loops in a 'wait'. When
 * the CPU really needs waking up, we send an NMI to it, with the NMI
 * handler set to prom_boot_secondary_cpus
 */

125
	.set	noreorder
126
	.set	noat
127 128
	.set	arch=xlr	/* for mfcr/mtcr, XLR is sufficient */

129 130 131
FEXPORT(nlm_reset_entry)
	dmtc0	k0, $22, 6
	dmtc0	k1, $22, 7
132 133 134 135
	mfc0	k0, CP0_STATUS
	li	k1, 0x80000
	and	k1, k0, k1
	beqz	k1, 1f		/* go to real reset entry */
136
	nop
137
	li	k1, CKSEG1ADDR(RESET_DATA_PHYS)	/* NMI */
138 139 140 141 142
	ld	k0, BOOT_NMI_HANDLER(k1)
	jr	k0
	nop

1:	/* Entry point on core wakeup */
143 144 145 146 147 148 149 150 151 152 153 154 155 156
	mfc0	t0, CP0_EBASE, 1
	mfc0	t1, CP0_EBASE, 1
	srl	t1, 5
	andi	t1, 0x3			/* t1 <- node */
	li	t2, 0x40000
	mul	t3, t2, t1		/* t3 = node * 0x40000 */
	srl	t0, t0, 2
	and	t0, t0, 0x7		/* t0 <- core */
	li	t1, 0x1
	sll	t0, t1, t0
	nor	t0, t0, zero		/* t0 <- ~(1 << core) */
	li	t2, SYS_CPU_COHERENT_BASE(0)
	add	t2, t2, t3		/* t2 <- SYS offset for node */
	lw	t1, 0(t2)
157 158
	and	t1, t1, t0
	sw	t1, 0(t2)
159 160

	/* read back to ensure complete */
161
	lw	t1, 0(t2)
162 163 164
	sync

	/* Configure LSU on Non-0 Cores. */
165 166
	xlp_config_lsu
	/* FALL THROUGH */
167 168 169 170 171 172

/*
 * Wake up sibling threads from the initial thread in
 * a core.
 */
EXPORT(nlm_boot_siblings)
173 174
	/* core L1D flush before enable threads */
	xlp_flush_l1_dcache
175
	/* Enable hw threads by writing to MAP_THREADMODE of the core */
176 177 178 179 180 181 182 183 184 185
	li	t0, CKSEG1ADDR(RESET_DATA_PHYS)
	lw	t1, BOOT_THREAD_MODE(t0)	/* t1 <- thread mode */
	li	t0, ((CPU_BLOCKID_MAP << 8) | MAP_THREADMODE)
	mfcr	t2, t0
	or	t2, t2, t1
	mtcr	t2, t0

	/*
	 * The new hardware thread starts at the next instruction
	 * For all the cases other than core 0 thread 0, we will
186 187
	* jump to the secondary wait function.
	*/
188
	mfc0	v0, CP0_EBASE, 1
189
	andi	v0, 0x3ff		/* v0 <- node/core */
190

191 192 193
	/* Init MMU in the first thread after changing THREAD_MODE
	 * register (Ax Errata?)
	 */
194 195 196 197
	andi	v1, v0, 0x3		/* v1 <- thread id */
	bnez	v1, 2f
	nop

198 199 200
	li	t0, MMU_SETUP
	li	t1, 0
	mtcr	t1, t0
201
	_ehb
202

203
2:	beqz	v0, 4f		/* boot cpu (cpuid == 0)? */
204 205 206
	nop

	/* setup status reg */
207
	move	t1, zero
208 209 210 211
#ifdef CONFIG_64BIT
	ori	t1, ST0_KX
#endif
	mtc0	t1, CP0_STATUS
212 213 214 215 216 217 218 219 220
	/* mark CPU ready */
	PTR_LA	t1, nlm_cpu_ready
	sll	v1, v0, 2
	PTR_ADDU t1, v1
	li	t2, 1
	sw	t2, 0(t1)
	/* Wait until NMI hits */
3:	wait
	j	3b
221 222 223 224 225 226
	nop

	/*
	 * For the boot CPU, we have to restore registers and
	 * return
	 */
227
4:	dmfc0	t0, $4, 2	/* restore SP from UserLocal */
228
	li	t1, 0xfadebeef
229
	dmtc0	t1, $4, 2	/* restore SP from UserLocal */
230 231 232 233 234 235
	PTR_SUBU sp, t0, PT_SIZE
	RESTORE_ALL
	jr   ra
	nop
EXPORT(nlm_reset_entry_end)

236
FEXPORT(xlp_boot_core0_siblings)	/* "Master" cpu starts from here */
237
	xlp_config_lsu
238 239 240 241 242 243 244 245 246 247 248 249
	dmtc0   sp, $4, 2		/* SP saved in UserLocal */
	SAVE_ALL
	sync
	/* find the location to which nlm_boot_siblings was relocated */
	li	t0, CKSEG1ADDR(RESET_VEC_PHYS)
	dla	t1, nlm_reset_entry
	dla	t2, nlm_boot_siblings
	dsubu	t2, t1
	daddu	t2, t0
	/* call it */
	jr	t2
	nop
250
	/* not reached */
251 252

	__CPUINIT
253
NESTED(nlm_boot_secondary_cpus, 16, sp)
254 255 256 257 258 259
	/* Initialize CP0 Status */
	move	t1, zero
#ifdef CONFIG_64BIT
	ori	t1, ST0_KX
#endif
	mtc0	t1, CP0_STATUS
260
	PTR_LA	t1, nlm_next_sp
261 262 263 264 265
	PTR_L	sp, 0(t1)
	PTR_LA	t1, nlm_next_gp
	PTR_L	gp, 0(t1)

	/* a0 has the processor id */
266 267
	mfc0	a0, CP0_EBASE, 1
	andi	a0, 0x3ff		/* a0 <- node/core */
268 269 270 271 272 273 274
	PTR_LA	t0, nlm_early_init_secondary
	jalr	t0
	nop

	PTR_LA	t0, smp_bootstrap
	jr	t0
	nop
275 276 277 278 279 280 281 282 283 284 285
END(nlm_boot_secondary_cpus)
	__FINIT

/*
 * In case of RMIboot bootloader which is used on XLR boards, the CPUs
 * be already woken up and waiting in bootloader code.
 * This will get them out of the bootloader code and into linux. Needed
 *  because the bootloader area will be taken and initialized by linux.
 */
	__CPUINIT
NESTED(nlm_rmiboot_preboot, 16, sp)
286 287 288 289
	mfc0	t0, $15, 1	/* read ebase */
	andi	t0, 0x1f	/* t0 has the processor_id() */
	andi	t2, t0, 0x3	/* thread num */
	sll	t0, 2		/* offset in cpu array */
290

291
	PTR_LA	t1, nlm_cpu_ready /* mark CPU ready */
292 293 294 295
	PTR_ADDU t1, t0
	li	t3, 1
	sw	t3, 0(t1)

296 297
	bnez	t2, 1f		/* skip thread programming */
	nop			/* for thread id != 0 */
298 299

	/*
300
	 * XLR MMU setup only for first thread in core
301 302 303
	 */
	li	t0, 0x400
	mfcr	t1, t0
304
	li	t2, 6 		/* XLR thread mode mask */
305
	nor	t3, t2, zero
306
	and	t2, t1, t2	/* t2 - current thread mode */
307
	li	v0, CKSEG1ADDR(RESET_DATA_PHYS)
308
	lw	v1, BOOT_THREAD_MODE(v0) /* v1 - new thread mode */
309
	sll	v1, 1
310 311
	beq	v1, t2, 1f 	/* same as request value */
	nop			/* nothing to do */
312

313 314 315
	and	t2, t1, t3	/* mask out old thread mode */
	or	t1, t2, v1	/* put in new value */
	mtcr	t1, t0		/* update core control */
316 317 318 319 320

1:	wait
	j	1b
	nop
END(nlm_rmiboot_preboot)
321
	__FINIT