Imported Upstream version 3.2.2
[debian/gnuradio] / gcell / ibm / sync / spu_source / init_completion.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 #ifndef _SPU_INIT_COMPLETION_H_
42 #define _SPU_INIT_COMPLETION_H_
43
44 #include "sync_utils.h"
45 #include <spu_mfcio.h>
46 #include "completion.h"
47
48 /**
49  * completion_init - initialize completion variable.
50  * @completion: handle to effective address of completion variable.
51  *
52  * Description: Initialize a completion variable to false.
53  */
54 static __inline void _init_completion(completion_ea_t completion)
55 {
56     DECL_COMPLETION_VARS();
57     u32 oldtmask, tagmask;
58    
59     tagid = mfc_tag_reserve();
60     tagmask = 1 << (tagid & 31);
61
62     ea64.ull = ALIGN128_EA(completion);
63     offset = OFFSET128_EA_U32(completion);
64
65     MFC_DMA(buf, ea64, size, tagid & 31, MFC_GET_CMD);
66     oldtmask = spu_readch(MFC_RdTagMask);
67     spu_writech(MFC_WrTagMask, tagmask);
68     spu_writech(MFC_WrTagUpdate, MFC_TAG_UPDATE_ANY);
69     spu_readch(MFC_RdTagStat);
70
71     buf[offset] = 0;
72     MFC_DMA(buf, ea64, size, tagid & 31, MFC_PUT_CMD);
73     spu_writech(MFC_WrTagMask, tagmask);
74     spu_writech(MFC_WrTagUpdate, MFC_TAG_UPDATE_ANY);
75     spu_readch(MFC_RdTagStat);
76     spu_writech(MFC_WrTagMask, oldtmask);
77     mfc_tag_release(tagid);
78 }
79
80
81
82 #endif /* _SPU_INIT_COMPLETION_H_ */