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