~ubuntu-branches/ubuntu/trusty/gnuradio/trusty

« back to all changes in this revision

Viewing changes to gcell/ibm/sync/spu_source/atomic_dec_if_positive.h

  • Committer: Bazaar Package Importer
  • Author(s): Kamal Mostafa
  • Date: 2010-03-13 07:46:01 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100313074601-zjsa893a87bozyh7
Tags: 3.2.2.dfsg-1ubuntu1
* Fix build for Ubuntu lucid (LP: #260406)
  - add binary package dep for libusrp0, libusrp2-0: adduser
  - debian/rules clean: remove pre-built Qt moc files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
#ifndef _SPU_ATOMIC_DEC_IF_POSITIVE_H_
 
42
#define _SPU_ATOMIC_DEC_IF_POSITIVE_H_
 
43
 
 
44
#include <sync_utils.h>
 
45
#include <atomic.h>
 
46
 
 
47
/**
 
48
 * atomic_dec_if_positive - atomically decrement if counter is positive.
 
49
 * @v: handle to effective address of counter.
 
50
 * 
 
51
 * Atomically decrement a counter if its value is positive.
 
52
 * The only restriction is that @v must be word aligned.
 
53
 *
 
54
*
 
55
 * Returns the old value of the counter, minus 1.
 
56
 */
 
57
static __inline int _atomic_dec_if_positive(atomic_ea_t v)
 
58
{
 
59
    DECL_ATOMIC_VARS();
 
60
    s32 status;
 
61
 
 
62
    ea64.ull = ALIGN128_EA(v);
 
63
    offset = OFFSET128_EA_U32(v);
 
64
    do {
 
65
        MFC_DMA(buf, ea64, size, tagid, MFC_GETLLAR_CMD);
 
66
        spu_readch(MFC_RdAtomicStat);
 
67
 
 
68
        ret_val = buf[offset] - 1;
 
69
        if (likely(ret_val >= 0)) {
 
70
            buf[offset] = ret_val;
 
71
            MFC_DMA(buf, ea64, size, tagid, MFC_PUTLLC_CMD);
 
72
            status = spu_readch(MFC_RdAtomicStat);
 
73
        } else {
 
74
            MFC_DMA(buf, ea64, size, tagid, MFC_PUTLLC_CMD);
 
75
            spu_readch(MFC_RdAtomicStat);
 
76
            status = 0;
 
77
            break;
 
78
        }
 
79
    } while (status != 0);
 
80
 
 
81
    return ret_val;
 
82
}
 
83
 
 
84
 
 
85
 
 
86
#endif /* _SPU_ATOMIC_DEC_IF_POSITIVE_H_ */