Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 2 | /* |
Ed Swarthout | 853e2de | 2011-03-03 18:28:14 -0600 | [diff] [blame] | 3 | * Copyright 2008-2011 Freescale Semiconductor, Inc. |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | 970b61e | 2019-11-14 12:57:09 -0700 | [diff] [blame] | 7 | #include <cpu_func.h> |
Simon Glass | c301bd8 | 2019-08-01 09:46:49 -0600 | [diff] [blame] | 8 | #include <env.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 9 | #include <log.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 10 | #include <asm/global_data.h> |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 11 | #include <asm/processor.h> |
Simon Glass | 0af6e2d | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 12 | #include <env.h> |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 13 | #include <ioports.h> |
Kumar Gala | 5769ded | 2008-03-26 08:53:53 -0500 | [diff] [blame] | 14 | #include <lmb.h> |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 15 | #include <asm/io.h> |
Kumar Gala | 8399e12 | 2009-09-03 08:41:31 -0500 | [diff] [blame] | 16 | #include <asm/mmu.h> |
Kumar Gala | 4d9190d | 2009-09-17 01:44:39 -0500 | [diff] [blame] | 17 | #include <asm/fsl_law.h> |
York Sun | f062659 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 18 | #include <fsl_ddr_sdram.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 19 | #include <linux/delay.h> |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 20 | #include "mp.h" |
| 21 | |
| 22 | DECLARE_GLOBAL_DATA_PTR; |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 23 | u32 fsl_ddr_get_intl3r(void); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 24 | |
York Sun | 2394a0f | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 25 | extern u32 __spin_table[]; |
| 26 | |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 27 | u32 get_my_id() |
| 28 | { |
| 29 | return mfspr(SPRN_PIR); |
| 30 | } |
| 31 | |
Aaron Sierra | ec8863b | 2010-09-30 12:22:16 -0500 | [diff] [blame] | 32 | /* |
| 33 | * Determine if U-Boot should keep secondary cores in reset, or let them out |
| 34 | * of reset and hold them in a spinloop |
| 35 | */ |
| 36 | int hold_cores_in_reset(int verbose) |
| 37 | { |
Robert P. J. Day | 8d56db9 | 2016-07-15 13:44:45 -0400 | [diff] [blame] | 38 | /* Default to no, overridden by 'y', 'yes', 'Y', 'Yes', or '1' */ |
Simon Glass | 22c34c2 | 2017-08-03 12:22:13 -0600 | [diff] [blame] | 39 | if (env_get_yesno("mp_holdoff") == 1) { |
Aaron Sierra | ec8863b | 2010-09-30 12:22:16 -0500 | [diff] [blame] | 40 | if (verbose) { |
| 41 | puts("Secondary cores are being held in reset.\n"); |
| 42 | puts("See 'mp_holdoff' environment variable\n"); |
| 43 | } |
| 44 | |
| 45 | return 1; |
| 46 | } |
| 47 | |
| 48 | return 0; |
| 49 | } |
| 50 | |
Michal Simek | 1669e18 | 2018-06-13 08:56:31 +0200 | [diff] [blame] | 51 | int cpu_reset(u32 nr) |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 52 | { |
Tom Rini | d5c3bf2 | 2022-10-28 20:27:12 -0400 | [diff] [blame^] | 53 | volatile ccsr_pic_t *pic = (void *)(CFG_SYS_MPC8xxx_PIC_ADDR); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 54 | out_be32(&pic->pir, 1 << nr); |
Kumar Gala | e1064b3 | 2009-03-31 23:11:05 -0500 | [diff] [blame] | 55 | /* the dummy read works around an errata on early 85xx MP PICs */ |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 56 | (void)in_be32(&pic->pir); |
| 57 | out_be32(&pic->pir, 0x0); |
| 58 | |
| 59 | return 0; |
| 60 | } |
| 61 | |
Michal Simek | 1669e18 | 2018-06-13 08:56:31 +0200 | [diff] [blame] | 62 | int cpu_status(u32 nr) |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 63 | { |
| 64 | u32 *table, id = get_my_id(); |
| 65 | |
Aaron Sierra | ec8863b | 2010-09-30 12:22:16 -0500 | [diff] [blame] | 66 | if (hold_cores_in_reset(1)) |
| 67 | return 0; |
| 68 | |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 69 | if (nr == id) { |
York Sun | 2394a0f | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 70 | table = (u32 *)&__spin_table; |
Kumar Gala | 275f4c1 | 2008-07-14 14:03:02 -0500 | [diff] [blame] | 71 | printf("table base @ 0x%p\n", table); |
York Sun | c072306 | 2013-03-25 07:40:00 +0000 | [diff] [blame] | 72 | } else if (is_core_disabled(nr)) { |
| 73 | puts("Disabled\n"); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 74 | } else { |
York Sun | 2394a0f | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 75 | table = (u32 *)&__spin_table + nr * NUM_BOOT_ENTRY; |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 76 | printf("Running on cpu %d\n", id); |
| 77 | printf("\n"); |
Kumar Gala | 275f4c1 | 2008-07-14 14:03:02 -0500 | [diff] [blame] | 78 | printf("table @ 0x%p\n", table); |
Kumar Gala | deeac57 | 2008-03-26 08:34:25 -0500 | [diff] [blame] | 79 | printf(" addr - 0x%08x\n", table[BOOT_ENTRY_ADDR_LOWER]); |
Kumar Gala | deeac57 | 2008-03-26 08:34:25 -0500 | [diff] [blame] | 80 | printf(" r3 - 0x%08x\n", table[BOOT_ENTRY_R3_LOWER]); |
York Sun | 31a0c8c | 2012-10-08 07:44:29 +0000 | [diff] [blame] | 81 | printf(" pir - 0x%08x\n", table[BOOT_ENTRY_PIR]); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | return 0; |
| 85 | } |
| 86 | |
Kumar Gala | c7bf0f9 | 2010-01-12 12:56:05 -0600 | [diff] [blame] | 87 | #ifdef CONFIG_FSL_CORENET |
Michal Simek | 1669e18 | 2018-06-13 08:56:31 +0200 | [diff] [blame] | 88 | int cpu_disable(u32 nr) |
Kumar Gala | 006e2c8 | 2010-01-12 11:42:43 -0600 | [diff] [blame] | 89 | { |
Tom Rini | d5c3bf2 | 2022-10-28 20:27:12 -0400 | [diff] [blame^] | 90 | volatile ccsr_gur_t *gur = (void *)(CFG_SYS_MPC85xx_GUTS_ADDR); |
Kumar Gala | c7bf0f9 | 2010-01-12 12:56:05 -0600 | [diff] [blame] | 91 | |
| 92 | setbits_be32(&gur->coredisrl, 1 << nr); |
| 93 | |
| 94 | return 0; |
| 95 | } |
Kumar Gala | 819a479 | 2010-06-09 22:33:53 -0500 | [diff] [blame] | 96 | |
| 97 | int is_core_disabled(int nr) { |
Tom Rini | d5c3bf2 | 2022-10-28 20:27:12 -0400 | [diff] [blame^] | 98 | ccsr_gur_t *gur = (void *)(CFG_SYS_MPC85xx_GUTS_ADDR); |
Kumar Gala | 819a479 | 2010-06-09 22:33:53 -0500 | [diff] [blame] | 99 | u32 coredisrl = in_be32(&gur->coredisrl); |
| 100 | |
| 101 | return (coredisrl & (1 << nr)); |
| 102 | } |
Kumar Gala | c7bf0f9 | 2010-01-12 12:56:05 -0600 | [diff] [blame] | 103 | #else |
Michal Simek | 1669e18 | 2018-06-13 08:56:31 +0200 | [diff] [blame] | 104 | int cpu_disable(u32 nr) |
Kumar Gala | c7bf0f9 | 2010-01-12 12:56:05 -0600 | [diff] [blame] | 105 | { |
Tom Rini | d5c3bf2 | 2022-10-28 20:27:12 -0400 | [diff] [blame^] | 106 | volatile ccsr_gur_t *gur = (void *)(CFG_SYS_MPC85xx_GUTS_ADDR); |
Kumar Gala | c7bf0f9 | 2010-01-12 12:56:05 -0600 | [diff] [blame] | 107 | |
| 108 | switch (nr) { |
| 109 | case 0: |
| 110 | setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_CPU0); |
| 111 | break; |
| 112 | case 1: |
| 113 | setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_CPU1); |
| 114 | break; |
| 115 | default: |
| 116 | printf("Invalid cpu number for disable %d\n", nr); |
| 117 | return 1; |
| 118 | } |
| 119 | |
| 120 | return 0; |
Kumar Gala | 006e2c8 | 2010-01-12 11:42:43 -0600 | [diff] [blame] | 121 | } |
Kumar Gala | 819a479 | 2010-06-09 22:33:53 -0500 | [diff] [blame] | 122 | |
| 123 | int is_core_disabled(int nr) { |
Tom Rini | d5c3bf2 | 2022-10-28 20:27:12 -0400 | [diff] [blame^] | 124 | ccsr_gur_t *gur = (void *)(CFG_SYS_MPC85xx_GUTS_ADDR); |
Kumar Gala | 819a479 | 2010-06-09 22:33:53 -0500 | [diff] [blame] | 125 | u32 devdisr = in_be32(&gur->devdisr); |
| 126 | |
| 127 | switch (nr) { |
| 128 | case 0: |
| 129 | return (devdisr & MPC85xx_DEVDISR_CPU0); |
| 130 | case 1: |
| 131 | return (devdisr & MPC85xx_DEVDISR_CPU1); |
| 132 | default: |
| 133 | printf("Invalid cpu number for disable %d\n", nr); |
| 134 | } |
| 135 | |
| 136 | return 0; |
| 137 | } |
Kumar Gala | c7bf0f9 | 2010-01-12 12:56:05 -0600 | [diff] [blame] | 138 | #endif |
Kumar Gala | 006e2c8 | 2010-01-12 11:42:43 -0600 | [diff] [blame] | 139 | |
Kumar Gala | deeac57 | 2008-03-26 08:34:25 -0500 | [diff] [blame] | 140 | static u8 boot_entry_map[4] = { |
| 141 | 0, |
| 142 | BOOT_ENTRY_PIR, |
| 143 | BOOT_ENTRY_R3_LOWER, |
Kumar Gala | deeac57 | 2008-03-26 08:34:25 -0500 | [diff] [blame] | 144 | }; |
| 145 | |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 146 | int cpu_release(u32 nr, int argc, char *const argv[]) |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 147 | { |
York Sun | 2394a0f | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 148 | u32 i, val, *table = (u32 *)&__spin_table + nr * NUM_BOOT_ENTRY; |
Kumar Gala | deeac57 | 2008-03-26 08:34:25 -0500 | [diff] [blame] | 149 | u64 boot_addr; |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 150 | |
Aaron Sierra | ec8863b | 2010-09-30 12:22:16 -0500 | [diff] [blame] | 151 | if (hold_cores_in_reset(1)) |
| 152 | return 0; |
| 153 | |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 154 | if (nr == get_my_id()) { |
| 155 | printf("Invalid to release the boot core.\n\n"); |
| 156 | return 1; |
| 157 | } |
| 158 | |
Kumar Gala | deeac57 | 2008-03-26 08:34:25 -0500 | [diff] [blame] | 159 | if (argc != 4) { |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 160 | printf("Invalid number of arguments to release.\n\n"); |
| 161 | return 1; |
| 162 | } |
| 163 | |
Kumar Gala | deeac57 | 2008-03-26 08:34:25 -0500 | [diff] [blame] | 164 | boot_addr = simple_strtoull(argv[0], NULL, 16); |
Kumar Gala | deeac57 | 2008-03-26 08:34:25 -0500 | [diff] [blame] | 165 | |
York Sun | 31a0c8c | 2012-10-08 07:44:29 +0000 | [diff] [blame] | 166 | /* handle pir, r3 */ |
| 167 | for (i = 1; i < 3; i++) { |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 168 | if (argv[i][0] != '-') { |
Kumar Gala | deeac57 | 2008-03-26 08:34:25 -0500 | [diff] [blame] | 169 | u8 entry = boot_entry_map[i]; |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 170 | val = hextoul(argv[i], NULL); |
Kumar Gala | deeac57 | 2008-03-26 08:34:25 -0500 | [diff] [blame] | 171 | table[entry] = val; |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 172 | } |
| 173 | } |
| 174 | |
Kumar Gala | deeac57 | 2008-03-26 08:34:25 -0500 | [diff] [blame] | 175 | table[BOOT_ENTRY_ADDR_UPPER] = (u32)(boot_addr >> 32); |
Kumar Gala | 398dcd6 | 2008-04-28 02:24:04 -0500 | [diff] [blame] | 176 | |
| 177 | /* ensure all table updates complete before final address write */ |
| 178 | eieio(); |
| 179 | |
Kumar Gala | deeac57 | 2008-03-26 08:34:25 -0500 | [diff] [blame] | 180 | table[BOOT_ENTRY_ADDR_LOWER] = (u32)(boot_addr & 0xffffffff); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 181 | |
| 182 | return 0; |
| 183 | } |
| 184 | |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 185 | u32 determine_mp_bootpg(unsigned int *pagesize) |
Kumar Gala | e1064b3 | 2009-03-31 23:11:05 -0500 | [diff] [blame] | 186 | { |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 187 | u32 bootpg; |
| 188 | #ifdef CONFIG_SYS_FSL_ERRATUM_A004468 |
| 189 | u32 svr = get_svr(); |
| 190 | u32 granule_size, check; |
| 191 | struct law_entry e; |
| 192 | #endif |
| 193 | |
York Sun | 2394a0f | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 194 | |
| 195 | /* use last 4K of mapped memory */ |
| 196 | bootpg = ((gd->ram_size > CONFIG_MAX_MEM_MAPPED) ? |
| 197 | CONFIG_MAX_MEM_MAPPED : gd->ram_size) + |
| 198 | CONFIG_SYS_SDRAM_BASE - 4096; |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 199 | if (pagesize) |
| 200 | *pagesize = 4096; |
Kumar Gala | e1064b3 | 2009-03-31 23:11:05 -0500 | [diff] [blame] | 201 | |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 202 | #ifdef CONFIG_SYS_FSL_ERRATUM_A004468 |
| 203 | /* |
| 204 | * Erratum A004468 has two parts. The 3-way interleaving applies to T4240, |
| 205 | * to be fixed in rev 2.0. The 2-way interleaving applies to many SoCs. But |
| 206 | * the way boot page chosen in u-boot avoids hitting this erratum. So only |
| 207 | * thw workaround for 3-way interleaving is needed. |
| 208 | * |
| 209 | * To make sure boot page translation works with 3-Way DDR interleaving |
| 210 | * enforce a check for the following constrains |
| 211 | * 8K granule size requires BRSIZE=8K and |
| 212 | * bootpg >> log2(BRSIZE) %3 == 1 |
| 213 | * 4K and 1K granule size requires BRSIZE=4K and |
| 214 | * bootpg >> log2(BRSIZE) %3 == 0 |
| 215 | */ |
| 216 | if (SVR_SOC_VER(svr) == SVR_T4240 && SVR_MAJ(svr) < 2) { |
| 217 | e = find_law(bootpg); |
| 218 | switch (e.trgt_id) { |
| 219 | case LAW_TRGT_IF_DDR_INTLV_123: |
| 220 | granule_size = fsl_ddr_get_intl3r() & 0x1f; |
| 221 | if (granule_size == FSL_DDR_3WAY_8KB_INTERLEAVING) { |
| 222 | if (pagesize) |
| 223 | *pagesize = 8192; |
| 224 | bootpg &= 0xffffe000; /* align to 8KB */ |
| 225 | check = bootpg >> 13; |
| 226 | while ((check % 3) != 1) |
| 227 | check--; |
| 228 | bootpg = check << 13; |
| 229 | debug("Boot page (8K) at 0x%08x\n", bootpg); |
| 230 | break; |
| 231 | } else { |
| 232 | bootpg &= 0xfffff000; /* align to 4KB */ |
| 233 | check = bootpg >> 12; |
| 234 | while ((check % 3) != 0) |
| 235 | check--; |
| 236 | bootpg = check << 12; |
| 237 | debug("Boot page (4K) at 0x%08x\n", bootpg); |
| 238 | } |
| 239 | break; |
| 240 | default: |
| 241 | break; |
| 242 | } |
| 243 | } |
| 244 | #endif /* CONFIG_SYS_FSL_ERRATUM_A004468 */ |
| 245 | |
| 246 | return bootpg; |
Kumar Gala | e1064b3 | 2009-03-31 23:11:05 -0500 | [diff] [blame] | 247 | } |
| 248 | |
York Sun | 2394a0f | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 249 | phys_addr_t get_spin_phys_addr(void) |
Peter Tyser | 7feaacb | 2009-10-23 15:55:47 -0500 | [diff] [blame] | 250 | { |
York Sun | 2394a0f | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 251 | return virt_to_phys(&__spin_table); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 252 | } |
| 253 | |
Kumar Gala | 4d9190d | 2009-09-17 01:44:39 -0500 | [diff] [blame] | 254 | #ifdef CONFIG_FSL_CORENET |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 255 | static void plat_mp_up(unsigned long bootpg, unsigned int pagesize) |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 256 | { |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 257 | u32 cpu_up_mask, whoami, brsize = LAW_SIZE_4K; |
York Sun | 2394a0f | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 258 | u32 *table = (u32 *)&__spin_table; |
Kumar Gala | 4d9190d | 2009-09-17 01:44:39 -0500 | [diff] [blame] | 259 | volatile ccsr_gur_t *gur; |
| 260 | volatile ccsr_local_t *ccm; |
| 261 | volatile ccsr_rcpm_t *rcpm; |
| 262 | volatile ccsr_pic_t *pic; |
| 263 | int timeout = 10; |
Timur Tabi | 4728942 | 2011-08-05 16:15:24 -0500 | [diff] [blame] | 264 | u32 mask = cpu_mask(); |
Kumar Gala | 4d9190d | 2009-09-17 01:44:39 -0500 | [diff] [blame] | 265 | struct law_entry e; |
| 266 | |
Tom Rini | d5c3bf2 | 2022-10-28 20:27:12 -0400 | [diff] [blame^] | 267 | gur = (void *)(CFG_SYS_MPC85xx_GUTS_ADDR); |
Kumar Gala | 4d9190d | 2009-09-17 01:44:39 -0500 | [diff] [blame] | 268 | ccm = (void *)(CONFIG_SYS_FSL_CORENET_CCM_ADDR); |
| 269 | rcpm = (void *)(CONFIG_SYS_FSL_CORENET_RCPM_ADDR); |
Tom Rini | d5c3bf2 | 2022-10-28 20:27:12 -0400 | [diff] [blame^] | 270 | pic = (void *)(CFG_SYS_MPC8xxx_PIC_ADDR); |
Kumar Gala | 4d9190d | 2009-09-17 01:44:39 -0500 | [diff] [blame] | 271 | |
Kumar Gala | 4d9190d | 2009-09-17 01:44:39 -0500 | [diff] [blame] | 272 | whoami = in_be32(&pic->whoami); |
| 273 | cpu_up_mask = 1 << whoami; |
| 274 | out_be32(&ccm->bstrl, bootpg); |
| 275 | |
| 276 | e = find_law(bootpg); |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 277 | /* pagesize is only 4K or 8K */ |
| 278 | if (pagesize == 8192) |
| 279 | brsize = LAW_SIZE_8K; |
| 280 | out_be32(&ccm->bstrar, LAW_EN | e.trgt_id << 20 | brsize); |
| 281 | debug("BRSIZE is 0x%x\n", brsize); |
Kumar Gala | 4d9190d | 2009-09-17 01:44:39 -0500 | [diff] [blame] | 282 | |
Dave Liu | 452ddb6 | 2009-11-17 20:01:24 -0600 | [diff] [blame] | 283 | /* readback to sync write */ |
| 284 | in_be32(&ccm->bstrar); |
| 285 | |
Kumar Gala | 4d9190d | 2009-09-17 01:44:39 -0500 | [diff] [blame] | 286 | /* disable time base at the platform */ |
| 287 | out_be32(&rcpm->ctbenrl, cpu_up_mask); |
| 288 | |
Timur Tabi | 4728942 | 2011-08-05 16:15:24 -0500 | [diff] [blame] | 289 | out_be32(&gur->brrl, mask); |
Kumar Gala | 4d9190d | 2009-09-17 01:44:39 -0500 | [diff] [blame] | 290 | |
| 291 | /* wait for everyone */ |
| 292 | while (timeout) { |
Timur Tabi | 4728942 | 2011-08-05 16:15:24 -0500 | [diff] [blame] | 293 | unsigned int i, cpu, nr_cpus = cpu_numcores(); |
Kumar Gala | 4d9190d | 2009-09-17 01:44:39 -0500 | [diff] [blame] | 294 | |
Timur Tabi | 4728942 | 2011-08-05 16:15:24 -0500 | [diff] [blame] | 295 | for_each_cpu(i, cpu, nr_cpus, mask) { |
| 296 | if (table[cpu * NUM_BOOT_ENTRY + BOOT_ENTRY_ADDR_LOWER]) |
| 297 | cpu_up_mask |= (1 << cpu); |
| 298 | } |
| 299 | |
| 300 | if ((cpu_up_mask & mask) == mask) |
Kumar Gala | 4d9190d | 2009-09-17 01:44:39 -0500 | [diff] [blame] | 301 | break; |
| 302 | |
| 303 | udelay(100); |
| 304 | timeout--; |
| 305 | } |
| 306 | |
| 307 | if (timeout == 0) |
| 308 | printf("CPU up timeout. CPU up mask is %x should be %x\n", |
Timur Tabi | 4728942 | 2011-08-05 16:15:24 -0500 | [diff] [blame] | 309 | cpu_up_mask, mask); |
Kumar Gala | 4d9190d | 2009-09-17 01:44:39 -0500 | [diff] [blame] | 310 | |
| 311 | /* enable time base at the platform */ |
| 312 | out_be32(&rcpm->ctbenrl, 0); |
Kumar Gala | 6c5025e | 2011-03-13 10:55:53 -0500 | [diff] [blame] | 313 | |
| 314 | /* readback to sync write */ |
| 315 | in_be32(&rcpm->ctbenrl); |
| 316 | |
Kumar Gala | 4d9190d | 2009-09-17 01:44:39 -0500 | [diff] [blame] | 317 | mtspr(SPRN_TBWU, 0); |
| 318 | mtspr(SPRN_TBWL, 0); |
Kumar Gala | 6c5025e | 2011-03-13 10:55:53 -0500 | [diff] [blame] | 319 | |
Timur Tabi | 4728942 | 2011-08-05 16:15:24 -0500 | [diff] [blame] | 320 | out_be32(&rcpm->ctbenrl, mask); |
Peter Tyser | 7feaacb | 2009-10-23 15:55:47 -0500 | [diff] [blame] | 321 | |
| 322 | #ifdef CONFIG_MPC8xxx_DISABLE_BPTR |
| 323 | /* |
| 324 | * Disabling Boot Page Translation allows the memory region 0xfffff000 |
| 325 | * to 0xffffffff to be used normally. Leaving Boot Page Translation |
| 326 | * enabled remaps 0xfffff000 to SDRAM which makes that memory region |
| 327 | * unusable for normal operation but it does allow OSes to easily |
| 328 | * reset a processor core to put it back into U-Boot's spinloop. |
| 329 | */ |
Ed Swarthout | 853e2de | 2011-03-03 18:28:14 -0600 | [diff] [blame] | 330 | clrbits_be32(&ccm->bstrar, LAW_EN); |
Peter Tyser | 7feaacb | 2009-10-23 15:55:47 -0500 | [diff] [blame] | 331 | #endif |
Kumar Gala | 4d9190d | 2009-09-17 01:44:39 -0500 | [diff] [blame] | 332 | } |
| 333 | #else |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 334 | static void plat_mp_up(unsigned long bootpg, unsigned int pagesize) |
Kumar Gala | 4d9190d | 2009-09-17 01:44:39 -0500 | [diff] [blame] | 335 | { |
| 336 | u32 up, cpu_up_mask, whoami; |
York Sun | 2394a0f | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 337 | u32 *table = (u32 *)&__spin_table; |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 338 | volatile u32 bpcr; |
Tom Rini | d5c3bf2 | 2022-10-28 20:27:12 -0400 | [diff] [blame^] | 339 | volatile ccsr_local_ecm_t *ecm = (void *)(CFG_SYS_MPC85xx_ECM_ADDR); |
| 340 | volatile ccsr_gur_t *gur = (void *)(CFG_SYS_MPC85xx_GUTS_ADDR); |
| 341 | volatile ccsr_pic_t *pic = (void *)(CFG_SYS_MPC8xxx_PIC_ADDR); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 342 | u32 devdisr; |
| 343 | int timeout = 10; |
| 344 | |
| 345 | whoami = in_be32(&pic->whoami); |
| 346 | out_be32(&ecm->bptr, 0x80000000 | (bootpg >> 12)); |
| 347 | |
| 348 | /* disable time base at the platform */ |
| 349 | devdisr = in_be32(&gur->devdisr); |
| 350 | if (whoami) |
| 351 | devdisr |= MPC85xx_DEVDISR_TB0; |
| 352 | else |
| 353 | devdisr |= MPC85xx_DEVDISR_TB1; |
| 354 | out_be32(&gur->devdisr, devdisr); |
| 355 | |
| 356 | /* release the hounds */ |
Poonam Aggrwal | 4baef82 | 2009-07-31 12:08:14 +0530 | [diff] [blame] | 357 | up = ((1 << cpu_numcores()) - 1); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 358 | bpcr = in_be32(&ecm->eebpcr); |
| 359 | bpcr |= (up << 24); |
| 360 | out_be32(&ecm->eebpcr, bpcr); |
| 361 | asm("sync; isync; msync"); |
| 362 | |
| 363 | cpu_up_mask = 1 << whoami; |
| 364 | /* wait for everyone */ |
| 365 | while (timeout) { |
| 366 | int i; |
Poonam Aggrwal | 4baef82 | 2009-07-31 12:08:14 +0530 | [diff] [blame] | 367 | for (i = 0; i < cpu_numcores(); i++) { |
Kumar Gala | 615f14d | 2008-04-09 04:20:57 -0500 | [diff] [blame] | 368 | if (table[i * NUM_BOOT_ENTRY + BOOT_ENTRY_ADDR_LOWER]) |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 369 | cpu_up_mask |= (1 << i); |
| 370 | }; |
| 371 | |
| 372 | if ((cpu_up_mask & up) == up) |
| 373 | break; |
| 374 | |
| 375 | udelay(100); |
| 376 | timeout--; |
| 377 | } |
| 378 | |
Kumar Gala | 615f14d | 2008-04-09 04:20:57 -0500 | [diff] [blame] | 379 | if (timeout == 0) |
| 380 | printf("CPU up timeout. CPU up mask is %x should be %x\n", |
| 381 | cpu_up_mask, up); |
| 382 | |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 383 | /* enable time base at the platform */ |
| 384 | if (whoami) |
| 385 | devdisr |= MPC85xx_DEVDISR_TB1; |
| 386 | else |
| 387 | devdisr |= MPC85xx_DEVDISR_TB0; |
| 388 | out_be32(&gur->devdisr, devdisr); |
Kumar Gala | 6c5025e | 2011-03-13 10:55:53 -0500 | [diff] [blame] | 389 | |
| 390 | /* readback to sync write */ |
| 391 | in_be32(&gur->devdisr); |
| 392 | |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 393 | mtspr(SPRN_TBWU, 0); |
| 394 | mtspr(SPRN_TBWL, 0); |
| 395 | |
| 396 | devdisr &= ~(MPC85xx_DEVDISR_TB0 | MPC85xx_DEVDISR_TB1); |
| 397 | out_be32(&gur->devdisr, devdisr); |
Peter Tyser | 7feaacb | 2009-10-23 15:55:47 -0500 | [diff] [blame] | 398 | |
| 399 | #ifdef CONFIG_MPC8xxx_DISABLE_BPTR |
| 400 | /* |
| 401 | * Disabling Boot Page Translation allows the memory region 0xfffff000 |
| 402 | * to 0xffffffff to be used normally. Leaving Boot Page Translation |
| 403 | * enabled remaps 0xfffff000 to SDRAM which makes that memory region |
| 404 | * unusable for normal operation but it does allow OSes to easily |
| 405 | * reset a processor core to put it back into U-Boot's spinloop. |
| 406 | */ |
| 407 | clrbits_be32(&ecm->bptr, 0x80000000); |
| 408 | #endif |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 409 | } |
Kumar Gala | 4d9190d | 2009-09-17 01:44:39 -0500 | [diff] [blame] | 410 | #endif |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 411 | |
Kumar Gala | 5769ded | 2008-03-26 08:53:53 -0500 | [diff] [blame] | 412 | void cpu_mp_lmb_reserve(struct lmb *lmb) |
| 413 | { |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 414 | u32 bootpg = determine_mp_bootpg(NULL); |
Kumar Gala | 5769ded | 2008-03-26 08:53:53 -0500 | [diff] [blame] | 415 | |
| 416 | lmb_reserve(lmb, bootpg, 4096); |
| 417 | } |
| 418 | |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 419 | void setup_mp(void) |
| 420 | { |
York Sun | 2394a0f | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 421 | extern u32 __secondary_start_page; |
| 422 | extern u32 __bootpg_addr, __spin_table_addr, __second_half_boot_page; |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 423 | |
York Sun | 2394a0f | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 424 | int i; |
| 425 | ulong fixup = (u32)&__secondary_start_page; |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 426 | u32 bootpg, bootpg_map, pagesize; |
| 427 | |
| 428 | bootpg = determine_mp_bootpg(&pagesize); |
| 429 | |
| 430 | /* |
| 431 | * pagesize is only 4K or 8K |
| 432 | * we only use the last 4K of boot page |
| 433 | * bootpg_map saves the address for the boot page |
| 434 | * 8K is used for the workaround of 3-way DDR interleaving |
| 435 | */ |
| 436 | |
| 437 | bootpg_map = bootpg; |
| 438 | |
| 439 | if (pagesize == 8192) |
| 440 | bootpg += 4096; /* use 2nd half */ |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 441 | |
Aaron Sierra | ec8863b | 2010-09-30 12:22:16 -0500 | [diff] [blame] | 442 | /* Some OSes expect secondary cores to be held in reset */ |
| 443 | if (hold_cores_in_reset(0)) |
| 444 | return; |
| 445 | |
York Sun | 2394a0f | 2012-10-08 07:44:30 +0000 | [diff] [blame] | 446 | /* |
| 447 | * Store the bootpg's cache-able half address for use by secondary |
| 448 | * CPU cores to continue to boot |
| 449 | */ |
| 450 | __bootpg_addr = (u32)virt_to_phys(&__second_half_boot_page); |
| 451 | |
| 452 | /* Store spin table's physical address for use by secondary cores */ |
| 453 | __spin_table_addr = (u32)get_spin_phys_addr(); |
| 454 | |
| 455 | /* flush bootpg it before copying invalidate any staled cacheline */ |
| 456 | flush_cache(bootpg, 4096); |
Peter Tyser | 7feaacb | 2009-10-23 15:55:47 -0500 | [diff] [blame] | 457 | |
Kumar Gala | 8399e12 | 2009-09-03 08:41:31 -0500 | [diff] [blame] | 458 | /* look for the tlb covering the reset page, there better be one */ |
Tom Rini | 26483c1 | 2022-03-11 09:12:03 -0500 | [diff] [blame] | 459 | i = find_tlb_idx((void *)BPTR_VIRT_ADDR, 1); |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 460 | |
Kumar Gala | 8399e12 | 2009-09-03 08:41:31 -0500 | [diff] [blame] | 461 | /* we found a match */ |
| 462 | if (i != -1) { |
| 463 | /* map reset page to bootpg so we can copy code there */ |
| 464 | disable_tlb(i); |
Kumar Gala | 4d9190d | 2009-09-17 01:44:39 -0500 | [diff] [blame] | 465 | |
Tom Rini | 26483c1 | 2022-03-11 09:12:03 -0500 | [diff] [blame] | 466 | set_tlb(1, BPTR_VIRT_ADDR, bootpg, /* tlb, epn, rpn */ |
Kumar Gala | 4756ffa | 2009-11-17 20:21:20 -0600 | [diff] [blame] | 467 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, /* perms, wimge */ |
Kumar Gala | 8399e12 | 2009-09-03 08:41:31 -0500 | [diff] [blame] | 468 | 0, i, BOOKE_PAGESZ_4K, 1); /* ts, esel, tsize, iprot */ |
| 469 | |
Tom Rini | 26483c1 | 2022-03-11 09:12:03 -0500 | [diff] [blame] | 470 | memcpy((void *)BPTR_VIRT_ADDR, (void *)fixup, 4096); |
Peter Tyser | 7feaacb | 2009-10-23 15:55:47 -0500 | [diff] [blame] | 471 | |
York Sun | a28496f | 2012-10-08 07:44:25 +0000 | [diff] [blame] | 472 | plat_mp_up(bootpg_map, pagesize); |
Kumar Gala | 8399e12 | 2009-09-03 08:41:31 -0500 | [diff] [blame] | 473 | } else { |
| 474 | puts("WARNING: No reset page TLB. " |
| 475 | "Skipping secondary core setup\n"); |
| 476 | } |
Kumar Gala | 36d6b3f | 2008-01-17 16:48:33 -0600 | [diff] [blame] | 477 | } |