Imported Upstream version 3.2.2
[debian/gnuradio] / gcell / ibm / sync / ppu_source / atomic.h
1 /* --------------------------------------------------------------  */
2 /* (C)Copyright 2001,2007,                                         */
3 /* International Business Machines Corporation,                    */
4 /* Sony Computer Entertainment, Incorporated,                      */
5 /* Toshiba Corporation,                                            */
6 /*                                                                 */
7 /* All Rights Reserved.                                            */
8 /*                                                                 */
9 /* Redistribution and use in source and binary forms, with or      */
10 /* without modification, are permitted provided that the           */
11 /* following conditions are met:                                   */
12 /*                                                                 */
13 /* - Redistributions of source code must retain the above copyright*/
14 /*   notice, this list of conditions and the following disclaimer. */
15 /*                                                                 */
16 /* - Redistributions in binary form must reproduce the above       */
17 /*   copyright notice, this list of conditions and the following   */
18 /*   disclaimer in the documentation and/or other materials        */
19 /*   provided with the distribution.                               */
20 /*                                                                 */
21 /* - Neither the name of IBM Corporation nor the names of its      */
22 /*   contributors may be used to endorse or promote products       */
23 /*   derived from this software without specific prior written     */
24 /*   permission.                                                   */
25 /*                                                                 */
26 /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND          */
27 /* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,     */
28 /* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF        */
29 /* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE        */
30 /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR            */
31 /* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,    */
32 /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT    */
33 /* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;    */
34 /* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)        */
35 /* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN       */
36 /* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR    */
37 /* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,  */
38 /* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.              */
39 /* --------------------------------------------------------------  */
40 /* PROLOG END TAG zYx                                              */
41 /*
42  * atomic.h - PPE atomic SHM counter operations.
43  *
44  * Interfaces patterned after, and hopefully compatible
45  * with PowerPC64-Linux atomic counter operations.  Uses
46  * 32b values for various counters.
47  */
48 #ifndef _PPU_ATOMIC_H_
49 #define _PPU_ATOMIC_H_
50
51 #include <ppu_intrinsics.h>
52 #include "sync_utils.h"
53
54 typedef unsigned int atomic_t __attribute__ ((aligned (128))); 
55
56
57 /* atomic_ea_t is a 64bit effective address  that points to 
58  * an atomic_t variable 
59  */
60 typedef unsigned long long atomic_ea_t;
61
62 /**
63  * ASSUMPTIONS:
64  * On the PPE, the size of a reservation granule is 128 bytes
65  * (a cache-line), so when a programmer puts a reservation on an
66  * address, that whole cacheline is reserved. Therefore both
67  * the PPE and SPE can participate in an atomic operation as long as
68  * lwarx and getllar operate on the same cacheline. 
69  */ 
70
71
72 /*
73  * atomically loads and replaces the value v with val. 
74  * Returns the old value at v
75  */ 
76 static __inline int _atomic_replace(atomic_ea_t v, int val)
77 {
78   int old;
79   void *p;
80
81   SYNC_ULL_TO_PTR(v, p);
82
83   do {
84     old = (int)__lwarx(p);
85   } while (__stwcx(p, (unsigned int)val) == 0);
86
87   return old;
88 }
89
90
91 /*
92  * atomically loads the value at v, adds val, replaces the
93  * value at v with the sum. Returns the old value at v
94  */ 
95 static __inline int _atomic_modify(atomic_ea_t v, int val)
96 {
97   int oldval, newval;
98   void *p;
99
100   SYNC_ULL_TO_PTR(v, p);
101
102   do {
103     oldval = (int)__lwarx(p);
104     newval = oldval + val;
105   } while (__stwcx(p, (unsigned int)newval) == 0);
106
107   return oldval;
108 }
109
110
111 #endif /* _PPU_ATOMIC_H_ */
112