diff options
Diffstat (limited to 'arch/mips/loongson/loongson-3/smp.c')
-rw-r--r-- | arch/mips/loongson/loongson-3/smp.c | 443 |
1 files changed, 443 insertions, 0 deletions
diff --git a/arch/mips/loongson/loongson-3/smp.c b/arch/mips/loongson/loongson-3/smp.c new file mode 100644 index 000000000000..c665fe16d4c9 --- /dev/null +++ b/arch/mips/loongson/loongson-3/smp.c | |||
@@ -0,0 +1,443 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2010, 2011, 2012, Lemote, Inc. | ||
3 | * Author: Chen Huacai, chenhc@lemote.com | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or | ||
6 | * modify it under the terms of the GNU General Public License | ||
7 | * as published by the Free Software Foundation; either version 2 | ||
8 | * of the License, or (at your option) any later version. | ||
9 | * | ||
10 | * This program is distributed in the hope that it will be useful, | ||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | * GNU General Public License for more details. | ||
14 | * | ||
15 | */ | ||
16 | |||
17 | #include <linux/init.h> | ||
18 | #include <linux/cpu.h> | ||
19 | #include <linux/sched.h> | ||
20 | #include <linux/smp.h> | ||
21 | #include <linux/cpufreq.h> | ||
22 | #include <asm/processor.h> | ||
23 | #include <asm/time.h> | ||
24 | #include <asm/clock.h> | ||
25 | #include <asm/tlbflush.h> | ||
26 | #include <asm/cacheflush.h> | ||
27 | #include <loongson.h> | ||
28 | |||
29 | #include "smp.h" | ||
30 | |||
31 | DEFINE_PER_CPU(int, cpu_state); | ||
32 | DEFINE_PER_CPU(uint32_t, core0_c0count); | ||
33 | |||
34 | /* read a 32bit value from ipi register */ | ||
35 | #define loongson3_ipi_read32(addr) readl(addr) | ||
36 | /* read a 64bit value from ipi register */ | ||
37 | #define loongson3_ipi_read64(addr) readq(addr) | ||
38 | /* write a 32bit value to ipi register */ | ||
39 | #define loongson3_ipi_write32(action, addr) \ | ||
40 | do { \ | ||
41 | writel(action, addr); \ | ||
42 | __wbflush(); \ | ||
43 | } while (0) | ||
44 | /* write a 64bit value to ipi register */ | ||
45 | #define loongson3_ipi_write64(action, addr) \ | ||
46 | do { \ | ||
47 | writeq(action, addr); \ | ||
48 | __wbflush(); \ | ||
49 | } while (0) | ||
50 | |||
51 | static void *ipi_set0_regs[] = { | ||
52 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE0_OFFSET + SET0), | ||
53 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE1_OFFSET + SET0), | ||
54 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE2_OFFSET + SET0), | ||
55 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE3_OFFSET + SET0), | ||
56 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE0_OFFSET + SET0), | ||
57 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE1_OFFSET + SET0), | ||
58 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE2_OFFSET + SET0), | ||
59 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE3_OFFSET + SET0), | ||
60 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE0_OFFSET + SET0), | ||
61 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE1_OFFSET + SET0), | ||
62 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE2_OFFSET + SET0), | ||
63 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE3_OFFSET + SET0), | ||
64 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE0_OFFSET + SET0), | ||
65 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE1_OFFSET + SET0), | ||
66 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE2_OFFSET + SET0), | ||
67 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE3_OFFSET + SET0), | ||
68 | }; | ||
69 | |||
70 | static void *ipi_clear0_regs[] = { | ||
71 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE0_OFFSET + CLEAR0), | ||
72 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE1_OFFSET + CLEAR0), | ||
73 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE2_OFFSET + CLEAR0), | ||
74 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE3_OFFSET + CLEAR0), | ||
75 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE0_OFFSET + CLEAR0), | ||
76 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE1_OFFSET + CLEAR0), | ||
77 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE2_OFFSET + CLEAR0), | ||
78 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE3_OFFSET + CLEAR0), | ||
79 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE0_OFFSET + CLEAR0), | ||
80 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE1_OFFSET + CLEAR0), | ||
81 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE2_OFFSET + CLEAR0), | ||
82 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE3_OFFSET + CLEAR0), | ||
83 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE0_OFFSET + CLEAR0), | ||
84 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE1_OFFSET + CLEAR0), | ||
85 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE2_OFFSET + CLEAR0), | ||
86 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE3_OFFSET + CLEAR0), | ||
87 | }; | ||
88 | |||
89 | static void *ipi_status0_regs[] = { | ||
90 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE0_OFFSET + STATUS0), | ||
91 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE1_OFFSET + STATUS0), | ||
92 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE2_OFFSET + STATUS0), | ||
93 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE3_OFFSET + STATUS0), | ||
94 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE0_OFFSET + STATUS0), | ||
95 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE1_OFFSET + STATUS0), | ||
96 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE2_OFFSET + STATUS0), | ||
97 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE3_OFFSET + STATUS0), | ||
98 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE0_OFFSET + STATUS0), | ||
99 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE1_OFFSET + STATUS0), | ||
100 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE2_OFFSET + STATUS0), | ||
101 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE3_OFFSET + STATUS0), | ||
102 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE0_OFFSET + STATUS0), | ||
103 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE1_OFFSET + STATUS0), | ||
104 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE2_OFFSET + STATUS0), | ||
105 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE3_OFFSET + STATUS0), | ||
106 | }; | ||
107 | |||
108 | static void *ipi_en0_regs[] = { | ||
109 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE0_OFFSET + EN0), | ||
110 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE1_OFFSET + EN0), | ||
111 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE2_OFFSET + EN0), | ||
112 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE3_OFFSET + EN0), | ||
113 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE0_OFFSET + EN0), | ||
114 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE1_OFFSET + EN0), | ||
115 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE2_OFFSET + EN0), | ||
116 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE3_OFFSET + EN0), | ||
117 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE0_OFFSET + EN0), | ||
118 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE1_OFFSET + EN0), | ||
119 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE2_OFFSET + EN0), | ||
120 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE3_OFFSET + EN0), | ||
121 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE0_OFFSET + EN0), | ||
122 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE1_OFFSET + EN0), | ||
123 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE2_OFFSET + EN0), | ||
124 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE3_OFFSET + EN0), | ||
125 | }; | ||
126 | |||
127 | static void *ipi_mailbox_buf[] = { | ||
128 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE0_OFFSET + BUF), | ||
129 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE1_OFFSET + BUF), | ||
130 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE2_OFFSET + BUF), | ||
131 | (void *)(SMP_CORE_GROUP0_BASE + SMP_CORE3_OFFSET + BUF), | ||
132 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE0_OFFSET + BUF), | ||
133 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE1_OFFSET + BUF), | ||
134 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE2_OFFSET + BUF), | ||
135 | (void *)(SMP_CORE_GROUP1_BASE + SMP_CORE3_OFFSET + BUF), | ||
136 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE0_OFFSET + BUF), | ||
137 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE1_OFFSET + BUF), | ||
138 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE2_OFFSET + BUF), | ||
139 | (void *)(SMP_CORE_GROUP2_BASE + SMP_CORE3_OFFSET + BUF), | ||
140 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE0_OFFSET + BUF), | ||
141 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE1_OFFSET + BUF), | ||
142 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE2_OFFSET + BUF), | ||
143 | (void *)(SMP_CORE_GROUP3_BASE + SMP_CORE3_OFFSET + BUF), | ||
144 | }; | ||
145 | |||
146 | /* | ||
147 | * Simple enough, just poke the appropriate ipi register | ||
148 | */ | ||
149 | static void loongson3_send_ipi_single(int cpu, unsigned int action) | ||
150 | { | ||
151 | loongson3_ipi_write32((u32)action, ipi_set0_regs[cpu]); | ||
152 | } | ||
153 | |||
154 | static void | ||
155 | loongson3_send_ipi_mask(const struct cpumask *mask, unsigned int action) | ||
156 | { | ||
157 | unsigned int i; | ||
158 | |||
159 | for_each_cpu(i, mask) | ||
160 | loongson3_ipi_write32((u32)action, ipi_set0_regs[i]); | ||
161 | } | ||
162 | |||
163 | void loongson3_ipi_interrupt(struct pt_regs *regs) | ||
164 | { | ||
165 | int i, cpu = smp_processor_id(); | ||
166 | unsigned int action, c0count; | ||
167 | |||
168 | /* Load the ipi register to figure out what we're supposed to do */ | ||
169 | action = loongson3_ipi_read32(ipi_status0_regs[cpu]); | ||
170 | |||
171 | /* Clear the ipi register to clear the interrupt */ | ||
172 | loongson3_ipi_write32((u32)action, ipi_clear0_regs[cpu]); | ||
173 | |||
174 | if (action & SMP_RESCHEDULE_YOURSELF) | ||
175 | scheduler_ipi(); | ||
176 | |||
177 | if (action & SMP_CALL_FUNCTION) | ||
178 | smp_call_function_interrupt(); | ||
179 | |||
180 | if (action & SMP_ASK_C0COUNT) { | ||
181 | BUG_ON(cpu != 0); | ||
182 | c0count = read_c0_count(); | ||
183 | for (i = 1; i < loongson_sysconf.nr_cpus; i++) | ||
184 | per_cpu(core0_c0count, i) = c0count; | ||
185 | } | ||
186 | } | ||
187 | |||
188 | #define MAX_LOOPS 1111 | ||
189 | /* | ||
190 | * SMP init and finish on secondary CPUs | ||
191 | */ | ||
192 | static void loongson3_init_secondary(void) | ||
193 | { | ||
194 | int i; | ||
195 | uint32_t initcount; | ||
196 | unsigned int cpu = smp_processor_id(); | ||
197 | unsigned int imask = STATUSF_IP7 | STATUSF_IP6 | | ||
198 | STATUSF_IP3 | STATUSF_IP2; | ||
199 | |||
200 | /* Set interrupt mask, but don't enable */ | ||
201 | change_c0_status(ST0_IM, imask); | ||
202 | |||
203 | for (i = 0; i < loongson_sysconf.nr_cpus; i++) | ||
204 | loongson3_ipi_write32(0xffffffff, ipi_en0_regs[i]); | ||
205 | |||
206 | per_cpu(cpu_state, cpu) = CPU_ONLINE; | ||
207 | |||
208 | i = 0; | ||
209 | __get_cpu_var(core0_c0count) = 0; | ||
210 | loongson3_send_ipi_single(0, SMP_ASK_C0COUNT); | ||
211 | while (!__get_cpu_var(core0_c0count)) { | ||
212 | i++; | ||
213 | cpu_relax(); | ||
214 | } | ||
215 | |||
216 | if (i > MAX_LOOPS) | ||
217 | i = MAX_LOOPS; | ||
218 | initcount = __get_cpu_var(core0_c0count) + i; | ||
219 | write_c0_count(initcount); | ||
220 | } | ||
221 | |||
222 | static void loongson3_smp_finish(void) | ||
223 | { | ||
224 | write_c0_compare(read_c0_count() + mips_hpt_frequency/HZ); | ||
225 | local_irq_enable(); | ||
226 | loongson3_ipi_write64(0, | ||
227 | (void *)(ipi_mailbox_buf[smp_processor_id()]+0x0)); | ||
228 | pr_info("CPU#%d finished, CP0_ST=%x\n", | ||
229 | smp_processor_id(), read_c0_status()); | ||
230 | } | ||
231 | |||
232 | static void __init loongson3_smp_setup(void) | ||
233 | { | ||
234 | int i, num; | ||
235 | |||
236 | init_cpu_possible(cpu_none_mask); | ||
237 | set_cpu_possible(0, true); | ||
238 | |||
239 | __cpu_number_map[0] = 0; | ||
240 | __cpu_logical_map[0] = 0; | ||
241 | |||
242 | /* For unified kernel, NR_CPUS is the maximum possible value, | ||
243 | * loongson_sysconf.nr_cpus is the really present value */ | ||
244 | for (i = 1, num = 0; i < loongson_sysconf.nr_cpus; i++) { | ||
245 | set_cpu_possible(i, true); | ||
246 | __cpu_number_map[i] = ++num; | ||
247 | __cpu_logical_map[num] = i; | ||
248 | } | ||
249 | pr_info("Detected %i available secondary CPU(s)\n", num); | ||
250 | } | ||
251 | |||
252 | static void __init loongson3_prepare_cpus(unsigned int max_cpus) | ||
253 | { | ||
254 | init_cpu_present(cpu_possible_mask); | ||
255 | per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE; | ||
256 | } | ||
257 | |||
258 | /* | ||
259 | * Setup the PC, SP, and GP of a secondary processor and start it runing! | ||
260 | */ | ||
261 | static void loongson3_boot_secondary(int cpu, struct task_struct *idle) | ||
262 | { | ||
263 | unsigned long startargs[4]; | ||
264 | |||
265 | pr_info("Booting CPU#%d...\n", cpu); | ||
266 | |||
267 | /* startargs[] are initial PC, SP and GP for secondary CPU */ | ||
268 | startargs[0] = (unsigned long)&smp_bootstrap; | ||
269 | startargs[1] = (unsigned long)__KSTK_TOS(idle); | ||
270 | startargs[2] = (unsigned long)task_thread_info(idle); | ||
271 | startargs[3] = 0; | ||
272 | |||
273 | pr_debug("CPU#%d, func_pc=%lx, sp=%lx, gp=%lx\n", | ||
274 | cpu, startargs[0], startargs[1], startargs[2]); | ||
275 | |||
276 | loongson3_ipi_write64(startargs[3], (void *)(ipi_mailbox_buf[cpu]+0x18)); | ||
277 | loongson3_ipi_write64(startargs[2], (void *)(ipi_mailbox_buf[cpu]+0x10)); | ||
278 | loongson3_ipi_write64(startargs[1], (void *)(ipi_mailbox_buf[cpu]+0x8)); | ||
279 | loongson3_ipi_write64(startargs[0], (void *)(ipi_mailbox_buf[cpu]+0x0)); | ||
280 | } | ||
281 | |||
282 | /* | ||
283 | * Final cleanup after all secondaries booted | ||
284 | */ | ||
285 | static void __init loongson3_cpus_done(void) | ||
286 | { | ||
287 | } | ||
288 | |||
289 | #ifdef CONFIG_HOTPLUG_CPU | ||
290 | |||
291 | static int loongson3_cpu_disable(void) | ||
292 | { | ||
293 | unsigned long flags; | ||
294 | unsigned int cpu = smp_processor_id(); | ||
295 | |||
296 | if (cpu == 0) | ||
297 | return -EBUSY; | ||
298 | |||
299 | set_cpu_online(cpu, false); | ||
300 | cpu_clear(cpu, cpu_callin_map); | ||
301 | local_irq_save(flags); | ||
302 | fixup_irqs(); | ||
303 | local_irq_restore(flags); | ||
304 | flush_cache_all(); | ||
305 | local_flush_tlb_all(); | ||
306 | |||
307 | return 0; | ||
308 | } | ||
309 | |||
310 | |||
311 | static void loongson3_cpu_die(unsigned int cpu) | ||
312 | { | ||
313 | while (per_cpu(cpu_state, cpu) != CPU_DEAD) | ||
314 | cpu_relax(); | ||
315 | |||
316 | mb(); | ||
317 | } | ||
318 | |||
319 | /* To shutdown a core in Loongson 3, the target core should go to CKSEG1 and | ||
320 | * flush all L1 entries at first. Then, another core (usually Core 0) can | ||
321 | * safely disable the clock of the target core. loongson3_play_dead() is | ||
322 | * called via CKSEG1 (uncached and unmmaped) */ | ||
323 | static void loongson3_play_dead(int *state_addr) | ||
324 | { | ||
325 | register int val; | ||
326 | register long cpuid, core, node, count; | ||
327 | register void *addr, *base, *initfunc; | ||
328 | |||
329 | __asm__ __volatile__( | ||
330 | " .set push \n" | ||
331 | " .set noreorder \n" | ||
332 | " li %[addr], 0x80000000 \n" /* KSEG0 */ | ||
333 | "1: cache 0, 0(%[addr]) \n" /* flush L1 ICache */ | ||
334 | " cache 0, 1(%[addr]) \n" | ||
335 | " cache 0, 2(%[addr]) \n" | ||
336 | " cache 0, 3(%[addr]) \n" | ||
337 | " cache 1, 0(%[addr]) \n" /* flush L1 DCache */ | ||
338 | " cache 1, 1(%[addr]) \n" | ||
339 | " cache 1, 2(%[addr]) \n" | ||
340 | " cache 1, 3(%[addr]) \n" | ||
341 | " addiu %[sets], %[sets], -1 \n" | ||
342 | " bnez %[sets], 1b \n" | ||
343 | " addiu %[addr], %[addr], 0x20 \n" | ||
344 | " li %[val], 0x7 \n" /* *state_addr = CPU_DEAD; */ | ||
345 | " sw %[val], (%[state_addr]) \n" | ||
346 | " sync \n" | ||
347 | " cache 21, (%[state_addr]) \n" /* flush entry of *state_addr */ | ||
348 | " .set pop \n" | ||
349 | : [addr] "=&r" (addr), [val] "=&r" (val) | ||
350 | : [state_addr] "r" (state_addr), | ||
351 | [sets] "r" (cpu_data[smp_processor_id()].dcache.sets)); | ||
352 | |||
353 | __asm__ __volatile__( | ||
354 | " .set push \n" | ||
355 | " .set noreorder \n" | ||
356 | " .set mips64 \n" | ||
357 | " mfc0 %[cpuid], $15, 1 \n" | ||
358 | " andi %[cpuid], 0x3ff \n" | ||
359 | " dli %[base], 0x900000003ff01000 \n" | ||
360 | " andi %[core], %[cpuid], 0x3 \n" | ||
361 | " sll %[core], 8 \n" /* get core id */ | ||
362 | " or %[base], %[base], %[core] \n" | ||
363 | " andi %[node], %[cpuid], 0xc \n" | ||
364 | " dsll %[node], 42 \n" /* get node id */ | ||
365 | " or %[base], %[base], %[node] \n" | ||
366 | "1: li %[count], 0x100 \n" /* wait for init loop */ | ||
367 | "2: bnez %[count], 2b \n" /* limit mailbox access */ | ||
368 | " addiu %[count], -1 \n" | ||
369 | " ld %[initfunc], 0x20(%[base]) \n" /* get PC via mailbox */ | ||
370 | " beqz %[initfunc], 1b \n" | ||
371 | " nop \n" | ||
372 | " ld $sp, 0x28(%[base]) \n" /* get SP via mailbox */ | ||
373 | " ld $gp, 0x30(%[base]) \n" /* get GP via mailbox */ | ||
374 | " ld $a1, 0x38(%[base]) \n" | ||
375 | " jr %[initfunc] \n" /* jump to initial PC */ | ||
376 | " nop \n" | ||
377 | " .set pop \n" | ||
378 | : [core] "=&r" (core), [node] "=&r" (node), | ||
379 | [base] "=&r" (base), [cpuid] "=&r" (cpuid), | ||
380 | [count] "=&r" (count), [initfunc] "=&r" (initfunc) | ||
381 | : /* No Input */ | ||
382 | : "a1"); | ||
383 | } | ||
384 | |||
385 | void play_dead(void) | ||
386 | { | ||
387 | int *state_addr; | ||
388 | unsigned int cpu = smp_processor_id(); | ||
389 | void (*play_dead_at_ckseg1)(int *); | ||
390 | |||
391 | idle_task_exit(); | ||
392 | play_dead_at_ckseg1 = | ||
393 | (void *)CKSEG1ADDR((unsigned long)loongson3_play_dead); | ||
394 | state_addr = &per_cpu(cpu_state, cpu); | ||
395 | mb(); | ||
396 | play_dead_at_ckseg1(state_addr); | ||
397 | } | ||
398 | |||
399 | #define CPU_POST_DEAD_FROZEN (CPU_POST_DEAD | CPU_TASKS_FROZEN) | ||
400 | static int loongson3_cpu_callback(struct notifier_block *nfb, | ||
401 | unsigned long action, void *hcpu) | ||
402 | { | ||
403 | unsigned int cpu = (unsigned long)hcpu; | ||
404 | |||
405 | switch (action) { | ||
406 | case CPU_POST_DEAD: | ||
407 | case CPU_POST_DEAD_FROZEN: | ||
408 | pr_info("Disable clock for CPU#%d\n", cpu); | ||
409 | LOONGSON_CHIPCFG0 &= ~(1 << (12 + cpu)); | ||
410 | break; | ||
411 | case CPU_UP_PREPARE: | ||
412 | case CPU_UP_PREPARE_FROZEN: | ||
413 | pr_info("Enable clock for CPU#%d\n", cpu); | ||
414 | LOONGSON_CHIPCFG0 |= 1 << (12 + cpu); | ||
415 | break; | ||
416 | } | ||
417 | |||
418 | return NOTIFY_OK; | ||
419 | } | ||
420 | |||
421 | static int register_loongson3_notifier(void) | ||
422 | { | ||
423 | hotcpu_notifier(loongson3_cpu_callback, 0); | ||
424 | return 0; | ||
425 | } | ||
426 | early_initcall(register_loongson3_notifier); | ||
427 | |||
428 | #endif | ||
429 | |||
430 | struct plat_smp_ops loongson3_smp_ops = { | ||
431 | .send_ipi_single = loongson3_send_ipi_single, | ||
432 | .send_ipi_mask = loongson3_send_ipi_mask, | ||
433 | .init_secondary = loongson3_init_secondary, | ||
434 | .smp_finish = loongson3_smp_finish, | ||
435 | .cpus_done = loongson3_cpus_done, | ||
436 | .boot_secondary = loongson3_boot_secondary, | ||
437 | .smp_setup = loongson3_smp_setup, | ||
438 | .prepare_cpus = loongson3_prepare_cpus, | ||
439 | #ifdef CONFIG_HOTPLUG_CPU | ||
440 | .cpu_disable = loongson3_cpu_disable, | ||
441 | .cpu_die = loongson3_cpu_die, | ||
442 | #endif | ||
443 | }; | ||