atomic.h 3.1 KB
Newer Older
C
Catalin Marinas 已提交
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
/*
 * Based on arch/arm/include/asm/atomic.h
 *
 * Copyright (C) 1996 Russell King.
 * Copyright (C) 2002 Deep Blue Solutions Ltd.
 * Copyright (C) 2012 ARM Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
#ifndef __ASM_ATOMIC_H
#define __ASM_ATOMIC_H

#include <linux/compiler.h>
#include <linux/types.h>

#include <asm/barrier.h>
27
#include <asm/lse.h>
C
Catalin Marinas 已提交
28 29 30

#ifdef __KERNEL__

31 32
#define __ARM64_IN_ATOMIC_IMPL

33
#if defined(CONFIG_ARM64_LSE_ATOMICS) && defined(CONFIG_AS_LSE)
34 35
#include <asm/atomic_lse.h>
#else
36
#include <asm/atomic_ll_sc.h>
37 38 39
#endif

#undef __ARM64_IN_ATOMIC_IMPL
40

41 42
#include <asm/cmpxchg.h>

43 44 45 46 47 48 49 50 51 52
#define ___atomic_add_unless(v, a, u, sfx)				\
({									\
	typeof((v)->counter) c, old;					\
									\
	c = atomic##sfx##_read(v);					\
	while (c != (u) &&						\
	      (old = atomic##sfx##_cmpxchg((v), c, c + (a))) != c)	\
		c = old;						\
	c;								\
 })
C
Catalin Marinas 已提交
53

54
#define ATOMIC_INIT(i)	{ (i) }
C
Catalin Marinas 已提交
55

56 57 58
#define atomic_read(v)			READ_ONCE((v)->counter)
#define atomic_set(v, i)		(((v)->counter) = (i))
#define atomic_xchg(v, new)		xchg(&((v)->counter), (new))
59
#define atomic_cmpxchg(v, old, new)	cmpxchg(&((v)->counter), (old), (new))
60 61 62 63 64 65 66 67 68 69 70

#define atomic_inc(v)			atomic_add(1, (v))
#define atomic_dec(v)			atomic_sub(1, (v))
#define atomic_inc_return(v)		atomic_add_return(1, (v))
#define atomic_dec_return(v)		atomic_sub_return(1, (v))
#define atomic_inc_and_test(v)		(atomic_inc_return(v) == 0)
#define atomic_dec_and_test(v)		(atomic_dec_return(v) == 0)
#define atomic_sub_and_test(i, v)	(atomic_sub_return((i), (v)) == 0)
#define atomic_add_negative(i, v)	(atomic_add_return((i), (v)) < 0)
#define __atomic_add_unless(v, a, u)	___atomic_add_unless(v, a, u,)
#define atomic_andnot			atomic_andnot
71

C
Catalin Marinas 已提交
72 73 74
/*
 * 64-bit atomic operations.
 */
75 76 77 78
#define ATOMIC64_INIT			ATOMIC_INIT
#define atomic64_read			atomic_read
#define atomic64_set			atomic_set
#define atomic64_xchg			atomic_xchg
79
#define atomic64_cmpxchg		atomic_cmpxchg
80 81 82 83 84

#define atomic64_inc(v)			atomic64_add(1, (v))
#define atomic64_dec(v)			atomic64_sub(1, (v))
#define atomic64_inc_return(v)		atomic64_add_return(1, (v))
#define atomic64_dec_return(v)		atomic64_sub_return(1, (v))
C
Catalin Marinas 已提交
85
#define atomic64_inc_and_test(v)	(atomic64_inc_return(v) == 0)
86 87 88 89 90
#define atomic64_dec_and_test(v)	(atomic64_dec_return(v) == 0)
#define atomic64_sub_and_test(i, v)	(atomic64_sub_return((i), (v)) == 0)
#define atomic64_add_negative(i, v)	(atomic64_add_return((i), (v)) < 0)
#define atomic64_add_unless(v, a, u)	(___atomic_add_unless(v, a, u, 64) != u)
#define atomic64_andnot			atomic64_andnot
C
Catalin Marinas 已提交
91

92
#define atomic64_inc_not_zero(v)	atomic64_add_unless((v), 1, 0)
93

C
Catalin Marinas 已提交
94 95
#endif
#endif