Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris...
[linux/fpc-iii.git] / arch / mips / netlogic / common / reset.S
blobb231fe1e7a093c0e9a0296f428a18e51e47e4f20
1 /*
2  * Copyright 2003-2013 Broadcom Corporation.
3  * All Rights 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 Broadcom
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 BROADCOM ``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 BROADCOM 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  */
36 #include <asm/asm.h>
37 #include <asm/asm-offsets.h>
38 #include <asm/cacheops.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>
45 #include <asm/netlogic/common.h>
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>
52 #define CP0_EBASE       $15
53 #define SYS_CPU_COHERENT_BASE   CKSEG1ADDR(XLP_DEFAULT_IO_BASE) + \
54                         XLP_IO_SYS_OFFSET(0) + XLP_IO_PCI_HDRSZ + \
55                         SYS_CPU_NONCOHERENT_MODE * 4
57 /* Enable XLP features and workarounds in the LSU */
58 .macro xlp_config_lsu
59         li      t0, LSU_DEFEATURE
60         mfcr    t1, t0
62         lui     t2, 0xc080      /* SUE, Enable Unaligned Access, L2HPE */
63         or      t1, t1, t2
64         mtcr    t1, t0
66         li      t0, ICU_DEFEATURE
67         mfcr    t1, t0
68         ori     t1, 0x1000      /* Enable Icache partitioning */
69         mtcr    t1, t0
71         li      t0, SCHED_DEFEATURE
72         lui     t1, 0x0100      /* Disable BRU accepting ALU ops */
73         mtcr    t1, t0
74 .endm
77  * L1D cache has to be flushed before enabling threads in XLP.
78  * On XLP8xx/XLP3xx, we do a low level flush using processor control
79  * registers. On XLPII CPUs, usual cache instructions work.
80  */
81 .macro  xlp_flush_l1_dcache
82         mfc0    t0, CP0_EBASE, 0
83         andi    t0, t0, 0xff00
84         slt     t1, t0, 0x1200
85         beqz    t1, 15f
86         nop
88         /* XLP8xx low level cache flush */
89         li      t0, LSU_DEBUG_DATA0
90         li      t1, LSU_DEBUG_ADDR
91         li      t2, 0           /* index */
92         li      t3, 0x1000      /* loop count */
93 11:
94         sll     v0, t2, 5
95         mtcr    zero, t0
96         ori     v1, v0, 0x3     /* way0 | write_enable | write_active */
97         mtcr    v1, t1
98 12:
99         mfcr    v1, t1
100         andi    v1, 0x1         /* wait for write_active == 0 */
101         bnez    v1, 12b
102         nop
103         mtcr    zero, t0
104         ori     v1, v0, 0x7     /* way1 | write_enable | write_active */
105         mtcr    v1, t1
107         mfcr    v1, t1
108         andi    v1, 0x1         /* wait for write_active == 0 */
109         bnez    v1, 13b
110         nop
111         addi    t2, 1
112         bne     t3, t2, 11b
113         nop
114         b       17f
115         nop
117         /* XLPII CPUs, Invalidate all 64k of L1 D-cache */
119         li      t0, 0x80000000
120         li      t1, 0x80010000
121 16:     cache   Index_Writeback_Inv_D, 0(t0)
122         addiu   t0, t0, 32
123         bne     t0, t1, 16b
124         nop
126 .endm
129  * nlm_reset_entry will be copied to the reset entry point for
130  * XLR and XLP. The XLP cores start here when they are woken up. This
131  * is also the NMI entry point.
133  * We use scratch reg 6/7 to save k0/k1 and check for NMI first.
135  * The data corresponding to reset/NMI is stored at RESET_DATA_PHYS
136  * location, this will have the thread mask (used when core is woken up)
137  * and the current NMI handler in case we reached here for an NMI.
139  * When a core or thread is newly woken up, it marks itself ready and
140  * loops in a 'wait'. When the CPU really needs waking up, we send an NMI
141  * IPI to it, with the NMI handler set to prom_boot_secondary_cpus
142  */
143         .set    noreorder
144         .set    noat
145         .set    arch=xlr        /* for mfcr/mtcr, XLR is sufficient */
147 FEXPORT(nlm_reset_entry)
148         dmtc0   k0, $22, 6
149         dmtc0   k1, $22, 7
150         mfc0    k0, CP0_STATUS
151         li      k1, 0x80000
152         and     k1, k0, k1
153         beqz    k1, 1f          /* go to real reset entry */
154         nop
155         li      k1, CKSEG1ADDR(RESET_DATA_PHYS) /* NMI */
156         ld      k0, BOOT_NMI_HANDLER(k1)
157         jr      k0
158         nop
160 1:      /* Entry point on core wakeup */
161         mfc0    t0, CP0_EBASE, 0        /* processor ID */
162         andi    t0, 0xff00
163         li      t1, 0x1500              /* XLP 9xx */
164         beq     t0, t1, 2f              /* does not need to set coherent */
165         nop
167         /* set bit in SYS coherent register for the core */
168         mfc0    t0, CP0_EBASE, 1
169         mfc0    t1, CP0_EBASE, 1
170         srl     t1, 5
171         andi    t1, 0x3                 /* t1 <- node */
172         li      t2, 0x40000
173         mul     t3, t2, t1              /* t3 = node * 0x40000 */
174         srl     t0, t0, 2
175         and     t0, t0, 0x7             /* t0 <- core */
176         li      t1, 0x1
177         sll     t0, t1, t0
178         nor     t0, t0, zero            /* t0 <- ~(1 << core) */
179         li      t2, SYS_CPU_COHERENT_BASE
180         add     t2, t2, t3              /* t2 <- SYS offset for node */
181         lw      t1, 0(t2)
182         and     t1, t1, t0
183         sw      t1, 0(t2)
185         /* read back to ensure complete */
186         lw      t1, 0(t2)
187         sync
190         /* Configure LSU on Non-0 Cores. */
191         xlp_config_lsu
192         /* FALL THROUGH */
195  * Wake up sibling threads from the initial thread in a core.
196  */
197 EXPORT(nlm_boot_siblings)
198         /* core L1D flush before enable threads */
199         xlp_flush_l1_dcache
200         /* Enable hw threads by writing to MAP_THREADMODE of the core */
201         li      t0, CKSEG1ADDR(RESET_DATA_PHYS)
202         lw      t1, BOOT_THREAD_MODE(t0)        /* t1 <- thread mode */
203         li      t0, ((CPU_BLOCKID_MAP << 8) | MAP_THREADMODE)
204         mfcr    t2, t0
205         or      t2, t2, t1
206         mtcr    t2, t0
208         /*
209          * The new hardware thread starts at the next instruction
210          * For all the cases other than core 0 thread 0, we will
211          * jump to the secondary wait function.
213          * NOTE: All GPR contents are lost after the mtcr above!
214          */
215         mfc0    v0, CP0_EBASE, 1
216         andi    v0, 0x3ff               /* v0 <- node/core */
218         beqz    v0, 4f          /* boot cpu (cpuid == 0)? */
219         nop
221         /* setup status reg */
222         move    t1, zero
223 #ifdef CONFIG_64BIT
224         ori     t1, ST0_KX
225 #endif
226         mtc0    t1, CP0_STATUS
228         /* mark CPU ready */
229         li      t3, CKSEG1ADDR(RESET_DATA_PHYS)
230         ADDIU   t1, t3, BOOT_CPU_READY
231         sll     v1, v0, 2
232         PTR_ADDU t1, v1
233         li      t2, 1
234         sw      t2, 0(t1)
235         /* Wait until NMI hits */
236 3:      wait
237         b       3b
238         nop
240         /*
241          * For the boot CPU, we have to restore registers and
242          * return
243          */
244 4:      dmfc0   t0, $4, 2       /* restore SP from UserLocal */
245         li      t1, 0xfadebeef
246         dmtc0   t1, $4, 2       /* restore SP from UserLocal */
247         PTR_SUBU sp, t0, PT_SIZE
248         RESTORE_ALL
249         jr      ra
250         nop
251 EXPORT(nlm_reset_entry_end)
253 LEAF(nlm_init_boot_cpu)
254 #ifdef CONFIG_CPU_XLP
255         xlp_config_lsu
256 #endif
257         jr      ra
258         nop
259 END(nlm_init_boot_cpu)