Lines Matching refs:__pdesc
22 #define SHIFT_AND_MASK_LE(__pdesc, __shift, __mask) \ argument
23 ((le32_to_cpu(*(((__le32 *)(__pdesc)))) >> (__shift)) & \
33 #define SET_BITS_OFFSET_LE(__pdesc, __shift, __len, __val) \ argument
34 (*(__le32 *)(__pdesc) = \
35 (cpu_to_le32((le32_to_cpu(*((__le32 *)(__pdesc))) & \
41 #define SET_TX_DESC_PKT_SIZE(__pdesc, __val) \ argument
42 SET_BITS_OFFSET_LE(__pdesc, 0, 16, __val)
43 #define SET_TX_DESC_OFFSET(__pdesc, __val) \ argument
44 SET_BITS_OFFSET_LE(__pdesc, 16, 8, __val)
45 #define SET_TX_DESC_BMC(__pdesc, __val) \ argument
46 SET_BITS_OFFSET_LE(__pdesc, 24, 1, __val)
47 #define SET_TX_DESC_HTC(__pdesc, __val) \ argument
48 SET_BITS_OFFSET_LE(__pdesc, 25, 1, __val)
49 #define SET_TX_DESC_LAST_SEG(__pdesc, __val) \ argument
50 SET_BITS_OFFSET_LE(__pdesc, 26, 1, __val)
51 #define SET_TX_DESC_FIRST_SEG(__pdesc, __val) \ argument
52 SET_BITS_OFFSET_LE(__pdesc, 27, 1, __val)
53 #define SET_TX_DESC_LINIP(__pdesc, __val) \ argument
54 SET_BITS_OFFSET_LE(__pdesc, 28, 1, __val)
55 #define SET_TX_DESC_NO_ACM(__pdesc, __val) \ argument
56 SET_BITS_OFFSET_LE(__pdesc, 29, 1, __val)
57 #define SET_TX_DESC_GF(__pdesc, __val) \ argument
58 SET_BITS_OFFSET_LE(__pdesc, 30, 1, __val)
59 #define SET_TX_DESC_OWN(__pdesc, __val) \ argument
60 SET_BITS_OFFSET_LE(__pdesc, 31, 1, __val)
62 #define GET_TX_DESC_PKT_SIZE(__pdesc) \ argument
63 SHIFT_AND_MASK_LE(__pdesc, 0, 16)
64 #define GET_TX_DESC_OFFSET(__pdesc) \ argument
65 SHIFT_AND_MASK_LE(__pdesc, 16, 8)
66 #define GET_TX_DESC_BMC(__pdesc) \ argument
67 SHIFT_AND_MASK_LE(__pdesc, 24, 1)
68 #define GET_TX_DESC_HTC(__pdesc) \ argument
69 SHIFT_AND_MASK_LE(__pdesc, 25, 1)
70 #define GET_TX_DESC_LAST_SEG(__pdesc) \ argument
71 SHIFT_AND_MASK_LE(__pdesc, 26, 1)
72 #define GET_TX_DESC_FIRST_SEG(__pdesc) \ argument
73 SHIFT_AND_MASK_LE(__pdesc, 27, 1)
74 #define GET_TX_DESC_LINIP(__pdesc) \ argument
75 SHIFT_AND_MASK_LE(__pdesc, 28, 1)
76 #define GET_TX_DESC_NO_ACM(__pdesc) \ argument
77 SHIFT_AND_MASK_LE(__pdesc, 29, 1)
78 #define GET_TX_DESC_GF(__pdesc) \ argument
79 SHIFT_AND_MASK_LE(__pdesc, 30, 1)
80 #define GET_TX_DESC_OWN(__pdesc) \ argument
81 SHIFT_AND_MASK_LE(__pdesc, 31, 1)
83 #define SET_TX_DESC_MACID(__pdesc, __val) \ argument
84 SET_BITS_OFFSET_LE(__pdesc+4, 0, 5, __val)
85 #define SET_TX_DESC_AGG_ENABLE(__pdesc, __val) \ argument
86 SET_BITS_OFFSET_LE(__pdesc+4, 5, 1, __val)
87 #define SET_TX_DESC_BK(__pdesc, __val) \ argument
88 SET_BITS_OFFSET_LE(__pdesc+4, 6, 1, __val)
89 #define SET_TX_DESC_RDG_ENABLE(__pdesc, __val) \ argument
90 SET_BITS_OFFSET_LE(__pdesc+4, 7, 1, __val)
91 #define SET_TX_DESC_QUEUE_SEL(__pdesc, __val) \ argument
92 SET_BITS_OFFSET_LE(__pdesc+4, 8, 5, __val)
93 #define SET_TX_DESC_RDG_NAV_EXT(__pdesc, __val) \ argument
94 SET_BITS_OFFSET_LE(__pdesc+4, 13, 1, __val)
95 #define SET_TX_DESC_LSIG_TXOP_EN(__pdesc, __val) \ argument
96 SET_BITS_OFFSET_LE(__pdesc+4, 14, 1, __val)
97 #define SET_TX_DESC_PIFS(__pdesc, __val) \ argument
98 SET_BITS_OFFSET_LE(__pdesc+4, 15, 1, __val)
99 #define SET_TX_DESC_RATE_ID(__pdesc, __val) \ argument
100 SET_BITS_OFFSET_LE(__pdesc+4, 16, 4, __val)
101 #define SET_TX_DESC_NAV_USE_HDR(__pdesc, __val) \ argument
102 SET_BITS_OFFSET_LE(__pdesc+4, 20, 1, __val)
103 #define SET_TX_DESC_EN_DESC_ID(__pdesc, __val) \ argument
104 SET_BITS_OFFSET_LE(__pdesc+4, 21, 1, __val)
105 #define SET_TX_DESC_SEC_TYPE(__pdesc, __val) \ argument
106 SET_BITS_OFFSET_LE(__pdesc+4, 22, 2, __val)
107 #define SET_TX_DESC_PKT_OFFSET(__pdesc, __val) \ argument
108 SET_BITS_OFFSET_LE(__pdesc+4, 26, 8, __val)
110 #define GET_TX_DESC_MACID(__pdesc) \ argument
111 SHIFT_AND_MASK_LE(__pdesc+4, 0, 5)
112 #define GET_TX_DESC_AGG_ENABLE(__pdesc) \ argument
113 SHIFT_AND_MASK_LE(__pdesc+4, 5, 1)
114 #define GET_TX_DESC_AGG_BREAK(__pdesc) \ argument
115 SHIFT_AND_MASK_LE(__pdesc+4, 6, 1)
116 #define GET_TX_DESC_RDG_ENABLE(__pdesc) \ argument
117 SHIFT_AND_MASK_LE(__pdesc+4, 7, 1)
118 #define GET_TX_DESC_QUEUE_SEL(__pdesc) \ argument
119 SHIFT_AND_MASK_LE(__pdesc+4, 8, 5)
120 #define GET_TX_DESC_RDG_NAV_EXT(__pdesc) \ argument
121 SHIFT_AND_MASK_LE(__pdesc+4, 13, 1)
122 #define GET_TX_DESC_LSIG_TXOP_EN(__pdesc) \ argument
123 SHIFT_AND_MASK_LE(__pdesc+4, 14, 1)
124 #define GET_TX_DESC_PIFS(__pdesc) \ argument
125 SHIFT_AND_MASK_LE(__pdesc+4, 15, 1)
126 #define GET_TX_DESC_RATE_ID(__pdesc) \ argument
127 SHIFT_AND_MASK_LE(__pdesc+4, 16, 4)
128 #define GET_TX_DESC_NAV_USE_HDR(__pdesc) \ argument
129 SHIFT_AND_MASK_LE(__pdesc+4, 20, 1)
130 #define GET_TX_DESC_EN_DESC_ID(__pdesc) \ argument
131 SHIFT_AND_MASK_LE(__pdesc+4, 21, 1)
132 #define GET_TX_DESC_SEC_TYPE(__pdesc) \ argument
133 SHIFT_AND_MASK_LE(__pdesc+4, 22, 2)
134 #define GET_TX_DESC_PKT_OFFSET(__pdesc) \ argument
135 SHIFT_AND_MASK_LE(__pdesc+4, 24, 8)
137 #define SET_TX_DESC_RTS_RC(__pdesc, __val) \ argument
138 SET_BITS_OFFSET_LE(__pdesc+8, 0, 6, __val)
139 #define SET_TX_DESC_DATA_RC(__pdesc, __val) \ argument
140 SET_BITS_OFFSET_LE(__pdesc+8, 6, 6, __val)
141 #define SET_TX_DESC_BAR_RTY_TH(__pdesc, __val) \ argument
142 SET_BITS_OFFSET_LE(__pdesc+8, 14, 2, __val)
143 #define SET_TX_DESC_MORE_FRAG(__pdesc, __val) \ argument
144 SET_BITS_OFFSET_LE(__pdesc+8, 17, 1, __val)
145 #define SET_TX_DESC_RAW(__pdesc, __val) \ argument
146 SET_BITS_OFFSET_LE(__pdesc+8, 18, 1, __val)
147 #define SET_TX_DESC_CCX(__pdesc, __val) \ argument
148 SET_BITS_OFFSET_LE(__pdesc+8, 19, 1, __val)
149 #define SET_TX_DESC_AMPDU_DENSITY(__pdesc, __val) \ argument
150 SET_BITS_OFFSET_LE(__pdesc+8, 20, 3, __val)
151 #define SET_TX_DESC_ANTSEL_A(__pdesc, __val) \ argument
152 SET_BITS_OFFSET_LE(__pdesc+8, 24, 1, __val)
153 #define SET_TX_DESC_ANTSEL_B(__pdesc, __val) \ argument
154 SET_BITS_OFFSET_LE(__pdesc+8, 25, 1, __val)
155 #define SET_TX_DESC_TX_ANT_CCK(__pdesc, __val) \ argument
156 SET_BITS_OFFSET_LE(__pdesc+8, 26, 2, __val)
157 #define SET_TX_DESC_TX_ANTL(__pdesc, __val) \ argument
158 SET_BITS_OFFSET_LE(__pdesc+8, 28, 2, __val)
159 #define SET_TX_DESC_TX_ANT_HT(__pdesc, __val) \ argument
160 SET_BITS_OFFSET_LE(__pdesc+8, 30, 2, __val)
162 #define GET_TX_DESC_RTS_RC(__pdesc) \ argument
163 SHIFT_AND_MASK_LE(__pdesc+8, 0, 6)
164 #define GET_TX_DESC_DATA_RC(__pdesc) \ argument
165 SHIFT_AND_MASK_LE(__pdesc+8, 6, 6)
166 #define GET_TX_DESC_BAR_RTY_TH(__pdesc) \ argument
167 SHIFT_AND_MASK_LE(__pdesc+8, 14, 2)
168 #define GET_TX_DESC_MORE_FRAG(__pdesc) \ argument
169 SHIFT_AND_MASK_LE(__pdesc+8, 17, 1)
170 #define GET_TX_DESC_RAW(__pdesc) \ argument
171 SHIFT_AND_MASK_LE(__pdesc+8, 18, 1)
172 #define GET_TX_DESC_CCX(__pdesc) \ argument
173 SHIFT_AND_MASK_LE(__pdesc+8, 19, 1)
174 #define GET_TX_DESC_AMPDU_DENSITY(__pdesc) \ argument
175 SHIFT_AND_MASK_LE(__pdesc+8, 20, 3)
176 #define GET_TX_DESC_ANTSEL_A(__pdesc) \ argument
177 SHIFT_AND_MASK_LE(__pdesc+8, 24, 1)
178 #define GET_TX_DESC_ANTSEL_B(__pdesc) \ argument
179 SHIFT_AND_MASK_LE(__pdesc+8, 25, 1)
180 #define GET_TX_DESC_TX_ANT_CCK(__pdesc) \ argument
181 SHIFT_AND_MASK_LE(__pdesc+8, 26, 2)
182 #define GET_TX_DESC_TX_ANTL(__pdesc) \ argument
183 SHIFT_AND_MASK_LE(__pdesc+8, 28, 2)
184 #define GET_TX_DESC_TX_ANT_HT(__pdesc) \ argument
185 SHIFT_AND_MASK_LE(__pdesc+8, 30, 2)
187 #define SET_TX_DESC_NEXT_HEAP_PAGE(__pdesc, __val) \ argument
188 SET_BITS_OFFSET_LE(__pdesc+12, 0, 8, __val)
189 #define SET_TX_DESC_TAIL_PAGE(__pdesc, __val) \ argument
190 SET_BITS_OFFSET_LE(__pdesc+12, 8, 8, __val)
191 #define SET_TX_DESC_SEQ(__pdesc, __val) \ argument
192 SET_BITS_OFFSET_LE(__pdesc+12, 16, 12, __val)
193 #define SET_TX_DESC_PKT_ID(__pdesc, __val) \ argument
194 SET_BITS_OFFSET_LE(__pdesc+12, 28, 4, __val)
196 #define GET_TX_DESC_NEXT_HEAP_PAGE(__pdesc) \ argument
197 SHIFT_AND_MASK_LE(__pdesc+12, 0, 8)
198 #define GET_TX_DESC_TAIL_PAGE(__pdesc) \ argument
199 SHIFT_AND_MASK_LE(__pdesc+12, 8, 8)
200 #define GET_TX_DESC_SEQ(__pdesc) \ argument
201 SHIFT_AND_MASK_LE(__pdesc+12, 16, 12)
202 #define GET_TX_DESC_PKT_ID(__pdesc) \ argument
203 SHIFT_AND_MASK_LE(__pdesc+12, 28, 4)
205 #define SET_TX_DESC_RTS_RATE(__pdesc, __val) \ argument
206 SET_BITS_OFFSET_LE(__pdesc+16, 0, 5, __val)
207 #define SET_TX_DESC_AP_DCFE(__pdesc, __val) \ argument
208 SET_BITS_OFFSET_LE(__pdesc+16, 5, 1, __val)
209 #define SET_TX_DESC_QOS(__pdesc, __val) \ argument
210 SET_BITS_OFFSET_LE(__pdesc+16, 6, 1, __val)
211 #define SET_TX_DESC_HWSEQ_EN(__pdesc, __val) \ argument
212 SET_BITS_OFFSET_LE(__pdesc+16, 7, 1, __val)
213 #define SET_TX_DESC_USE_RATE(__pdesc, __val) \ argument
214 SET_BITS_OFFSET_LE(__pdesc+16, 8, 1, __val)
215 #define SET_TX_DESC_DISABLE_RTS_FB(__pdesc, __val) \ argument
216 SET_BITS_OFFSET_LE(__pdesc+16, 9, 1, __val)
217 #define SET_TX_DESC_DISABLE_FB(__pdesc, __val) \ argument
218 SET_BITS_OFFSET_LE(__pdesc+16, 10, 1, __val)
219 #define SET_TX_DESC_CTS2SELF(__pdesc, __val) \ argument
220 SET_BITS_OFFSET_LE(__pdesc+16, 11, 1, __val)
221 #define SET_TX_DESC_RTS_ENABLE(__pdesc, __val) \ argument
222 SET_BITS_OFFSET_LE(__pdesc+16, 12, 1, __val)
223 #define SET_TX_DESC_HW_RTS_ENABLE(__pdesc, __val) \ argument
224 SET_BITS_OFFSET_LE(__pdesc+16, 13, 1, __val)
225 #define SET_TX_DESC_PORT_ID(__pdesc, __val) \ argument
226 SET_BITS_OFFSET_LE(__pdesc+16, 14, 1, __val)
227 #define SET_TX_DESC_WAIT_DCTS(__pdesc, __val) \ argument
228 SET_BITS_OFFSET_LE(__pdesc+16, 18, 1, __val)
229 #define SET_TX_DESC_CTS2AP_EN(__pdesc, __val) \ argument
230 SET_BITS_OFFSET_LE(__pdesc+16, 19, 1, __val)
231 #define SET_TX_DESC_TX_SUB_CARRIER(__pdesc, __val) \ argument
232 SET_BITS_OFFSET_LE(__pdesc+16, 20, 2, __val)
233 #define SET_TX_DESC_TX_STBC(__pdesc, __val) \ argument
234 SET_BITS_OFFSET_LE(__pdesc+16, 22, 2, __val)
235 #define SET_TX_DESC_DATA_SHORT(__pdesc, __val) \ argument
236 SET_BITS_OFFSET_LE(__pdesc+16, 24, 1, __val)
237 #define SET_TX_DESC_DATA_BW(__pdesc, __val) \ argument
238 SET_BITS_OFFSET_LE(__pdesc+16, 25, 1, __val)
239 #define SET_TX_DESC_RTS_SHORT(__pdesc, __val) \ argument
240 SET_BITS_OFFSET_LE(__pdesc+16, 26, 1, __val)
241 #define SET_TX_DESC_RTS_BW(__pdesc, __val) \ argument
242 SET_BITS_OFFSET_LE(__pdesc+16, 27, 1, __val)
243 #define SET_TX_DESC_RTS_SC(__pdesc, __val) \ argument
244 SET_BITS_OFFSET_LE(__pdesc+16, 28, 2, __val)
245 #define SET_TX_DESC_RTS_STBC(__pdesc, __val) \ argument
246 SET_BITS_OFFSET_LE(__pdesc+16, 30, 2, __val)
248 #define GET_TX_DESC_RTS_RATE(__pdesc) \ argument
249 SHIFT_AND_MASK_LE(__pdesc+16, 0, 5)
250 #define GET_TX_DESC_AP_DCFE(__pdesc) \ argument
251 SHIFT_AND_MASK_LE(__pdesc+16, 5, 1)
252 #define GET_TX_DESC_QOS(__pdesc) \ argument
253 SHIFT_AND_MASK_LE(__pdesc+16, 6, 1)
254 #define GET_TX_DESC_HWSEQ_EN(__pdesc) \ argument
255 SHIFT_AND_MASK_LE(__pdesc+16, 7, 1)
256 #define GET_TX_DESC_USE_RATE(__pdesc) \ argument
257 SHIFT_AND_MASK_LE(__pdesc+16, 8, 1)
258 #define GET_TX_DESC_DISABLE_RTS_FB(__pdesc) \ argument
259 SHIFT_AND_MASK_LE(__pdesc+16, 9, 1)
260 #define GET_TX_DESC_DISABLE_FB(__pdesc) \ argument
261 SHIFT_AND_MASK_LE(__pdesc+16, 10, 1)
262 #define GET_TX_DESC_CTS2SELF(__pdesc) \ argument
263 SHIFT_AND_MASK_LE(__pdesc+16, 11, 1)
264 #define GET_TX_DESC_RTS_ENABLE(__pdesc) \ argument
265 SHIFT_AND_MASK_LE(__pdesc+16, 12, 1)
266 #define GET_TX_DESC_HW_RTS_ENABLE(__pdesc) \ argument
267 SHIFT_AND_MASK_LE(__pdesc+16, 13, 1)
268 #define GET_TX_DESC_PORT_ID(__pdesc) \ argument
269 SHIFT_AND_MASK_LE(__pdesc+16, 14, 1)
270 #define GET_TX_DESC_WAIT_DCTS(__pdesc) \ argument
271 SHIFT_AND_MASK_LE(__pdesc+16, 18, 1)
272 #define GET_TX_DESC_CTS2AP_EN(__pdesc) \ argument
273 SHIFT_AND_MASK_LE(__pdesc+16, 19, 1)
274 #define GET_TX_DESC_TX_SUB_CARRIER(__pdesc) \ argument
275 SHIFT_AND_MASK_LE(__pdesc+16, 20, 2)
276 #define GET_TX_DESC_TX_STBC(__pdesc) \ argument
277 SHIFT_AND_MASK_LE(__pdesc+16, 22, 2)
278 #define GET_TX_DESC_DATA_SHORT(__pdesc) \ argument
279 SHIFT_AND_MASK_LE(__pdesc+16, 24, 1)
280 #define GET_TX_DESC_DATA_BW(__pdesc) \ argument
281 SHIFT_AND_MASK_LE(__pdesc+16, 25, 1)
282 #define GET_TX_DESC_RTS_SHORT(__pdesc) \ argument
283 SHIFT_AND_MASK_LE(__pdesc+16, 26, 1)
284 #define GET_TX_DESC_RTS_BW(__pdesc) \ argument
285 SHIFT_AND_MASK_LE(__pdesc+16, 27, 1)
286 #define GET_TX_DESC_RTS_SC(__pdesc) \ argument
287 SHIFT_AND_MASK_LE(__pdesc+16, 28, 2)
288 #define GET_TX_DESC_RTS_STBC(__pdesc) \ argument
289 SHIFT_AND_MASK_LE(__pdesc+16, 30, 2)
291 #define SET_TX_DESC_TX_RATE(__pdesc, __val) \ argument
292 SET_BITS_OFFSET_LE(__pdesc+20, 0, 6, __val)
293 #define SET_TX_DESC_DATA_SHORTGI(__pdesc, __val) \ argument
294 SET_BITS_OFFSET_LE(__pdesc+20, 6, 1, __val)
295 #define SET_TX_DESC_CCX_TAG(__pdesc, __val) \ argument
296 SET_BITS_OFFSET_LE(__pdesc+20, 7, 1, __val)
297 #define SET_TX_DESC_DATA_RATE_FB_LIMIT(__pdesc, __val) \ argument
298 SET_BITS_OFFSET_LE(__pdesc+20, 8, 5, __val)
299 #define SET_TX_DESC_RTS_RATE_FB_LIMIT(__pdesc, __val) \ argument
300 SET_BITS_OFFSET_LE(__pdesc+20, 13, 4, __val)
301 #define SET_TX_DESC_RETRY_LIMIT_ENABLE(__pdesc, __val) \ argument
302 SET_BITS_OFFSET_LE(__pdesc+20, 17, 1, __val)
303 #define SET_TX_DESC_DATA_RETRY_LIMIT(__pdesc, __val) \ argument
304 SET_BITS_OFFSET_LE(__pdesc+20, 18, 6, __val)
305 #define SET_TX_DESC_USB_TXAGG_NUM(__pdesc, __val) \ argument
306 SET_BITS_OFFSET_LE(__pdesc+20, 24, 8, __val)
308 #define GET_TX_DESC_TX_RATE(__pdesc) \ argument
309 SHIFT_AND_MASK_LE(__pdesc+20, 0, 6)
310 #define GET_TX_DESC_DATA_SHORTGI(__pdesc) \ argument
311 SHIFT_AND_MASK_LE(__pdesc+20, 6, 1)
312 #define GET_TX_DESC_CCX_TAG(__pdesc) \ argument
313 SHIFT_AND_MASK_LE(__pdesc+20, 7, 1)
314 #define GET_TX_DESC_DATA_RATE_FB_LIMIT(__pdesc) \ argument
315 SHIFT_AND_MASK_LE(__pdesc+20, 8, 5)
316 #define GET_TX_DESC_RTS_RATE_FB_LIMIT(__pdesc) \ argument
317 SHIFT_AND_MASK_LE(__pdesc+20, 13, 4)
318 #define GET_TX_DESC_RETRY_LIMIT_ENABLE(__pdesc) \ argument
319 SHIFT_AND_MASK_LE(__pdesc+20, 17, 1)
320 #define GET_TX_DESC_DATA_RETRY_LIMIT(__pdesc) \ argument
321 SHIFT_AND_MASK_LE(__pdesc+20, 18, 6)
322 #define GET_TX_DESC_USB_TXAGG_NUM(__pdesc) \ argument
323 SHIFT_AND_MASK_LE(__pdesc+20, 24, 8)
325 #define SET_TX_DESC_TXAGC_A(__pdesc, __val) \ argument
326 SET_BITS_OFFSET_LE(__pdesc+24, 0, 5, __val)
327 #define SET_TX_DESC_TXAGC_B(__pdesc, __val) \ argument
328 SET_BITS_OFFSET_LE(__pdesc+24, 5, 5, __val)
329 #define SET_TX_DESC_USE_MAX_LEN(__pdesc, __val) \ argument
330 SET_BITS_OFFSET_LE(__pdesc+24, 10, 1, __val)
331 #define SET_TX_DESC_MAX_AGG_NUM(__pdesc, __val) \ argument
332 SET_BITS_OFFSET_LE(__pdesc+24, 11, 5, __val)
333 #define SET_TX_DESC_MCSG1_MAX_LEN(__pdesc, __val) \ argument
334 SET_BITS_OFFSET_LE(__pdesc+24, 16, 4, __val)
335 #define SET_TX_DESC_MCSG2_MAX_LEN(__pdesc, __val) \ argument
336 SET_BITS_OFFSET_LE(__pdesc+24, 20, 4, __val)
337 #define SET_TX_DESC_MCSG3_MAX_LEN(__pdesc, __val) \ argument
338 SET_BITS_OFFSET_LE(__pdesc+24, 24, 4, __val)
339 #define SET_TX_DESC_MCS7_SGI_MAX_LEN(__pdesc, __val) \ argument
340 SET_BITS_OFFSET_LE(__pdesc+24, 28, 4, __val)
342 #define GET_TX_DESC_TXAGC_A(__pdesc) \ argument
343 SHIFT_AND_MASK_LE(__pdesc+24, 0, 5)
344 #define GET_TX_DESC_TXAGC_B(__pdesc) \ argument
345 SHIFT_AND_MASK_LE(__pdesc+24, 5, 5)
346 #define GET_TX_DESC_USE_MAX_LEN(__pdesc) \ argument
347 SHIFT_AND_MASK_LE(__pdesc+24, 10, 1)
348 #define GET_TX_DESC_MAX_AGG_NUM(__pdesc) \ argument
349 SHIFT_AND_MASK_LE(__pdesc+24, 11, 5)
350 #define GET_TX_DESC_MCSG1_MAX_LEN(__pdesc) \ argument
351 SHIFT_AND_MASK_LE(__pdesc+24, 16, 4)
352 #define GET_TX_DESC_MCSG2_MAX_LEN(__pdesc) \ argument
353 SHIFT_AND_MASK_LE(__pdesc+24, 20, 4)
354 #define GET_TX_DESC_MCSG3_MAX_LEN(__pdesc) \ argument
355 SHIFT_AND_MASK_LE(__pdesc+24, 24, 4)
356 #define GET_TX_DESC_MCS7_SGI_MAX_LEN(__pdesc) \ argument
357 SHIFT_AND_MASK_LE(__pdesc+24, 28, 4)
359 #define SET_TX_DESC_TX_BUFFER_SIZE(__pdesc, __val) \ argument
360 SET_BITS_OFFSET_LE(__pdesc+28, 0, 16, __val)
361 #define SET_TX_DESC_MCSG4_MAX_LEN(__pdesc, __val) \ argument
362 SET_BITS_OFFSET_LE(__pdesc+28, 16, 4, __val)
363 #define SET_TX_DESC_MCSG5_MAX_LEN(__pdesc, __val) \ argument
364 SET_BITS_OFFSET_LE(__pdesc+28, 20, 4, __val)
365 #define SET_TX_DESC_MCSG6_MAX_LEN(__pdesc, __val) \ argument
366 SET_BITS_OFFSET_LE(__pdesc+28, 24, 4, __val)
367 #define SET_TX_DESC_MCS15_SGI_MAX_LEN(__pdesc, __val) \ argument
368 SET_BITS_OFFSET_LE(__pdesc+28, 28, 4, __val)
370 #define GET_TX_DESC_TX_BUFFER_SIZE(__pdesc) \ argument
371 SHIFT_AND_MASK_LE(__pdesc+28, 0, 16)
372 #define GET_TX_DESC_MCSG4_MAX_LEN(__pdesc) \ argument
373 SHIFT_AND_MASK_LE(__pdesc+28, 16, 4)
374 #define GET_TX_DESC_MCSG5_MAX_LEN(__pdesc) \ argument
375 SHIFT_AND_MASK_LE(__pdesc+28, 20, 4)
376 #define GET_TX_DESC_MCSG6_MAX_LEN(__pdesc) \ argument
377 SHIFT_AND_MASK_LE(__pdesc+28, 24, 4)
378 #define GET_TX_DESC_MCS15_SGI_MAX_LEN(__pdesc) \ argument
379 SHIFT_AND_MASK_LE(__pdesc+28, 28, 4)
381 #define SET_TX_DESC_TX_BUFFER_ADDRESS(__pdesc, __val) \ argument
382 SET_BITS_OFFSET_LE(__pdesc+32, 0, 32, __val)
383 #define SET_TX_DESC_TX_BUFFER_ADDRESS64(__pdesc, __val) \ argument
384 SET_BITS_OFFSET_LE(__pdesc+36, 0, 32, __val)
386 #define GET_TX_DESC_TX_BUFFER_ADDRESS(__pdesc) \ argument
387 SHIFT_AND_MASK_LE(__pdesc+32, 0, 32)
388 #define GET_TX_DESC_TX_BUFFER_ADDRESS64(__pdesc) \ argument
389 SHIFT_AND_MASK_LE(__pdesc+36, 0, 32)
391 #define SET_TX_DESC_NEXT_DESC_ADDRESS(__pdesc, __val) \ argument
392 SET_BITS_OFFSET_LE(__pdesc+40, 0, 32, __val)
393 #define SET_TX_DESC_NEXT_DESC_ADDRESS64(__pdesc, __val) \ argument
394 SET_BITS_OFFSET_LE(__pdesc+44, 0, 32, __val)
396 #define GET_TX_DESC_NEXT_DESC_ADDRESS(__pdesc) \ argument
397 SHIFT_AND_MASK_LE(__pdesc+40, 0, 32)
398 #define GET_TX_DESC_NEXT_DESC_ADDRESS64(__pdesc) \ argument
399 SHIFT_AND_MASK_LE(__pdesc+44, 0, 32)
401 #define GET_RX_DESC_PKT_LEN(__pdesc) \ argument
402 SHIFT_AND_MASK_LE(__pdesc, 0, 14)
403 #define GET_RX_DESC_CRC32(__pdesc) \ argument
404 SHIFT_AND_MASK_LE(__pdesc, 14, 1)
405 #define GET_RX_DESC_ICV(__pdesc) \ argument
406 SHIFT_AND_MASK_LE(__pdesc, 15, 1)
407 #define GET_RX_DESC_DRV_INFO_SIZE(__pdesc) \ argument
408 SHIFT_AND_MASK_LE(__pdesc, 16, 4)
409 #define GET_RX_DESC_SECURITY(__pdesc) \ argument
410 SHIFT_AND_MASK_LE(__pdesc, 20, 3)
411 #define GET_RX_DESC_QOS(__pdesc) \ argument
412 SHIFT_AND_MASK_LE(__pdesc, 23, 1)
413 #define GET_RX_DESC_SHIFT(__pdesc) \ argument
414 SHIFT_AND_MASK_LE(__pdesc, 24, 2)
415 #define GET_RX_DESC_PHYST(__pdesc) \ argument
416 SHIFT_AND_MASK_LE(__pdesc, 26, 1)
417 #define GET_RX_DESC_SWDEC(__pdesc) \ argument
418 SHIFT_AND_MASK_LE(__pdesc, 27, 1)
419 #define GET_RX_DESC_LS(__pdesc) \ argument
420 SHIFT_AND_MASK_LE(__pdesc, 28, 1)
421 #define GET_RX_DESC_FS(__pdesc) \ argument
422 SHIFT_AND_MASK_LE(__pdesc, 29, 1)
423 #define GET_RX_DESC_EOR(__pdesc) \ argument
424 SHIFT_AND_MASK_LE(__pdesc, 30, 1)
425 #define GET_RX_DESC_OWN(__pdesc) \ argument
426 SHIFT_AND_MASK_LE(__pdesc, 31, 1)
428 #define SET_RX_DESC_PKT_LEN(__pdesc, __val) \ argument
429 SET_BITS_OFFSET_LE(__pdesc, 0, 14, __val)
430 #define SET_RX_DESC_EOR(__pdesc, __val) \ argument
431 SET_BITS_OFFSET_LE(__pdesc, 30, 1, __val)
432 #define SET_RX_DESC_OWN(__pdesc, __val) \ argument
433 SET_BITS_OFFSET_LE(__pdesc, 31, 1, __val)
435 #define GET_RX_DESC_MACID(__pdesc) \ argument
436 SHIFT_AND_MASK_LE(__pdesc+4, 0, 5)
437 #define GET_RX_DESC_TID(__pdesc) \ argument
438 SHIFT_AND_MASK_LE(__pdesc+4, 5, 4)
439 #define GET_RX_DESC_HWRSVD(__pdesc) \ argument
440 SHIFT_AND_MASK_LE(__pdesc+4, 9, 5)
441 #define GET_RX_DESC_PAGGR(__pdesc) \ argument
442 SHIFT_AND_MASK_LE(__pdesc+4, 14, 1)
443 #define GET_RX_DESC_FAGGR(__pdesc) \ argument
444 SHIFT_AND_MASK_LE(__pdesc+4, 15, 1)
445 #define GET_RX_DESC_A1_FIT(__pdesc) \ argument
446 SHIFT_AND_MASK_LE(__pdesc+4, 16, 4)
447 #define GET_RX_DESC_A2_FIT(__pdesc) \ argument
448 SHIFT_AND_MASK_LE(__pdesc+4, 20, 4)
449 #define GET_RX_DESC_PAM(__pdesc) \ argument
450 SHIFT_AND_MASK_LE(__pdesc+4, 24, 1)
451 #define GET_RX_DESC_PWR(__pdesc) \ argument
452 SHIFT_AND_MASK_LE(__pdesc+4, 25, 1)
453 #define GET_RX_DESC_MD(__pdesc) \ argument
454 SHIFT_AND_MASK_LE(__pdesc+4, 26, 1)
455 #define GET_RX_DESC_MF(__pdesc) \ argument
456 SHIFT_AND_MASK_LE(__pdesc+4, 27, 1)
457 #define GET_RX_DESC_TYPE(__pdesc) \ argument
458 SHIFT_AND_MASK_LE(__pdesc+4, 28, 2)
459 #define GET_RX_DESC_MC(__pdesc) \ argument
460 SHIFT_AND_MASK_LE(__pdesc+4, 30, 1)
461 #define GET_RX_DESC_BC(__pdesc) \ argument
462 SHIFT_AND_MASK_LE(__pdesc+4, 31, 1)
463 #define GET_RX_DESC_SEQ(__pdesc) \ argument
464 SHIFT_AND_MASK_LE(__pdesc+8, 0, 12)
465 #define GET_RX_DESC_FRAG(__pdesc) \ argument
466 SHIFT_AND_MASK_LE(__pdesc+8, 12, 4)
467 #define GET_RX_DESC_NEXT_PKT_LEN(__pdesc) \ argument
468 SHIFT_AND_MASK_LE(__pdesc+8, 16, 14)
469 #define GET_RX_DESC_NEXT_IND(__pdesc) \ argument
470 SHIFT_AND_MASK_LE(__pdesc+8, 30, 1)
471 #define GET_RX_DESC_RSVD(__pdesc) \ argument
472 SHIFT_AND_MASK_LE(__pdesc+8, 31, 1)
474 #define GET_RX_DESC_RXMCS(__pdesc) \ argument
475 SHIFT_AND_MASK_LE(__pdesc+12, 0, 6)
476 #define GET_RX_DESC_RXHT(__pdesc) \ argument
477 SHIFT_AND_MASK_LE(__pdesc+12, 6, 1)
478 #define GET_RX_DESC_SPLCP(__pdesc) \ argument
479 SHIFT_AND_MASK_LE(__pdesc+12, 8, 1)
480 #define GET_RX_DESC_BW(__pdesc) \ argument
481 SHIFT_AND_MASK_LE(__pdesc+12, 9, 1)
482 #define GET_RX_DESC_HTC(__pdesc) \ argument
483 SHIFT_AND_MASK_LE(__pdesc+12, 10, 1)
484 #define GET_RX_DESC_HWPC_ERR(__pdesc) \ argument
485 SHIFT_AND_MASK_LE(__pdesc+12, 14, 1)
486 #define GET_RX_DESC_HWPC_IND(__pdesc) \ argument
487 SHIFT_AND_MASK_LE(__pdesc+12, 15, 1)
488 #define GET_RX_DESC_IV0(__pdesc) \ argument
489 SHIFT_AND_MASK_LE(__pdesc+12, 16, 16)
491 #define GET_RX_DESC_IV1(__pdesc) \ argument
492 SHIFT_AND_MASK_LE(__pdesc+16, 0, 32)
493 #define GET_RX_DESC_TSFL(__pdesc) \ argument
494 SHIFT_AND_MASK_LE(__pdesc+20, 0, 32)
496 #define GET_RX_DESC_BUFF_ADDR(__pdesc) \ argument
497 SHIFT_AND_MASK_LE(__pdesc+24, 0, 32)
498 #define GET_RX_DESC_BUFF_ADDR64(__pdesc) \ argument
499 SHIFT_AND_MASK_LE(__pdesc+28, 0, 32)
501 #define SET_RX_DESC_BUFF_ADDR(__pdesc, __val) \ argument
502 SET_BITS_OFFSET_LE(__pdesc+24, 0, 32, __val)
503 #define SET_RX_DESC_BUFF_ADDR64(__pdesc, __val) \ argument
504 SET_BITS_OFFSET_LE(__pdesc+28, 0, 32, __val)
506 #define CLEAR_PCI_TX_DESC_CONTENT(__pdesc, _size) \ argument
507 memset((void *)__pdesc, 0, \