2 * Generic barrier definitions, originally based on MN10300 definitions.
4 * It should be possible to use these on really simple architectures,
5 * but it serves more as a starting point for new ports.
7 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
8 * Written by David Howells (dhowells@redhat.com)
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public Licence
12 * as published by the Free Software Foundation; either version
13 * 2 of the Licence, or (at your option) any later version.
15 #ifndef __ASM_GENERIC_BARRIER_H
16 #define __ASM_GENERIC_BARRIER_H
20 #include <linux/compiler.h>
23 #define nop() asm volatile ("nop")
27 * Force strict CPU ordering. And yes, this is required on UP too when we're
30 * Fall back to compiler barriers if nothing better is provided.
34 #define mb() barrier()
45 #ifndef read_barrier_depends
46 #define read_barrier_depends() do { } while (0)
51 #define smp_rmb() rmb()
52 #define smp_wmb() wmb()
53 #define smp_read_barrier_depends() read_barrier_depends()
55 #define smp_mb() barrier()
56 #define smp_rmb() barrier()
57 #define smp_wmb() barrier()
58 #define smp_read_barrier_depends() do { } while (0)
62 #define set_mb(var, value) do { (var) = (value); mb(); } while (0)
65 #ifndef smp_mb__before_atomic
66 #define smp_mb__before_atomic() smp_mb()
69 #ifndef smp_mb__after_atomic
70 #define smp_mb__after_atomic() smp_mb()
73 #define smp_store_release(p, v) \
75 compiletime_assert_atomic_type(*p); \
77 ACCESS_ONCE(*p) = (v); \
80 #define smp_load_acquire(p) \
82 typeof(*p) ___p1 = ACCESS_ONCE(*p); \
83 compiletime_assert_atomic_type(*p); \
88 #endif /* !__ASSEMBLY__ */
89 #endif /* __ASM_GENERIC_BARRIER_H */