blob: 09a4d13779e12a8b18049a62e62e394e803f68cb (
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
|
/* $OpenBSD: atomic.h,v 1.4 2011/03/23 16:54:36 pirofti Exp $ */
/* Public Domain */
#ifndef _SH_ATOMIC_H_
#define _SH_ATOMIC_H_
#if defined(_KERNEL)
#include <sh/psl.h>
static __inline void
atomic_setbits_int(__volatile unsigned int *uip, unsigned int v)
{
unsigned int sr;
__asm__ __volatile__ ("stc sr, %0" : "=r"(sr));
__asm__ __volatile__ ("ldc %0, sr" : : "r"(sr | PSL_IMASK));
*uip |= v;
__asm__ __volatile__ ("ldc %0, sr" : : "r"(sr));
}
static __inline void
atomic_clearbits_int(__volatile unsigned int *uip, unsigned int v)
{
unsigned int sr;
__asm__ __volatile__ ("stc sr, %0" : "=r"(sr));
__asm__ __volatile__ ("ldc %0, sr" : : "r"(sr | PSL_IMASK));
*uip &= ~v;
__asm__ __volatile__ ("ldc %0, sr" : : "r"(sr));
}
#endif /* defined(_KERNEL) */
#endif /* _SH_ATOMIC_H_ */
|