arm64: dts: Revert "specify console via command line"
[linux/fpc-iii.git] / arch / powerpc / kernel / dbell.c
blobf17ff1200eaaefa77b22f9c20f0a1d0559a47e70
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Author: Kumar Gala <galak@kernel.crashing.org>
5 * Copyright 2009 Freescale Semiconductor Inc.
6 */
8 #include <linux/stddef.h>
9 #include <linux/kernel.h>
10 #include <linux/smp.h>
11 #include <linux/threads.h>
12 #include <linux/hardirq.h>
14 #include <asm/dbell.h>
15 #include <asm/irq_regs.h>
16 #include <asm/kvm_ppc.h>
17 #include <asm/trace.h>
19 #ifdef CONFIG_SMP
22 * Doorbells must only be used if CPU_FTR_DBELL is available.
23 * msgsnd is used in HV, and msgsndp is used in !HV.
25 * These should be used by platform code that is aware of restrictions.
26 * Other arch code should use ->cause_ipi.
28 * doorbell_global_ipi() sends a dbell to any target CPU.
29 * Must be used only by architectures that address msgsnd target
30 * by PIR/get_hard_smp_processor_id.
32 void doorbell_global_ipi(int cpu)
34 u32 tag = get_hard_smp_processor_id(cpu);
36 kvmppc_set_host_ipi(cpu);
37 /* Order previous accesses vs. msgsnd, which is treated as a store */
38 ppc_msgsnd_sync();
39 ppc_msgsnd(PPC_DBELL_MSGTYPE, 0, tag);
43 * doorbell_core_ipi() sends a dbell to a target CPU in the same core.
44 * Must be used only by architectures that address msgsnd target
45 * by TIR/cpu_thread_in_core.
47 void doorbell_core_ipi(int cpu)
49 u32 tag = cpu_thread_in_core(cpu);
51 kvmppc_set_host_ipi(cpu);
52 /* Order previous accesses vs. msgsnd, which is treated as a store */
53 ppc_msgsnd_sync();
54 ppc_msgsnd(PPC_DBELL_MSGTYPE, 0, tag);
58 * Attempt to cause a core doorbell if destination is on the same core.
59 * Returns 1 on success, 0 on failure.
61 int doorbell_try_core_ipi(int cpu)
63 int this_cpu = get_cpu();
64 int ret = 0;
66 if (cpumask_test_cpu(cpu, cpu_sibling_mask(this_cpu))) {
67 doorbell_core_ipi(cpu);
68 ret = 1;
71 put_cpu();
73 return ret;
76 void doorbell_exception(struct pt_regs *regs)
78 struct pt_regs *old_regs = set_irq_regs(regs);
80 irq_enter();
81 trace_doorbell_entry(regs);
83 ppc_msgsync();
85 may_hard_irq_enable();
87 kvmppc_clear_host_ipi(smp_processor_id());
88 __this_cpu_inc(irq_stat.doorbell_irqs);
90 smp_ipi_demux_relaxed(); /* already performed the barrier */
92 trace_doorbell_exit(regs);
93 irq_exit();
94 set_irq_regs(old_regs);
96 #else /* CONFIG_SMP */
97 void doorbell_exception(struct pt_regs *regs)
99 printk(KERN_WARNING "Received doorbell on non-smp system\n");
101 #endif /* CONFIG_SMP */