2012-03-05 11:49:29 +00:00
|
|
|
/*
|
|
|
|
* 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>
|
2015-02-03 16:14:13 +00:00
|
|
|
#include <asm/lse.h>
|
2012-03-05 11:49:29 +00:00
|
|
|
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
|
2015-02-03 12:39:03 +00:00
|
|
|
#define __ARM64_IN_ATOMIC_IMPL
|
|
|
|
|
2015-02-03 16:14:13 +00:00
|
|
|
#if defined(CONFIG_ARM64_LSE_ATOMICS) && defined(CONFIG_AS_LSE)
|
2015-02-03 12:39:03 +00:00
|
|
|
#include <asm/atomic_lse.h>
|
|
|
|
#else
|
2015-02-03 11:26:53 +00:00
|
|
|
#include <asm/atomic_ll_sc.h>
|
2015-02-03 12:39:03 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef __ARM64_IN_ATOMIC_IMPL
|
2015-02-03 11:26:53 +00:00
|
|
|
|
2015-04-23 19:08:49 +00:00
|
|
|
#include <asm/cmpxchg.h>
|
|
|
|
|
2015-06-04 15:41:36 +00:00
|
|
|
#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; \
|
|
|
|
})
|
2012-03-05 11:49:29 +00:00
|
|
|
|
2015-06-04 15:41:36 +00:00
|
|
|
#define ATOMIC_INIT(i) { (i) }
|
2012-03-05 11:49:29 +00:00
|
|
|
|
2015-06-04 15:41:36 +00:00
|
|
|
#define atomic_read(v) READ_ONCE((v)->counter)
|
2015-09-18 09:13:10 +00:00
|
|
|
#define atomic_set(v, i) WRITE_ONCE(((v)->counter), (i))
|
2015-10-08 19:15:18 +00:00
|
|
|
|
|
|
|
#define atomic_add_return_relaxed atomic_add_return_relaxed
|
|
|
|
#define atomic_add_return_acquire atomic_add_return_acquire
|
|
|
|
#define atomic_add_return_release atomic_add_return_release
|
|
|
|
#define atomic_add_return atomic_add_return
|
|
|
|
|
|
|
|
#define atomic_inc_return_relaxed(v) atomic_add_return_relaxed(1, (v))
|
|
|
|
#define atomic_inc_return_acquire(v) atomic_add_return_acquire(1, (v))
|
|
|
|
#define atomic_inc_return_release(v) atomic_add_return_release(1, (v))
|
|
|
|
#define atomic_inc_return(v) atomic_add_return(1, (v))
|
|
|
|
|
|
|
|
#define atomic_sub_return_relaxed atomic_sub_return_relaxed
|
|
|
|
#define atomic_sub_return_acquire atomic_sub_return_acquire
|
|
|
|
#define atomic_sub_return_release atomic_sub_return_release
|
|
|
|
#define atomic_sub_return atomic_sub_return
|
|
|
|
|
|
|
|
#define atomic_dec_return_relaxed(v) atomic_sub_return_relaxed(1, (v))
|
|
|
|
#define atomic_dec_return_acquire(v) atomic_sub_return_acquire(1, (v))
|
|
|
|
#define atomic_dec_return_release(v) atomic_sub_return_release(1, (v))
|
|
|
|
#define atomic_dec_return(v) atomic_sub_return(1, (v))
|
|
|
|
|
|
|
|
#define atomic_xchg_relaxed(v, new) xchg_relaxed(&((v)->counter), (new))
|
|
|
|
#define atomic_xchg_acquire(v, new) xchg_acquire(&((v)->counter), (new))
|
|
|
|
#define atomic_xchg_release(v, new) xchg_release(&((v)->counter), (new))
|
2015-06-04 15:41:36 +00:00
|
|
|
#define atomic_xchg(v, new) xchg(&((v)->counter), (new))
|
2015-10-08 19:15:18 +00:00
|
|
|
|
|
|
|
#define atomic_cmpxchg_relaxed(v, old, new) \
|
|
|
|
cmpxchg_relaxed(&((v)->counter), (old), (new))
|
|
|
|
#define atomic_cmpxchg_acquire(v, old, new) \
|
|
|
|
cmpxchg_acquire(&((v)->counter), (old), (new))
|
|
|
|
#define atomic_cmpxchg_release(v, old, new) \
|
|
|
|
cmpxchg_release(&((v)->counter), (old), (new))
|
2015-06-04 16:46:37 +00:00
|
|
|
#define atomic_cmpxchg(v, old, new) cmpxchg(&((v)->counter), (old), (new))
|
2015-06-04 15:41:36 +00:00
|
|
|
|
|
|
|
#define atomic_inc(v) atomic_add(1, (v))
|
|
|
|
#define atomic_dec(v) atomic_sub(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
|
2015-02-03 11:26:53 +00:00
|
|
|
|
2012-03-05 11:49:29 +00:00
|
|
|
/*
|
|
|
|
* 64-bit atomic operations.
|
|
|
|
*/
|
2015-06-04 15:41:36 +00:00
|
|
|
#define ATOMIC64_INIT ATOMIC_INIT
|
|
|
|
#define atomic64_read atomic_read
|
|
|
|
#define atomic64_set atomic_set
|
2015-10-08 19:15:18 +00:00
|
|
|
|
|
|
|
#define atomic64_add_return_relaxed atomic64_add_return_relaxed
|
|
|
|
#define atomic64_add_return_acquire atomic64_add_return_acquire
|
|
|
|
#define atomic64_add_return_release atomic64_add_return_release
|
|
|
|
#define atomic64_add_return atomic64_add_return
|
|
|
|
|
|
|
|
#define atomic64_inc_return_relaxed(v) atomic64_add_return_relaxed(1, (v))
|
|
|
|
#define atomic64_inc_return_acquire(v) atomic64_add_return_acquire(1, (v))
|
|
|
|
#define atomic64_inc_return_release(v) atomic64_add_return_release(1, (v))
|
|
|
|
#define atomic64_inc_return(v) atomic64_add_return(1, (v))
|
|
|
|
|
|
|
|
#define atomic64_sub_return_relaxed atomic64_sub_return_relaxed
|
|
|
|
#define atomic64_sub_return_acquire atomic64_sub_return_acquire
|
|
|
|
#define atomic64_sub_return_release atomic64_sub_return_release
|
|
|
|
#define atomic64_sub_return atomic64_sub_return
|
|
|
|
|
|
|
|
#define atomic64_dec_return_relaxed(v) atomic64_sub_return_relaxed(1, (v))
|
|
|
|
#define atomic64_dec_return_acquire(v) atomic64_sub_return_acquire(1, (v))
|
|
|
|
#define atomic64_dec_return_release(v) atomic64_sub_return_release(1, (v))
|
|
|
|
#define atomic64_dec_return(v) atomic64_sub_return(1, (v))
|
|
|
|
|
|
|
|
#define atomic64_xchg_relaxed atomic_xchg_relaxed
|
|
|
|
#define atomic64_xchg_acquire atomic_xchg_acquire
|
|
|
|
#define atomic64_xchg_release atomic_xchg_release
|
2015-06-04 15:41:36 +00:00
|
|
|
#define atomic64_xchg atomic_xchg
|
2015-10-08 19:15:18 +00:00
|
|
|
|
|
|
|
#define atomic64_cmpxchg_relaxed atomic_cmpxchg_relaxed
|
|
|
|
#define atomic64_cmpxchg_acquire atomic_cmpxchg_acquire
|
|
|
|
#define atomic64_cmpxchg_release atomic_cmpxchg_release
|
2015-06-04 16:46:37 +00:00
|
|
|
#define atomic64_cmpxchg atomic_cmpxchg
|
2015-06-04 15:41:36 +00:00
|
|
|
|
|
|
|
#define atomic64_inc(v) atomic64_add(1, (v))
|
|
|
|
#define atomic64_dec(v) atomic64_sub(1, (v))
|
2012-03-05 11:49:29 +00:00
|
|
|
#define atomic64_inc_and_test(v) (atomic64_inc_return(v) == 0)
|
2015-06-04 15:41:36 +00:00
|
|
|
#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
|
2012-03-05 11:49:29 +00:00
|
|
|
|
2015-06-04 15:41:36 +00:00
|
|
|
#define atomic64_inc_not_zero(v) atomic64_add_unless((v), 1, 0)
|
2015-02-03 11:26:53 +00:00
|
|
|
|
2012-03-05 11:49:29 +00:00
|
|
|
#endif
|
|
|
|
#endif
|