blob: 1ea887b3319f89b288f8699e405189c7a33f3276 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
York Sun56cc3db2014-09-08 12:20:00 -07002/*
Mingkai Hu0e58b512015-10-26 19:47:50 +08003 * Copyright 2014-2015 Freescale Semiconductor, Inc.
York Sun56cc3db2014-09-08 12:20:00 -07004 */
5
6#include <common.h>
Simon Glass970b61e2019-11-14 12:57:09 -07007#include <cpu_func.h>
Simon Glass2dc9c342020-05-10 11:40:01 -06008#include <image.h>
Simon Glass274e0b02020-05-10 11:39:56 -06009#include <asm/cache.h>
York Sun56cc3db2014-09-08 12:20:00 -070010#include <asm/io.h>
11#include <asm/system.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080012#include <asm/arch/mp.h>
13#include <asm/arch/soc.h>
Simon Glassdbd79542020-05-10 11:40:11 -060014#include <linux/delay.h>
Priyanka Jain9a276702016-11-17 12:29:56 +053015#include "cpu.h"
16#include <asm/arch-fsl-layerscape/soc.h>
York Sun56cc3db2014-09-08 12:20:00 -070017
18DECLARE_GLOBAL_DATA_PTR;
19
20void *get_spin_tbl_addr(void)
21{
22 return &__spin_table;
23}
24
25phys_addr_t determine_mp_bootpg(void)
26{
27 return (phys_addr_t)&secondary_boot_code;
28}
29
Alison Wang876c7e12016-11-10 10:49:04 +080030void update_os_arch_secondary_cores(uint8_t os_arch)
31{
32 u64 *table = get_spin_tbl_addr();
33 int i;
34
Alison Wanga6231fe2017-06-08 16:15:14 +080035 for (i = 1; i < CONFIG_MAX_CPUS; i++) {
36 if (os_arch == IH_ARCH_DEFAULT)
37 table[i * WORDS_PER_SPIN_TABLE_ENTRY +
38 SPIN_TABLE_ELEM_ARCH_COMP_IDX] = OS_ARCH_SAME;
39 else
40 table[i * WORDS_PER_SPIN_TABLE_ENTRY +
41 SPIN_TABLE_ELEM_ARCH_COMP_IDX] = OS_ARCH_DIFF;
42 }
Alison Wang876c7e12016-11-10 10:49:04 +080043}
44
Priyanka Jain9a276702016-11-17 12:29:56 +053045#ifdef CONFIG_FSL_LSCH3
46void wake_secondary_core_n(int cluster, int core, int cluster_cores)
47{
48 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
49 struct ccsr_reset __iomem *rst = (void *)(CONFIG_SYS_FSL_RST_ADDR);
50 u32 mpidr = 0;
51
52 mpidr = ((cluster << 8) | core);
53 /*
54 * mpidr_el1 register value of core which needs to be released
55 * is written to scratchrw[6] register
56 */
57 gur_out32(&gur->scratchrw[6], mpidr);
58 asm volatile("dsb st" : : : "memory");
59 rst->brrl |= 1 << ((cluster * cluster_cores) + core);
60 asm volatile("dsb st" : : : "memory");
61 /*
62 * scratchrw[6] register value is polled
63 * when the value becomes zero, this means that this core is up
64 * and running, next core can be released now
65 */
66 while (gur_in32(&gur->scratchrw[6]) != 0)
67 ;
68}
69#endif
70
Mingkai Hu0e58b512015-10-26 19:47:50 +080071int fsl_layerscape_wake_seconday_cores(void)
York Sun56cc3db2014-09-08 12:20:00 -070072{
73 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +080074#ifdef CONFIG_FSL_LSCH3
York Sun56cc3db2014-09-08 12:20:00 -070075 struct ccsr_reset __iomem *rst = (void *)(CONFIG_SYS_FSL_RST_ADDR);
Priyanka Jain9a276702016-11-17 12:29:56 +053076 u32 svr, ver, cluster, type;
77 int j = 0, cluster_cores = 0;
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +080078#elif defined(CONFIG_FSL_LSCH2)
79 struct ccsr_scfg __iomem *scfg = (void *)(CONFIG_SYS_FSL_SCFG_ADDR);
80#endif
York Sun56cc3db2014-09-08 12:20:00 -070081 u32 cores, cpu_up_mask = 1;
82 int i, timeout = 10;
83 u64 *table = get_spin_tbl_addr();
84
York Sun77a10972015-03-20 19:28:08 -070085#ifdef COUNTER_FREQUENCY_REAL
86 /* update for secondary cores */
87 __real_cntfrq = COUNTER_FREQUENCY_REAL;
88 flush_dcache_range((unsigned long)&__real_cntfrq,
89 (unsigned long)&__real_cntfrq + 8);
90#endif
91
York Sun56cc3db2014-09-08 12:20:00 -070092 cores = cpu_mask();
93 /* Clear spin table so that secondary processors
94 * observe the correct value after waking up from wfe.
95 */
96 memset(table, 0, CONFIG_MAX_CPUS*SPIN_TABLE_ELEM_SIZE);
97 flush_dcache_range((unsigned long)table,
98 (unsigned long)table +
99 (CONFIG_MAX_CPUS*SPIN_TABLE_ELEM_SIZE));
100
101 printf("Waking secondary cores to start from %lx\n", gd->relocaddr);
Mingkai Hu0e58b512015-10-26 19:47:50 +0800102
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +0800103#ifdef CONFIG_FSL_LSCH3
Mingkai Hu0e58b512015-10-26 19:47:50 +0800104 gur_out32(&gur->bootlocptrh, (u32)(gd->relocaddr >> 32));
105 gur_out32(&gur->bootlocptrl, (u32)gd->relocaddr);
Priyanka Jain9a276702016-11-17 12:29:56 +0530106
107 svr = gur_in32(&gur->svr);
108 ver = SVR_SOC_VER(svr);
109 if (ver == SVR_LS2080A || ver == SVR_LS2085A) {
110 gur_out32(&gur->scratchrw[6], 1);
111 asm volatile("dsb st" : : : "memory");
112 rst->brrl = cores;
113 asm volatile("dsb st" : : : "memory");
114 } else {
115 /*
116 * Release the cores out of reset one-at-a-time to avoid
117 * power spikes
118 */
119 i = 0;
120 cluster = in_le32(&gur->tp_cluster[i].lower);
121 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
122 type = initiator_type(cluster, j);
123 if (type &&
124 TP_ITYP_TYPE(type) == TP_ITYP_TYPE_ARM)
125 cluster_cores++;
126 }
127
128 do {
129 cluster = in_le32(&gur->tp_cluster[i].lower);
130 for (j = 0; j < TP_INIT_PER_CLUSTER; j++) {
131 type = initiator_type(cluster, j);
132 if (type &&
133 TP_ITYP_TYPE(type) == TP_ITYP_TYPE_ARM)
134 wake_secondary_core_n(i, j,
135 cluster_cores);
136 }
137 i++;
138 } while ((cluster & TP_CLUSTER_EOC) != TP_CLUSTER_EOC);
139 }
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +0800140#elif defined(CONFIG_FSL_LSCH2)
141 scfg_out32(&scfg->scratchrw[0], (u32)(gd->relocaddr >> 32));
142 scfg_out32(&scfg->scratchrw[1], (u32)gd->relocaddr);
143 asm volatile("dsb st" : : : "memory");
144 gur_out32(&gur->brrl, cores);
145 asm volatile("dsb st" : : : "memory");
York Sun56cc3db2014-09-08 12:20:00 -0700146
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +0800147 /* Bootup online cores */
148 scfg_out32(&scfg->corebcr, cores);
149#endif
York Sun56cc3db2014-09-08 12:20:00 -0700150 /* This is needed as a precautionary measure.
151 * If some code before this has accidentally released the secondary
152 * cores then the pre-bootloader code will trap them in a "wfe" unless
153 * the scratchrw[6] is set. In this case we need a sev here to get these
154 * cores moving again.
155 */
156 asm volatile("sev");
157
158 while (timeout--) {
159 flush_dcache_range((unsigned long)table, (unsigned long)table +
160 CONFIG_MAX_CPUS * 64);
161 for (i = 1; i < CONFIG_MAX_CPUS; i++) {
162 if (table[i * WORDS_PER_SPIN_TABLE_ENTRY +
163 SPIN_TABLE_ELEM_STATUS_IDX])
164 cpu_up_mask |= 1 << i;
165 }
166 if (hweight32(cpu_up_mask) == hweight32(cores))
167 break;
168 udelay(10);
169 }
170 if (timeout <= 0) {
171 printf("Not all cores (0x%x) are up (0x%x)\n",
172 cores, cpu_up_mask);
173 return 1;
174 }
175 printf("All (%d) cores are up.\n", hweight32(cores));
176
177 return 0;
178}
179
180int is_core_valid(unsigned int core)
181{
182 return !!((1 << core) & cpu_mask());
183}
184
York Suned7fbe32016-09-13 12:40:30 -0700185static int is_pos_valid(unsigned int pos)
186{
187 return !!((1 << pos) & cpu_pos_mask());
188}
189
Arnab Basu0cb19422015-01-06 13:18:41 -0800190int is_core_online(u64 cpu_id)
191{
192 u64 *table;
193 int pos = id_to_core(cpu_id);
194 table = (u64 *)get_spin_tbl_addr() + pos * WORDS_PER_SPIN_TABLE_ENTRY;
195 return table[SPIN_TABLE_ELEM_STATUS_IDX] == 1;
196}
197
Michal Simek1669e182018-06-13 08:56:31 +0200198int cpu_reset(u32 nr)
York Sun56cc3db2014-09-08 12:20:00 -0700199{
200 puts("Feature is not implemented.\n");
201
202 return 0;
203}
204
Michal Simek1669e182018-06-13 08:56:31 +0200205int cpu_disable(u32 nr)
York Sun56cc3db2014-09-08 12:20:00 -0700206{
207 puts("Feature is not implemented.\n");
208
209 return 0;
210}
211
York Suned7fbe32016-09-13 12:40:30 -0700212static int core_to_pos(int nr)
York Sun56cc3db2014-09-08 12:20:00 -0700213{
York Suned7fbe32016-09-13 12:40:30 -0700214 u32 cores = cpu_pos_mask();
York Sun56cc3db2014-09-08 12:20:00 -0700215 int i, count = 0;
216
217 if (nr == 0) {
218 return 0;
219 } else if (nr >= hweight32(cores)) {
220 puts("Not a valid core number.\n");
221 return -1;
222 }
223
224 for (i = 1; i < 32; i++) {
York Suned7fbe32016-09-13 12:40:30 -0700225 if (is_pos_valid(i)) {
York Sun56cc3db2014-09-08 12:20:00 -0700226 count++;
227 if (count == nr)
228 break;
229 }
230 }
231
York Suned7fbe32016-09-13 12:40:30 -0700232 if (count != nr)
233 return -1;
234
235 return i;
York Sun56cc3db2014-09-08 12:20:00 -0700236}
237
Michal Simek1669e182018-06-13 08:56:31 +0200238int cpu_status(u32 nr)
York Sun56cc3db2014-09-08 12:20:00 -0700239{
240 u64 *table;
241 int pos;
242
243 if (nr == 0) {
244 table = (u64 *)get_spin_tbl_addr();
245 printf("table base @ 0x%p\n", table);
246 } else {
247 pos = core_to_pos(nr);
248 if (pos < 0)
249 return -1;
250 table = (u64 *)get_spin_tbl_addr() + pos *
251 WORDS_PER_SPIN_TABLE_ENTRY;
252 printf("table @ 0x%p\n", table);
253 printf(" addr - 0x%016llx\n",
254 table[SPIN_TABLE_ELEM_ENTRY_ADDR_IDX]);
255 printf(" status - 0x%016llx\n",
256 table[SPIN_TABLE_ELEM_STATUS_IDX]);
257 printf(" lpid - 0x%016llx\n",
258 table[SPIN_TABLE_ELEM_LPID_IDX]);
259 }
260
261 return 0;
262}
263
Simon Glassed38aef2020-05-10 11:40:03 -0600264int cpu_release(u32 nr, int argc, char *const argv[])
York Sun56cc3db2014-09-08 12:20:00 -0700265{
266 u64 boot_addr;
267 u64 *table = (u64 *)get_spin_tbl_addr();
268 int pos;
269
270 pos = core_to_pos(nr);
271 if (pos <= 0)
272 return -1;
273
274 table += pos * WORDS_PER_SPIN_TABLE_ENTRY;
275 boot_addr = simple_strtoull(argv[0], NULL, 16);
276 table[SPIN_TABLE_ELEM_ENTRY_ADDR_IDX] = boot_addr;
277 flush_dcache_range((unsigned long)table,
278 (unsigned long)table + SPIN_TABLE_ELEM_SIZE);
279 asm volatile("dsb st");
280 smp_kick_all_cpus(); /* only those with entry addr set will run */
York Sun89c717c2015-11-12 12:38:21 -0800281 /*
282 * When the first release command runs, all cores are set to go. Those
283 * without a valid entry address will be trapped by "wfe". "sev" kicks
284 * them off to check the address again. When set, they continue to run.
285 */
286 asm volatile("sev");
York Sun56cc3db2014-09-08 12:20:00 -0700287
288 return 0;
289}