blob: 43d4836303d4f02149ce6f9f117dbf5e395be17b [file] [log] [blame]
Kumar Galaec2b74f2008-01-17 16:48:33 -06001/*
Ed Swarthoute81241a2011-03-03 18:28:14 -06002 * Copyright 2008-2011 Freescale Semiconductor, Inc.
Kumar Galaec2b74f2008-01-17 16:48:33 -06003 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 */
22
23#include <common.h>
24#include <asm/processor.h>
25#include <ioports.h>
Kumar Galadd6c9102008-03-26 08:53:53 -050026#include <lmb.h>
Kumar Galaec2b74f2008-01-17 16:48:33 -060027#include <asm/io.h>
Kumar Galac7259082009-09-03 08:41:31 -050028#include <asm/mmu.h>
Kumar Gala39a7e7f2009-09-17 01:44:39 -050029#include <asm/fsl_law.h>
York Suneb539412012-10-08 07:44:25 +000030#include <asm/fsl_ddr_sdram.h>
Kumar Galaec2b74f2008-01-17 16:48:33 -060031#include "mp.h"
32
33DECLARE_GLOBAL_DATA_PTR;
York Suneb539412012-10-08 07:44:25 +000034u32 fsl_ddr_get_intl3r(void);
Kumar Galaec2b74f2008-01-17 16:48:33 -060035
York Sunffd06e02012-10-08 07:44:30 +000036extern u32 __spin_table[];
37
Kumar Galaec2b74f2008-01-17 16:48:33 -060038u32 get_my_id()
39{
40 return mfspr(SPRN_PIR);
41}
42
Aaron Sierra9d64c6b2010-09-30 12:22:16 -050043/*
44 * Determine if U-Boot should keep secondary cores in reset, or let them out
45 * of reset and hold them in a spinloop
46 */
47int hold_cores_in_reset(int verbose)
48{
Aaron Sierra9d64c6b2010-09-30 12:22:16 -050049 /* Default to no, overriden by 'y', 'yes', 'Y', 'Yes', or '1' */
Joe Hershbergerec8a2522012-12-11 22:16:22 -060050 if (getenv_yesno("mp_holdoff") == 1) {
Aaron Sierra9d64c6b2010-09-30 12:22:16 -050051 if (verbose) {
52 puts("Secondary cores are being held in reset.\n");
53 puts("See 'mp_holdoff' environment variable\n");
54 }
55
56 return 1;
57 }
58
59 return 0;
60}
61
Kumar Galaec2b74f2008-01-17 16:48:33 -060062int cpu_reset(int nr)
63{
Kim Phillips680c6132010-08-09 18:39:57 -050064 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Kumar Galaec2b74f2008-01-17 16:48:33 -060065 out_be32(&pic->pir, 1 << nr);
Kumar Galac840d262009-03-31 23:11:05 -050066 /* the dummy read works around an errata on early 85xx MP PICs */
Kumar Galaec2b74f2008-01-17 16:48:33 -060067 (void)in_be32(&pic->pir);
68 out_be32(&pic->pir, 0x0);
69
70 return 0;
71}
72
73int cpu_status(int nr)
74{
75 u32 *table, id = get_my_id();
76
Aaron Sierra9d64c6b2010-09-30 12:22:16 -050077 if (hold_cores_in_reset(1))
78 return 0;
79
Kumar Galaec2b74f2008-01-17 16:48:33 -060080 if (nr == id) {
York Sunffd06e02012-10-08 07:44:30 +000081 table = (u32 *)&__spin_table;
Kumar Gala348753d2008-07-14 14:03:02 -050082 printf("table base @ 0x%p\n", table);
Kumar Galaec2b74f2008-01-17 16:48:33 -060083 } else {
York Sunffd06e02012-10-08 07:44:30 +000084 table = (u32 *)&__spin_table + nr * NUM_BOOT_ENTRY;
Kumar Galaec2b74f2008-01-17 16:48:33 -060085 printf("Running on cpu %d\n", id);
86 printf("\n");
Kumar Gala348753d2008-07-14 14:03:02 -050087 printf("table @ 0x%p\n", table);
Kumar Gala79679d82008-03-26 08:34:25 -050088 printf(" addr - 0x%08x\n", table[BOOT_ENTRY_ADDR_LOWER]);
Kumar Gala79679d82008-03-26 08:34:25 -050089 printf(" r3 - 0x%08x\n", table[BOOT_ENTRY_R3_LOWER]);
York Sun3f0997b2012-10-08 07:44:29 +000090 printf(" pir - 0x%08x\n", table[BOOT_ENTRY_PIR]);
Kumar Galaec2b74f2008-01-17 16:48:33 -060091 }
92
93 return 0;
94}
95
Kumar Galaa9c3ac72010-01-12 12:56:05 -060096#ifdef CONFIG_FSL_CORENET
Kumar Gala4194b362010-01-12 11:42:43 -060097int cpu_disable(int nr)
98{
Kumar Galaa9c3ac72010-01-12 12:56:05 -060099 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
100
101 setbits_be32(&gur->coredisrl, 1 << nr);
102
103 return 0;
Kumar Gala4194b362010-01-12 11:42:43 -0600104}
Kumar Gala8f3a7fa2010-06-09 22:33:53 -0500105
106int is_core_disabled(int nr) {
107 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
108 u32 coredisrl = in_be32(&gur->coredisrl);
109
110 return (coredisrl & (1 << nr));
111}
Kumar Galaa9c3ac72010-01-12 12:56:05 -0600112#else
113int cpu_disable(int nr)
114{
115 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
116
117 switch (nr) {
118 case 0:
119 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_CPU0);
120 break;
121 case 1:
122 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_CPU1);
123 break;
124 default:
125 printf("Invalid cpu number for disable %d\n", nr);
126 return 1;
127 }
128
129 return 0;
130}
Kumar Gala8f3a7fa2010-06-09 22:33:53 -0500131
132int is_core_disabled(int nr) {
133 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
134 u32 devdisr = in_be32(&gur->devdisr);
135
136 switch (nr) {
137 case 0:
138 return (devdisr & MPC85xx_DEVDISR_CPU0);
139 case 1:
140 return (devdisr & MPC85xx_DEVDISR_CPU1);
141 default:
142 printf("Invalid cpu number for disable %d\n", nr);
143 }
144
145 return 0;
146}
Kumar Galaa9c3ac72010-01-12 12:56:05 -0600147#endif
Kumar Gala4194b362010-01-12 11:42:43 -0600148
Kumar Gala79679d82008-03-26 08:34:25 -0500149static u8 boot_entry_map[4] = {
150 0,
151 BOOT_ENTRY_PIR,
152 BOOT_ENTRY_R3_LOWER,
Kumar Gala79679d82008-03-26 08:34:25 -0500153};
154
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200155int cpu_release(int nr, int argc, char * const argv[])
Kumar Galaec2b74f2008-01-17 16:48:33 -0600156{
York Sunffd06e02012-10-08 07:44:30 +0000157 u32 i, val, *table = (u32 *)&__spin_table + nr * NUM_BOOT_ENTRY;
Kumar Gala79679d82008-03-26 08:34:25 -0500158 u64 boot_addr;
Kumar Galaec2b74f2008-01-17 16:48:33 -0600159
Aaron Sierra9d64c6b2010-09-30 12:22:16 -0500160 if (hold_cores_in_reset(1))
161 return 0;
162
Kumar Galaec2b74f2008-01-17 16:48:33 -0600163 if (nr == get_my_id()) {
164 printf("Invalid to release the boot core.\n\n");
165 return 1;
166 }
167
Kumar Gala79679d82008-03-26 08:34:25 -0500168 if (argc != 4) {
Kumar Galaec2b74f2008-01-17 16:48:33 -0600169 printf("Invalid number of arguments to release.\n\n");
170 return 1;
171 }
172
Kumar Gala79679d82008-03-26 08:34:25 -0500173 boot_addr = simple_strtoull(argv[0], NULL, 16);
Kumar Gala79679d82008-03-26 08:34:25 -0500174
York Sun3f0997b2012-10-08 07:44:29 +0000175 /* handle pir, r3 */
176 for (i = 1; i < 3; i++) {
Kumar Galaec2b74f2008-01-17 16:48:33 -0600177 if (argv[i][0] != '-') {
Kumar Gala79679d82008-03-26 08:34:25 -0500178 u8 entry = boot_entry_map[i];
Kumar Galaec2b74f2008-01-17 16:48:33 -0600179 val = simple_strtoul(argv[i], NULL, 16);
Kumar Gala79679d82008-03-26 08:34:25 -0500180 table[entry] = val;
Kumar Galaec2b74f2008-01-17 16:48:33 -0600181 }
182 }
183
Kumar Gala79679d82008-03-26 08:34:25 -0500184 table[BOOT_ENTRY_ADDR_UPPER] = (u32)(boot_addr >> 32);
Kumar Galacf6cc012008-04-28 02:24:04 -0500185
186 /* ensure all table updates complete before final address write */
187 eieio();
188
Kumar Gala79679d82008-03-26 08:34:25 -0500189 table[BOOT_ENTRY_ADDR_LOWER] = (u32)(boot_addr & 0xffffffff);
Kumar Galaec2b74f2008-01-17 16:48:33 -0600190
191 return 0;
192}
193
York Suneb539412012-10-08 07:44:25 +0000194u32 determine_mp_bootpg(unsigned int *pagesize)
Kumar Galac840d262009-03-31 23:11:05 -0500195{
York Suneb539412012-10-08 07:44:25 +0000196 u32 bootpg;
197#ifdef CONFIG_SYS_FSL_ERRATUM_A004468
198 u32 svr = get_svr();
199 u32 granule_size, check;
200 struct law_entry e;
201#endif
202
York Sunffd06e02012-10-08 07:44:30 +0000203
204 /* use last 4K of mapped memory */
205 bootpg = ((gd->ram_size > CONFIG_MAX_MEM_MAPPED) ?
206 CONFIG_MAX_MEM_MAPPED : gd->ram_size) +
207 CONFIG_SYS_SDRAM_BASE - 4096;
York Suneb539412012-10-08 07:44:25 +0000208 if (pagesize)
209 *pagesize = 4096;
Kumar Galac840d262009-03-31 23:11:05 -0500210
York Suneb539412012-10-08 07:44:25 +0000211#ifdef CONFIG_SYS_FSL_ERRATUM_A004468
212/*
213 * Erratum A004468 has two parts. The 3-way interleaving applies to T4240,
214 * to be fixed in rev 2.0. The 2-way interleaving applies to many SoCs. But
215 * the way boot page chosen in u-boot avoids hitting this erratum. So only
216 * thw workaround for 3-way interleaving is needed.
217 *
218 * To make sure boot page translation works with 3-Way DDR interleaving
219 * enforce a check for the following constrains
220 * 8K granule size requires BRSIZE=8K and
221 * bootpg >> log2(BRSIZE) %3 == 1
222 * 4K and 1K granule size requires BRSIZE=4K and
223 * bootpg >> log2(BRSIZE) %3 == 0
224 */
225 if (SVR_SOC_VER(svr) == SVR_T4240 && SVR_MAJ(svr) < 2) {
226 e = find_law(bootpg);
227 switch (e.trgt_id) {
228 case LAW_TRGT_IF_DDR_INTLV_123:
229 granule_size = fsl_ddr_get_intl3r() & 0x1f;
230 if (granule_size == FSL_DDR_3WAY_8KB_INTERLEAVING) {
231 if (pagesize)
232 *pagesize = 8192;
233 bootpg &= 0xffffe000; /* align to 8KB */
234 check = bootpg >> 13;
235 while ((check % 3) != 1)
236 check--;
237 bootpg = check << 13;
238 debug("Boot page (8K) at 0x%08x\n", bootpg);
239 break;
240 } else {
241 bootpg &= 0xfffff000; /* align to 4KB */
242 check = bootpg >> 12;
243 while ((check % 3) != 0)
244 check--;
245 bootpg = check << 12;
246 debug("Boot page (4K) at 0x%08x\n", bootpg);
247 }
248 break;
249 default:
250 break;
251 }
252 }
253#endif /* CONFIG_SYS_FSL_ERRATUM_A004468 */
254
255 return bootpg;
Kumar Galac840d262009-03-31 23:11:05 -0500256}
257
York Sunffd06e02012-10-08 07:44:30 +0000258phys_addr_t get_spin_phys_addr(void)
Kumar Galaec2b74f2008-01-17 16:48:33 -0600259{
York Sunffd06e02012-10-08 07:44:30 +0000260 return virt_to_phys(&__spin_table);
Kumar Galaec2b74f2008-01-17 16:48:33 -0600261}
262
Kumar Gala39a7e7f2009-09-17 01:44:39 -0500263#ifdef CONFIG_FSL_CORENET
York Suneb539412012-10-08 07:44:25 +0000264static void plat_mp_up(unsigned long bootpg, unsigned int pagesize)
Kumar Gala39a7e7f2009-09-17 01:44:39 -0500265{
York Suneb539412012-10-08 07:44:25 +0000266 u32 cpu_up_mask, whoami, brsize = LAW_SIZE_4K;
York Sunffd06e02012-10-08 07:44:30 +0000267 u32 *table = (u32 *)&__spin_table;
Kumar Gala39a7e7f2009-09-17 01:44:39 -0500268 volatile ccsr_gur_t *gur;
269 volatile ccsr_local_t *ccm;
270 volatile ccsr_rcpm_t *rcpm;
271 volatile ccsr_pic_t *pic;
272 int timeout = 10;
Timur Tabifbb9ecf2011-08-05 16:15:24 -0500273 u32 mask = cpu_mask();
Kumar Gala39a7e7f2009-09-17 01:44:39 -0500274 struct law_entry e;
275
276 gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
277 ccm = (void *)(CONFIG_SYS_FSL_CORENET_CCM_ADDR);
278 rcpm = (void *)(CONFIG_SYS_FSL_CORENET_RCPM_ADDR);
Kim Phillips680c6132010-08-09 18:39:57 -0500279 pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Kumar Gala39a7e7f2009-09-17 01:44:39 -0500280
Kumar Gala39a7e7f2009-09-17 01:44:39 -0500281 whoami = in_be32(&pic->whoami);
282 cpu_up_mask = 1 << whoami;
283 out_be32(&ccm->bstrl, bootpg);
284
285 e = find_law(bootpg);
York Suneb539412012-10-08 07:44:25 +0000286 /* pagesize is only 4K or 8K */
287 if (pagesize == 8192)
288 brsize = LAW_SIZE_8K;
289 out_be32(&ccm->bstrar, LAW_EN | e.trgt_id << 20 | brsize);
290 debug("BRSIZE is 0x%x\n", brsize);
Kumar Gala39a7e7f2009-09-17 01:44:39 -0500291
Dave Liuf5ecc6e2009-11-17 20:01:24 -0600292 /* readback to sync write */
293 in_be32(&ccm->bstrar);
294
Kumar Gala39a7e7f2009-09-17 01:44:39 -0500295 /* disable time base at the platform */
296 out_be32(&rcpm->ctbenrl, cpu_up_mask);
297
Timur Tabifbb9ecf2011-08-05 16:15:24 -0500298 out_be32(&gur->brrl, mask);
Kumar Gala39a7e7f2009-09-17 01:44:39 -0500299
300 /* wait for everyone */
301 while (timeout) {
Timur Tabifbb9ecf2011-08-05 16:15:24 -0500302 unsigned int i, cpu, nr_cpus = cpu_numcores();
Kumar Gala39a7e7f2009-09-17 01:44:39 -0500303
Timur Tabifbb9ecf2011-08-05 16:15:24 -0500304 for_each_cpu(i, cpu, nr_cpus, mask) {
305 if (table[cpu * NUM_BOOT_ENTRY + BOOT_ENTRY_ADDR_LOWER])
306 cpu_up_mask |= (1 << cpu);
307 }
308
309 if ((cpu_up_mask & mask) == mask)
Kumar Gala39a7e7f2009-09-17 01:44:39 -0500310 break;
311
312 udelay(100);
313 timeout--;
314 }
315
316 if (timeout == 0)
317 printf("CPU up timeout. CPU up mask is %x should be %x\n",
Timur Tabifbb9ecf2011-08-05 16:15:24 -0500318 cpu_up_mask, mask);
Kumar Gala39a7e7f2009-09-17 01:44:39 -0500319
320 /* enable time base at the platform */
321 out_be32(&rcpm->ctbenrl, 0);
Kumar Gala7afc45a2011-03-13 10:55:53 -0500322
323 /* readback to sync write */
324 in_be32(&rcpm->ctbenrl);
325
Kumar Gala39a7e7f2009-09-17 01:44:39 -0500326 mtspr(SPRN_TBWU, 0);
327 mtspr(SPRN_TBWL, 0);
Kumar Gala7afc45a2011-03-13 10:55:53 -0500328
Timur Tabifbb9ecf2011-08-05 16:15:24 -0500329 out_be32(&rcpm->ctbenrl, mask);
Peter Tyser5ccd29c2009-10-23 15:55:47 -0500330
331#ifdef CONFIG_MPC8xxx_DISABLE_BPTR
332 /*
333 * Disabling Boot Page Translation allows the memory region 0xfffff000
334 * to 0xffffffff to be used normally. Leaving Boot Page Translation
335 * enabled remaps 0xfffff000 to SDRAM which makes that memory region
336 * unusable for normal operation but it does allow OSes to easily
337 * reset a processor core to put it back into U-Boot's spinloop.
338 */
Ed Swarthoute81241a2011-03-03 18:28:14 -0600339 clrbits_be32(&ccm->bstrar, LAW_EN);
Peter Tyser5ccd29c2009-10-23 15:55:47 -0500340#endif
Kumar Gala39a7e7f2009-09-17 01:44:39 -0500341}
342#else
York Suneb539412012-10-08 07:44:25 +0000343static void plat_mp_up(unsigned long bootpg, unsigned int pagesize)
Kumar Galaec2b74f2008-01-17 16:48:33 -0600344{
345 u32 up, cpu_up_mask, whoami;
York Sunffd06e02012-10-08 07:44:30 +0000346 u32 *table = (u32 *)&__spin_table;
Kumar Galaec2b74f2008-01-17 16:48:33 -0600347 volatile u32 bpcr;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200348 volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR);
349 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Kim Phillips680c6132010-08-09 18:39:57 -0500350 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Kumar Galaec2b74f2008-01-17 16:48:33 -0600351 u32 devdisr;
352 int timeout = 10;
353
354 whoami = in_be32(&pic->whoami);
355 out_be32(&ecm->bptr, 0x80000000 | (bootpg >> 12));
356
357 /* disable time base at the platform */
358 devdisr = in_be32(&gur->devdisr);
359 if (whoami)
360 devdisr |= MPC85xx_DEVDISR_TB0;
361 else
362 devdisr |= MPC85xx_DEVDISR_TB1;
363 out_be32(&gur->devdisr, devdisr);
364
365 /* release the hounds */
Poonam Aggrwal0e870982009-07-31 12:08:14 +0530366 up = ((1 << cpu_numcores()) - 1);
Kumar Galaec2b74f2008-01-17 16:48:33 -0600367 bpcr = in_be32(&ecm->eebpcr);
368 bpcr |= (up << 24);
369 out_be32(&ecm->eebpcr, bpcr);
370 asm("sync; isync; msync");
371
372 cpu_up_mask = 1 << whoami;
373 /* wait for everyone */
374 while (timeout) {
375 int i;
Poonam Aggrwal0e870982009-07-31 12:08:14 +0530376 for (i = 0; i < cpu_numcores(); i++) {
Kumar Gala97b3ecb2008-04-09 04:20:57 -0500377 if (table[i * NUM_BOOT_ENTRY + BOOT_ENTRY_ADDR_LOWER])
Kumar Galaec2b74f2008-01-17 16:48:33 -0600378 cpu_up_mask |= (1 << i);
379 };
380
381 if ((cpu_up_mask & up) == up)
382 break;
383
384 udelay(100);
385 timeout--;
386 }
387
Kumar Gala97b3ecb2008-04-09 04:20:57 -0500388 if (timeout == 0)
389 printf("CPU up timeout. CPU up mask is %x should be %x\n",
390 cpu_up_mask, up);
391
Kumar Galaec2b74f2008-01-17 16:48:33 -0600392 /* enable time base at the platform */
393 if (whoami)
394 devdisr |= MPC85xx_DEVDISR_TB1;
395 else
396 devdisr |= MPC85xx_DEVDISR_TB0;
397 out_be32(&gur->devdisr, devdisr);
Kumar Gala7afc45a2011-03-13 10:55:53 -0500398
399 /* readback to sync write */
400 in_be32(&gur->devdisr);
401
Kumar Galaec2b74f2008-01-17 16:48:33 -0600402 mtspr(SPRN_TBWU, 0);
403 mtspr(SPRN_TBWL, 0);
404
405 devdisr &= ~(MPC85xx_DEVDISR_TB0 | MPC85xx_DEVDISR_TB1);
406 out_be32(&gur->devdisr, devdisr);
Peter Tyser5ccd29c2009-10-23 15:55:47 -0500407
408#ifdef CONFIG_MPC8xxx_DISABLE_BPTR
409 /*
410 * Disabling Boot Page Translation allows the memory region 0xfffff000
411 * to 0xffffffff to be used normally. Leaving Boot Page Translation
412 * enabled remaps 0xfffff000 to SDRAM which makes that memory region
413 * unusable for normal operation but it does allow OSes to easily
414 * reset a processor core to put it back into U-Boot's spinloop.
415 */
416 clrbits_be32(&ecm->bptr, 0x80000000);
417#endif
Kumar Galaec2b74f2008-01-17 16:48:33 -0600418}
Kumar Gala39a7e7f2009-09-17 01:44:39 -0500419#endif
Kumar Galaec2b74f2008-01-17 16:48:33 -0600420
Kumar Galadd6c9102008-03-26 08:53:53 -0500421void cpu_mp_lmb_reserve(struct lmb *lmb)
422{
York Suneb539412012-10-08 07:44:25 +0000423 u32 bootpg = determine_mp_bootpg(NULL);
Kumar Galadd6c9102008-03-26 08:53:53 -0500424
425 lmb_reserve(lmb, bootpg, 4096);
426}
427
Kumar Galaec2b74f2008-01-17 16:48:33 -0600428void setup_mp(void)
429{
York Sunffd06e02012-10-08 07:44:30 +0000430 extern u32 __secondary_start_page;
431 extern u32 __bootpg_addr, __spin_table_addr, __second_half_boot_page;
York Suneb539412012-10-08 07:44:25 +0000432
York Sunffd06e02012-10-08 07:44:30 +0000433 int i;
434 ulong fixup = (u32)&__secondary_start_page;
York Suneb539412012-10-08 07:44:25 +0000435 u32 bootpg, bootpg_map, pagesize;
436
437 bootpg = determine_mp_bootpg(&pagesize);
438
439 /*
440 * pagesize is only 4K or 8K
441 * we only use the last 4K of boot page
442 * bootpg_map saves the address for the boot page
443 * 8K is used for the workaround of 3-way DDR interleaving
444 */
445
446 bootpg_map = bootpg;
447
448 if (pagesize == 8192)
449 bootpg += 4096; /* use 2nd half */
Kumar Galaec2b74f2008-01-17 16:48:33 -0600450
Aaron Sierra9d64c6b2010-09-30 12:22:16 -0500451 /* Some OSes expect secondary cores to be held in reset */
452 if (hold_cores_in_reset(0))
453 return;
454
York Sunffd06e02012-10-08 07:44:30 +0000455 /*
456 * Store the bootpg's cache-able half address for use by secondary
457 * CPU cores to continue to boot
458 */
459 __bootpg_addr = (u32)virt_to_phys(&__second_half_boot_page);
460
461 /* Store spin table's physical address for use by secondary cores */
462 __spin_table_addr = (u32)get_spin_phys_addr();
463
464 /* flush bootpg it before copying invalidate any staled cacheline */
465 flush_cache(bootpg, 4096);
Peter Tyser5ccd29c2009-10-23 15:55:47 -0500466
Kumar Galac7259082009-09-03 08:41:31 -0500467 /* look for the tlb covering the reset page, there better be one */
York Sunffd06e02012-10-08 07:44:30 +0000468 i = find_tlb_idx((void *)CONFIG_BPTR_VIRT_ADDR, 1);
Kumar Galaec2b74f2008-01-17 16:48:33 -0600469
Kumar Galac7259082009-09-03 08:41:31 -0500470 /* we found a match */
471 if (i != -1) {
472 /* map reset page to bootpg so we can copy code there */
473 disable_tlb(i);
Kumar Gala39a7e7f2009-09-17 01:44:39 -0500474
Peter Tyser5ccd29c2009-10-23 15:55:47 -0500475 set_tlb(1, CONFIG_BPTR_VIRT_ADDR, bootpg, /* tlb, epn, rpn */
Kumar Galaabc76eb2009-11-17 20:21:20 -0600476 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, /* perms, wimge */
Kumar Galac7259082009-09-03 08:41:31 -0500477 0, i, BOOKE_PAGESZ_4K, 1); /* ts, esel, tsize, iprot */
478
Peter Tyser5ccd29c2009-10-23 15:55:47 -0500479 memcpy((void *)CONFIG_BPTR_VIRT_ADDR, (void *)fixup, 4096);
480
York Suneb539412012-10-08 07:44:25 +0000481 plat_mp_up(bootpg_map, pagesize);
Kumar Galac7259082009-09-03 08:41:31 -0500482 } else {
483 puts("WARNING: No reset page TLB. "
484 "Skipping secondary core setup\n");
485 }
Kumar Galaec2b74f2008-01-17 16:48:33 -0600486}