2006-10-31 10:45:07 +07:00
|
|
|
/*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 by Ralf Baechle (ralf@linux-mips.org)
|
|
|
|
*/
|
|
|
|
#ifndef __ASM_BARRIER_H
|
|
|
|
#define __ASM_BARRIER_H
|
|
|
|
|
2012-03-29 00:30:02 +07:00
|
|
|
#include <asm/addrspace.h>
|
|
|
|
|
2006-10-31 10:45:07 +07:00
|
|
|
#define read_barrier_depends() do { } while(0)
|
|
|
|
#define smp_read_barrier_depends() do { } while(0)
|
|
|
|
|
|
|
|
#ifdef CONFIG_CPU_HAS_SYNC
|
|
|
|
#define __sync() \
|
|
|
|
__asm__ __volatile__( \
|
|
|
|
".set push\n\t" \
|
|
|
|
".set noreorder\n\t" \
|
|
|
|
".set mips2\n\t" \
|
|
|
|
"sync\n\t" \
|
|
|
|
".set pop" \
|
|
|
|
: /* no output */ \
|
|
|
|
: /* no input */ \
|
|
|
|
: "memory")
|
|
|
|
#else
|
|
|
|
#define __sync() do { } while(0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define __fast_iob() \
|
|
|
|
__asm__ __volatile__( \
|
|
|
|
".set push\n\t" \
|
|
|
|
".set noreorder\n\t" \
|
|
|
|
"lw $0,%0\n\t" \
|
|
|
|
"nop\n\t" \
|
|
|
|
".set pop" \
|
|
|
|
: /* no output */ \
|
|
|
|
: "m" (*(int *)CKSEG1) \
|
|
|
|
: "memory")
|
2010-01-09 08:17:44 +07:00
|
|
|
#ifdef CONFIG_CPU_CAVIUM_OCTEON
|
|
|
|
# define OCTEON_SYNCW_STR ".set push\n.set arch=octeon\nsyncw\nsyncw\n.set pop\n"
|
2013-01-22 18:59:30 +07:00
|
|
|
# define __syncw() __asm__ __volatile__(OCTEON_SYNCW_STR : : : "memory")
|
2010-01-09 08:17:44 +07:00
|
|
|
|
|
|
|
# define fast_wmb() __syncw()
|
|
|
|
# define fast_rmb() barrier()
|
|
|
|
# define fast_mb() __sync()
|
|
|
|
# define fast_iob() do { } while (0)
|
|
|
|
#else /* ! CONFIG_CPU_CAVIUM_OCTEON */
|
|
|
|
# define fast_wmb() __sync()
|
|
|
|
# define fast_rmb() __sync()
|
|
|
|
# define fast_mb() __sync()
|
|
|
|
# ifdef CONFIG_SGI_IP28
|
|
|
|
# define fast_iob() \
|
2008-03-19 04:47:56 +07:00
|
|
|
__asm__ __volatile__( \
|
|
|
|
".set push\n\t" \
|
|
|
|
".set noreorder\n\t" \
|
|
|
|
"lw $0,%0\n\t" \
|
|
|
|
"sync\n\t" \
|
|
|
|
"lw $0,%0\n\t" \
|
|
|
|
".set pop" \
|
|
|
|
: /* no output */ \
|
|
|
|
: "m" (*(int *)CKSEG1ADDR(0x1fa00004)) \
|
|
|
|
: "memory")
|
2010-01-09 08:17:44 +07:00
|
|
|
# else
|
|
|
|
# define fast_iob() \
|
2006-10-31 10:45:07 +07:00
|
|
|
do { \
|
|
|
|
__sync(); \
|
|
|
|
__fast_iob(); \
|
|
|
|
} while (0)
|
2010-01-09 08:17:44 +07:00
|
|
|
# endif
|
|
|
|
#endif /* CONFIG_CPU_CAVIUM_OCTEON */
|
2006-10-31 10:45:07 +07:00
|
|
|
|
|
|
|
#ifdef CONFIG_CPU_HAS_WB
|
|
|
|
|
|
|
|
#include <asm/wbflush.h>
|
|
|
|
|
|
|
|
#define mb() wbflush()
|
|
|
|
#define iob() wbflush()
|
|
|
|
|
|
|
|
#else /* !CONFIG_CPU_HAS_WB */
|
|
|
|
|
|
|
|
#define mb() fast_mb()
|
|
|
|
#define iob() fast_iob()
|
|
|
|
|
|
|
|
#endif /* !CONFIG_CPU_HAS_WB */
|
|
|
|
|
2014-12-12 06:02:06 +07:00
|
|
|
#define wmb() fast_wmb()
|
|
|
|
#define rmb() fast_rmb()
|
|
|
|
#define dma_wmb() fast_wmb()
|
|
|
|
#define dma_rmb() fast_rmb()
|
|
|
|
|
2006-10-31 10:45:07 +07:00
|
|
|
#if defined(CONFIG_WEAK_ORDERING) && defined(CONFIG_SMP)
|
2010-01-09 08:17:44 +07:00
|
|
|
# ifdef CONFIG_CPU_CAVIUM_OCTEON
|
|
|
|
# define smp_mb() __sync()
|
|
|
|
# define smp_rmb() barrier()
|
|
|
|
# define smp_wmb() __syncw()
|
|
|
|
# else
|
|
|
|
# define smp_mb() __asm__ __volatile__("sync" : : :"memory")
|
|
|
|
# define smp_rmb() __asm__ __volatile__("sync" : : :"memory")
|
|
|
|
# define smp_wmb() __asm__ __volatile__("sync" : : :"memory")
|
|
|
|
# endif
|
2006-10-31 10:45:07 +07:00
|
|
|
#else
|
2010-01-09 08:17:43 +07:00
|
|
|
#define smp_mb() barrier()
|
|
|
|
#define smp_rmb() barrier()
|
|
|
|
#define smp_wmb() barrier()
|
2006-10-31 10:45:07 +07:00
|
|
|
#endif
|
2010-01-09 08:17:43 +07:00
|
|
|
|
2007-07-14 19:24:05 +07:00
|
|
|
#if defined(CONFIG_WEAK_REORDERING_BEYOND_LLSC) && defined(CONFIG_SMP)
|
2013-01-22 18:59:30 +07:00
|
|
|
#define __WEAK_LLSC_MB " sync \n"
|
2007-07-14 19:24:05 +07:00
|
|
|
#else
|
|
|
|
#define __WEAK_LLSC_MB " \n"
|
|
|
|
#endif
|
2006-10-31 10:45:07 +07:00
|
|
|
|
2015-05-12 15:51:55 +07:00
|
|
|
#define smp_store_mb(var, value) \
|
2015-05-12 15:52:27 +07:00
|
|
|
do { WRITE_ONCE(var, value); smp_mb(); } while (0)
|
2006-10-31 10:45:07 +07:00
|
|
|
|
2007-07-14 19:24:05 +07:00
|
|
|
#define smp_llsc_mb() __asm__ __volatile__(__WEAK_LLSC_MB : : :"memory")
|
|
|
|
|
2010-01-09 08:17:44 +07:00
|
|
|
#ifdef CONFIG_CPU_CAVIUM_OCTEON
|
|
|
|
#define smp_mb__before_llsc() smp_wmb()
|
2010-02-05 02:31:49 +07:00
|
|
|
/* Cause previous writes to become visible on all CPUs as soon as possible */
|
|
|
|
#define nudge_writes() __asm__ __volatile__(".set push\n\t" \
|
|
|
|
".set arch=octeon\n\t" \
|
|
|
|
"syncw\n\t" \
|
|
|
|
".set pop" : : : "memory")
|
2010-01-09 08:17:44 +07:00
|
|
|
#else
|
2010-01-09 08:17:43 +07:00
|
|
|
#define smp_mb__before_llsc() smp_llsc_mb()
|
2010-02-05 02:31:49 +07:00
|
|
|
#define nudge_writes() mb()
|
2010-01-09 08:17:44 +07:00
|
|
|
#endif
|
2010-01-09 08:17:43 +07:00
|
|
|
|
2013-11-06 20:57:36 +07:00
|
|
|
#define smp_store_release(p, v) \
|
|
|
|
do { \
|
|
|
|
compiletime_assert_atomic_type(*p); \
|
|
|
|
smp_mb(); \
|
locking, arch: use WRITE_ONCE()/READ_ONCE() in smp_store_release()/smp_load_acquire()
Replace ACCESS_ONCE() macro in smp_store_release() and smp_load_acquire()
with WRITE_ONCE() and READ_ONCE() on x86, arm, arm64, ia64, metag, mips,
powerpc, s390, sparc and asm-generic since ACCESS_ONCE() does not work
reliably on non-scalar types.
WRITE_ONCE() and READ_ONCE() were introduced in the following commits:
230fa253df63 ("kernel: Provide READ_ONCE and ASSIGN_ONCE")
43239cbe79fc ("kernel: Change ASSIGN_ONCE(val, x) to WRITE_ONCE(x, val)")
Signed-off-by: Andrey Konovalov <andreyknvl@google.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Davidlohr Bueso <dbueso@suse.de>
Acked-by: Michael Ellerman <mpe@ellerman.id.au> (powerpc)
Acked-by: Ralf Baechle <ralf@linux-mips.org>
Cc: Alexander Duyck <alexander.h.duyck@redhat.com>
Cc: Andre Przywara <andre.przywara@arm.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Borislav Petkov <bp@suse.de>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Christian Borntraeger <borntraeger@de.ibm.com>
Cc: David S. Miller <davem@davemloft.net>
Cc: Davidlohr Bueso <dave@stgolabs.net>
Cc: Dmitry Vyukov <dvyukov@google.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: James Hogan <james.hogan@imgtec.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Tony Luck <tony.luck@intel.com>
Cc: Will Deacon <will.deacon@arm.com>
Cc: linux-arch@vger.kernel.org
Link: http://lkml.kernel.org/r/1438528264-714-1-git-send-email-andreyknvl@google.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2015-08-02 22:11:04 +07:00
|
|
|
WRITE_ONCE(*p, v); \
|
2013-11-06 20:57:36 +07:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define smp_load_acquire(p) \
|
|
|
|
({ \
|
locking, arch: use WRITE_ONCE()/READ_ONCE() in smp_store_release()/smp_load_acquire()
Replace ACCESS_ONCE() macro in smp_store_release() and smp_load_acquire()
with WRITE_ONCE() and READ_ONCE() on x86, arm, arm64, ia64, metag, mips,
powerpc, s390, sparc and asm-generic since ACCESS_ONCE() does not work
reliably on non-scalar types.
WRITE_ONCE() and READ_ONCE() were introduced in the following commits:
230fa253df63 ("kernel: Provide READ_ONCE and ASSIGN_ONCE")
43239cbe79fc ("kernel: Change ASSIGN_ONCE(val, x) to WRITE_ONCE(x, val)")
Signed-off-by: Andrey Konovalov <andreyknvl@google.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Davidlohr Bueso <dbueso@suse.de>
Acked-by: Michael Ellerman <mpe@ellerman.id.au> (powerpc)
Acked-by: Ralf Baechle <ralf@linux-mips.org>
Cc: Alexander Duyck <alexander.h.duyck@redhat.com>
Cc: Andre Przywara <andre.przywara@arm.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Borislav Petkov <bp@suse.de>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Christian Borntraeger <borntraeger@de.ibm.com>
Cc: David S. Miller <davem@davemloft.net>
Cc: Davidlohr Bueso <dave@stgolabs.net>
Cc: Dmitry Vyukov <dvyukov@google.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: James Hogan <james.hogan@imgtec.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Tony Luck <tony.luck@intel.com>
Cc: Will Deacon <will.deacon@arm.com>
Cc: linux-arch@vger.kernel.org
Link: http://lkml.kernel.org/r/1438528264-714-1-git-send-email-andreyknvl@google.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2015-08-02 22:11:04 +07:00
|
|
|
typeof(*p) ___p1 = READ_ONCE(*p); \
|
2013-11-06 20:57:36 +07:00
|
|
|
compiletime_assert_atomic_type(*p); \
|
|
|
|
smp_mb(); \
|
|
|
|
___p1; \
|
|
|
|
})
|
|
|
|
|
2014-03-14 01:00:36 +07:00
|
|
|
#define smp_mb__before_atomic() smp_mb__before_llsc()
|
|
|
|
#define smp_mb__after_atomic() smp_llsc_mb()
|
|
|
|
|
2006-10-31 10:45:07 +07:00
|
|
|
#endif /* __ASM_BARRIER_H */
|