1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2014-2015 Freescale Semiconductor, Inc.
11 #include <asm/system.h>
12 #include <asm/arch/mp.h>
13 #include <asm/arch/soc.h>
15 #include <asm/arch-fsl-layerscape/soc.h>
17 DECLARE_GLOBAL_DATA_PTR;
19 void *get_spin_tbl_addr(void)
24 phys_addr_t determine_mp_bootpg(void)
26 return (phys_addr_t)&secondary_boot_code;
29 void update_os_arch_secondary_cores(uint8_t os_arch)
31 u64 *table = get_spin_tbl_addr();
34 for (i = 1; i < CONFIG_MAX_CPUS; i++) {
35 if (os_arch == IH_ARCH_DEFAULT)
36 table[i * WORDS_PER_SPIN_TABLE_ENTRY +
37 SPIN_TABLE_ELEM_ARCH_COMP_IDX] = OS_ARCH_SAME;
39 table[i * WORDS_PER_SPIN_TABLE_ENTRY +
40 SPIN_TABLE_ELEM_ARCH_COMP_IDX] = OS_ARCH_DIFF;
44 #ifdef CONFIG_FSL_LSCH3
45 void wake_secondary_core_n(int cluster, int core, int cluster_cores)
47 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
48 struct ccsr_reset __iomem *rst = (void *)(CONFIG_SYS_FSL_RST_ADDR);
51 mpidr = ((cluster << 8) | core);
53 * mpidr_el1 register value of core which needs to be released
54 * is written to scratchrw[6] register
56 gur_out32(&gur->scratchrw[6], mpidr);
57 asm volatile("dsb st" : : : "memory");
58 rst->brrl |= 1 << ((cluster * cluster_cores) + core);
59 asm volatile("dsb st" : : : "memory");
61 * scratchrw[6] register value is polled
62 * when the value becomes zero, this means that this core is up
63 * and running, next core can be released now
65 while (gur_in32(&gur->scratchrw[6]) != 0)
70 int fsl_layerscape_wake_seconday_cores(void)
72 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
73 #ifdef CONFIG_FSL_LSCH3
74 struct ccsr_reset __iomem *rst = (void *)(CONFIG_SYS_FSL_RST_ADDR);
75 u32 svr, ver, cluster, type;
76 int j = 0, cluster_cores = 0;
77 #elif defined(CONFIG_FSL_LSCH2)
78 struct ccsr_scfg __iomem *scfg = (void *)(CONFIG_SYS_FSL_SCFG_ADDR);
80 u32 cores, cpu_up_mask = 1;
82 u64 *table = get_spin_tbl_addr();
84 #ifdef COUNTER_FREQUENCY_REAL
85 /* update for secondary cores */
86 __real_cntfrq = COUNTER_FREQUENCY_REAL;
87 flush_dcache_range((unsigned long)&__real_cntfrq,
88 (unsigned long)&__real_cntfrq + 8);
92 /* Clear spin table so that secondary processors
93 * observe the correct value after waking up from wfe.
95 memset(table, 0, CONFIG_MAX_CPUS*SPIN_TABLE_ELEM_SIZE);
96 flush_dcache_range((unsigned long)table,
97 (unsigned long)table +
98 (CONFIG_MAX_CPUS*SPIN_TABLE_ELEM_SIZE));
100 printf("Waking secondary cores to start from %lx\n", gd->relocaddr);
102 #ifdef CONFIG_FSL_LSCH3
103 gur_out32(&gur->bootlocptrh, (u32)(gd->relocaddr >> 32));
104 gur_out32(&gur->bootlocptrl, (u32)gd->relocaddr);
106 svr = gur_in32(&gur->svr);
107 ver = SVR_SOC_VER(svr);
108 if (ver == SVR_LS2080A || ver == SVR_LS2085A) {
109 gur_out32(&gur->scratchrw[6], 1);
110 asm volatile("dsb st" : : : "memory");
112 asm volatile("dsb st" : : : "memory");
115 * Release the cores out of reset one-at-a-time to avoid
119 cluster = in_le32(&gur->tp_cluster[i].lower);
120 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
121 type = initiator_type(cluster, j);
123 TP_ITYP_TYPE(type) == TP_ITYP_TYPE_ARM)
128 cluster = in_le32(&gur->tp_cluster[i].lower);
129 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
130 type = initiator_type(cluster, j);
132 TP_ITYP_TYPE(type) == TP_ITYP_TYPE_ARM)
133 wake_secondary_core_n(i, j,
137 } while ((cluster & TP_CLUSTER_EOC) != TP_CLUSTER_EOC);
139 #elif defined(CONFIG_FSL_LSCH2)
140 scfg_out32(&scfg->scratchrw[0], (u32)(gd->relocaddr >> 32));
141 scfg_out32(&scfg->scratchrw[1], (u32)gd->relocaddr);
142 asm volatile("dsb st" : : : "memory");
143 gur_out32(&gur->brrl, cores);
144 asm volatile("dsb st" : : : "memory");
146 /* Bootup online cores */
147 scfg_out32(&scfg->corebcr, cores);
149 /* This is needed as a precautionary measure.
150 * If some code before this has accidentally released the secondary
151 * cores then the pre-bootloader code will trap them in a "wfe" unless
152 * the scratchrw[6] is set. In this case we need a sev here to get these
153 * cores moving again.
158 flush_dcache_range((unsigned long)table, (unsigned long)table +
159 CONFIG_MAX_CPUS * 64);
160 for (i = 1; i < CONFIG_MAX_CPUS; i++) {
161 if (table[i * WORDS_PER_SPIN_TABLE_ENTRY +
162 SPIN_TABLE_ELEM_STATUS_IDX])
163 cpu_up_mask |= 1 << i;
165 if (hweight32(cpu_up_mask) == hweight32(cores))
170 printf("Not all cores (0x%x) are up (0x%x)\n",
174 printf("All (%d) cores are up.\n", hweight32(cores));
179 int is_core_valid(unsigned int core)
181 return !!((1 << core) & cpu_mask());
184 static int is_pos_valid(unsigned int pos)
186 return !!((1 << pos) & cpu_pos_mask());
189 int is_core_online(u64 cpu_id)
192 int pos = id_to_core(cpu_id);
193 table = (u64 *)get_spin_tbl_addr() + pos * WORDS_PER_SPIN_TABLE_ENTRY;
194 return table[SPIN_TABLE_ELEM_STATUS_IDX] == 1;
197 int cpu_reset(u32 nr)
199 puts("Feature is not implemented.\n");
204 int cpu_disable(u32 nr)
206 puts("Feature is not implemented.\n");
211 static int core_to_pos(int nr)
213 u32 cores = cpu_pos_mask();
218 } else if (nr >= hweight32(cores)) {
219 puts("Not a valid core number.\n");
223 for (i = 1; i < 32; i++) {
224 if (is_pos_valid(i)) {
237 int cpu_status(u32 nr)
243 table = (u64 *)get_spin_tbl_addr();
244 printf("table base @ 0x%p\n", table);
246 pos = core_to_pos(nr);
249 table = (u64 *)get_spin_tbl_addr() + pos *
250 WORDS_PER_SPIN_TABLE_ENTRY;
251 printf("table @ 0x%p\n", table);
252 printf(" addr - 0x%016llx\n",
253 table[SPIN_TABLE_ELEM_ENTRY_ADDR_IDX]);
254 printf(" status - 0x%016llx\n",
255 table[SPIN_TABLE_ELEM_STATUS_IDX]);
256 printf(" lpid - 0x%016llx\n",
257 table[SPIN_TABLE_ELEM_LPID_IDX]);
263 int cpu_release(u32 nr, int argc, char *const argv[])
266 u64 *table = (u64 *)get_spin_tbl_addr();
269 pos = core_to_pos(nr);
273 table += pos * WORDS_PER_SPIN_TABLE_ENTRY;
274 boot_addr = simple_strtoull(argv[0], NULL, 16);
275 table[SPIN_TABLE_ELEM_ENTRY_ADDR_IDX] = boot_addr;
276 flush_dcache_range((unsigned long)table,
277 (unsigned long)table + SPIN_TABLE_ELEM_SIZE);
278 asm volatile("dsb st");
279 smp_kick_all_cpus(); /* only those with entry addr set will run */
281 * When the first release command runs, all cores are set to go. Those
282 * without a valid entry address will be trapped by "wfe". "sev" kicks
283 * them off to check the address again. When set, they continue to run.