blob: 80024c4f2093cbcbf5b4e953b54f16bb5a52d963 [file] [log] [blame]
David Howellsae3a1972012-03-28 18:30:02 +01001/*
2 * Copyright (C) 1999 Cort Dougan <cort@cs.nmt.edu>
3 */
4#ifndef _ASM_POWERPC_BARRIER_H
5#define _ASM_POWERPC_BARRIER_H
6
7/*
8 * Memory barrier.
9 * The sync instruction guarantees that all memory accesses initiated
10 * by this processor have been performed (with respect to all other
11 * mechanisms that access memory). The eieio instruction is a barrier
12 * providing an ordering (separately) for (a) cacheable stores and (b)
13 * loads and stores to non-cacheable memory (e.g. I/O devices).
14 *
15 * mb() prevents loads and stores being reordered across this point.
16 * rmb() prevents loads being reordered across this point.
17 * wmb() prevents stores being reordered across this point.
18 * read_barrier_depends() prevents data-dependent loads being reordered
19 * across this point (nop on PPC).
20 *
21 * *mb() variants without smp_ prefix must order all types of memory
22 * operations with one another. sync is the only instruction sufficient
23 * to do this.
24 *
25 * For the smp_ barriers, ordering is for cacheable memory operations
26 * only. We have to use the sync instruction for smp_mb(), since lwsync
27 * doesn't order loads with respect to previous stores. Lwsync can be
28 * used for smp_rmb() and smp_wmb().
29 *
30 * However, on CPUs that don't support lwsync, lwsync actually maps to a
31 * heavy-weight sync, so smp_wmb() can be a lighter-weight eieio.
32 */
33#define mb() __asm__ __volatile__ ("sync" : : : "memory")
34#define rmb() __asm__ __volatile__ ("sync" : : : "memory")
35#define wmb() __asm__ __volatile__ ("sync" : : : "memory")
David Howellsae3a1972012-03-28 18:30:02 +010036
Nicholas Piggin59f404e2018-03-22 20:41:46 +100037/* The sub-arch has lwsync */
38#if defined(__powerpc64__) || defined(CONFIG_PPC_E500MC)
David Howellsae3a1972012-03-28 18:30:02 +010039# define SMPWMB LWSYNC
40#else
41# define SMPWMB eieio
42#endif
43
Peter Zijlstra47933ad2013-11-06 14:57:36 +010044#define __lwsync() __asm__ __volatile__ (stringify_in_c(LWSYNC) : : :"memory")
Alexander Duyck1077fa32014-12-11 15:02:06 -080045#define dma_rmb() __lwsync()
46#define dma_wmb() __asm__ __volatile__ (stringify_in_c(SMPWMB) : : :"memory")
47
Michael S. Tsirkin003472a2015-12-27 15:04:42 +020048#define __smp_lwsync() __lwsync()
Peter Zijlstra47933ad2013-11-06 14:57:36 +010049
Michael S. Tsirkin003472a2015-12-27 15:04:42 +020050#define __smp_mb() mb()
51#define __smp_rmb() __lwsync()
52#define __smp_wmb() __asm__ __volatile__ (stringify_in_c(SMPWMB) : : :"memory")
David Howellsae3a1972012-03-28 18:30:02 +010053
54/*
55 * This is a barrier which prevents following instructions from being
56 * started until the value of the argument x is known. For example, if
57 * x is a variable loaded from memory, this prevents following
58 * instructions from being executed until the load has been performed.
59 */
60#define data_barrier(x) \
61 asm volatile("twi 0,%0,0; isync" : : "r" (x) : "memory");
62
Michael S. Tsirkin003472a2015-12-27 15:04:42 +020063#define __smp_store_release(p, v) \
Peter Zijlstra47933ad2013-11-06 14:57:36 +010064do { \
65 compiletime_assert_atomic_type(*p); \
Michael S. Tsirkin003472a2015-12-27 15:04:42 +020066 __smp_lwsync(); \
Andrey Konovalov76695af2015-08-02 17:11:04 +020067 WRITE_ONCE(*p, v); \
Peter Zijlstra47933ad2013-11-06 14:57:36 +010068} while (0)
69
Michael S. Tsirkin003472a2015-12-27 15:04:42 +020070#define __smp_load_acquire(p) \
Peter Zijlstra47933ad2013-11-06 14:57:36 +010071({ \
Andrey Konovalov76695af2015-08-02 17:11:04 +020072 typeof(*p) ___p1 = READ_ONCE(*p); \
Peter Zijlstra47933ad2013-11-06 14:57:36 +010073 compiletime_assert_atomic_type(*p); \
Michael S. Tsirkin003472a2015-12-27 15:04:42 +020074 __smp_lwsync(); \
Peter Zijlstra47933ad2013-11-06 14:57:36 +010075 ___p1; \
76})
77
Paul E. McKenneya76ff682015-04-01 08:19:59 -070078#define smp_mb__before_spinlock() smp_mb()
Peter Zijlstrac6450732014-03-13 19:00:35 +010079
Diana Craciuna299c072019-04-11 21:46:11 +100080#ifdef CONFIG_PPC_BOOK3S_64
81#define NOSPEC_BARRIER_SLOT nop
82#elif defined(CONFIG_PPC_FSL_BOOK3E)
83#define NOSPEC_BARRIER_SLOT nop; nop
84#endif
85
Michael Ellerman2f8703f2019-04-11 21:46:08 +100086#ifdef CONFIG_PPC_BARRIER_NOSPEC
Michal Suchanek4314e772019-04-11 21:45:57 +100087/*
88 * Prevent execution of subsequent instructions until preceding branches have
89 * been fully resolved and are no longer executing speculatively.
90 */
Diana Craciuna299c072019-04-11 21:46:11 +100091#define barrier_nospec_asm NOSPEC_BARRIER_FIXUP_SECTION; NOSPEC_BARRIER_SLOT
Michal Suchanek4314e772019-04-11 21:45:57 +100092
93// This also acts as a compiler barrier due to the memory clobber.
94#define barrier_nospec() asm (stringify_in_c(barrier_nospec_asm) ::: "memory")
95
Michael Ellerman2f8703f2019-04-11 21:46:08 +100096#else /* !CONFIG_PPC_BARRIER_NOSPEC */
Michal Suchanek4314e772019-04-11 21:45:57 +100097#define barrier_nospec_asm
98#define barrier_nospec()
Michael Ellerman2f8703f2019-04-11 21:46:08 +100099#endif /* CONFIG_PPC_BARRIER_NOSPEC */
Michal Suchanek4314e772019-04-11 21:45:57 +1000100
Michael S. Tsirkinfbd7ec02015-12-21 09:22:18 +0200101#include <asm-generic/barrier.h>
102
David Howellsae3a1972012-03-28 18:30:02 +0100103#endif /* _ASM_POWERPC_BARRIER_H */