blob: 280a48d59caf7e63b08032fb0aa3d8c0334211bf (
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
|
/* $OpenBSD: atomic.h,v 1.5 2007/03/17 23:42:06 drahn Exp $ */
/* Public Domain */
#ifndef __ARM_ATOMIC_H__
#define __ARM_ATOMIC_H__
#if defined(_KERNEL)
/*
* on pre-v6 arm processors, it is necessary to disable interrupts if
* in the kernel and atomic updates are necessary without full mutexes
*/
static __inline void
atomic_setbits_int(__volatile unsigned int *uip, unsigned int v)
{
int oldirqstate;
oldirqstate = disable_interrupts(I32_bit|F32_bit);
*uip |= v;
restore_interrupts(oldirqstate);
}
static __inline void
atomic_clearbits_int(__volatile unsigned int *uip, unsigned int v)
{
int oldirqstate;
oldirqstate = disable_interrupts(I32_bit|F32_bit);
*uip &= ~v;
restore_interrupts(oldirqstate);
}
#endif /* defined(_KERNEL) */
#endif /* __ARM_ATOMIC_H__ */
|