]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/sh/kernel/smp.c
UBUNTU: Ubuntu-4.10.0-37.41
[mirror_ubuntu-zesty-kernel.git] / arch / sh / kernel / smp.c
CommitLineData
1da177e4
LT
1/*
2 * arch/sh/kernel/smp.c
3 *
4 * SMP support for the SuperH processors.
5 *
3366e358 6 * Copyright (C) 2002 - 2010 Paul Mundt
aba1030a 7 * Copyright (C) 2006 - 2007 Akio Idehara
1da177e4 8 *
aba1030a
PM
9 * This file is subject to the terms and conditions of the GNU General Public
10 * License. See the file "COPYING" in the main directory of this archive
11 * for more details.
1da177e4 12 */
66c5227e 13#include <linux/err.h>
1da177e4
LT
14#include <linux/cache.h>
15#include <linux/cpumask.h>
16#include <linux/delay.h>
17#include <linux/init.h>
1da177e4 18#include <linux/spinlock.h>
aba1030a 19#include <linux/mm.h>
1da177e4 20#include <linux/module.h>
b56050ae 21#include <linux/cpu.h>
aba1030a 22#include <linux/interrupt.h>
184748cc 23#include <linux/sched.h>
60063497 24#include <linux/atomic.h>
45624ac3 25#include <linux/clockchips.h>
1da177e4 26#include <asm/processor.h>
1da177e4
LT
27#include <asm/mmu_context.h>
28#include <asm/smp.h>
aba1030a
PM
29#include <asm/cacheflush.h>
30#include <asm/sections.h>
f03c4866 31#include <asm/setup.h>
1da177e4 32
aba1030a
PM
33int __cpu_number_map[NR_CPUS]; /* Map physical to logical */
34int __cpu_logical_map[NR_CPUS]; /* Map logical to physical */
1da177e4 35
3366e358
PM
36struct plat_smp_ops *mp_ops = NULL;
37
9715b8c7
PM
38/* State of each CPU */
39DEFINE_PER_CPU(int, cpu_state) = { 0 };
40
4603f53a 41void register_smp_ops(struct plat_smp_ops *ops)
3366e358
PM
42{
43 if (mp_ops)
44 printk(KERN_WARNING "Overriding previously set SMP ops\n");
45
46 mp_ops = ops;
47}
48
4603f53a 49static inline void smp_store_cpu_info(unsigned int cpu)
1da177e4 50{
aba1030a
PM
51 struct sh_cpuinfo *c = cpu_data + cpu;
52
a66c2ede
PM
53 memcpy(c, &boot_cpu_data, sizeof(struct sh_cpuinfo));
54
aba1030a 55 c->loops_per_jiffy = loops_per_jiffy;
1da177e4
LT
56}
57
58void __init smp_prepare_cpus(unsigned int max_cpus)
59{
60 unsigned int cpu = smp_processor_id();
1da177e4 61
aba1030a
PM
62 init_new_context(current, &init_mm);
63 current_thread_info()->cpu = cpu;
3366e358 64 mp_ops->prepare_cpus(max_cpus);
aba1030a
PM
65
66#ifndef CONFIG_HOTPLUG_CPU
004f4ce9 67 init_cpu_present(cpu_possible_mask);
aba1030a 68#endif
1da177e4
LT
69}
70
1cfa1e8f 71void __init smp_prepare_boot_cpu(void)
1da177e4
LT
72{
73 unsigned int cpu = smp_processor_id();
74
aba1030a
PM
75 __cpu_number_map[0] = cpu;
76 __cpu_logical_map[0] = cpu;
77
e09377ba
RR
78 set_cpu_online(cpu, true);
79 set_cpu_possible(cpu, true);
9715b8c7
PM
80
81 per_cpu(cpu_state, cpu) = CPU_ONLINE;
1da177e4
LT
82}
83
763142d1
PM
84#ifdef CONFIG_HOTPLUG_CPU
85void native_cpu_die(unsigned int cpu)
86{
87 unsigned int i;
88
89 for (i = 0; i < 10; i++) {
90 smp_rmb();
91 if (per_cpu(cpu_state, cpu) == CPU_DEAD) {
92 if (system_state == SYSTEM_RUNNING)
93 pr_info("CPU %u is now offline\n", cpu);
94
95 return;
96 }
97
98 msleep(100);
99 }
100
101 pr_err("CPU %u didn't die...\n", cpu);
102}
103
104int native_cpu_disable(unsigned int cpu)
105{
106 return cpu == 0 ? -EPERM : 0;
107}
108
109void play_dead_common(void)
110{
111 idle_task_exit();
112 irq_ctx_exit(raw_smp_processor_id());
113 mb();
114
c473b2c6 115 __this_cpu_write(cpu_state, CPU_DEAD);
763142d1
PM
116 local_irq_disable();
117}
118
119void native_play_dead(void)
120{
121 play_dead_common();
122}
123
124int __cpu_disable(void)
125{
126 unsigned int cpu = smp_processor_id();
763142d1
PM
127 int ret;
128
129 ret = mp_ops->cpu_disable(cpu);
130 if (ret)
131 return ret;
132
133 /*
134 * Take this CPU offline. Once we clear this, we can't return,
135 * and we must not schedule until we're ready to give up the cpu.
136 */
137 set_cpu_online(cpu, false);
138
139 /*
140 * OK - migrate IRQs away from this CPU
141 */
142 migrate_irqs();
143
763142d1
PM
144 /*
145 * Flush user cache and TLB mappings, and then remove this CPU
146 * from the vm mask set of all processes.
147 */
148 flush_cache_all();
5f2cb34d 149#ifdef CONFIG_MMU
763142d1 150 local_flush_tlb_all();
5f2cb34d 151#endif
763142d1 152
1198c8b9 153 clear_tasks_mm_cpumask(cpu);
763142d1
PM
154
155 return 0;
156}
157#else /* ... !CONFIG_HOTPLUG_CPU */
1483feac 158int native_cpu_disable(unsigned int cpu)
763142d1
PM
159{
160 return -ENOSYS;
161}
162
163void native_cpu_die(unsigned int cpu)
164{
165 /* We said "no" in __cpu_disable */
166 BUG();
167}
168
169void native_play_dead(void)
170{
171 BUG();
172}
173#endif
174
4603f53a 175asmlinkage void start_secondary(void)
1da177e4 176{
9715b8c7 177 unsigned int cpu = smp_processor_id();
aba1030a 178 struct mm_struct *mm = &init_mm;
1da177e4 179
4bea3418 180 enable_mmu();
aba1030a
PM
181 atomic_inc(&mm->mm_count);
182 atomic_inc(&mm->mm_users);
183 current->active_mm = mm;
5f2cb34d 184#ifdef CONFIG_MMU
aba1030a 185 enter_lazy_tlb(mm, current);
763142d1 186 local_flush_tlb_all();
5f2cb34d 187#endif
aba1030a
PM
188
189 per_cpu_trap_init();
190
191 preempt_disable();
192
9715b8c7 193 notify_cpu_starting(cpu);
e545a614 194
aba1030a 195 local_irq_enable();
1da177e4 196
aba1030a
PM
197 calibrate_delay();
198
aba1030a 199 smp_store_cpu_info(cpu);
1da177e4 200
f0ccf277 201 set_cpu_online(cpu, true);
9715b8c7 202 per_cpu(cpu_state, cpu) = CPU_ONLINE;
1da177e4 203
fc6d73d6 204 cpu_startup_entry(CPUHP_AP_ONLINE_IDLE);
1da177e4
LT
205}
206
aba1030a
PM
207extern struct {
208 unsigned long sp;
209 unsigned long bss_start;
210 unsigned long bss_end;
211 void *start_kernel_fn;
212 void *cpu_init_fn;
213 void *thread_info;
214} stack_start;
215
4603f53a 216int __cpu_up(unsigned int cpu, struct task_struct *tsk)
1da177e4 217{
aba1030a 218 unsigned long timeout;
5bfb5d69 219
9715b8c7
PM
220 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
221
aba1030a
PM
222 /* Fill in data in head.S for secondary cpus */
223 stack_start.sp = tsk->thread.sp;
224 stack_start.thread_info = tsk->stack;
225 stack_start.bss_start = 0; /* don't clear bss for secondary cpus */
226 stack_start.start_kernel_fn = start_secondary;
1da177e4 227
d780613a
PM
228 flush_icache_range((unsigned long)&stack_start,
229 (unsigned long)&stack_start + sizeof(stack_start));
230 wmb();
1da177e4 231
3366e358 232 mp_ops->start_cpu(cpu, (unsigned long)_stext);
1da177e4 233
aba1030a
PM
234 timeout = jiffies + HZ;
235 while (time_before(jiffies, timeout)) {
236 if (cpu_online(cpu))
237 break;
238
239 udelay(10);
763142d1 240 barrier();
aba1030a
PM
241 }
242
243 if (cpu_online(cpu))
244 return 0;
245
246 return -ENOENT;
1da177e4
LT
247}
248
249void __init smp_cpus_done(unsigned int max_cpus)
250{
aba1030a
PM
251 unsigned long bogosum = 0;
252 int cpu;
253
254 for_each_online_cpu(cpu)
255 bogosum += cpu_data[cpu].loops_per_jiffy;
256
257 printk(KERN_INFO "SMP: Total of %d processors activated "
258 "(%lu.%02lu BogoMIPS).\n", num_online_cpus(),
259 bogosum / (500000/HZ),
260 (bogosum / (5000/HZ)) % 100);
1da177e4
LT
261}
262
263void smp_send_reschedule(int cpu)
264{
3366e358 265 mp_ops->send_ipi(cpu, SMP_MSG_RESCHEDULE);
1da177e4
LT
266}
267
1da177e4
LT
268void smp_send_stop(void)
269{
8691e5a8 270 smp_call_function(stop_this_cpu, 0, 0);
1da177e4
LT
271}
272
819807df 273void arch_send_call_function_ipi_mask(const struct cpumask *mask)
1da177e4 274{
490f5de5 275 int cpu;
1da177e4 276
819807df 277 for_each_cpu(cpu, mask)
3366e358 278 mp_ops->send_ipi(cpu, SMP_MSG_FUNCTION);
490f5de5 279}
1da177e4 280
490f5de5
JA
281void arch_send_call_function_single_ipi(int cpu)
282{
3366e358 283 mp_ops->send_ipi(cpu, SMP_MSG_FUNCTION_SINGLE);
1da177e4
LT
284}
285
45624ac3
RF
286#ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
287void tick_broadcast(const struct cpumask *mask)
6f52707e
PM
288{
289 int cpu;
290
320ab2b0 291 for_each_cpu(cpu, mask)
3366e358 292 mp_ops->send_ipi(cpu, SMP_MSG_TIMER);
6f52707e
PM
293}
294
295static void ipi_timer(void)
296{
297 irq_enter();
45624ac3 298 tick_receive_broadcast();
6f52707e
PM
299 irq_exit();
300}
45624ac3 301#endif
6f52707e 302
173a44dd
PM
303void smp_message_recv(unsigned int msg)
304{
305 switch (msg) {
306 case SMP_MSG_FUNCTION:
307 generic_smp_call_function_interrupt();
308 break;
309 case SMP_MSG_RESCHEDULE:
184748cc 310 scheduler_ipi();
173a44dd
PM
311 break;
312 case SMP_MSG_FUNCTION_SINGLE:
313 generic_smp_call_function_single_interrupt();
314 break;
45624ac3 315#ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
6f52707e
PM
316 case SMP_MSG_TIMER:
317 ipi_timer();
318 break;
45624ac3 319#endif
173a44dd
PM
320 default:
321 printk(KERN_WARNING "SMP %d: %s(): unknown IPI %d\n",
322 smp_processor_id(), __func__, msg);
323 break;
324 }
325}
326
1da177e4
LT
327/* Not really SMP stuff ... */
328int setup_profiling_timer(unsigned int multiplier)
329{
330 return 0;
331}
332
5f2cb34d
RF
333#ifdef CONFIG_MMU
334
9964fa8b
PM
335static void flush_tlb_all_ipi(void *info)
336{
337 local_flush_tlb_all();
338}
339
340void flush_tlb_all(void)
341{
15c8b6c1 342 on_each_cpu(flush_tlb_all_ipi, 0, 1);
9964fa8b
PM
343}
344
345static void flush_tlb_mm_ipi(void *mm)
346{
347 local_flush_tlb_mm((struct mm_struct *)mm);
348}
349
350/*
351 * The following tlb flush calls are invoked when old translations are
352 * being torn down, or pte attributes are changing. For single threaded
353 * address spaces, a new context is obtained on the current cpu, and tlb
354 * context on other cpus are invalidated to force a new context allocation
355 * at switch_mm time, should the mm ever be used on other cpus. For
356 * multithreaded address spaces, intercpu interrupts have to be sent.
357 * Another case where intercpu interrupts are required is when the target
358 * mm might be active on another cpu (eg debuggers doing the flushes on
359 * behalf of debugees, kswapd stealing pages from another process etc).
360 * Kanoj 07/00.
361 */
9964fa8b
PM
362void flush_tlb_mm(struct mm_struct *mm)
363{
364 preempt_disable();
365
366 if ((atomic_read(&mm->mm_users) != 1) || (current->mm != mm)) {
8691e5a8 367 smp_call_function(flush_tlb_mm_ipi, (void *)mm, 1);
9964fa8b
PM
368 } else {
369 int i;
c8ed0010 370 for_each_online_cpu(i)
9964fa8b
PM
371 if (smp_processor_id() != i)
372 cpu_context(i, mm) = 0;
373 }
374 local_flush_tlb_mm(mm);
375
376 preempt_enable();
377}
378
379struct flush_tlb_data {
380 struct vm_area_struct *vma;
381 unsigned long addr1;
382 unsigned long addr2;
383};
384
385static void flush_tlb_range_ipi(void *info)
386{
387 struct flush_tlb_data *fd = (struct flush_tlb_data *)info;
388
389 local_flush_tlb_range(fd->vma, fd->addr1, fd->addr2);
390}
391
392void flush_tlb_range(struct vm_area_struct *vma,
393 unsigned long start, unsigned long end)
394{
395 struct mm_struct *mm = vma->vm_mm;
396
397 preempt_disable();
398 if ((atomic_read(&mm->mm_users) != 1) || (current->mm != mm)) {
399 struct flush_tlb_data fd;
400
401 fd.vma = vma;
402 fd.addr1 = start;
403 fd.addr2 = end;
8691e5a8 404 smp_call_function(flush_tlb_range_ipi, (void *)&fd, 1);
9964fa8b
PM
405 } else {
406 int i;
c8ed0010 407 for_each_online_cpu(i)
9964fa8b
PM
408 if (smp_processor_id() != i)
409 cpu_context(i, mm) = 0;
410 }
411 local_flush_tlb_range(vma, start, end);
412 preempt_enable();
413}
414
415static void flush_tlb_kernel_range_ipi(void *info)
416{
417 struct flush_tlb_data *fd = (struct flush_tlb_data *)info;
418
419 local_flush_tlb_kernel_range(fd->addr1, fd->addr2);
420}
421
422void flush_tlb_kernel_range(unsigned long start, unsigned long end)
423{
424 struct flush_tlb_data fd;
425
426 fd.addr1 = start;
427 fd.addr2 = end;
15c8b6c1 428 on_each_cpu(flush_tlb_kernel_range_ipi, (void *)&fd, 1);
9964fa8b
PM
429}
430
431static void flush_tlb_page_ipi(void *info)
432{
433 struct flush_tlb_data *fd = (struct flush_tlb_data *)info;
434
435 local_flush_tlb_page(fd->vma, fd->addr1);
436}
437
438void flush_tlb_page(struct vm_area_struct *vma, unsigned long page)
439{
440 preempt_disable();
441 if ((atomic_read(&vma->vm_mm->mm_users) != 1) ||
442 (current->mm != vma->vm_mm)) {
443 struct flush_tlb_data fd;
444
445 fd.vma = vma;
446 fd.addr1 = page;
8691e5a8 447 smp_call_function(flush_tlb_page_ipi, (void *)&fd, 1);
9964fa8b
PM
448 } else {
449 int i;
c8ed0010 450 for_each_online_cpu(i)
9964fa8b
PM
451 if (smp_processor_id() != i)
452 cpu_context(i, vma->vm_mm) = 0;
453 }
454 local_flush_tlb_page(vma, page);
455 preempt_enable();
456}
457
458static void flush_tlb_one_ipi(void *info)
459{
460 struct flush_tlb_data *fd = (struct flush_tlb_data *)info;
461 local_flush_tlb_one(fd->addr1, fd->addr2);
462}
463
464void flush_tlb_one(unsigned long asid, unsigned long vaddr)
465{
466 struct flush_tlb_data fd;
467
468 fd.addr1 = asid;
469 fd.addr2 = vaddr;
470
8691e5a8 471 smp_call_function(flush_tlb_one_ipi, (void *)&fd, 1);
9964fa8b
PM
472 local_flush_tlb_one(asid, vaddr);
473}
5f2cb34d
RF
474
475#endif