blob: f17ff1200eaaefa77b22f9c20f0a1d0559a47e70 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-or-later
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Author: Kumar Gala <galak@kernel.crashing.org>
4 *
5 * Copyright 2009 Freescale Semiconductor Inc.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00006 */
7
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>
13
14#include <asm/dbell.h>
15#include <asm/irq_regs.h>
16#include <asm/kvm_ppc.h>
David Brazdil0f672f62019-12-10 10:32:29 +000017#include <asm/trace.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000018
19#ifdef CONFIG_SMP
20
21/*
22 * Doorbells must only be used if CPU_FTR_DBELL is available.
23 * msgsnd is used in HV, and msgsndp is used in !HV.
24 *
25 * These should be used by platform code that is aware of restrictions.
26 * Other arch code should use ->cause_ipi.
27 *
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.
31 */
32void doorbell_global_ipi(int cpu)
33{
34 u32 tag = get_hard_smp_processor_id(cpu);
35
David Brazdil0f672f62019-12-10 10:32:29 +000036 kvmppc_set_host_ipi(cpu);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000037 /* Order previous accesses vs. msgsnd, which is treated as a store */
38 ppc_msgsnd_sync();
39 ppc_msgsnd(PPC_DBELL_MSGTYPE, 0, tag);
40}
41
42/*
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.
46 */
47void doorbell_core_ipi(int cpu)
48{
49 u32 tag = cpu_thread_in_core(cpu);
50
David Brazdil0f672f62019-12-10 10:32:29 +000051 kvmppc_set_host_ipi(cpu);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000052 /* Order previous accesses vs. msgsnd, which is treated as a store */
53 ppc_msgsnd_sync();
54 ppc_msgsnd(PPC_DBELL_MSGTYPE, 0, tag);
55}
56
57/*
58 * Attempt to cause a core doorbell if destination is on the same core.
59 * Returns 1 on success, 0 on failure.
60 */
61int doorbell_try_core_ipi(int cpu)
62{
63 int this_cpu = get_cpu();
64 int ret = 0;
65
66 if (cpumask_test_cpu(cpu, cpu_sibling_mask(this_cpu))) {
67 doorbell_core_ipi(cpu);
68 ret = 1;
69 }
70
71 put_cpu();
72
73 return ret;
74}
75
76void doorbell_exception(struct pt_regs *regs)
77{
78 struct pt_regs *old_regs = set_irq_regs(regs);
79
80 irq_enter();
David Brazdil0f672f62019-12-10 10:32:29 +000081 trace_doorbell_entry(regs);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000082
83 ppc_msgsync();
84
85 may_hard_irq_enable();
86
David Brazdil0f672f62019-12-10 10:32:29 +000087 kvmppc_clear_host_ipi(smp_processor_id());
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000088 __this_cpu_inc(irq_stat.doorbell_irqs);
89
90 smp_ipi_demux_relaxed(); /* already performed the barrier */
91
David Brazdil0f672f62019-12-10 10:32:29 +000092 trace_doorbell_exit(regs);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000093 irq_exit();
94 set_irq_regs(old_regs);
95}
96#else /* CONFIG_SMP */
97void doorbell_exception(struct pt_regs *regs)
98{
99 printk(KERN_WARNING "Received doorbell on non-smp system\n");
100}
101#endif /* CONFIG_SMP */
102