summaryrefslogtreecommitdiff
path: root/core/nds32/atomic.h
blob: b634c3a5510c027632b9f4221ea7fe55830c3b31 (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
/* Copyright 2013 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/* Atomic operations for Andes */

#ifndef __CROS_EC_ATOMIC_H
#define __CROS_EC_ATOMIC_H

#include "common.h"
#include "cpu.h"
#include "task.h"

typedef int atomic_t;
typedef atomic_t atomic_val_t;

static inline atomic_val_t atomic_clear_bits(atomic_t *addr, atomic_val_t bits)
{
	atomic_val_t ret;
	atomic_t volatile *ptr = addr;
	uint32_t int_mask = read_clear_int_mask();

	ret = *ptr;
	*ptr &= ~bits;
	set_int_mask(int_mask);
	return ret;
}

static inline atomic_val_t atomic_or(atomic_t *addr, atomic_val_t bits)
{
	atomic_val_t ret;
	atomic_t volatile *ptr = addr;
	uint32_t int_mask = read_clear_int_mask();

	ret = *ptr;
	*ptr |= bits;
	set_int_mask(int_mask);
	return ret;
}

static inline atomic_val_t atomic_add(atomic_t *addr, atomic_val_t value)
{
	atomic_val_t ret;
	atomic_t volatile *ptr = addr;
	uint32_t int_mask = read_clear_int_mask();

	ret = *ptr;
	*ptr += value;
	set_int_mask(int_mask);
	return ret;
}

static inline atomic_val_t atomic_sub(atomic_t *addr, atomic_val_t value)
{
	atomic_val_t ret;
	atomic_t volatile *ptr = addr;
	uint32_t int_mask = read_clear_int_mask();

	ret = *ptr;
	*ptr -= value;
	set_int_mask(int_mask);
	return ret;
}

static inline atomic_val_t atomic_clear(atomic_t *addr)
{
	atomic_val_t ret;
	atomic_t volatile *ptr = addr;
	uint32_t int_mask = read_clear_int_mask();

	ret = *ptr;
	*ptr = 0;
	set_int_mask(int_mask);
	return ret;
}

#endif  /* __CROS_EC_ATOMIC_H */