blob: 69fce927a6c8d81c12591add6e24f8898dc079e1 [file] [log] [blame]
Poonam Aggrwal0e870982009-07-31 12:08:14 +05301/*
Kumar Gala69bcf5b2010-03-29 13:50:31 -05002 * Copyright 2008-2010 Freescale Semiconductor, Inc.
Poonam Aggrwal0e870982009-07-31 12:08:14 +05303 * Kumar Gala <kumar.gala@freescale.com>
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
Kumar Galaec2b74f2008-01-17 16:48:33 -060024#include <config.h>
25#include <mpc85xx.h>
26#include <version.h>
27
28#define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
29
30#include <ppc_asm.tmpl>
31#include <ppc_defs.h>
32
33#include <asm/cache.h>
34#include <asm/mmu.h>
35
36/* To boot secondary cpus, we need a place for them to start up.
37 * Normally, they start at 0xfffffffc, but that's usually the
38 * firmware, and we don't want to have to run the firmware again.
39 * Instead, the primary cpu will set the BPTR to point here to
40 * this page. We then set up the core, and head to
41 * start_secondary. Note that this means that the code below
42 * must never exceed 1023 instructions (the branch at the end
43 * would then be the 1024th).
44 */
45 .globl __secondary_start_page
46 .align 12
47__secondary_start_page:
48/* First do some preliminary setup */
49 lis r3, HID0_EMCP@h /* enable machine check */
Kumar Gala0f060c32008-10-23 01:47:38 -050050#ifndef CONFIG_E500MC
Kumar Galaec2b74f2008-01-17 16:48:33 -060051 ori r3,r3,HID0_TBEN@l /* enable Timebase */
Kumar Gala0f060c32008-10-23 01:47:38 -050052#endif
Kumar Galaec2b74f2008-01-17 16:48:33 -060053#ifdef CONFIG_PHYS_64BIT
54 ori r3,r3,HID0_ENMAS7@l /* enable MAS7 updates */
55#endif
56 mtspr SPRN_HID0,r3
57
Kumar Gala0f060c32008-10-23 01:47:38 -050058#ifndef CONFIG_E500MC
Kumar Galaec2b74f2008-01-17 16:48:33 -060059 li r3,(HID1_ASTME|HID1_ABE)@l /* Addr streaming & broadcast */
60 mtspr SPRN_HID1,r3
Kumar Gala0f060c32008-10-23 01:47:38 -050061#endif
Kumar Galaec2b74f2008-01-17 16:48:33 -060062
63 /* Enable branch prediction */
Kumar Gala69bcf5b2010-03-29 13:50:31 -050064 lis r3,BUCSR_ENABLE@h
65 ori r3,r3,BUCSR_ENABLE@l
Kumar Galaec2b74f2008-01-17 16:48:33 -060066 mtspr SPRN_BUCSR,r3
67
Kumar Galae0ff3d32008-09-08 08:51:29 -050068 /* Ensure TB is 0 */
69 li r3,0
70 mttbl r3
71 mttbu r3
72
Kumar Galaec2b74f2008-01-17 16:48:33 -060073 /* Enable/invalidate the I-Cache */
Kumar Gala33f57bd2010-03-26 15:14:43 -050074 lis r2,(L1CSR1_ICFI|L1CSR1_ICLFR)@h
75 ori r2,r2,(L1CSR1_ICFI|L1CSR1_ICLFR)@l
76 mtspr SPRN_L1CSR1,r2
771:
78 mfspr r3,SPRN_L1CSR1
79 and. r1,r3,r2
80 bne 1b
81
82 lis r3,(L1CSR1_CPE|L1CSR1_ICE)@h
83 ori r3,r3,(L1CSR1_CPE|L1CSR1_ICE)@l
84 mtspr SPRN_L1CSR1,r3
Kumar Galaec2b74f2008-01-17 16:48:33 -060085 isync
Kumar Gala33f57bd2010-03-26 15:14:43 -0500862:
87 mfspr r3,SPRN_L1CSR1
88 andi. r1,r3,L1CSR1_ICE@l
89 beq 2b
Kumar Galaec2b74f2008-01-17 16:48:33 -060090
91 /* Enable/invalidate the D-Cache */
Kumar Gala33f57bd2010-03-26 15:14:43 -050092 lis r2,(L1CSR0_DCFI|L1CSR0_DCLFR)@h
93 ori r2,r2,(L1CSR0_DCFI|L1CSR0_DCLFR)@l
94 mtspr SPRN_L1CSR0,r2
951:
96 mfspr r3,SPRN_L1CSR0
97 and. r1,r3,r2
98 bne 1b
99
100 lis r3,(L1CSR0_CPE|L1CSR0_DCE)@h
101 ori r3,r3,(L1CSR0_CPE|L1CSR0_DCE)@l
102 mtspr SPRN_L1CSR0,r3
Kumar Galaec2b74f2008-01-17 16:48:33 -0600103 isync
Kumar Gala33f57bd2010-03-26 15:14:43 -05001042:
105 mfspr r3,SPRN_L1CSR0
106 andi. r1,r3,L1CSR0_DCE@l
107 beq 2b
Kumar Galaec2b74f2008-01-17 16:48:33 -0600108
109#define toreset(x) (x - __secondary_start_page + 0xfffff000)
110
111 /* get our PIR to figure out our table entry */
112 lis r3,toreset(__spin_table)@h
113 ori r3,r3,toreset(__spin_table)@l
114
Kumar Gala79679d82008-03-26 08:34:25 -0500115 /* r10 has the base address for the entry */
Kumar Galaec2b74f2008-01-17 16:48:33 -0600116 mfspr r0,SPRN_PIR
Kumar Gala0f060c32008-10-23 01:47:38 -0500117#ifdef CONFIG_E500MC
118 rlwinm r4,r0,27,27,31
119#else
Kumar Galaec2b74f2008-01-17 16:48:33 -0600120 mr r4,r0
Kumar Gala0f060c32008-10-23 01:47:38 -0500121#endif
Kumar Gala79679d82008-03-26 08:34:25 -0500122 slwi r8,r4,5
123 add r10,r3,r8
Kumar Galaec2b74f2008-01-17 16:48:33 -0600124
Kumar Gala82fd1f82009-03-19 02:53:01 -0500125#if defined(CONFIG_E500MC) && defined(CONFIG_SYS_CACHE_STASHING)
126 /* set stash id to (coreID) * 2 + 32 + L1 CT (0) */
127 slwi r8,r4,1
128 addi r8,r8,32
129 mtspr L1CSR2,r8
130#endif
131
Kumar Gala1b3e4042009-03-19 09:16:10 -0500132#ifdef CONFIG_BACKSIDE_L2_CACHE
133 /* Enable/invalidate the L2 cache */
134 msync
Dave Liuff8822952009-10-31 07:59:55 +0800135 lis r2,(L2CSR0_L2FI|L2CSR0_L2LFC)@h
136 ori r2,r2,(L2CSR0_L2FI|L2CSR0_L2LFC)@l
137 mtspr SPRN_L2CSR0,r2
Kumar Gala1b3e4042009-03-19 09:16:10 -05001381:
139 mfspr r3,SPRN_L2CSR0
Dave Liuff8822952009-10-31 07:59:55 +0800140 and. r1,r3,r2
Kumar Gala1b3e4042009-03-19 09:16:10 -0500141 bne 1b
142
Kumar Gala82fd1f82009-03-19 02:53:01 -0500143#ifdef CONFIG_SYS_CACHE_STASHING
144 /* set stash id to (coreID) * 2 + 32 + L2 (1) */
145 addi r3,r8,1
146 mtspr SPRN_L2CSR1,r3
147#endif
148
Kumar Gala1b3e4042009-03-19 09:16:10 -0500149 lis r3,CONFIG_SYS_INIT_L2CSR0@h
150 ori r3,r3,CONFIG_SYS_INIT_L2CSR0@l
151 mtspr SPRN_L2CSR0,r3
152 isync
Dave Liuff8822952009-10-31 07:59:55 +08001532:
154 mfspr r3,SPRN_L2CSR0
155 andis. r1,r3,L2CSR0_L2E@h
156 beq 2b
Kumar Gala1b3e4042009-03-19 09:16:10 -0500157#endif
158
Kumar Gala79679d82008-03-26 08:34:25 -0500159#define EPAPR_MAGIC (0x45504150)
160#define ENTRY_ADDR_UPPER 0
161#define ENTRY_ADDR_LOWER 4
162#define ENTRY_R3_UPPER 8
163#define ENTRY_R3_LOWER 12
164#define ENTRY_RESV 16
165#define ENTRY_PIR 20
166#define ENTRY_R6_UPPER 24
167#define ENTRY_R6_LOWER 28
168#define ENTRY_SIZE 32
Kumar Galaec2b74f2008-01-17 16:48:33 -0600169
170 /* setup the entry */
Kumar Gala79679d82008-03-26 08:34:25 -0500171 li r3,0
Kumar Galaec2b74f2008-01-17 16:48:33 -0600172 li r8,1
Kumar Gala79679d82008-03-26 08:34:25 -0500173 stw r0,ENTRY_PIR(r10)
174 stw r3,ENTRY_ADDR_UPPER(r10)
175 stw r8,ENTRY_ADDR_LOWER(r10)
176 stw r3,ENTRY_R3_UPPER(r10)
177 stw r4,ENTRY_R3_LOWER(r10)
178 stw r3,ENTRY_R6_UPPER(r10)
179 stw r3,ENTRY_R6_LOWER(r10)
180
Peter Tyser5ccd29c2009-10-23 15:55:47 -0500181 /* load r13 with the address of the 'bootpg' in SDRAM */
182 lis r13,toreset(__bootpg_addr)@h
183 ori r13,r13,toreset(__bootpg_addr)@l
184 lwz r13,0(r13)
185
Kumar Gala79679d82008-03-26 08:34:25 -0500186 /* setup mapping for AS = 1, and jump there */
187 lis r11,(MAS0_TLBSEL(1)|MAS0_ESEL(1))@h
188 mtspr SPRN_MAS0,r11
189 lis r11,(MAS1_VALID|MAS1_IPROT)@h
190 ori r11,r11,(MAS1_TS|MAS1_TSIZE(BOOKE_PAGESZ_4K))@l
191 mtspr SPRN_MAS1,r11
Kumar Galaabc76eb2009-11-17 20:21:20 -0600192 oris r11,r13,(MAS2_I|MAS2_G)@h
193 ori r11,r13,(MAS2_I|MAS2_G)@l
Kumar Gala79679d82008-03-26 08:34:25 -0500194 mtspr SPRN_MAS2,r11
Peter Tyser5ccd29c2009-10-23 15:55:47 -0500195 oris r11,r13,(MAS3_SX|MAS3_SW|MAS3_SR)@h
196 ori r11,r13,(MAS3_SX|MAS3_SW|MAS3_SR)@l
Kumar Gala79679d82008-03-26 08:34:25 -0500197 mtspr SPRN_MAS3,r11
198 tlbwe
199
200 bl 1f
2011: mflr r11
Peter Tyser5ccd29c2009-10-23 15:55:47 -0500202 /*
203 * OR in 0xfff to create a mask of the bootpg SDRAM address. We use
204 * this mask to fixup the cpu spin table and the address that we want
205 * to jump to, eg change them from 0xfffffxxx to 0x7ffffxxx if the
206 * bootpg is at 0x7ffff000 in SDRAM.
207 */
208 ori r13,r13,0xfff
209 and r11, r11, r13
210 and r10, r10, r13
211
212 addi r11,r11,(2f-1b)
Kumar Gala79679d82008-03-26 08:34:25 -0500213 mfmsr r13
214 ori r12,r13,MSR_IS|MSR_DS@l
215
216 mtspr SPRN_SRR0,r11
217 mtspr SPRN_SRR1,r12
218 rfi
Kumar Galaec2b74f2008-01-17 16:48:33 -0600219
220 /* spin waiting for addr */
Kumar Gala79679d82008-03-26 08:34:25 -05002212:
222 lwz r4,ENTRY_ADDR_LOWER(r10)
Kumar Galaec2b74f2008-01-17 16:48:33 -0600223 andi. r11,r4,1
Kumar Gala79679d82008-03-26 08:34:25 -0500224 bne 2b
Kumar Galacf6cc012008-04-28 02:24:04 -0500225 isync
Kumar Gala79679d82008-03-26 08:34:25 -0500226
Kumar Gala26f4cdba2009-08-14 13:37:54 -0500227 /* setup IVORs to match fixed offsets */
228#include "fixed_ivor.S"
229
Kumar Gala79679d82008-03-26 08:34:25 -0500230 /* get the upper bits of the addr */
231 lwz r11,ENTRY_ADDR_UPPER(r10)
Kumar Galaec2b74f2008-01-17 16:48:33 -0600232
233 /* setup branch addr */
Kumar Gala79679d82008-03-26 08:34:25 -0500234 mtspr SPRN_SRR0,r4
Kumar Galaec2b74f2008-01-17 16:48:33 -0600235
236 /* mark the entry as released */
237 li r8,3
Kumar Gala79679d82008-03-26 08:34:25 -0500238 stw r8,ENTRY_ADDR_LOWER(r10)
Kumar Galaec2b74f2008-01-17 16:48:33 -0600239
240 /* mask by ~64M to setup our tlb we will jump to */
Kumar Gala79679d82008-03-26 08:34:25 -0500241 rlwinm r12,r4,0,0,5
Kumar Galaec2b74f2008-01-17 16:48:33 -0600242
Kumar Gala79679d82008-03-26 08:34:25 -0500243 /* setup r3, r4, r5, r6, r7, r8, r9 */
244 lwz r3,ENTRY_R3_LOWER(r10)
245 li r4,0
Kumar Galaec2b74f2008-01-17 16:48:33 -0600246 li r5,0
Kumar Gala79679d82008-03-26 08:34:25 -0500247 lwz r6,ENTRY_R6_LOWER(r10)
248 lis r7,(64*1024*1024)@h
249 li r8,0
250 li r9,0
Kumar Galaec2b74f2008-01-17 16:48:33 -0600251
252 /* load up the pir */
Kumar Gala79679d82008-03-26 08:34:25 -0500253 lwz r0,ENTRY_PIR(r10)
Kumar Galaec2b74f2008-01-17 16:48:33 -0600254 mtspr SPRN_PIR,r0
255 mfspr r0,SPRN_PIR
Kumar Gala79679d82008-03-26 08:34:25 -0500256 stw r0,ENTRY_PIR(r10)
Kumar Galaec2b74f2008-01-17 16:48:33 -0600257
Haiying Wang181a3652008-12-03 10:08:19 -0500258 mtspr IVPR,r12
Kumar Galaec2b74f2008-01-17 16:48:33 -0600259/*
260 * Coming here, we know the cpu has one TLB mapping in TLB1[0]
261 * which maps 0xfffff000-0xffffffff one-to-one. We set up a
262 * second mapping that maps addr 1:1 for 64M, and then we jump to
263 * addr
264 */
Kumar Gala79679d82008-03-26 08:34:25 -0500265 lis r10,(MAS0_TLBSEL(1)|MAS0_ESEL(0))@h
266 mtspr SPRN_MAS0,r10
267 lis r10,(MAS1_VALID|MAS1_IPROT)@h
268 ori r10,r10,(MAS1_TSIZE(BOOKE_PAGESZ_64M))@l
269 mtspr SPRN_MAS1,r10
Kumar Galaec2b74f2008-01-17 16:48:33 -0600270 /* WIMGE = 0b00000 for now */
Kumar Gala79679d82008-03-26 08:34:25 -0500271 mtspr SPRN_MAS2,r12
272 ori r12,r12,(MAS3_SX|MAS3_SW|MAS3_SR)
273 mtspr SPRN_MAS3,r12
274#ifdef CONFIG_ENABLE_36BIT_PHYS
275 mtspr SPRN_MAS7,r11
276#endif
Kumar Galaec2b74f2008-01-17 16:48:33 -0600277 tlbwe
278
279/* Now we have another mapping for this page, so we jump to that
280 * mapping
281 */
Kumar Gala79679d82008-03-26 08:34:25 -0500282 mtspr SPRN_SRR1,r13
283 rfi
Kumar Galaec2b74f2008-01-17 16:48:33 -0600284
Peter Tyser5ccd29c2009-10-23 15:55:47 -0500285 /*
286 * Allocate some space for the SDRAM address of the bootpg.
287 * This variable has to be in the boot page so that it can
288 * be accessed by secondary cores when they come out of reset.
289 */
290 .globl __bootpg_addr
291__bootpg_addr:
292 .long 0
293
Kumar Galacf6cc012008-04-28 02:24:04 -0500294 .align L1_CACHE_SHIFT
Kumar Galaec2b74f2008-01-17 16:48:33 -0600295 .globl __spin_table
296__spin_table:
Poonam Aggrwal0e870982009-07-31 12:08:14 +0530297 .space CONFIG_MAX_CPUS*ENTRY_SIZE
Kumar Galaec2b74f2008-01-17 16:48:33 -0600298
299 /* Fill in the empty space. The actual reset vector is
300 * the last word of the page */
301__secondary_start_code_end:
302 .space 4092 - (__secondary_start_code_end - __secondary_start_page)
303__secondary_reset_vector:
304 b __secondary_start_page