xref: /wlan-driver/fw-api/hw/qca8074/v2/rx_mpdu_desc_info.h (revision 5113495b16420b49004c444715d2daae2066e7dc)
1*5113495bSYour Name /*
2*5113495bSYour Name  * Copyright (c) 2020 The Linux Foundation. All rights reserved.
3*5113495bSYour Name  *
4*5113495bSYour Name  * Permission to use, copy, modify, and/or distribute this software for any
5*5113495bSYour Name  * purpose with or without fee is hereby granted, provided that the above
6*5113495bSYour Name  * copyright notice and this permission notice appear in all copies.
7*5113495bSYour Name  *
8*5113495bSYour Name  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9*5113495bSYour Name  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10*5113495bSYour Name  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11*5113495bSYour Name  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12*5113495bSYour Name  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13*5113495bSYour Name  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14*5113495bSYour Name  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15*5113495bSYour Name  */
16*5113495bSYour Name 
17*5113495bSYour Name // $ATH_LICENSE_HW_HDR_C$
18*5113495bSYour Name //
19*5113495bSYour Name // DO NOT EDIT!  This file is automatically generated
20*5113495bSYour Name //               These definitions are tied to a particular hardware layout
21*5113495bSYour Name 
22*5113495bSYour Name 
23*5113495bSYour Name #ifndef _RX_MPDU_DESC_INFO_H_
24*5113495bSYour Name #define _RX_MPDU_DESC_INFO_H_
25*5113495bSYour Name #if !defined(__ASSEMBLER__)
26*5113495bSYour Name #endif
27*5113495bSYour Name 
28*5113495bSYour Name 
29*5113495bSYour Name // ################ START SUMMARY #################
30*5113495bSYour Name //
31*5113495bSYour Name //	Dword	Fields
32*5113495bSYour Name //	0	msdu_count[7:0], mpdu_sequence_number[19:8], fragment_flag[20], mpdu_retry_bit[21], ampdu_flag[22], bar_frame[23], pn_fields_contain_valid_info[24], sa_is_valid[25], sa_idx_timeout[26], da_is_valid[27], da_is_mcbc[28], da_idx_timeout[29], raw_mpdu[30], more_fragment_flag[31]
33*5113495bSYour Name //	1	peer_meta_data[31:0]
34*5113495bSYour Name //
35*5113495bSYour Name // ################ END SUMMARY #################
36*5113495bSYour Name 
37*5113495bSYour Name #define NUM_OF_DWORDS_RX_MPDU_DESC_INFO 2
38*5113495bSYour Name 
39*5113495bSYour Name struct rx_mpdu_desc_info {
40*5113495bSYour Name              uint32_t msdu_count                      :  8, //[7:0]
41*5113495bSYour Name                       mpdu_sequence_number            : 12, //[19:8]
42*5113495bSYour Name                       fragment_flag                   :  1, //[20]
43*5113495bSYour Name                       mpdu_retry_bit                  :  1, //[21]
44*5113495bSYour Name                       ampdu_flag                      :  1, //[22]
45*5113495bSYour Name                       bar_frame                       :  1, //[23]
46*5113495bSYour Name                       pn_fields_contain_valid_info    :  1, //[24]
47*5113495bSYour Name                       sa_is_valid                     :  1, //[25]
48*5113495bSYour Name                       sa_idx_timeout                  :  1, //[26]
49*5113495bSYour Name                       da_is_valid                     :  1, //[27]
50*5113495bSYour Name                       da_is_mcbc                      :  1, //[28]
51*5113495bSYour Name                       da_idx_timeout                  :  1, //[29]
52*5113495bSYour Name                       raw_mpdu                        :  1, //[30]
53*5113495bSYour Name                       more_fragment_flag              :  1; //[31]
54*5113495bSYour Name              uint32_t peer_meta_data                  : 32; //[31:0]
55*5113495bSYour Name };
56*5113495bSYour Name 
57*5113495bSYour Name /*
58*5113495bSYour Name 
59*5113495bSYour Name msdu_count
60*5113495bSYour Name 
61*5113495bSYour Name 			Consumer: REO/SW/FW
62*5113495bSYour Name 
63*5113495bSYour Name 			Producer: RXDMA
64*5113495bSYour Name 
65*5113495bSYour Name 
66*5113495bSYour Name 
67*5113495bSYour Name 			The number of MSDUs within the MPDU
68*5113495bSYour Name 
69*5113495bSYour Name 			<legal all>
70*5113495bSYour Name 
71*5113495bSYour Name mpdu_sequence_number
72*5113495bSYour Name 
73*5113495bSYour Name 			Consumer: REO/SW/FW
74*5113495bSYour Name 
75*5113495bSYour Name 			Producer: RXDMA
76*5113495bSYour Name 
77*5113495bSYour Name 
78*5113495bSYour Name 
79*5113495bSYour Name 			The field can have two different meanings based on the
80*5113495bSYour Name 			setting of field 'BAR_frame':
81*5113495bSYour Name 
82*5113495bSYour Name 
83*5113495bSYour Name 
84*5113495bSYour Name 			'BAR_frame' is NOT set:
85*5113495bSYour Name 
86*5113495bSYour Name 			The MPDU sequence number of the received frame.
87*5113495bSYour Name 
88*5113495bSYour Name 
89*5113495bSYour Name 
90*5113495bSYour Name 			'BAR_frame' is set.
91*5113495bSYour Name 
92*5113495bSYour Name 			The MPDU Start sequence number from the BAR frame
93*5113495bSYour Name 
94*5113495bSYour Name 			<legal all>
95*5113495bSYour Name 
96*5113495bSYour Name fragment_flag
97*5113495bSYour Name 
98*5113495bSYour Name 			Consumer: REO/SW/FW
99*5113495bSYour Name 
100*5113495bSYour Name 			Producer: RXDMA
101*5113495bSYour Name 
102*5113495bSYour Name 
103*5113495bSYour Name 
104*5113495bSYour Name 			When set, this MPDU is a fragment and REO should forward
105*5113495bSYour Name 			this fragment MPDU to the REO destination ring without any
106*5113495bSYour Name 			reorder checks, pn checks or bitmap update. This implies
107*5113495bSYour Name 			that REO is forwarding the pointer to the MSDU link
108*5113495bSYour Name 			descriptor. The destination ring is coming from a
109*5113495bSYour Name 			programmable register setting in REO
110*5113495bSYour Name 
111*5113495bSYour Name 
112*5113495bSYour Name 
113*5113495bSYour Name 			<legal all>
114*5113495bSYour Name 
115*5113495bSYour Name mpdu_retry_bit
116*5113495bSYour Name 
117*5113495bSYour Name 			Consumer: REO/SW/FW
118*5113495bSYour Name 
119*5113495bSYour Name 			Producer: RXDMA
120*5113495bSYour Name 
121*5113495bSYour Name 
122*5113495bSYour Name 
123*5113495bSYour Name 			The retry bit setting from the MPDU header of the
124*5113495bSYour Name 			received frame
125*5113495bSYour Name 
126*5113495bSYour Name 			<legal all>
127*5113495bSYour Name 
128*5113495bSYour Name ampdu_flag
129*5113495bSYour Name 
130*5113495bSYour Name 			Consumer: REO/SW/FW
131*5113495bSYour Name 
132*5113495bSYour Name 			Producer: RXDMA
133*5113495bSYour Name 
134*5113495bSYour Name 
135*5113495bSYour Name 
136*5113495bSYour Name 			When set, the MPDU was received as part of an A-MPDU.
137*5113495bSYour Name 
138*5113495bSYour Name 			<legal all>
139*5113495bSYour Name 
140*5113495bSYour Name bar_frame
141*5113495bSYour Name 
142*5113495bSYour Name 			Consumer: REO/SW/FW
143*5113495bSYour Name 
144*5113495bSYour Name 			Producer: RXDMA
145*5113495bSYour Name 
146*5113495bSYour Name 
147*5113495bSYour Name 
148*5113495bSYour Name 			When set, the received frame is a BAR frame. After
149*5113495bSYour Name 			processing, this frame shall be pushed to SW or deleted.
150*5113495bSYour Name 
151*5113495bSYour Name 			<legal all>
152*5113495bSYour Name 
153*5113495bSYour Name pn_fields_contain_valid_info
154*5113495bSYour Name 
155*5113495bSYour Name 			Consumer: REO/SW/FW
156*5113495bSYour Name 
157*5113495bSYour Name 			Producer: RXDMA
158*5113495bSYour Name 
159*5113495bSYour Name 
160*5113495bSYour Name 
161*5113495bSYour Name 			Copied here by RXDMA from RX_MPDU_END
162*5113495bSYour Name 
163*5113495bSYour Name 			When not set, REO will Not perform a PN sequence number
164*5113495bSYour Name 			check
165*5113495bSYour Name 
166*5113495bSYour Name sa_is_valid
167*5113495bSYour Name 
168*5113495bSYour Name 			When set, OLE found a valid SA entry for all MSDUs in
169*5113495bSYour Name 			this MPDU
170*5113495bSYour Name 
171*5113495bSYour Name 			<legal all>
172*5113495bSYour Name 
173*5113495bSYour Name sa_idx_timeout
174*5113495bSYour Name 
175*5113495bSYour Name 			When set, at least 1 MSDU within the MPDU has an
176*5113495bSYour Name 			unsuccessful MAC source address search due to the expiration
177*5113495bSYour Name 			of the search timer.
178*5113495bSYour Name 
179*5113495bSYour Name 			<legal all>
180*5113495bSYour Name 
181*5113495bSYour Name da_is_valid
182*5113495bSYour Name 
183*5113495bSYour Name 			When set, OLE found a valid DA entry for all MSDUs in
184*5113495bSYour Name 			this MPDU
185*5113495bSYour Name 
186*5113495bSYour Name 			<legal all>
187*5113495bSYour Name 
188*5113495bSYour Name da_is_mcbc
189*5113495bSYour Name 
190*5113495bSYour Name 			Field Only valid if da_is_valid is set
191*5113495bSYour Name 
192*5113495bSYour Name 
193*5113495bSYour Name 
194*5113495bSYour Name 			When set, at least one of the DA addresses is a
195*5113495bSYour Name 			Multicast or Broadcast address.
196*5113495bSYour Name 
197*5113495bSYour Name 			<legal all>
198*5113495bSYour Name 
199*5113495bSYour Name da_idx_timeout
200*5113495bSYour Name 
201*5113495bSYour Name 			When set, at least 1 MSDU within the MPDU has an
202*5113495bSYour Name 			unsuccessful MAC destination address search due to the
203*5113495bSYour Name 			expiration of the search timer.
204*5113495bSYour Name 
205*5113495bSYour Name 			<legal all>
206*5113495bSYour Name 
207*5113495bSYour Name raw_mpdu
208*5113495bSYour Name 
209*5113495bSYour Name 			Field only valid when first_msdu_in_mpdu_flag is set.
210*5113495bSYour Name 
211*5113495bSYour Name 
212*5113495bSYour Name 
213*5113495bSYour Name 			When set, the contents in the MSDU buffer contains a
214*5113495bSYour Name 			'RAW' MPDU. This 'RAW' MPDU might be spread out over
215*5113495bSYour Name 			multiple MSDU buffers.
216*5113495bSYour Name 
217*5113495bSYour Name 			<legal all>
218*5113495bSYour Name 
219*5113495bSYour Name more_fragment_flag
220*5113495bSYour Name 
221*5113495bSYour Name 			The More Fragment bit setting from the MPDU header of
222*5113495bSYour Name 			the received frame
223*5113495bSYour Name 
224*5113495bSYour Name 
225*5113495bSYour Name 
226*5113495bSYour Name 			<legal all>
227*5113495bSYour Name 
228*5113495bSYour Name peer_meta_data
229*5113495bSYour Name 
230*5113495bSYour Name 			Meta data that SW has programmed in the Peer table entry
231*5113495bSYour Name 			of the transmitting STA.
232*5113495bSYour Name 
233*5113495bSYour Name 			<legal all>
234*5113495bSYour Name */
235*5113495bSYour Name 
236*5113495bSYour Name 
237*5113495bSYour Name /* Description		RX_MPDU_DESC_INFO_0_MSDU_COUNT
238*5113495bSYour Name 
239*5113495bSYour Name 			Consumer: REO/SW/FW
240*5113495bSYour Name 
241*5113495bSYour Name 			Producer: RXDMA
242*5113495bSYour Name 
243*5113495bSYour Name 
244*5113495bSYour Name 
245*5113495bSYour Name 			The number of MSDUs within the MPDU
246*5113495bSYour Name 
247*5113495bSYour Name 			<legal all>
248*5113495bSYour Name */
249*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_MSDU_COUNT_OFFSET                        0x00000000
250*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_MSDU_COUNT_LSB                           0
251*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_MSDU_COUNT_MASK                          0x000000ff
252*5113495bSYour Name 
253*5113495bSYour Name /* Description		RX_MPDU_DESC_INFO_0_MPDU_SEQUENCE_NUMBER
254*5113495bSYour Name 
255*5113495bSYour Name 			Consumer: REO/SW/FW
256*5113495bSYour Name 
257*5113495bSYour Name 			Producer: RXDMA
258*5113495bSYour Name 
259*5113495bSYour Name 
260*5113495bSYour Name 
261*5113495bSYour Name 			The field can have two different meanings based on the
262*5113495bSYour Name 			setting of field 'BAR_frame':
263*5113495bSYour Name 
264*5113495bSYour Name 
265*5113495bSYour Name 
266*5113495bSYour Name 			'BAR_frame' is NOT set:
267*5113495bSYour Name 
268*5113495bSYour Name 			The MPDU sequence number of the received frame.
269*5113495bSYour Name 
270*5113495bSYour Name 
271*5113495bSYour Name 
272*5113495bSYour Name 			'BAR_frame' is set.
273*5113495bSYour Name 
274*5113495bSYour Name 			The MPDU Start sequence number from the BAR frame
275*5113495bSYour Name 
276*5113495bSYour Name 			<legal all>
277*5113495bSYour Name */
278*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_MPDU_SEQUENCE_NUMBER_OFFSET              0x00000000
279*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_MPDU_SEQUENCE_NUMBER_LSB                 8
280*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_MPDU_SEQUENCE_NUMBER_MASK                0x000fff00
281*5113495bSYour Name 
282*5113495bSYour Name /* Description		RX_MPDU_DESC_INFO_0_FRAGMENT_FLAG
283*5113495bSYour Name 
284*5113495bSYour Name 			Consumer: REO/SW/FW
285*5113495bSYour Name 
286*5113495bSYour Name 			Producer: RXDMA
287*5113495bSYour Name 
288*5113495bSYour Name 
289*5113495bSYour Name 
290*5113495bSYour Name 			When set, this MPDU is a fragment and REO should forward
291*5113495bSYour Name 			this fragment MPDU to the REO destination ring without any
292*5113495bSYour Name 			reorder checks, pn checks or bitmap update. This implies
293*5113495bSYour Name 			that REO is forwarding the pointer to the MSDU link
294*5113495bSYour Name 			descriptor. The destination ring is coming from a
295*5113495bSYour Name 			programmable register setting in REO
296*5113495bSYour Name 
297*5113495bSYour Name 
298*5113495bSYour Name 
299*5113495bSYour Name 			<legal all>
300*5113495bSYour Name */
301*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_FRAGMENT_FLAG_OFFSET                     0x00000000
302*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_FRAGMENT_FLAG_LSB                        20
303*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_FRAGMENT_FLAG_MASK                       0x00100000
304*5113495bSYour Name 
305*5113495bSYour Name /* Description		RX_MPDU_DESC_INFO_0_MPDU_RETRY_BIT
306*5113495bSYour Name 
307*5113495bSYour Name 			Consumer: REO/SW/FW
308*5113495bSYour Name 
309*5113495bSYour Name 			Producer: RXDMA
310*5113495bSYour Name 
311*5113495bSYour Name 
312*5113495bSYour Name 
313*5113495bSYour Name 			The retry bit setting from the MPDU header of the
314*5113495bSYour Name 			received frame
315*5113495bSYour Name 
316*5113495bSYour Name 			<legal all>
317*5113495bSYour Name */
318*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_MPDU_RETRY_BIT_OFFSET                    0x00000000
319*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_MPDU_RETRY_BIT_LSB                       21
320*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_MPDU_RETRY_BIT_MASK                      0x00200000
321*5113495bSYour Name 
322*5113495bSYour Name /* Description		RX_MPDU_DESC_INFO_0_AMPDU_FLAG
323*5113495bSYour Name 
324*5113495bSYour Name 			Consumer: REO/SW/FW
325*5113495bSYour Name 
326*5113495bSYour Name 			Producer: RXDMA
327*5113495bSYour Name 
328*5113495bSYour Name 
329*5113495bSYour Name 
330*5113495bSYour Name 			When set, the MPDU was received as part of an A-MPDU.
331*5113495bSYour Name 
332*5113495bSYour Name 			<legal all>
333*5113495bSYour Name */
334*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_AMPDU_FLAG_OFFSET                        0x00000000
335*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_AMPDU_FLAG_LSB                           22
336*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_AMPDU_FLAG_MASK                          0x00400000
337*5113495bSYour Name 
338*5113495bSYour Name /* Description		RX_MPDU_DESC_INFO_0_BAR_FRAME
339*5113495bSYour Name 
340*5113495bSYour Name 			Consumer: REO/SW/FW
341*5113495bSYour Name 
342*5113495bSYour Name 			Producer: RXDMA
343*5113495bSYour Name 
344*5113495bSYour Name 
345*5113495bSYour Name 
346*5113495bSYour Name 			When set, the received frame is a BAR frame. After
347*5113495bSYour Name 			processing, this frame shall be pushed to SW or deleted.
348*5113495bSYour Name 
349*5113495bSYour Name 			<legal all>
350*5113495bSYour Name */
351*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_BAR_FRAME_OFFSET                         0x00000000
352*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_BAR_FRAME_LSB                            23
353*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_BAR_FRAME_MASK                           0x00800000
354*5113495bSYour Name 
355*5113495bSYour Name /* Description		RX_MPDU_DESC_INFO_0_PN_FIELDS_CONTAIN_VALID_INFO
356*5113495bSYour Name 
357*5113495bSYour Name 			Consumer: REO/SW/FW
358*5113495bSYour Name 
359*5113495bSYour Name 			Producer: RXDMA
360*5113495bSYour Name 
361*5113495bSYour Name 
362*5113495bSYour Name 
363*5113495bSYour Name 			Copied here by RXDMA from RX_MPDU_END
364*5113495bSYour Name 
365*5113495bSYour Name 			When not set, REO will Not perform a PN sequence number
366*5113495bSYour Name 			check
367*5113495bSYour Name */
368*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_PN_FIELDS_CONTAIN_VALID_INFO_OFFSET      0x00000000
369*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_PN_FIELDS_CONTAIN_VALID_INFO_LSB         24
370*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_PN_FIELDS_CONTAIN_VALID_INFO_MASK        0x01000000
371*5113495bSYour Name 
372*5113495bSYour Name /* Description		RX_MPDU_DESC_INFO_0_SA_IS_VALID
373*5113495bSYour Name 
374*5113495bSYour Name 			When set, OLE found a valid SA entry for all MSDUs in
375*5113495bSYour Name 			this MPDU
376*5113495bSYour Name 
377*5113495bSYour Name 			<legal all>
378*5113495bSYour Name */
379*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_SA_IS_VALID_OFFSET                       0x00000000
380*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_SA_IS_VALID_LSB                          25
381*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_SA_IS_VALID_MASK                         0x02000000
382*5113495bSYour Name 
383*5113495bSYour Name /* Description		RX_MPDU_DESC_INFO_0_SA_IDX_TIMEOUT
384*5113495bSYour Name 
385*5113495bSYour Name 			When set, at least 1 MSDU within the MPDU has an
386*5113495bSYour Name 			unsuccessful MAC source address search due to the expiration
387*5113495bSYour Name 			of the search timer.
388*5113495bSYour Name 
389*5113495bSYour Name 			<legal all>
390*5113495bSYour Name */
391*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_SA_IDX_TIMEOUT_OFFSET                    0x00000000
392*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_SA_IDX_TIMEOUT_LSB                       26
393*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_SA_IDX_TIMEOUT_MASK                      0x04000000
394*5113495bSYour Name 
395*5113495bSYour Name /* Description		RX_MPDU_DESC_INFO_0_DA_IS_VALID
396*5113495bSYour Name 
397*5113495bSYour Name 			When set, OLE found a valid DA entry for all MSDUs in
398*5113495bSYour Name 			this MPDU
399*5113495bSYour Name 
400*5113495bSYour Name 			<legal all>
401*5113495bSYour Name */
402*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_DA_IS_VALID_OFFSET                       0x00000000
403*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_DA_IS_VALID_LSB                          27
404*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_DA_IS_VALID_MASK                         0x08000000
405*5113495bSYour Name 
406*5113495bSYour Name /* Description		RX_MPDU_DESC_INFO_0_DA_IS_MCBC
407*5113495bSYour Name 
408*5113495bSYour Name 			Field Only valid if da_is_valid is set
409*5113495bSYour Name 
410*5113495bSYour Name 
411*5113495bSYour Name 
412*5113495bSYour Name 			When set, at least one of the DA addresses is a
413*5113495bSYour Name 			Multicast or Broadcast address.
414*5113495bSYour Name 
415*5113495bSYour Name 			<legal all>
416*5113495bSYour Name */
417*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_DA_IS_MCBC_OFFSET                        0x00000000
418*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_DA_IS_MCBC_LSB                           28
419*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_DA_IS_MCBC_MASK                          0x10000000
420*5113495bSYour Name 
421*5113495bSYour Name /* Description		RX_MPDU_DESC_INFO_0_DA_IDX_TIMEOUT
422*5113495bSYour Name 
423*5113495bSYour Name 			When set, at least 1 MSDU within the MPDU has an
424*5113495bSYour Name 			unsuccessful MAC destination address search due to the
425*5113495bSYour Name 			expiration of the search timer.
426*5113495bSYour Name 
427*5113495bSYour Name 			<legal all>
428*5113495bSYour Name */
429*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_DA_IDX_TIMEOUT_OFFSET                    0x00000000
430*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_DA_IDX_TIMEOUT_LSB                       29
431*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_DA_IDX_TIMEOUT_MASK                      0x20000000
432*5113495bSYour Name 
433*5113495bSYour Name /* Description		RX_MPDU_DESC_INFO_0_RAW_MPDU
434*5113495bSYour Name 
435*5113495bSYour Name 			Field only valid when first_msdu_in_mpdu_flag is set.
436*5113495bSYour Name 
437*5113495bSYour Name 
438*5113495bSYour Name 
439*5113495bSYour Name 			When set, the contents in the MSDU buffer contains a
440*5113495bSYour Name 			'RAW' MPDU. This 'RAW' MPDU might be spread out over
441*5113495bSYour Name 			multiple MSDU buffers.
442*5113495bSYour Name 
443*5113495bSYour Name 			<legal all>
444*5113495bSYour Name */
445*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_RAW_MPDU_OFFSET                          0x00000000
446*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_RAW_MPDU_LSB                             30
447*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_RAW_MPDU_MASK                            0x40000000
448*5113495bSYour Name 
449*5113495bSYour Name /* Description		RX_MPDU_DESC_INFO_0_MORE_FRAGMENT_FLAG
450*5113495bSYour Name 
451*5113495bSYour Name 			The More Fragment bit setting from the MPDU header of
452*5113495bSYour Name 			the received frame
453*5113495bSYour Name 
454*5113495bSYour Name 
455*5113495bSYour Name 
456*5113495bSYour Name 			<legal all>
457*5113495bSYour Name */
458*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_MORE_FRAGMENT_FLAG_OFFSET                0x00000000
459*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_MORE_FRAGMENT_FLAG_LSB                   31
460*5113495bSYour Name #define RX_MPDU_DESC_INFO_0_MORE_FRAGMENT_FLAG_MASK                  0x80000000
461*5113495bSYour Name 
462*5113495bSYour Name /* Description		RX_MPDU_DESC_INFO_1_PEER_META_DATA
463*5113495bSYour Name 
464*5113495bSYour Name 			Meta data that SW has programmed in the Peer table entry
465*5113495bSYour Name 			of the transmitting STA.
466*5113495bSYour Name 
467*5113495bSYour Name 			<legal all>
468*5113495bSYour Name */
469*5113495bSYour Name #define RX_MPDU_DESC_INFO_1_PEER_META_DATA_OFFSET                    0x00000004
470*5113495bSYour Name #define RX_MPDU_DESC_INFO_1_PEER_META_DATA_LSB                       0
471*5113495bSYour Name #define RX_MPDU_DESC_INFO_1_PEER_META_DATA_MASK                      0xffffffff
472*5113495bSYour Name 
473*5113495bSYour Name 
474*5113495bSYour Name #endif // _RX_MPDU_DESC_INFO_H_
475