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/profile.h>
25 #include <linux/sched/mm.h>
26 #include <linux/sched/hotplug.h>
27 #include <linux/sched/task_stack.h>
28 #include <linux/reboot.h>
29 #include <linux/seq_file.h>
30 #include <linux/smp.h>
31 #include <linux/thread_info.h>
33 #include <asm/cacheflush.h>
34 #include <asm/coprocessor.h>
35 #include <asm/kdebug.h>
36 #include <asm/mmu_context.h>
37 #include <asm/mxregs.h>
38 #include <asm/platform.h>
39 #include <asm/tlbflush.h>
40 #include <asm/traps.h>
43 # if XCHAL_HAVE_S32C1I == 0
44 # error "The S32C1I option is required for SMP."
48 static void system_invalidate_dcache_range(unsigned long start
,
50 static void system_flush_invalidate_dcache_range(unsigned long start
,
53 /* IPI (Inter Process Interrupt) */
57 static irqreturn_t
ipi_interrupt(int irq
, void *dev_id
);
61 unsigned irq
= irq_create_mapping(NULL
, IPI_IRQ
);
62 if (request_irq(irq
, ipi_interrupt
, IRQF_PERCPU
, "ipi", NULL
))
63 pr_err("Failed to request irq %u (ipi)\n", irq
);
66 static inline unsigned int get_core_count(void)
68 /* Bits 18..21 of SYSCFGID contain the core count minus 1. */
69 unsigned int syscfgid
= get_er(SYSCFGID
);
70 return ((syscfgid
>> 18) & 0xf) + 1;
73 static inline int get_core_id(void)
75 /* Bits 0...18 of SYSCFGID contain the core id */
76 unsigned int core_id
= get_er(SYSCFGID
);
77 return core_id
& 0x3fff;
80 void __init
smp_prepare_cpus(unsigned int max_cpus
)
84 for_each_possible_cpu(i
)
85 set_cpu_present(i
, true);
88 void __init
smp_init_cpus(void)
91 unsigned int ncpus
= get_core_count();
92 unsigned int core_id
= get_core_id();
94 pr_info("%s: Core Count = %d\n", __func__
, ncpus
);
95 pr_info("%s: Core Id = %d\n", __func__
, core_id
);
97 if (ncpus
> NR_CPUS
) {
99 pr_info("%s: limiting core count by %d\n", __func__
, ncpus
);
102 for (i
= 0; i
< ncpus
; ++i
)
103 set_cpu_possible(i
, true);
106 void __init
smp_prepare_boot_cpu(void)
108 unsigned int cpu
= smp_processor_id();
110 cpu_asid_cache(cpu
) = ASID_USER_FIRST
;
113 void __init
smp_cpus_done(unsigned int max_cpus
)
117 static int boot_secondary_processors
= 1; /* Set with xt-gdb via .xt-gdb */
118 static DECLARE_COMPLETION(cpu_running
);
120 void secondary_start_kernel(void)
122 struct mm_struct
*mm
= &init_mm
;
123 unsigned int cpu
= smp_processor_id();
127 #ifdef CONFIG_DEBUG_MISC
128 if (boot_secondary_processors
== 0) {
129 pr_debug("%s: boot_secondary_processors:%d; Hanging cpu:%d\n",
130 __func__
, boot_secondary_processors
, cpu
);
132 __asm__
__volatile__ ("waiti " __stringify(LOCKLEVEL
));
135 pr_debug("%s: boot_secondary_processors:%d; Booting cpu:%d\n",
136 __func__
, boot_secondary_processors
, cpu
);
140 secondary_trap_init();
142 /* All kernel threads share the same mm context. */
146 current
->active_mm
= mm
;
147 cpumask_set_cpu(cpu
, mm_cpumask(mm
));
148 enter_lazy_tlb(mm
, current
);
150 trace_hardirqs_off();
154 notify_cpu_starting(cpu
);
156 secondary_init_irq();
157 local_timer_setup(cpu
);
159 set_cpu_online(cpu
, true);
163 complete(&cpu_running
);
165 cpu_startup_entry(CPUHP_AP_ONLINE_IDLE
);
168 static void mx_cpu_start(void *p
)
170 unsigned cpu
= (unsigned)p
;
171 unsigned long run_stall_mask
= get_er(MPSCORE
);
173 set_er(run_stall_mask
& ~(1u << cpu
), MPSCORE
);
174 pr_debug("%s: cpu: %d, run_stall_mask: %lx ---> %lx\n",
175 __func__
, cpu
, run_stall_mask
, get_er(MPSCORE
));
178 static void mx_cpu_stop(void *p
)
180 unsigned cpu
= (unsigned)p
;
181 unsigned long run_stall_mask
= get_er(MPSCORE
);
183 set_er(run_stall_mask
| (1u << cpu
), MPSCORE
);
184 pr_debug("%s: cpu: %d, run_stall_mask: %lx ---> %lx\n",
185 __func__
, cpu
, run_stall_mask
, get_er(MPSCORE
));
188 #ifdef CONFIG_HOTPLUG_CPU
189 unsigned long cpu_start_id __cacheline_aligned
;
191 unsigned long cpu_start_ccount
;
193 static int boot_secondary(unsigned int cpu
, struct task_struct
*ts
)
195 unsigned long timeout
= jiffies
+ msecs_to_jiffies(1000);
196 unsigned long ccount
;
199 #ifdef CONFIG_HOTPLUG_CPU
200 WRITE_ONCE(cpu_start_id
, cpu
);
201 /* Pairs with the third memw in the cpu_restart */
203 system_flush_invalidate_dcache_range((unsigned long)&cpu_start_id
,
204 sizeof(cpu_start_id
));
206 smp_call_function_single(0, mx_cpu_start
, (void *)cpu
, 1);
208 for (i
= 0; i
< 2; ++i
) {
210 ccount
= get_ccount();
213 WRITE_ONCE(cpu_start_ccount
, ccount
);
217 * Pairs with the first two memws in the
221 ccount
= READ_ONCE(cpu_start_ccount
);
222 } while (ccount
&& time_before(jiffies
, timeout
));
225 smp_call_function_single(0, mx_cpu_stop
,
227 WRITE_ONCE(cpu_start_ccount
, 0);
234 int __cpu_up(unsigned int cpu
, struct task_struct
*idle
)
238 if (cpu_asid_cache(cpu
) == 0)
239 cpu_asid_cache(cpu
) = ASID_USER_FIRST
;
241 start_info
.stack
= (unsigned long)task_pt_regs(idle
);
244 pr_debug("%s: Calling wakeup_secondary(cpu:%d, idle:%p, sp: %08lx)\n",
245 __func__
, cpu
, idle
, start_info
.stack
);
247 init_completion(&cpu_running
);
248 ret
= boot_secondary(cpu
, idle
);
250 wait_for_completion_timeout(&cpu_running
,
251 msecs_to_jiffies(1000));
252 if (!cpu_online(cpu
))
257 pr_err("CPU %u failed to boot\n", cpu
);
262 #ifdef CONFIG_HOTPLUG_CPU
265 * __cpu_disable runs on the processor to be shutdown.
267 int __cpu_disable(void)
269 unsigned int cpu
= smp_processor_id();
272 * Take this CPU offline. Once we clear this, we can't return,
273 * and we must not schedule until we're ready to give up the cpu.
275 set_cpu_online(cpu
, false);
277 #if XTENSA_HAVE_COPROCESSORS
279 * Flush coprocessor contexts that are active on the current CPU.
281 local_coprocessors_flush_release_all();
284 * OK - migrate IRQs away from this CPU
289 * Flush user cache and TLB mappings, and then remove this CPU
290 * from the vm mask set of all processes.
292 local_flush_cache_all();
293 local_flush_tlb_all();
294 invalidate_page_directory();
296 clear_tasks_mm_cpumask(cpu
);
301 static void platform_cpu_kill(unsigned int cpu
)
303 smp_call_function_single(0, mx_cpu_stop
, (void *)cpu
, true);
307 * called on the thread which is asking for a CPU to be shutdown -
308 * waits until shutdown has completed, or it is timed out.
310 void __cpu_die(unsigned int cpu
)
312 unsigned long timeout
= jiffies
+ msecs_to_jiffies(1000);
313 while (time_before(jiffies
, timeout
)) {
314 system_invalidate_dcache_range((unsigned long)&cpu_start_id
,
315 sizeof(cpu_start_id
));
316 /* Pairs with the second memw in the cpu_restart */
318 if (READ_ONCE(cpu_start_id
) == -cpu
) {
319 platform_cpu_kill(cpu
);
323 pr_err("CPU%u: unable to kill\n", cpu
);
326 void __noreturn
arch_cpu_idle_dead(void)
331 * Called from the idle thread for the CPU which has been shutdown.
333 * Note that we disable IRQs here, but do not re-enable them
334 * before returning to the caller. This is also the behaviour
335 * of the other hotplug-cpu capable cores, so presumably coming
336 * out of idle fixes this.
338 void __ref
cpu_die(void)
342 __asm__
__volatile__(
343 " movi a2, cpu_restart\n"
349 #endif /* CONFIG_HOTPLUG_CPU */
358 static const struct {
359 const char *short_text
;
360 const char *long_text
;
362 { .short_text
= "RES", .long_text
= "Rescheduling interrupts" },
363 { .short_text
= "CAL", .long_text
= "Function call interrupts" },
364 { .short_text
= "DIE", .long_text
= "CPU shutdown interrupts" },
368 unsigned long ipi_count
[IPI_MAX
];
371 static DEFINE_PER_CPU(struct ipi_data
, ipi_data
);
373 static void send_ipi_message(const struct cpumask
*callmask
,
374 enum ipi_msg_type msg_id
)
377 unsigned long mask
= 0;
379 for_each_cpu(index
, callmask
)
382 set_er(mask
, MIPISET(msg_id
));
385 void arch_send_call_function_ipi_mask(const struct cpumask
*mask
)
387 send_ipi_message(mask
, IPI_CALL_FUNC
);
390 void arch_send_call_function_single_ipi(int cpu
)
392 send_ipi_message(cpumask_of(cpu
), IPI_CALL_FUNC
);
395 void arch_smp_send_reschedule(int cpu
)
397 send_ipi_message(cpumask_of(cpu
), IPI_RESCHEDULE
);
400 void smp_send_stop(void)
402 struct cpumask targets
;
404 cpumask_copy(&targets
, cpu_online_mask
);
405 cpumask_clear_cpu(smp_processor_id(), &targets
);
406 send_ipi_message(&targets
, IPI_CPU_STOP
);
409 static void ipi_cpu_stop(unsigned int cpu
)
411 set_cpu_online(cpu
, false);
415 irqreturn_t
ipi_interrupt(int irq
, void *dev_id
)
417 unsigned int cpu
= smp_processor_id();
418 struct ipi_data
*ipi
= &per_cpu(ipi_data
, cpu
);
423 msg
= get_er(MIPICAUSE(cpu
));
424 set_er(msg
, MIPICAUSE(cpu
));
429 if (msg
& (1 << IPI_CALL_FUNC
)) {
430 ++ipi
->ipi_count
[IPI_CALL_FUNC
];
431 generic_smp_call_function_interrupt();
434 if (msg
& (1 << IPI_RESCHEDULE
)) {
435 ++ipi
->ipi_count
[IPI_RESCHEDULE
];
439 if (msg
& (1 << IPI_CPU_STOP
)) {
440 ++ipi
->ipi_count
[IPI_CPU_STOP
];
448 void show_ipi_list(struct seq_file
*p
, int prec
)
453 for (i
= 0; i
< IPI_MAX
; ++i
) {
454 seq_printf(p
, "%*s:", prec
, ipi_text
[i
].short_text
);
455 for_each_online_cpu(cpu
)
456 seq_printf(p
, " %10lu",
457 per_cpu(ipi_data
, cpu
).ipi_count
[i
]);
458 seq_printf(p
, " %s\n", ipi_text
[i
].long_text
);
462 int setup_profiling_timer(unsigned int multiplier
)
464 pr_debug("setup_profiling_timer %d\n", multiplier
);
468 /* TLB flush functions */
471 struct vm_area_struct
*vma
;
476 static void ipi_flush_tlb_all(void *arg
)
478 local_flush_tlb_all();
481 void flush_tlb_all(void)
483 on_each_cpu(ipi_flush_tlb_all
, NULL
, 1);
486 static void ipi_flush_tlb_mm(void *arg
)
488 local_flush_tlb_mm(arg
);
491 void flush_tlb_mm(struct mm_struct
*mm
)
493 on_each_cpu(ipi_flush_tlb_mm
, mm
, 1);
496 static void ipi_flush_tlb_page(void *arg
)
498 struct flush_data
*fd
= arg
;
499 local_flush_tlb_page(fd
->vma
, fd
->addr1
);
502 void flush_tlb_page(struct vm_area_struct
*vma
, unsigned long addr
)
504 struct flush_data fd
= {
508 on_each_cpu(ipi_flush_tlb_page
, &fd
, 1);
511 static void ipi_flush_tlb_range(void *arg
)
513 struct flush_data
*fd
= arg
;
514 local_flush_tlb_range(fd
->vma
, fd
->addr1
, fd
->addr2
);
517 void flush_tlb_range(struct vm_area_struct
*vma
,
518 unsigned long start
, unsigned long end
)
520 struct flush_data fd
= {
525 on_each_cpu(ipi_flush_tlb_range
, &fd
, 1);
528 static void ipi_flush_tlb_kernel_range(void *arg
)
530 struct flush_data
*fd
= arg
;
531 local_flush_tlb_kernel_range(fd
->addr1
, fd
->addr2
);
534 void flush_tlb_kernel_range(unsigned long start
, unsigned long end
)
536 struct flush_data fd
= {
540 on_each_cpu(ipi_flush_tlb_kernel_range
, &fd
, 1);
543 /* Cache flush functions */
545 static void ipi_flush_cache_all(void *arg
)
547 local_flush_cache_all();
550 void flush_cache_all(void)
552 on_each_cpu(ipi_flush_cache_all
, NULL
, 1);
555 static void ipi_flush_cache_page(void *arg
)
557 struct flush_data
*fd
= arg
;
558 local_flush_cache_page(fd
->vma
, fd
->addr1
, fd
->addr2
);
561 void flush_cache_page(struct vm_area_struct
*vma
,
562 unsigned long address
, unsigned long pfn
)
564 struct flush_data fd
= {
569 on_each_cpu(ipi_flush_cache_page
, &fd
, 1);
572 static void ipi_flush_cache_range(void *arg
)
574 struct flush_data
*fd
= arg
;
575 local_flush_cache_range(fd
->vma
, fd
->addr1
, fd
->addr2
);
578 void flush_cache_range(struct vm_area_struct
*vma
,
579 unsigned long start
, unsigned long end
)
581 struct flush_data fd
= {
586 on_each_cpu(ipi_flush_cache_range
, &fd
, 1);
589 static void ipi_flush_icache_range(void *arg
)
591 struct flush_data
*fd
= arg
;
592 local_flush_icache_range(fd
->addr1
, fd
->addr2
);
595 void flush_icache_range(unsigned long start
, unsigned long end
)
597 struct flush_data fd
= {
601 on_each_cpu(ipi_flush_icache_range
, &fd
, 1);
603 EXPORT_SYMBOL(flush_icache_range
);
605 /* ------------------------------------------------------------------------- */
607 static void ipi_invalidate_dcache_range(void *arg
)
609 struct flush_data
*fd
= arg
;
610 __invalidate_dcache_range(fd
->addr1
, fd
->addr2
);
613 static void system_invalidate_dcache_range(unsigned long start
,
616 struct flush_data fd
= {
620 on_each_cpu(ipi_invalidate_dcache_range
, &fd
, 1);
623 static void ipi_flush_invalidate_dcache_range(void *arg
)
625 struct flush_data
*fd
= arg
;
626 __flush_invalidate_dcache_range(fd
->addr1
, fd
->addr2
);
629 static void system_flush_invalidate_dcache_range(unsigned long start
,
632 struct flush_data fd
= {
636 on_each_cpu(ipi_flush_invalidate_dcache_range
, &fd
, 1);