blob: 3882c95f92eae4a298d1bd357560ae7faf61c168 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kumar Gala36d6b3f2008-01-17 16:48:33 -06002/*
Ed Swarthout853e2de2011-03-03 18:28:14 -06003 * Copyright 2008-2011 Freescale Semiconductor, Inc.
Kumar Gala36d6b3f2008-01-17 16:48:33 -06004 */
5
6#include <common.h>
Simon Glassc301bd82019-08-01 09:46:49 -06007#include <env.h>
Kumar Gala36d6b3f2008-01-17 16:48:33 -06008#include <asm/processor.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -06009#include <env.h>
Kumar Gala36d6b3f2008-01-17 16:48:33 -060010#include <ioports.h>
Kumar Gala5769ded2008-03-26 08:53:53 -050011#include <lmb.h>
Kumar Gala36d6b3f2008-01-17 16:48:33 -060012#include <asm/io.h>
Kumar Gala8399e122009-09-03 08:41:31 -050013#include <asm/mmu.h>
Kumar Gala4d9190d2009-09-17 01:44:39 -050014#include <asm/fsl_law.h>
York Sunf0626592013-09-30 09:22:09 -070015#include <fsl_ddr_sdram.h>
Kumar Gala36d6b3f2008-01-17 16:48:33 -060016#include "mp.h"
17
18DECLARE_GLOBAL_DATA_PTR;
York Suna28496f2012-10-08 07:44:25 +000019u32 fsl_ddr_get_intl3r(void);
Kumar Gala36d6b3f2008-01-17 16:48:33 -060020
York Sun2394a0f2012-10-08 07:44:30 +000021extern u32 __spin_table[];
22
Kumar Gala36d6b3f2008-01-17 16:48:33 -060023u32 get_my_id()
24{
25 return mfspr(SPRN_PIR);
26}
27
Aaron Sierraec8863b2010-09-30 12:22:16 -050028/*
29 * Determine if U-Boot should keep secondary cores in reset, or let them out
30 * of reset and hold them in a spinloop
31 */
32int hold_cores_in_reset(int verbose)
33{
Robert P. J. Day8d56db92016-07-15 13:44:45 -040034 /* Default to no, overridden by 'y', 'yes', 'Y', 'Yes', or '1' */
Simon Glass22c34c22017-08-03 12:22:13 -060035 if (env_get_yesno("mp_holdoff") == 1) {
Aaron Sierraec8863b2010-09-30 12:22:16 -050036 if (verbose) {
37 puts("Secondary cores are being held in reset.\n");
38 puts("See 'mp_holdoff' environment variable\n");
39 }
40
41 return 1;
42 }
43
44 return 0;
45}
46
Michal Simek1669e182018-06-13 08:56:31 +020047int cpu_reset(u32 nr)
Kumar Gala36d6b3f2008-01-17 16:48:33 -060048{
Kim Phillips2ecbfeb2010-08-09 18:39:57 -050049 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Kumar Gala36d6b3f2008-01-17 16:48:33 -060050 out_be32(&pic->pir, 1 << nr);
Kumar Galae1064b32009-03-31 23:11:05 -050051 /* the dummy read works around an errata on early 85xx MP PICs */
Kumar Gala36d6b3f2008-01-17 16:48:33 -060052 (void)in_be32(&pic->pir);
53 out_be32(&pic->pir, 0x0);
54
55 return 0;
56}
57
Michal Simek1669e182018-06-13 08:56:31 +020058int cpu_status(u32 nr)
Kumar Gala36d6b3f2008-01-17 16:48:33 -060059{
60 u32 *table, id = get_my_id();
61
Aaron Sierraec8863b2010-09-30 12:22:16 -050062 if (hold_cores_in_reset(1))
63 return 0;
64
Kumar Gala36d6b3f2008-01-17 16:48:33 -060065 if (nr == id) {
York Sun2394a0f2012-10-08 07:44:30 +000066 table = (u32 *)&__spin_table;
Kumar Gala275f4c12008-07-14 14:03:02 -050067 printf("table base @ 0x%p\n", table);
York Sunc0723062013-03-25 07:40:00 +000068 } else if (is_core_disabled(nr)) {
69 puts("Disabled\n");
Kumar Gala36d6b3f2008-01-17 16:48:33 -060070 } else {
York Sun2394a0f2012-10-08 07:44:30 +000071 table = (u32 *)&__spin_table + nr * NUM_BOOT_ENTRY;
Kumar Gala36d6b3f2008-01-17 16:48:33 -060072 printf("Running on cpu %d\n", id);
73 printf("\n");
Kumar Gala275f4c12008-07-14 14:03:02 -050074 printf("table @ 0x%p\n", table);
Kumar Galadeeac572008-03-26 08:34:25 -050075 printf(" addr - 0x%08x\n", table[BOOT_ENTRY_ADDR_LOWER]);
Kumar Galadeeac572008-03-26 08:34:25 -050076 printf(" r3 - 0x%08x\n", table[BOOT_ENTRY_R3_LOWER]);
York Sun31a0c8c2012-10-08 07:44:29 +000077 printf(" pir - 0x%08x\n", table[BOOT_ENTRY_PIR]);
Kumar Gala36d6b3f2008-01-17 16:48:33 -060078 }
79
80 return 0;
81}
82
Kumar Galac7bf0f92010-01-12 12:56:05 -060083#ifdef CONFIG_FSL_CORENET
Michal Simek1669e182018-06-13 08:56:31 +020084int cpu_disable(u32 nr)
Kumar Gala006e2c82010-01-12 11:42:43 -060085{
Kumar Galac7bf0f92010-01-12 12:56:05 -060086 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
87
88 setbits_be32(&gur->coredisrl, 1 << nr);
89
90 return 0;
91}
Kumar Gala819a4792010-06-09 22:33:53 -050092
93int is_core_disabled(int nr) {
94 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
95 u32 coredisrl = in_be32(&gur->coredisrl);
96
97 return (coredisrl & (1 << nr));
98}
Kumar Galac7bf0f92010-01-12 12:56:05 -060099#else
Michal Simek1669e182018-06-13 08:56:31 +0200100int cpu_disable(u32 nr)
Kumar Galac7bf0f92010-01-12 12:56:05 -0600101{
102 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
103
104 switch (nr) {
105 case 0:
106 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_CPU0);
107 break;
108 case 1:
109 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_CPU1);
110 break;
111 default:
112 printf("Invalid cpu number for disable %d\n", nr);
113 return 1;
114 }
115
116 return 0;
Kumar Gala006e2c82010-01-12 11:42:43 -0600117}
Kumar Gala819a4792010-06-09 22:33:53 -0500118
119int is_core_disabled(int nr) {
120 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
121 u32 devdisr = in_be32(&gur->devdisr);
122
123 switch (nr) {
124 case 0:
125 return (devdisr & MPC85xx_DEVDISR_CPU0);
126 case 1:
127 return (devdisr & MPC85xx_DEVDISR_CPU1);
128 default:
129 printf("Invalid cpu number for disable %d\n", nr);
130 }
131
132 return 0;
133}
Kumar Galac7bf0f92010-01-12 12:56:05 -0600134#endif
Kumar Gala006e2c82010-01-12 11:42:43 -0600135
Kumar Galadeeac572008-03-26 08:34:25 -0500136static u8 boot_entry_map[4] = {
137 0,
138 BOOT_ENTRY_PIR,
139 BOOT_ENTRY_R3_LOWER,
Kumar Galadeeac572008-03-26 08:34:25 -0500140};
141
Michal Simek1669e182018-06-13 08:56:31 +0200142int cpu_release(u32 nr, int argc, char * const argv[])
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600143{
York Sun2394a0f2012-10-08 07:44:30 +0000144 u32 i, val, *table = (u32 *)&__spin_table + nr * NUM_BOOT_ENTRY;
Kumar Galadeeac572008-03-26 08:34:25 -0500145 u64 boot_addr;
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600146
Aaron Sierraec8863b2010-09-30 12:22:16 -0500147 if (hold_cores_in_reset(1))
148 return 0;
149
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600150 if (nr == get_my_id()) {
151 printf("Invalid to release the boot core.\n\n");
152 return 1;
153 }
154
Kumar Galadeeac572008-03-26 08:34:25 -0500155 if (argc != 4) {
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600156 printf("Invalid number of arguments to release.\n\n");
157 return 1;
158 }
159
Kumar Galadeeac572008-03-26 08:34:25 -0500160 boot_addr = simple_strtoull(argv[0], NULL, 16);
Kumar Galadeeac572008-03-26 08:34:25 -0500161
York Sun31a0c8c2012-10-08 07:44:29 +0000162 /* handle pir, r3 */
163 for (i = 1; i < 3; i++) {
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600164 if (argv[i][0] != '-') {
Kumar Galadeeac572008-03-26 08:34:25 -0500165 u8 entry = boot_entry_map[i];
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600166 val = simple_strtoul(argv[i], NULL, 16);
Kumar Galadeeac572008-03-26 08:34:25 -0500167 table[entry] = val;
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600168 }
169 }
170
Kumar Galadeeac572008-03-26 08:34:25 -0500171 table[BOOT_ENTRY_ADDR_UPPER] = (u32)(boot_addr >> 32);
Kumar Gala398dcd62008-04-28 02:24:04 -0500172
173 /* ensure all table updates complete before final address write */
174 eieio();
175
Kumar Galadeeac572008-03-26 08:34:25 -0500176 table[BOOT_ENTRY_ADDR_LOWER] = (u32)(boot_addr & 0xffffffff);
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600177
178 return 0;
179}
180
York Suna28496f2012-10-08 07:44:25 +0000181u32 determine_mp_bootpg(unsigned int *pagesize)
Kumar Galae1064b32009-03-31 23:11:05 -0500182{
York Suna28496f2012-10-08 07:44:25 +0000183 u32 bootpg;
184#ifdef CONFIG_SYS_FSL_ERRATUM_A004468
185 u32 svr = get_svr();
186 u32 granule_size, check;
187 struct law_entry e;
188#endif
189
York Sun2394a0f2012-10-08 07:44:30 +0000190
191 /* use last 4K of mapped memory */
192 bootpg = ((gd->ram_size > CONFIG_MAX_MEM_MAPPED) ?
193 CONFIG_MAX_MEM_MAPPED : gd->ram_size) +
194 CONFIG_SYS_SDRAM_BASE - 4096;
York Suna28496f2012-10-08 07:44:25 +0000195 if (pagesize)
196 *pagesize = 4096;
Kumar Galae1064b32009-03-31 23:11:05 -0500197
York Suna28496f2012-10-08 07:44:25 +0000198#ifdef CONFIG_SYS_FSL_ERRATUM_A004468
199/*
200 * Erratum A004468 has two parts. The 3-way interleaving applies to T4240,
201 * to be fixed in rev 2.0. The 2-way interleaving applies to many SoCs. But
202 * the way boot page chosen in u-boot avoids hitting this erratum. So only
203 * thw workaround for 3-way interleaving is needed.
204 *
205 * To make sure boot page translation works with 3-Way DDR interleaving
206 * enforce a check for the following constrains
207 * 8K granule size requires BRSIZE=8K and
208 * bootpg >> log2(BRSIZE) %3 == 1
209 * 4K and 1K granule size requires BRSIZE=4K and
210 * bootpg >> log2(BRSIZE) %3 == 0
211 */
212 if (SVR_SOC_VER(svr) == SVR_T4240 && SVR_MAJ(svr) < 2) {
213 e = find_law(bootpg);
214 switch (e.trgt_id) {
215 case LAW_TRGT_IF_DDR_INTLV_123:
216 granule_size = fsl_ddr_get_intl3r() & 0x1f;
217 if (granule_size == FSL_DDR_3WAY_8KB_INTERLEAVING) {
218 if (pagesize)
219 *pagesize = 8192;
220 bootpg &= 0xffffe000; /* align to 8KB */
221 check = bootpg >> 13;
222 while ((check % 3) != 1)
223 check--;
224 bootpg = check << 13;
225 debug("Boot page (8K) at 0x%08x\n", bootpg);
226 break;
227 } else {
228 bootpg &= 0xfffff000; /* align to 4KB */
229 check = bootpg >> 12;
230 while ((check % 3) != 0)
231 check--;
232 bootpg = check << 12;
233 debug("Boot page (4K) at 0x%08x\n", bootpg);
234 }
235 break;
236 default:
237 break;
238 }
239 }
240#endif /* CONFIG_SYS_FSL_ERRATUM_A004468 */
241
242 return bootpg;
Kumar Galae1064b32009-03-31 23:11:05 -0500243}
244
York Sun2394a0f2012-10-08 07:44:30 +0000245phys_addr_t get_spin_phys_addr(void)
Peter Tyser7feaacb2009-10-23 15:55:47 -0500246{
York Sun2394a0f2012-10-08 07:44:30 +0000247 return virt_to_phys(&__spin_table);
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600248}
249
Kumar Gala4d9190d2009-09-17 01:44:39 -0500250#ifdef CONFIG_FSL_CORENET
York Suna28496f2012-10-08 07:44:25 +0000251static void plat_mp_up(unsigned long bootpg, unsigned int pagesize)
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600252{
York Suna28496f2012-10-08 07:44:25 +0000253 u32 cpu_up_mask, whoami, brsize = LAW_SIZE_4K;
York Sun2394a0f2012-10-08 07:44:30 +0000254 u32 *table = (u32 *)&__spin_table;
Kumar Gala4d9190d2009-09-17 01:44:39 -0500255 volatile ccsr_gur_t *gur;
256 volatile ccsr_local_t *ccm;
257 volatile ccsr_rcpm_t *rcpm;
258 volatile ccsr_pic_t *pic;
259 int timeout = 10;
Timur Tabi47289422011-08-05 16:15:24 -0500260 u32 mask = cpu_mask();
Kumar Gala4d9190d2009-09-17 01:44:39 -0500261 struct law_entry e;
262
263 gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
264 ccm = (void *)(CONFIG_SYS_FSL_CORENET_CCM_ADDR);
265 rcpm = (void *)(CONFIG_SYS_FSL_CORENET_RCPM_ADDR);
Kim Phillips2ecbfeb2010-08-09 18:39:57 -0500266 pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Kumar Gala4d9190d2009-09-17 01:44:39 -0500267
Kumar Gala4d9190d2009-09-17 01:44:39 -0500268 whoami = in_be32(&pic->whoami);
269 cpu_up_mask = 1 << whoami;
270 out_be32(&ccm->bstrl, bootpg);
271
272 e = find_law(bootpg);
York Suna28496f2012-10-08 07:44:25 +0000273 /* pagesize is only 4K or 8K */
274 if (pagesize == 8192)
275 brsize = LAW_SIZE_8K;
276 out_be32(&ccm->bstrar, LAW_EN | e.trgt_id << 20 | brsize);
277 debug("BRSIZE is 0x%x\n", brsize);
Kumar Gala4d9190d2009-09-17 01:44:39 -0500278
Dave Liu452ddb62009-11-17 20:01:24 -0600279 /* readback to sync write */
280 in_be32(&ccm->bstrar);
281
Kumar Gala4d9190d2009-09-17 01:44:39 -0500282 /* disable time base at the platform */
283 out_be32(&rcpm->ctbenrl, cpu_up_mask);
284
Timur Tabi47289422011-08-05 16:15:24 -0500285 out_be32(&gur->brrl, mask);
Kumar Gala4d9190d2009-09-17 01:44:39 -0500286
287 /* wait for everyone */
288 while (timeout) {
Timur Tabi47289422011-08-05 16:15:24 -0500289 unsigned int i, cpu, nr_cpus = cpu_numcores();
Kumar Gala4d9190d2009-09-17 01:44:39 -0500290
Timur Tabi47289422011-08-05 16:15:24 -0500291 for_each_cpu(i, cpu, nr_cpus, mask) {
292 if (table[cpu * NUM_BOOT_ENTRY + BOOT_ENTRY_ADDR_LOWER])
293 cpu_up_mask |= (1 << cpu);
294 }
295
296 if ((cpu_up_mask & mask) == mask)
Kumar Gala4d9190d2009-09-17 01:44:39 -0500297 break;
298
299 udelay(100);
300 timeout--;
301 }
302
303 if (timeout == 0)
304 printf("CPU up timeout. CPU up mask is %x should be %x\n",
Timur Tabi47289422011-08-05 16:15:24 -0500305 cpu_up_mask, mask);
Kumar Gala4d9190d2009-09-17 01:44:39 -0500306
307 /* enable time base at the platform */
308 out_be32(&rcpm->ctbenrl, 0);
Kumar Gala6c5025e2011-03-13 10:55:53 -0500309
310 /* readback to sync write */
311 in_be32(&rcpm->ctbenrl);
312
Kumar Gala4d9190d2009-09-17 01:44:39 -0500313 mtspr(SPRN_TBWU, 0);
314 mtspr(SPRN_TBWL, 0);
Kumar Gala6c5025e2011-03-13 10:55:53 -0500315
Timur Tabi47289422011-08-05 16:15:24 -0500316 out_be32(&rcpm->ctbenrl, mask);
Peter Tyser7feaacb2009-10-23 15:55:47 -0500317
318#ifdef CONFIG_MPC8xxx_DISABLE_BPTR
319 /*
320 * Disabling Boot Page Translation allows the memory region 0xfffff000
321 * to 0xffffffff to be used normally. Leaving Boot Page Translation
322 * enabled remaps 0xfffff000 to SDRAM which makes that memory region
323 * unusable for normal operation but it does allow OSes to easily
324 * reset a processor core to put it back into U-Boot's spinloop.
325 */
Ed Swarthout853e2de2011-03-03 18:28:14 -0600326 clrbits_be32(&ccm->bstrar, LAW_EN);
Peter Tyser7feaacb2009-10-23 15:55:47 -0500327#endif
Kumar Gala4d9190d2009-09-17 01:44:39 -0500328}
329#else
York Suna28496f2012-10-08 07:44:25 +0000330static void plat_mp_up(unsigned long bootpg, unsigned int pagesize)
Kumar Gala4d9190d2009-09-17 01:44:39 -0500331{
332 u32 up, cpu_up_mask, whoami;
York Sun2394a0f2012-10-08 07:44:30 +0000333 u32 *table = (u32 *)&__spin_table;
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600334 volatile u32 bpcr;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200335 volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR);
336 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Kim Phillips2ecbfeb2010-08-09 18:39:57 -0500337 volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC8xxx_PIC_ADDR);
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600338 u32 devdisr;
339 int timeout = 10;
340
341 whoami = in_be32(&pic->whoami);
342 out_be32(&ecm->bptr, 0x80000000 | (bootpg >> 12));
343
344 /* disable time base at the platform */
345 devdisr = in_be32(&gur->devdisr);
346 if (whoami)
347 devdisr |= MPC85xx_DEVDISR_TB0;
348 else
349 devdisr |= MPC85xx_DEVDISR_TB1;
350 out_be32(&gur->devdisr, devdisr);
351
352 /* release the hounds */
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530353 up = ((1 << cpu_numcores()) - 1);
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600354 bpcr = in_be32(&ecm->eebpcr);
355 bpcr |= (up << 24);
356 out_be32(&ecm->eebpcr, bpcr);
357 asm("sync; isync; msync");
358
359 cpu_up_mask = 1 << whoami;
360 /* wait for everyone */
361 while (timeout) {
362 int i;
Poonam Aggrwal4baef822009-07-31 12:08:14 +0530363 for (i = 0; i < cpu_numcores(); i++) {
Kumar Gala615f14d2008-04-09 04:20:57 -0500364 if (table[i * NUM_BOOT_ENTRY + BOOT_ENTRY_ADDR_LOWER])
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600365 cpu_up_mask |= (1 << i);
366 };
367
368 if ((cpu_up_mask & up) == up)
369 break;
370
371 udelay(100);
372 timeout--;
373 }
374
Kumar Gala615f14d2008-04-09 04:20:57 -0500375 if (timeout == 0)
376 printf("CPU up timeout. CPU up mask is %x should be %x\n",
377 cpu_up_mask, up);
378
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600379 /* enable time base at the platform */
380 if (whoami)
381 devdisr |= MPC85xx_DEVDISR_TB1;
382 else
383 devdisr |= MPC85xx_DEVDISR_TB0;
384 out_be32(&gur->devdisr, devdisr);
Kumar Gala6c5025e2011-03-13 10:55:53 -0500385
386 /* readback to sync write */
387 in_be32(&gur->devdisr);
388
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600389 mtspr(SPRN_TBWU, 0);
390 mtspr(SPRN_TBWL, 0);
391
392 devdisr &= ~(MPC85xx_DEVDISR_TB0 | MPC85xx_DEVDISR_TB1);
393 out_be32(&gur->devdisr, devdisr);
Peter Tyser7feaacb2009-10-23 15:55:47 -0500394
395#ifdef CONFIG_MPC8xxx_DISABLE_BPTR
396 /*
397 * Disabling Boot Page Translation allows the memory region 0xfffff000
398 * to 0xffffffff to be used normally. Leaving Boot Page Translation
399 * enabled remaps 0xfffff000 to SDRAM which makes that memory region
400 * unusable for normal operation but it does allow OSes to easily
401 * reset a processor core to put it back into U-Boot's spinloop.
402 */
403 clrbits_be32(&ecm->bptr, 0x80000000);
404#endif
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600405}
Kumar Gala4d9190d2009-09-17 01:44:39 -0500406#endif
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600407
Kumar Gala5769ded2008-03-26 08:53:53 -0500408void cpu_mp_lmb_reserve(struct lmb *lmb)
409{
York Suna28496f2012-10-08 07:44:25 +0000410 u32 bootpg = determine_mp_bootpg(NULL);
Kumar Gala5769ded2008-03-26 08:53:53 -0500411
412 lmb_reserve(lmb, bootpg, 4096);
413}
414
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600415void setup_mp(void)
416{
York Sun2394a0f2012-10-08 07:44:30 +0000417 extern u32 __secondary_start_page;
418 extern u32 __bootpg_addr, __spin_table_addr, __second_half_boot_page;
York Suna28496f2012-10-08 07:44:25 +0000419
York Sun2394a0f2012-10-08 07:44:30 +0000420 int i;
421 ulong fixup = (u32)&__secondary_start_page;
York Suna28496f2012-10-08 07:44:25 +0000422 u32 bootpg, bootpg_map, pagesize;
423
424 bootpg = determine_mp_bootpg(&pagesize);
425
426 /*
427 * pagesize is only 4K or 8K
428 * we only use the last 4K of boot page
429 * bootpg_map saves the address for the boot page
430 * 8K is used for the workaround of 3-way DDR interleaving
431 */
432
433 bootpg_map = bootpg;
434
435 if (pagesize == 8192)
436 bootpg += 4096; /* use 2nd half */
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600437
Aaron Sierraec8863b2010-09-30 12:22:16 -0500438 /* Some OSes expect secondary cores to be held in reset */
439 if (hold_cores_in_reset(0))
440 return;
441
York Sun2394a0f2012-10-08 07:44:30 +0000442 /*
443 * Store the bootpg's cache-able half address for use by secondary
444 * CPU cores to continue to boot
445 */
446 __bootpg_addr = (u32)virt_to_phys(&__second_half_boot_page);
447
448 /* Store spin table's physical address for use by secondary cores */
449 __spin_table_addr = (u32)get_spin_phys_addr();
450
451 /* flush bootpg it before copying invalidate any staled cacheline */
452 flush_cache(bootpg, 4096);
Peter Tyser7feaacb2009-10-23 15:55:47 -0500453
Kumar Gala8399e122009-09-03 08:41:31 -0500454 /* look for the tlb covering the reset page, there better be one */
York Sun2394a0f2012-10-08 07:44:30 +0000455 i = find_tlb_idx((void *)CONFIG_BPTR_VIRT_ADDR, 1);
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600456
Kumar Gala8399e122009-09-03 08:41:31 -0500457 /* we found a match */
458 if (i != -1) {
459 /* map reset page to bootpg so we can copy code there */
460 disable_tlb(i);
Kumar Gala4d9190d2009-09-17 01:44:39 -0500461
Peter Tyser7feaacb2009-10-23 15:55:47 -0500462 set_tlb(1, CONFIG_BPTR_VIRT_ADDR, bootpg, /* tlb, epn, rpn */
Kumar Gala4756ffa2009-11-17 20:21:20 -0600463 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, /* perms, wimge */
Kumar Gala8399e122009-09-03 08:41:31 -0500464 0, i, BOOKE_PAGESZ_4K, 1); /* ts, esel, tsize, iprot */
465
Peter Tyser7feaacb2009-10-23 15:55:47 -0500466 memcpy((void *)CONFIG_BPTR_VIRT_ADDR, (void *)fixup, 4096);
467
York Suna28496f2012-10-08 07:44:25 +0000468 plat_mp_up(bootpg_map, pagesize);
Kumar Gala8399e122009-09-03 08:41:31 -0500469 } else {
470 puts("WARNING: No reset page TLB. "
471 "Skipping secondary core setup\n");
472 }
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600473}