Merge tag 'drm/panel/for-3.16-rc1' of git://anongit.freedesktop.org/tegra/linux into...
[deliverable/linux.git] / drivers / staging / rtl8712 / osdep_service.h
CommitLineData
cf3e6881
AB
1/******************************************************************************
2 *
3 * Copyright(c) 2007 - 2010 Realtek Corporation. All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * Modifications for inclusion into the Linux staging tree are
19 * Copyright(c) 2010 Larry Finger. All rights reserved.
20 *
21 * Contact information:
22 * WLAN FAE <wlanfae@realtek.com>
23 * Larry Finger <Larry.Finger@lwfinger.net>
24 *
25 ******************************************************************************/
2865d42c
LF
26#ifndef __OSDEP_SERVICE_H_
27#define __OSDEP_SERVICE_H_
28
29#define _SUCCESS 1
30#define _FAIL 0
31
2865d42c 32#include <linux/spinlock.h>
359140aa
AB
33
34#include <linux/interrupt.h>
2865d42c 35#include <linux/semaphore.h>
359140aa 36#include <linux/sched.h>
2865d42c
LF
37#include <linux/sem.h>
38#include <linux/netdevice.h>
39#include <linux/etherdevice.h>
40#include <net/iw_handler.h>
359140aa
AB
41#include <linux/proc_fs.h> /* Necessary because we use the proc fs */
42
43#include "basic_types.h"
2865d42c
LF
44
45struct __queue {
46 struct list_head queue;
47 spinlock_t lock;
48};
49
50#define _pkt struct sk_buff
51#define _buffer unsigned char
52#define thread_exit() complete_and_exit(NULL, 0)
53#define _workitem struct work_struct
2865d42c
LF
54
55#define _init_queue(pqueue) \
56 do { \
57 _init_listhead(&((pqueue)->queue)); \
58 spin_lock_init(&((pqueue)->lock)); \
59 } while (0)
60
2865d42c
LF
61static inline struct list_head *get_next(struct list_head *list)
62{
63 return list->next;
64}
65
66static inline struct list_head *get_list_head(struct __queue *queue)
67{
68 return &(queue->queue);
69}
70
71#define LIST_CONTAINOR(ptr, type, member) \
72 ((type *)((char *)(ptr)-(SIZE_T)(&((type *)0)->member)))
73
2865d42c
LF
74static inline void list_delete(struct list_head *plist)
75{
76 list_del_init(plist);
77}
78
79static inline void _init_timer(struct timer_list *ptimer,
80 struct net_device *padapter,
81 void *pfunc, void *cntx)
82{
83 ptimer->function = pfunc;
84 ptimer->data = (addr_t)cntx;
85 init_timer(ptimer);
86}
87
88static inline void _set_timer(struct timer_list *ptimer, u32 delay_time)
89{
90 mod_timer(ptimer, (jiffies+(delay_time*HZ/1000)));
91}
92
93static inline void _cancel_timer(struct timer_list *ptimer, u8 *bcancelled)
94{
95 del_timer(ptimer);
96 *bcancelled = true; /*true ==1; false==0*/
97}
98
99static inline void _init_workitem(_workitem *pwork, void *pfunc, void *cntx)
100{
101 INIT_WORK(pwork, pfunc);
102}
103
104static inline void _set_workitem(_workitem *pwork)
105{
106 schedule_work(pwork);
107}
108
2865d42c
LF
109#ifndef BIT
110 #define BIT(x) (1 << (x))
111#endif
112
113/*
114For the following list_xxx operations,
115caller must guarantee the atomic context.
116Otherwise, there will be racing condition.
117*/
118static inline u32 is_list_empty(struct list_head *phead)
119{
120 if (list_empty(phead))
121 return true;
122 else
123 return false;
124}
125
0593758e
JM
126static inline void list_insert_tail(struct list_head *plist,
127 struct list_head *phead)
2865d42c
LF
128{
129 list_add_tail(plist, phead);
130}
131
132static inline u32 _down_sema(struct semaphore *sema)
133{
134 if (down_interruptible(sema))
135 return _FAIL;
136 else
137 return _SUCCESS;
138}
139
2865d42c
LF
140static inline void _init_listhead(struct list_head *list)
141{
142 INIT_LIST_HEAD(list);
143}
144
145static inline u32 _queue_empty(struct __queue *pqueue)
146{
147 return is_list_empty(&(pqueue->queue));
148}
149
9ab3726b
AO
150static inline u32 end_of_queue_search(struct list_head *head,
151 struct list_head *plist)
2865d42c
LF
152{
153 if (head == plist)
154 return true;
155 else
156 return false;
157}
158
159static inline void sleep_schedulable(int ms)
160{
161 u32 delta;
162
163 delta = (ms * HZ) / 1000;/*(ms)*/
164 if (delta == 0)
165 delta = 1;/* 1 ms */
166 set_current_state(TASK_INTERRUPTIBLE);
167 if (schedule_timeout(delta) != 0)
774448dc 168 return;
2865d42c
LF
169}
170
171static inline u8 *_malloc(u32 sz)
172{
a2ac9d69 173 return kmalloc(sz, GFP_ATOMIC);
2865d42c
LF
174}
175
176static inline unsigned char _cancel_timer_ex(struct timer_list *ptimer)
177{
178 return del_timer(ptimer);
179}
180
181static inline void thread_enter(void *context)
182{
2865d42c
LF
183 allow_signal(SIGTERM);
184}
185
186static inline void flush_signals_thread(void)
187{
188 if (signal_pending(current))
189 flush_signals(current);
190}
191
192static inline u32 _RND8(u32 sz)
193{
4c510e95 194 return ((sz >> 3) + ((sz & 7) ? 1 : 0)) << 3;
2865d42c
LF
195}
196
197static inline u32 _RND128(u32 sz)
198{
4c510e95 199 return ((sz >> 7) + ((sz & 127) ? 1 : 0)) << 7;
2865d42c
LF
200}
201
202static inline u32 _RND256(u32 sz)
203{
4c510e95 204 return ((sz >> 8) + ((sz & 255) ? 1 : 0)) << 8;
2865d42c
LF
205}
206
207static inline u32 _RND512(u32 sz)
208{
4c510e95 209 return ((sz >> 9) + ((sz & 511) ? 1 : 0)) << 9;
2865d42c
LF
210}
211
2865d42c
LF
212#endif
213
This page took 0.30582 seconds and 5 git commands to generate.