blob: 17fb088deac7cee89225c40dbf42faace812fdc0 [file] [log] [blame]
Chris Wilson04495ee2009-10-02 04:39:22 +01001/*
2 * Copyright © 2009 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Chris Wilson <chris@chris-wilson.co.uk>
25 *
26 */
27
28/**
Pauli Nieminen21105bc2010-03-10 13:35:59 +020029 * @file xf86atomics.h
Chris Wilson04495ee2009-10-02 04:39:22 +010030 *
31 * Private definitions for atomic operations
32 */
33
Pauli Nieminen21105bc2010-03-10 13:35:59 +020034#ifndef LIBDRM_ATOMICS_H
35#define LIBDRM_ATOMICS_H
Chris Wilson04495ee2009-10-02 04:39:22 +010036
37#ifdef HAVE_CONFIG_H
38#include "config.h"
39#endif
40
Pauli Nieminen21105bc2010-03-10 13:35:59 +020041#if HAVE_LIBDRM_ATOMIC_PRIMITIVES
Chris Wilson04495ee2009-10-02 04:39:22 +010042
43#define HAS_ATOMIC_OPS 1
44
Eric Anholtd70d6052009-10-06 12:40:42 -070045typedef struct {
46 int atomic;
47} atomic_t;
Chris Wilson04495ee2009-10-02 04:39:22 +010048
49# define atomic_read(x) ((x)->atomic)
50# define atomic_set(x, val) ((x)->atomic = (val))
51# define atomic_inc(x) ((void) __sync_fetch_and_add (&(x)->atomic, 1))
Maarten Lankhorstcd468542015-02-26 11:54:01 +010052# define atomic_inc_return(x) (__sync_add_and_fetch (&(x)->atomic, 1))
Chris Wilson04495ee2009-10-02 04:39:22 +010053# define atomic_dec_and_test(x) (__sync_fetch_and_add (&(x)->atomic, -1) == 1)
Pauli Nieminen966c9902009-08-29 12:08:57 +030054# define atomic_add(x, v) ((void) __sync_add_and_fetch(&(x)->atomic, (v)))
55# define atomic_dec(x, v) ((void) __sync_sub_and_fetch(&(x)->atomic, (v)))
Chris Wilson04495ee2009-10-02 04:39:22 +010056# define atomic_cmpxchg(x, oldv, newv) __sync_val_compare_and_swap (&(x)->atomic, oldv, newv)
57
58#endif
59
Chris Wilson901bacd2009-10-13 15:13:00 +010060#if HAVE_LIB_ATOMIC_OPS
61#include <atomic_ops.h>
62
63#define HAS_ATOMIC_OPS 1
64
65typedef struct {
66 AO_t atomic;
67} atomic_t;
68
69# define atomic_read(x) AO_load_full(&(x)->atomic)
70# define atomic_set(x, val) AO_store_full(&(x)->atomic, (val))
71# define atomic_inc(x) ((void) AO_fetch_and_add1_full(&(x)->atomic))
Maarten Lankhorstcd468542015-02-26 11:54:01 +010072# define atomic_inc_return(x) (AO_fetch_and_add1_full(&(x)->atomic) + 1)
Pauli Nieminen966c9902009-08-29 12:08:57 +030073# define atomic_add(x, v) ((void) AO_fetch_and_add_full(&(x)->atomic, (v)))
74# define atomic_dec(x, v) ((void) AO_fetch_and_add_full(&(x)->atomic, -(v)))
Chris Wilson901bacd2009-10-13 15:13:00 +010075# define atomic_dec_and_test(x) (AO_fetch_and_sub1_full(&(x)->atomic) == 1)
76# define atomic_cmpxchg(x, oldv, newv) AO_compare_and_swap_full(&(x)->atomic, oldv, newv)
77
78#endif
79
Thomas Klausner87fdd322014-07-20 10:23:58 +020080#if (defined(__sun) || defined(__NetBSD__)) && !defined(HAS_ATOMIC_OPS) /* Solaris & OpenSolaris & NetBSD */
Alan Coopersmithb1ce1e62010-01-16 19:28:50 -080081
82#include <sys/atomic.h>
83#define HAS_ATOMIC_OPS 1
84
Thomas Klausner87fdd322014-07-20 10:23:58 +020085#if defined(__NetBSD__)
Alan Coopersmithdd89e1e2015-02-07 09:12:25 -080086#define LIBDRM_ATOMIC_TYPE int
Thomas Klausner87fdd322014-07-20 10:23:58 +020087#else
Alan Coopersmithdd89e1e2015-02-07 09:12:25 -080088#define LIBDRM_ATOMIC_TYPE uint_t
Thomas Klausner87fdd322014-07-20 10:23:58 +020089#endif
90
Alan Coopersmithdd89e1e2015-02-07 09:12:25 -080091typedef struct { LIBDRM_ATOMIC_TYPE atomic; } atomic_t;
Alan Coopersmithb1ce1e62010-01-16 19:28:50 -080092
93# define atomic_read(x) (int) ((x)->atomic)
Alan Coopersmithdd89e1e2015-02-07 09:12:25 -080094# define atomic_set(x, val) ((x)->atomic = (LIBDRM_ATOMIC_TYPE)(val))
Alan Coopersmithb1ce1e62010-01-16 19:28:50 -080095# define atomic_inc(x) (atomic_inc_uint (&(x)->atomic))
Maarten Lankhorstcd468542015-02-26 11:54:01 +010096# define atomic_inc_return (atomic_inc_uint_nv(&(x)->atomic))
Thomas Klausner96cf4552014-07-20 10:24:26 +020097# define atomic_dec_and_test(x) (atomic_dec_uint_nv(&(x)->atomic) == 0)
Alan Coopersmithc9065c52010-04-16 17:34:11 -070098# define atomic_add(x, v) (atomic_add_int(&(x)->atomic, (v)))
99# define atomic_dec(x, v) (atomic_add_int(&(x)->atomic, -(v)))
Alan Coopersmithb1ce1e62010-01-16 19:28:50 -0800100# define atomic_cmpxchg(x, oldv, newv) atomic_cas_uint (&(x)->atomic, oldv, newv)
101
102#endif
103
Chris Wilson04495ee2009-10-02 04:39:22 +0100104#if ! HAS_ATOMIC_OPS
Pauli Nieminen21105bc2010-03-10 13:35:59 +0200105#error libdrm requires atomic operations, please define them for your CPU/compiler.
Chris Wilson04495ee2009-10-02 04:39:22 +0100106#endif
107
Lionel Landwerlin63fc5712014-09-12 13:48:35 +0100108static inline int atomic_add_unless(atomic_t *v, int add, int unless)
109{
110 int c, old;
111 c = atomic_read(v);
112 while (c != unless && (old = atomic_cmpxchg(v, c, c + add)) != c)
113 c = old;
114 return c == unless;
115}
116
Chris Wilson04495ee2009-10-02 04:39:22 +0100117#endif