summaryrefslogtreecommitdiff
path: root/sys/external/bsd/common/include/asm/barrier.h
blob: 80af71973c688bb5474db0248016a83cc8d853c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*	$NetBSD: barrier.h,v 1.21 2023/02/25 12:23:36 riastradh Exp $	*/

/*-
 * Copyright (c) 2013 The NetBSD Foundation, Inc.
 * All rights reserved.
 *
 * This code is derived from software contributed to The NetBSD Foundation
 * by Taylor R. Campbell.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef _ASM_BARRIER_H_
#define _ASM_BARRIER_H_

#include <sys/atomic.h>

#include <linux/compiler.h>

#ifdef _KERNEL_OPT
#include "opt_multiprocessor.h"
#else
#define	MULTIPROCESSOR	1	/* safer to assume multiprocessor */
#endif

/*
 * I/O memory barriers.  drm uses these to order memory operations on
 * normal or write-combining/prefetchable, or uncacheable I/O
 * operations, for coordination between the CPU and I/O devices.
 *
 * In NetBSD, this is normally done with bus_space_barrier, but Linux
 * doesn't pass around the bus space tag and handle needed for that.
 */
#if defined(__aarch64__)
#include <arm/cpufunc.h>
#define	mb()	dsb(sy)
#define	wmb()	dsb(st)
#define	rmb()	dsb(ld)
#elif defined(__arm__)
#include <arm/cpufunc.h>
#define	mb()	dsb()
#define	wmb()	mb()
#define	rmb()	mb()
#elif defined(__i386__) || defined(__x86_64__)
#include <x86/cpufunc.h>
#define	mb()	x86_mfence()
#define	wmb()	x86_sfence()
#define	rmb()	x86_lfence()
#elif defined(__powerpc__)
#define	mb()	__asm __volatile ("eieio" ::: "memory")
#define	wmb()	mb()
#define	rmb()	mb()
#elif defined(__sparc__) || defined(__sparc64__)
#ifdef __sparc64__
#define	mb()	__asm __volatile ("membar #MemIssue" ::: "memory")
#else
#define	mb()	membar_sync()	/* ldstub */
#endif
#define	wmb()	mb()		/* XXX could maybe be __insn_barrier in TSO */
#define	rmb()	mb()		/* XXX could maybe be __insn_barrier in TSO */
#elif defined(__mips__)
#include <mips/locore.h>
#define	mb()	wbflush()
#define	wmb()	mb()
#define	rmb()	mb()
#elif defined(__alpha__)
#include <machine/alpha_cpu.h>
#define	mb()	alpha_mb()
#define	wmb()	alpha_wmb()
#define	rmb()	mb()
#else
#error Missing Linux memory-mapped I/O barriers for this architecture.
#endif

/*
 * MP memory barriers.  drm uses these to order memory operations on
 * normal memory for coordination between CPUs.  Aliases for NetBSD's
 * membar_*.
 */
#ifdef MULTIPROCESSOR
#  define	smp_mb				membar_sync
#  define	smp_wmb				membar_producer
#  define	smp_rmb				membar_consumer
#  define	smp_mb__before_atomic		membar_release
#  define	smp_mb__after_atomic		membar_acquire
#else
#  define	smp_mb()			__insn_barrier()
#  define	smp_wmb()			__insn_barrier()
#  define	smp_rmb()			__insn_barrier()
#  define	smp_mb__before_atomic()		__nothing
#  define	smp_mb__after_atomic()		__nothing
#endif

#endif  /* _ASM_BARRIER_H_ */