blob: df7ffb88f6a6ae2572040ea53ca1728a18980da8 [file] [log] [blame]
York Sun56cc3db2014-09-08 12:20:00 -07001/*
Mingkai Hu0e58b512015-10-26 19:47:50 +08002 * Copyright 2014-2015 Freescale Semiconductor, Inc.
York Sun56cc3db2014-09-08 12:20:00 -07003 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <asm/io.h>
9#include <asm/system.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080010#include <asm/arch/mp.h>
11#include <asm/arch/soc.h>
York Sun56cc3db2014-09-08 12:20:00 -070012
13DECLARE_GLOBAL_DATA_PTR;
14
15void *get_spin_tbl_addr(void)
16{
17 return &__spin_table;
18}
19
20phys_addr_t determine_mp_bootpg(void)
21{
22 return (phys_addr_t)&secondary_boot_code;
23}
24
Mingkai Hu0e58b512015-10-26 19:47:50 +080025int fsl_layerscape_wake_seconday_cores(void)
York Sun56cc3db2014-09-08 12:20:00 -070026{
27 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +080028#ifdef CONFIG_FSL_LSCH3
York Sun56cc3db2014-09-08 12:20:00 -070029 struct ccsr_reset __iomem *rst = (void *)(CONFIG_SYS_FSL_RST_ADDR);
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +080030#elif defined(CONFIG_FSL_LSCH2)
31 struct ccsr_scfg __iomem *scfg = (void *)(CONFIG_SYS_FSL_SCFG_ADDR);
32#endif
York Sun56cc3db2014-09-08 12:20:00 -070033 u32 cores, cpu_up_mask = 1;
34 int i, timeout = 10;
35 u64 *table = get_spin_tbl_addr();
36
York Sun77a10972015-03-20 19:28:08 -070037#ifdef COUNTER_FREQUENCY_REAL
38 /* update for secondary cores */
39 __real_cntfrq = COUNTER_FREQUENCY_REAL;
40 flush_dcache_range((unsigned long)&__real_cntfrq,
41 (unsigned long)&__real_cntfrq + 8);
42#endif
43
York Sun56cc3db2014-09-08 12:20:00 -070044 cores = cpu_mask();
45 /* Clear spin table so that secondary processors
46 * observe the correct value after waking up from wfe.
47 */
48 memset(table, 0, CONFIG_MAX_CPUS*SPIN_TABLE_ELEM_SIZE);
49 flush_dcache_range((unsigned long)table,
50 (unsigned long)table +
51 (CONFIG_MAX_CPUS*SPIN_TABLE_ELEM_SIZE));
52
53 printf("Waking secondary cores to start from %lx\n", gd->relocaddr);
Mingkai Hu0e58b512015-10-26 19:47:50 +080054
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +080055#ifdef CONFIG_FSL_LSCH3
Mingkai Hu0e58b512015-10-26 19:47:50 +080056 gur_out32(&gur->bootlocptrh, (u32)(gd->relocaddr >> 32));
57 gur_out32(&gur->bootlocptrl, (u32)gd->relocaddr);
58 gur_out32(&gur->scratchrw[6], 1);
York Sun56cc3db2014-09-08 12:20:00 -070059 asm volatile("dsb st" : : : "memory");
60 rst->brrl = cores;
61 asm volatile("dsb st" : : : "memory");
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +080062#elif defined(CONFIG_FSL_LSCH2)
63 scfg_out32(&scfg->scratchrw[0], (u32)(gd->relocaddr >> 32));
64 scfg_out32(&scfg->scratchrw[1], (u32)gd->relocaddr);
65 asm volatile("dsb st" : : : "memory");
66 gur_out32(&gur->brrl, cores);
67 asm volatile("dsb st" : : : "memory");
York Sun56cc3db2014-09-08 12:20:00 -070068
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +080069 /* Bootup online cores */
70 scfg_out32(&scfg->corebcr, cores);
71#endif
York Sun56cc3db2014-09-08 12:20:00 -070072 /* This is needed as a precautionary measure.
73 * If some code before this has accidentally released the secondary
74 * cores then the pre-bootloader code will trap them in a "wfe" unless
75 * the scratchrw[6] is set. In this case we need a sev here to get these
76 * cores moving again.
77 */
78 asm volatile("sev");
79
80 while (timeout--) {
81 flush_dcache_range((unsigned long)table, (unsigned long)table +
82 CONFIG_MAX_CPUS * 64);
83 for (i = 1; i < CONFIG_MAX_CPUS; i++) {
84 if (table[i * WORDS_PER_SPIN_TABLE_ENTRY +
85 SPIN_TABLE_ELEM_STATUS_IDX])
86 cpu_up_mask |= 1 << i;
87 }
88 if (hweight32(cpu_up_mask) == hweight32(cores))
89 break;
90 udelay(10);
91 }
92 if (timeout <= 0) {
93 printf("Not all cores (0x%x) are up (0x%x)\n",
94 cores, cpu_up_mask);
95 return 1;
96 }
97 printf("All (%d) cores are up.\n", hweight32(cores));
98
99 return 0;
100}
101
102int is_core_valid(unsigned int core)
103{
104 return !!((1 << core) & cpu_mask());
105}
106
Arnab Basu0cb19422015-01-06 13:18:41 -0800107int is_core_online(u64 cpu_id)
108{
109 u64 *table;
110 int pos = id_to_core(cpu_id);
111 table = (u64 *)get_spin_tbl_addr() + pos * WORDS_PER_SPIN_TABLE_ENTRY;
112 return table[SPIN_TABLE_ELEM_STATUS_IDX] == 1;
113}
114
York Sun56cc3db2014-09-08 12:20:00 -0700115int cpu_reset(int nr)
116{
117 puts("Feature is not implemented.\n");
118
119 return 0;
120}
121
122int cpu_disable(int nr)
123{
124 puts("Feature is not implemented.\n");
125
126 return 0;
127}
128
129int core_to_pos(int nr)
130{
131 u32 cores = cpu_mask();
132 int i, count = 0;
133
134 if (nr == 0) {
135 return 0;
136 } else if (nr >= hweight32(cores)) {
137 puts("Not a valid core number.\n");
138 return -1;
139 }
140
141 for (i = 1; i < 32; i++) {
142 if (is_core_valid(i)) {
143 count++;
144 if (count == nr)
145 break;
146 }
147 }
148
149 return count;
150}
151
152int cpu_status(int nr)
153{
154 u64 *table;
155 int pos;
156
157 if (nr == 0) {
158 table = (u64 *)get_spin_tbl_addr();
159 printf("table base @ 0x%p\n", table);
160 } else {
161 pos = core_to_pos(nr);
162 if (pos < 0)
163 return -1;
164 table = (u64 *)get_spin_tbl_addr() + pos *
165 WORDS_PER_SPIN_TABLE_ENTRY;
166 printf("table @ 0x%p\n", table);
167 printf(" addr - 0x%016llx\n",
168 table[SPIN_TABLE_ELEM_ENTRY_ADDR_IDX]);
169 printf(" status - 0x%016llx\n",
170 table[SPIN_TABLE_ELEM_STATUS_IDX]);
171 printf(" lpid - 0x%016llx\n",
172 table[SPIN_TABLE_ELEM_LPID_IDX]);
173 }
174
175 return 0;
176}
177
178int cpu_release(int nr, int argc, char * const argv[])
179{
180 u64 boot_addr;
181 u64 *table = (u64 *)get_spin_tbl_addr();
182 int pos;
183
184 pos = core_to_pos(nr);
185 if (pos <= 0)
186 return -1;
187
188 table += pos * WORDS_PER_SPIN_TABLE_ENTRY;
189 boot_addr = simple_strtoull(argv[0], NULL, 16);
190 table[SPIN_TABLE_ELEM_ENTRY_ADDR_IDX] = boot_addr;
191 flush_dcache_range((unsigned long)table,
192 (unsigned long)table + SPIN_TABLE_ELEM_SIZE);
193 asm volatile("dsb st");
194 smp_kick_all_cpus(); /* only those with entry addr set will run */
York Sun89c717c2015-11-12 12:38:21 -0800195 /*
196 * When the first release command runs, all cores are set to go. Those
197 * without a valid entry address will be trapped by "wfe". "sev" kicks
198 * them off to check the address again. When set, they continue to run.
199 */
200 asm volatile("sev");
York Sun56cc3db2014-09-08 12:20:00 -0700201
202 return 0;
203}