2 * Xtensa SMP support functions.
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
8 * Copyright (C) 2008 - 2013 Tensilica Inc.
10 * Chris Zankel <chris@zankel.net>
11 * Joe Taylor <joe@tensilica.com>
12 * Pete Delaney <piet@tensilica.com
15 #include <linux/cpu.h>
16 #include <linux/cpumask.h>
17 #include <linux/delay.h>
18 #include <linux/init.h>
19 #include <linux/interrupt.h>
20 #include <linux/irqdomain.h>
21 #include <linux/irq.h>
22 #include <linux/kdebug.h>
23 #include <linux/module.h>
24 #include <linux/sched/mm.h>
25 #include <linux/sched/hotplug.h>
26 #include <linux/sched/task_stack.h>
27 #include <linux/reboot.h>
28 #include <linux/seq_file.h>
29 #include <linux/smp.h>
30 #include <linux/thread_info.h>
32 #include <asm/cacheflush.h>
33 #include <asm/kdebug.h>
34 #include <asm/mmu_context.h>
35 #include <asm/mxregs.h>
36 #include <asm/platform.h>
37 #include <asm/tlbflush.h>
38 #include <asm/traps.h>
41 # if XCHAL_HAVE_S32C1I == 0
42 # error "The S32C1I option is required for SMP."
46 static void system_invalidate_dcache_range(unsigned long start
,
48 static void system_flush_invalidate_dcache_range(unsigned long start
,
51 /* IPI (Inter Process Interrupt) */
55 static irqreturn_t
ipi_interrupt(int irq
, void *dev_id
);
59 unsigned irq
= irq_create_mapping(NULL
, IPI_IRQ
);
60 if (request_irq(irq
, ipi_interrupt
, IRQF_PERCPU
, "ipi", NULL
))
61 pr_err("Failed to request irq %u (ipi)\n", irq
);
64 static inline unsigned int get_core_count(void)
66 /* Bits 18..21 of SYSCFGID contain the core count minus 1. */
67 unsigned int syscfgid
= get_er(SYSCFGID
);
68 return ((syscfgid
>> 18) & 0xf) + 1;
71 static inline int get_core_id(void)
73 /* Bits 0...18 of SYSCFGID contain the core id */
74 unsigned int core_id
= get_er(SYSCFGID
);
75 return core_id
& 0x3fff;
78 void __init
smp_prepare_cpus(unsigned int max_cpus
)
82 for_each_possible_cpu(i
)
83 set_cpu_present(i
, true);
86 void __init
smp_init_cpus(void)
89 unsigned int ncpus
= get_core_count();
90 unsigned int core_id
= get_core_id();
92 pr_info("%s: Core Count = %d\n", __func__
, ncpus
);
93 pr_info("%s: Core Id = %d\n", __func__
, core_id
);
95 if (ncpus
> NR_CPUS
) {
97 pr_info("%s: limiting core count by %d\n", __func__
, ncpus
);
100 for (i
= 0; i
< ncpus
; ++i
)
101 set_cpu_possible(i
, true);
104 void __init
smp_prepare_boot_cpu(void)
106 unsigned int cpu
= smp_processor_id();
108 cpu_asid_cache(cpu
) = ASID_USER_FIRST
;
111 void __init
smp_cpus_done(unsigned int max_cpus
)
115 static int boot_secondary_processors
= 1; /* Set with xt-gdb via .xt-gdb */
116 static DECLARE_COMPLETION(cpu_running
);
118 void secondary_start_kernel(void)
120 struct mm_struct
*mm
= &init_mm
;
121 unsigned int cpu
= smp_processor_id();
125 #ifdef CONFIG_DEBUG_MISC
126 if (boot_secondary_processors
== 0) {
127 pr_debug("%s: boot_secondary_processors:%d; Hanging cpu:%d\n",
128 __func__
, boot_secondary_processors
, cpu
);
130 __asm__
__volatile__ ("waiti " __stringify(LOCKLEVEL
));
133 pr_debug("%s: boot_secondary_processors:%d; Booting cpu:%d\n",
134 __func__
, boot_secondary_processors
, cpu
);
138 secondary_trap_init();
140 /* All kernel threads share the same mm context. */
144 current
->active_mm
= mm
;
145 cpumask_set_cpu(cpu
, mm_cpumask(mm
));
146 enter_lazy_tlb(mm
, current
);
149 trace_hardirqs_off();
153 notify_cpu_starting(cpu
);
155 secondary_init_irq();
156 local_timer_setup(cpu
);
158 set_cpu_online(cpu
, true);
162 complete(&cpu_running
);
164 cpu_startup_entry(CPUHP_AP_ONLINE_IDLE
);
167 static void mx_cpu_start(void *p
)
169 unsigned cpu
= (unsigned)p
;
170 unsigned long run_stall_mask
= get_er(MPSCORE
);
172 set_er(run_stall_mask
& ~(1u << cpu
), MPSCORE
);
173 pr_debug("%s: cpu: %d, run_stall_mask: %lx ---> %lx\n",
174 __func__
, cpu
, run_stall_mask
, get_er(MPSCORE
));
177 static void mx_cpu_stop(void *p
)
179 unsigned cpu
= (unsigned)p
;
180 unsigned long run_stall_mask
= get_er(MPSCORE
);
182 set_er(run_stall_mask
| (1u << cpu
), MPSCORE
);
183 pr_debug("%s: cpu: %d, run_stall_mask: %lx ---> %lx\n",
184 __func__
, cpu
, run_stall_mask
, get_er(MPSCORE
));
187 #ifdef CONFIG_HOTPLUG_CPU
188 unsigned long cpu_start_id __cacheline_aligned
;
190 unsigned long cpu_start_ccount
;
192 static int boot_secondary(unsigned int cpu
, struct task_struct
*ts
)
194 unsigned long timeout
= jiffies
+ msecs_to_jiffies(1000);
195 unsigned long ccount
;
198 #ifdef CONFIG_HOTPLUG_CPU
199 WRITE_ONCE(cpu_start_id
, cpu
);
200 /* Pairs with the third memw in the cpu_restart */
202 system_flush_invalidate_dcache_range((unsigned long)&cpu_start_id
,
203 sizeof(cpu_start_id
));
205 smp_call_function_single(0, mx_cpu_start
, (void *)cpu
, 1);
207 for (i
= 0; i
< 2; ++i
) {
209 ccount
= get_ccount();
212 WRITE_ONCE(cpu_start_ccount
, ccount
);
216 * Pairs with the first two memws in the
220 ccount
= READ_ONCE(cpu_start_ccount
);
221 } while (ccount
&& time_before(jiffies
, timeout
));
224 smp_call_function_single(0, mx_cpu_stop
,
226 WRITE_ONCE(cpu_start_ccount
, 0);
233 int __cpu_up(unsigned int cpu
, struct task_struct
*idle
)
237 if (cpu_asid_cache(cpu
) == 0)
238 cpu_asid_cache(cpu
) = ASID_USER_FIRST
;
240 start_info
.stack
= (unsigned long)task_pt_regs(idle
);
243 pr_debug("%s: Calling wakeup_secondary(cpu:%d, idle:%p, sp: %08lx)\n",
244 __func__
, cpu
, idle
, start_info
.stack
);
246 init_completion(&cpu_running
);
247 ret
= boot_secondary(cpu
, idle
);
249 wait_for_completion_timeout(&cpu_running
,
250 msecs_to_jiffies(1000));
251 if (!cpu_online(cpu
))
256 pr_err("CPU %u failed to boot\n", cpu
);
261 #ifdef CONFIG_HOTPLUG_CPU
264 * __cpu_disable runs on the processor to be shutdown.
266 int __cpu_disable(void)
268 unsigned int cpu
= smp_processor_id();
271 * Take this CPU offline. Once we clear this, we can't return,
272 * and we must not schedule until we're ready to give up the cpu.
274 set_cpu_online(cpu
, false);
277 * OK - migrate IRQs away from this CPU
282 * Flush user cache and TLB mappings, and then remove this CPU
283 * from the vm mask set of all processes.
285 local_flush_cache_all();
286 local_flush_tlb_all();
287 invalidate_page_directory();
289 clear_tasks_mm_cpumask(cpu
);
294 static void platform_cpu_kill(unsigned int cpu
)
296 smp_call_function_single(0, mx_cpu_stop
, (void *)cpu
, true);
300 * called on the thread which is asking for a CPU to be shutdown -
301 * waits until shutdown has completed, or it is timed out.
303 void __cpu_die(unsigned int cpu
)
305 unsigned long timeout
= jiffies
+ msecs_to_jiffies(1000);
306 while (time_before(jiffies
, timeout
)) {
307 system_invalidate_dcache_range((unsigned long)&cpu_start_id
,
308 sizeof(cpu_start_id
));
309 /* Pairs with the second memw in the cpu_restart */
311 if (READ_ONCE(cpu_start_id
) == -cpu
) {
312 platform_cpu_kill(cpu
);
316 pr_err("CPU%u: unable to kill\n", cpu
);
319 void arch_cpu_idle_dead(void)
324 * Called from the idle thread for the CPU which has been shutdown.
326 * Note that we disable IRQs here, but do not re-enable them
327 * before returning to the caller. This is also the behaviour
328 * of the other hotplug-cpu capable cores, so presumably coming
329 * out of idle fixes this.
331 void __ref
cpu_die(void)
335 __asm__
__volatile__(
336 " movi a2, cpu_restart\n"
340 #endif /* CONFIG_HOTPLUG_CPU */
349 static const struct {
350 const char *short_text
;
351 const char *long_text
;
353 { .short_text
= "RES", .long_text
= "Rescheduling interrupts" },
354 { .short_text
= "CAL", .long_text
= "Function call interrupts" },
355 { .short_text
= "DIE", .long_text
= "CPU shutdown interrupts" },
359 unsigned long ipi_count
[IPI_MAX
];
362 static DEFINE_PER_CPU(struct ipi_data
, ipi_data
);
364 static void send_ipi_message(const struct cpumask
*callmask
,
365 enum ipi_msg_type msg_id
)
368 unsigned long mask
= 0;
370 for_each_cpu(index
, callmask
)
373 set_er(mask
, MIPISET(msg_id
));
376 void arch_send_call_function_ipi_mask(const struct cpumask
*mask
)
378 send_ipi_message(mask
, IPI_CALL_FUNC
);
381 void arch_send_call_function_single_ipi(int cpu
)
383 send_ipi_message(cpumask_of(cpu
), IPI_CALL_FUNC
);
386 void smp_send_reschedule(int cpu
)
388 send_ipi_message(cpumask_of(cpu
), IPI_RESCHEDULE
);
391 void smp_send_stop(void)
393 struct cpumask targets
;
395 cpumask_copy(&targets
, cpu_online_mask
);
396 cpumask_clear_cpu(smp_processor_id(), &targets
);
397 send_ipi_message(&targets
, IPI_CPU_STOP
);
400 static void ipi_cpu_stop(unsigned int cpu
)
402 set_cpu_online(cpu
, false);
406 irqreturn_t
ipi_interrupt(int irq
, void *dev_id
)
408 unsigned int cpu
= smp_processor_id();
409 struct ipi_data
*ipi
= &per_cpu(ipi_data
, cpu
);
414 msg
= get_er(MIPICAUSE(cpu
));
415 set_er(msg
, MIPICAUSE(cpu
));
420 if (msg
& (1 << IPI_CALL_FUNC
)) {
421 ++ipi
->ipi_count
[IPI_CALL_FUNC
];
422 generic_smp_call_function_interrupt();
425 if (msg
& (1 << IPI_RESCHEDULE
)) {
426 ++ipi
->ipi_count
[IPI_RESCHEDULE
];
430 if (msg
& (1 << IPI_CPU_STOP
)) {
431 ++ipi
->ipi_count
[IPI_CPU_STOP
];
439 void show_ipi_list(struct seq_file
*p
, int prec
)
444 for (i
= 0; i
< IPI_MAX
; ++i
) {
445 seq_printf(p
, "%*s:", prec
, ipi_text
[i
].short_text
);
446 for_each_online_cpu(cpu
)
447 seq_printf(p
, " %10lu",
448 per_cpu(ipi_data
, cpu
).ipi_count
[i
]);
449 seq_printf(p
, " %s\n", ipi_text
[i
].long_text
);
453 int setup_profiling_timer(unsigned int multiplier
)
455 pr_debug("setup_profiling_timer %d\n", multiplier
);
459 /* TLB flush functions */
462 struct vm_area_struct
*vma
;
467 static void ipi_flush_tlb_all(void *arg
)
469 local_flush_tlb_all();
472 void flush_tlb_all(void)
474 on_each_cpu(ipi_flush_tlb_all
, NULL
, 1);
477 static void ipi_flush_tlb_mm(void *arg
)
479 local_flush_tlb_mm(arg
);
482 void flush_tlb_mm(struct mm_struct
*mm
)
484 on_each_cpu(ipi_flush_tlb_mm
, mm
, 1);
487 static void ipi_flush_tlb_page(void *arg
)
489 struct flush_data
*fd
= arg
;
490 local_flush_tlb_page(fd
->vma
, fd
->addr1
);
493 void flush_tlb_page(struct vm_area_struct
*vma
, unsigned long addr
)
495 struct flush_data fd
= {
499 on_each_cpu(ipi_flush_tlb_page
, &fd
, 1);
502 static void ipi_flush_tlb_range(void *arg
)
504 struct flush_data
*fd
= arg
;
505 local_flush_tlb_range(fd
->vma
, fd
->addr1
, fd
->addr2
);
508 void flush_tlb_range(struct vm_area_struct
*vma
,
509 unsigned long start
, unsigned long end
)
511 struct flush_data fd
= {
516 on_each_cpu(ipi_flush_tlb_range
, &fd
, 1);
519 static void ipi_flush_tlb_kernel_range(void *arg
)
521 struct flush_data
*fd
= arg
;
522 local_flush_tlb_kernel_range(fd
->addr1
, fd
->addr2
);
525 void flush_tlb_kernel_range(unsigned long start
, unsigned long end
)
527 struct flush_data fd
= {
531 on_each_cpu(ipi_flush_tlb_kernel_range
, &fd
, 1);
534 /* Cache flush functions */
536 static void ipi_flush_cache_all(void *arg
)
538 local_flush_cache_all();
541 void flush_cache_all(void)
543 on_each_cpu(ipi_flush_cache_all
, NULL
, 1);
546 static void ipi_flush_cache_page(void *arg
)
548 struct flush_data
*fd
= arg
;
549 local_flush_cache_page(fd
->vma
, fd
->addr1
, fd
->addr2
);
552 void flush_cache_page(struct vm_area_struct
*vma
,
553 unsigned long address
, unsigned long pfn
)
555 struct flush_data fd
= {
560 on_each_cpu(ipi_flush_cache_page
, &fd
, 1);
563 static void ipi_flush_cache_range(void *arg
)
565 struct flush_data
*fd
= arg
;
566 local_flush_cache_range(fd
->vma
, fd
->addr1
, fd
->addr2
);
569 void flush_cache_range(struct vm_area_struct
*vma
,
570 unsigned long start
, unsigned long end
)
572 struct flush_data fd
= {
577 on_each_cpu(ipi_flush_cache_range
, &fd
, 1);
580 static void ipi_flush_icache_range(void *arg
)
582 struct flush_data
*fd
= arg
;
583 local_flush_icache_range(fd
->addr1
, fd
->addr2
);
586 void flush_icache_range(unsigned long start
, unsigned long end
)
588 struct flush_data fd
= {
592 on_each_cpu(ipi_flush_icache_range
, &fd
, 1);
594 EXPORT_SYMBOL(flush_icache_range
);
596 /* ------------------------------------------------------------------------- */
598 static void ipi_invalidate_dcache_range(void *arg
)
600 struct flush_data
*fd
= arg
;
601 __invalidate_dcache_range(fd
->addr1
, fd
->addr2
);
604 static void system_invalidate_dcache_range(unsigned long start
,
607 struct flush_data fd
= {
611 on_each_cpu(ipi_invalidate_dcache_range
, &fd
, 1);
614 static void ipi_flush_invalidate_dcache_range(void *arg
)
616 struct flush_data
*fd
= arg
;
617 __flush_invalidate_dcache_range(fd
->addr1
, fd
->addr2
);
620 static void system_flush_invalidate_dcache_range(unsigned long start
,
623 struct flush_data fd
= {
627 on_each_cpu(ipi_flush_invalidate_dcache_range
, &fd
, 1);