summaryrefslogtreecommitdiffstats
path: root/drivers/misc/eventlib/utility.h
blob: a62898b1e03772e8ff59e918534e6599fe79b83e (plain) (blame)
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/*
 * Copyright (c) 2016-2021, NVIDIA CORPORATION. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 */

#ifndef UTILITY_H
#define UTILITY_H

#include <linux/printk.h>
#include <stdbool.h>

#define assert(x)						\
do {								\
	if (!(x)) {						\
		pr_err_once("assertion failed %s: %d: %s\n",	\
			    __FILE__, __LINE__, #x);		\
	}							\
} while (0)

#define GET_TOP32(x) ((x) >> 32ULL)
#define SET_TOP32(x) ((x) << 32ULL)
#define GET_LOW32(x) ((x) & 0x00000000FFFFFFFFULL)
#define SET_LOW32(x) ((x) & 0x00000000FFFFFFFFULL)

static inline void write_barrier(void)
{
#if defined(__aarch64__)
	asm volatile("dmb ishst" ::: "memory");
#elif defined(__arm__)
	asm volatile("dmb" ::: "memory");
#elif defined(__x86_64__)
	asm volatile("" ::: "memory");
#else
	assert(false);
#endif
}

static inline void read_barrier(void)
{
#if defined(__aarch64__)
	asm volatile("dmb ishld" ::: "memory");
#elif defined(__arm__)
	asm volatile("dmb" ::: "memory");
#elif defined(__x86_64__)
	asm volatile("" ::: "memory");
#else
	assert(false);
#endif
}

static inline uint64_t read64(volatile uint64_t *addr)
{
	uint64_t value;

#if defined(USE_GNU_ATOMICS_64)
	value = __sync_fetch_and_add(addr, 0ULL);
#elif (defined(__aarch64__) || defined(__x86_64__))
	assert(((uintptr_t)addr & (sizeof(uint64_t) - 1)) == 0);
	value = *addr;
#elif defined(__arm__)
	register uint32_t r2 asm("r2");
	register uint32_t r3 asm("r3");

	assert(((uintptr_t)addr & (sizeof(uint64_t) - 1)) == 0);
	asm volatile("ldrd %0, %1, [%2]"
		: "=r"(r2), "=r"(r3) : "r"(addr) : );

	value = ((uint64_t)r2 | ((uint64_t)r3 << 32));
#else
	assert(false);
	value = 0;
#endif

	return value;
}

static inline void write64(volatile uint64_t *addr, uint64_t value)
{
#if defined(USE_GNU_ATOMICS_64)
	uint64_t prev;

	while (1) {
		prev = __sync_fetch_and_add(addr, 0ULL);
		if (__sync_bool_compare_and_swap(addr, prev, value) == true)
			break;
	}
#elif (defined(__aarch64__) || defined(__x86_64__))
	assert(((uintptr_t)addr & (sizeof(uint64_t) - 1)) == 0);
	*addr = value;
#elif defined(__arm__)
	register uint32_t r2 asm("r2") = (uint32_t)value;
	register uint32_t r3 asm("r3") = (uint32_t)(value >> 32);

	assert(((uintptr_t)addr & (sizeof(uint64_t) - 1)) == 0);
	asm volatile("strd %0, %1, [%2]"
		: : "r"(r2), "r"(r3), "r"(addr) : "memory");
#else
	assert(false);
#endif
}

static inline uint64_t increment64(volatile uint64_t *addr)
{
	uint64_t prev;

	prev = read64(addr);
	write64(addr, prev + 1);
	return prev;
}

#if defined(__aarch64__) && defined(__GNUC__) && (__GNUC__ >= 11)

static inline uint32_t
tracebuf_sync_fetch_and_or_u32(uint32_t *ptr, uint32_t value)
{
	uint32_t result, tmp, flags = 0;

	asm volatile(
		"1:	ldxr %w[result], [%[ptr]]\n"
		"	orr %w[tmp], %w[result], %w[value]\n"
		"	stlxr %w[flags], %w[tmp], [%[ptr]]\n"
		"	cbnz %w[flags], 1b\n"
		"	dmb ish"
		: [result] "=&r"(result), [tmp] "=&r"(tmp)
		: [value] "r"(value), [flags] "r"(flags), [ptr] "r"(ptr)
		: "cc", "memory");

	return result;
}

static inline uint32_t
tracebuf_sync_fetch_and_and_u32(uint32_t *ptr, uint32_t value)
{
	uint32_t result, tmp, flags = 0;

	asm volatile(
		"1:	ldxr %w[result], [%[ptr]]\n"
		"	and %w[tmp], %w[result], %w[value]\n"
		"	stlxr %w[flags], %w[tmp], [%[ptr]]\n"
		"	cbnz %w[flags], 1b\n"
		"	dmb ish"
		: [result] "=&r"(result), [tmp] "=&r"(tmp)
		: [value] "r"(value), [flags] "r"(flags), [ptr] "r"(ptr)
		: "cc", "memory");

	return result;
}

#else

static inline uint32_t
tracebuf_sync_fetch_and_or_u32(uint32_t *ptr, uint32_t value)
{
	return __sync_fetch_and_or(ptr, value);
}

static inline uint32_t
tracebuf_sync_fetch_and_and_u32(uint32_t *ptr, uint32_t value)
{
	return __sync_fetch_and_and(ptr, value);
}

#endif

#endif