]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
powerpc: Introduce msgsnd/doorbell barrier primitives
authorNicholas Piggin <npiggin@gmail.com>
Thu, 13 Apr 2017 10:16:22 +0000 (20:16 +1000)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 13 Apr 2017 13:34:33 +0000 (23:34 +1000)
POWER9 changes requirements and adds new instructions for
synchronization.

Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/include/asm/dbell.h
arch/powerpc/include/asm/smp.h
arch/powerpc/kernel/dbell.c
arch/powerpc/kernel/smp.c

index a66eb596940cb7fb5102676e25e4b04ebbf9ffb1..350694a1a6e592761bcdfba93b4c004465698574 100644 (file)
@@ -44,6 +44,17 @@ static inline void _ppc_msgsnd(u32 msg)
                __asm__ __volatile__ (PPC_MSGSNDP(%0) : : "r" (msg));
 }
 
+/* sync before sending message */
+static inline void ppc_msgsnd_sync(void)
+{
+       __asm__ __volatile__ ("sync" : : : "memory");
+}
+
+/* sync after taking message interrupt */
+static inline void ppc_msgsync(void)
+{
+}
+
 #else /* CONFIG_PPC_BOOK3S */
 
 #define PPC_DBELL_MSGTYPE              PPC_DBELL
@@ -53,6 +64,17 @@ static inline void _ppc_msgsnd(u32 msg)
        __asm__ __volatile__ (PPC_MSGSND(%0) : : "r" (msg));
 }
 
+/* sync before sending message */
+static inline void ppc_msgsnd_sync(void)
+{
+       __asm__ __volatile__ ("sync" : : : "memory");
+}
+
+/* sync after taking message interrupt */
+static inline void ppc_msgsync(void)
+{
+}
+
 #endif /* CONFIG_PPC_BOOK3S */
 
 extern void doorbell_global_ipi(int cpu);
index d9ed3b02615e7f493e8e074a3cd50f11f69acd50..751b2bd944fcad396f16f948cd1aa1c26a2e3874 100644 (file)
@@ -128,6 +128,7 @@ extern const char *smp_ipi_name[];
 extern void smp_muxed_ipi_message_pass(int cpu, int msg);
 extern void smp_muxed_ipi_set_message(int cpu, int msg);
 extern irqreturn_t smp_ipi_demux(void);
+extern irqreturn_t smp_ipi_demux_relaxed(void);
 
 void smp_init_pSeries(void);
 void smp_init_cell(void);
index 5869c66adfd0bbef77e0f4cc624378e919828668..b6fe883b1016dd395a21c0ec4c64867c2d208b57 100644 (file)
@@ -38,7 +38,7 @@ void doorbell_global_ipi(int cpu)
 
        kvmppc_set_host_ipi(cpu, 1);
        /* Order previous accesses vs. msgsnd, which is treated as a store */
-       mb();
+       ppc_msgsnd_sync();
        ppc_msgsnd(PPC_DBELL_MSGTYPE, 0, tag);
 }
 
@@ -53,7 +53,7 @@ void doorbell_core_ipi(int cpu)
 
        kvmppc_set_host_ipi(cpu, 1);
        /* Order previous accesses vs. msgsnd, which is treated as a store */
-       mb();
+       ppc_msgsnd_sync();
        ppc_msgsnd(PPC_DBELL_MSGTYPE, 0, tag);
 }
 
@@ -82,12 +82,14 @@ void doorbell_exception(struct pt_regs *regs)
 
        irq_enter();
 
+       ppc_msgsync();
+
        may_hard_irq_enable();
 
        kvmppc_set_host_ipi(smp_processor_id(), 0);
        __this_cpu_inc(irq_stat.doorbell_irqs);
 
-       smp_ipi_demux();
+       smp_ipi_demux_relaxed(); /* already performed the barrier */
 
        irq_exit();
        set_irq_regs(old_regs);
index 17de938d41c5df26ebcd6c5138f5c4d432f0aded..2eca1e491e2b806a20dac2c3266bca401a44c982 100644 (file)
@@ -245,12 +245,18 @@ void smp_muxed_ipi_message_pass(int cpu, int msg)
 #endif
 
 irqreturn_t smp_ipi_demux(void)
+{
+       mb();   /* order any irq clear */
+
+       return smp_ipi_demux_relaxed();
+}
+
+/* sync-free variant. Callers should ensure synchronization */
+irqreturn_t smp_ipi_demux_relaxed(void)
 {
        struct cpu_messages *info;
        unsigned long all;
 
-       mb();   /* order any irq clear */
-
        info = this_cpu_ptr(&ipi_message);
        do {
                all = xchg(&info->messages, 0);