aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/include/asm/bitops-cas.h
blob: ba517b3f24da62cef771b1cd6be4e99a1994e123 (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
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __ASM_SH_BITOPS_CAS_H
#define __ASM_SH_BITOPS_CAS_H

static inline unsigned __bo_cas(volatile unsigned *p, unsigned old, unsigned new)
{
	__asm__ __volatile__("cas.l %1,%0,@r0"
		: "+r"(new)
		: "r"(old), "z"(p)
		: "t", "memory" );
	return new;
}

static inline void set_bit(int nr, volatile void *addr)
{
	unsigned mask, old;
	volatile unsigned *a = addr;

	a += nr >> 5;
	mask = 1U << (nr & 0x1f);

	do old = *a;
	while (__bo_cas(a, old, old|mask) != old);
}

static inline void clear_bit(int nr, volatile void *addr)
{
	unsigned mask, old;
	volatile unsigned *a = addr;

	a += nr >> 5;
	mask = 1U << (nr & 0x1f);

	do old = *a;
	while (__bo_cas(a, old, old&~mask) != old);
}

static inline void change_bit(int nr, volatile void *addr)
{
	unsigned mask, old;
	volatile unsigned *a = addr;

	a += nr >> 5;
	mask = 1U << (nr & 0x1f);

	do old = *a;
	while (__bo_cas(a, old, old^mask) != old);
}

static inline int test_and_set_bit(int nr, volatile void *addr)
{
	unsigned mask, old;
	volatile unsigned *a = addr;

	a += nr >> 5;
	mask = 1U << (nr & 0x1f);

	do old = *a;
	while (__bo_cas(a, old, old|mask) != old);

	return !!(old & mask);
}

static inline int test_and_clear_bit(int nr, volatile void *addr)
{
	unsigned mask, old;
	volatile unsigned *a = addr;

	a += nr >> 5;
	mask = 1U << (nr & 0x1f);

	do old = *a;
	while (__bo_cas(a, old, old&~mask) != old);

	return !!(old & mask);
}

static inline int test_and_change_bit(int nr, volatile void *addr)
{
	unsigned mask, old;
	volatile unsigned *a = addr;

	a += nr >> 5;
	mask = 1U << (nr & 0x1f);

	do old = *a;
	while (__bo_cas(a, old, old^mask) != old);

	return !!(old & mask);
}

#include <asm-generic/bitops/non-atomic.h>

#endif /* __ASM_SH_BITOPS_CAS_H */