xref: /wlan-driver/fw-api/hw/qca6290/v1/rx_msdu_desc_info.h (revision 5113495b16420b49004c444715d2daae2066e7dc)
1*5113495bSYour Name /*
2*5113495bSYour Name  * Copyright (c) 2016-2017 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 // $ATH_LICENSE_HW_HDR_C$
20*5113495bSYour Name //
21*5113495bSYour Name // DO NOT EDIT!  This file is automatically generated
22*5113495bSYour Name //               These definitions are tied to a particular hardware layout
23*5113495bSYour Name 
24*5113495bSYour Name 
25*5113495bSYour Name #ifndef _RX_MSDU_DESC_INFO_H_
26*5113495bSYour Name #define _RX_MSDU_DESC_INFO_H_
27*5113495bSYour Name #if !defined(__ASSEMBLER__)
28*5113495bSYour Name #endif
29*5113495bSYour Name 
30*5113495bSYour Name 
31*5113495bSYour Name // ################ START SUMMARY #################
32*5113495bSYour Name //
33*5113495bSYour Name //	Dword	Fields
34*5113495bSYour Name //	0	first_msdu_in_mpdu_flag[0], last_msdu_in_mpdu_flag[1], msdu_continuation[2], msdu_length[16:3], reo_destination_indication[21:17], msdu_drop[22], sa_is_valid[23], sa_idx_timeout[24], da_is_valid[25], da_is_mcbc[26], da_idx_timeout[27], reserved_0a[31:28]
35*5113495bSYour Name //	1	reserved_1a[31:0]
36*5113495bSYour Name //
37*5113495bSYour Name // ################ END SUMMARY #################
38*5113495bSYour Name 
39*5113495bSYour Name #define NUM_OF_DWORDS_RX_MSDU_DESC_INFO 2
40*5113495bSYour Name 
41*5113495bSYour Name struct rx_msdu_desc_info {
42*5113495bSYour Name              uint32_t first_msdu_in_mpdu_flag         :  1, //[0]
43*5113495bSYour Name                       last_msdu_in_mpdu_flag          :  1, //[1]
44*5113495bSYour Name                       msdu_continuation               :  1, //[2]
45*5113495bSYour Name                       msdu_length                     : 14, //[16:3]
46*5113495bSYour Name                       reo_destination_indication      :  5, //[21:17]
47*5113495bSYour Name                       msdu_drop                       :  1, //[22]
48*5113495bSYour Name                       sa_is_valid                     :  1, //[23]
49*5113495bSYour Name                       sa_idx_timeout                  :  1, //[24]
50*5113495bSYour Name                       da_is_valid                     :  1, //[25]
51*5113495bSYour Name                       da_is_mcbc                      :  1, //[26]
52*5113495bSYour Name                       da_idx_timeout                  :  1, //[27]
53*5113495bSYour Name                       reserved_0a                     :  4; //[31:28]
54*5113495bSYour Name              uint32_t reserved_1a                     : 32; //[31:0]
55*5113495bSYour Name };
56*5113495bSYour Name 
57*5113495bSYour Name /*
58*5113495bSYour Name 
59*5113495bSYour Name first_msdu_in_mpdu_flag
60*5113495bSYour Name 
61*5113495bSYour Name 			<enum 0 Not_first_msdu> This is not the first MSDU in
62*5113495bSYour Name 			the MPDU.
63*5113495bSYour Name 
64*5113495bSYour Name 			<enum 1 first_msdu> This MSDU is the first one in the
65*5113495bSYour Name 			MPDU. <legal all>
66*5113495bSYour Name 
67*5113495bSYour Name last_msdu_in_mpdu_flag
68*5113495bSYour Name 
69*5113495bSYour Name 			Consumer: WBM/REO/SW/FW
70*5113495bSYour Name 
71*5113495bSYour Name 			Producer: RXDMA
72*5113495bSYour Name 
73*5113495bSYour Name 
74*5113495bSYour Name 
75*5113495bSYour Name 
76*5113495bSYour Name 
77*5113495bSYour Name 			<enum 0 Not_last_msdu> There are more MSDUs linked to
78*5113495bSYour Name 			this MSDU that belongs to this MPDU
79*5113495bSYour Name 
80*5113495bSYour Name 			<enum 1 Last_msdu> this MSDU is the last one in the
81*5113495bSYour Name 			MPDU. This setting is only allowed in combination with
82*5113495bSYour Name 			'Msdu_continuation' set to 0. This implies that when an msdu
83*5113495bSYour Name 			is spread out over multiple buffers and thus
84*5113495bSYour Name 			msdu_continuation is set, only for the very last buffer of
85*5113495bSYour Name 			the msdu, can the 'last_msdu_in_mpdu_flag' be set.
86*5113495bSYour Name 
87*5113495bSYour Name 
88*5113495bSYour Name 
89*5113495bSYour Name 			When both first_msdu_in_mpdu_flag and
90*5113495bSYour Name 			last_msdu_in_mpdu_flag are set, the MPDU that this MSDU
91*5113495bSYour Name 			belongs to only contains a single MSDU.
92*5113495bSYour Name 
93*5113495bSYour Name 			<legal all>
94*5113495bSYour Name 
95*5113495bSYour Name msdu_continuation
96*5113495bSYour Name 
97*5113495bSYour Name 			When set, this MSDU buffer was not able to hold the
98*5113495bSYour Name 			entire MSDU. The next buffer will therefor contain
99*5113495bSYour Name 			additional information related to this MSDU.
100*5113495bSYour Name 
101*5113495bSYour Name 
102*5113495bSYour Name 
103*5113495bSYour Name 			<legal all>
104*5113495bSYour Name 
105*5113495bSYour Name msdu_length
106*5113495bSYour Name 
107*5113495bSYour Name 			Field is only valid in combination with the
108*5113495bSYour Name 			'first_msdu_in_mpdu_flag ' being set. When the
109*5113495bSYour Name 			'first_msdu_in_mpdu_flag ' is not set, this field shall be
110*5113495bSYour Name 			0.
111*5113495bSYour Name 
112*5113495bSYour Name 
113*5113495bSYour Name 
114*5113495bSYour Name 			Full MSDU length in bytes after decapsulation.
115*5113495bSYour Name 
116*5113495bSYour Name 
117*5113495bSYour Name 
118*5113495bSYour Name 			This field is still valid for MPDU frames without
119*5113495bSYour Name 			A-MSDU.  It still represents MSDU length after decapsulation
120*5113495bSYour Name 
121*5113495bSYour Name 
122*5113495bSYour Name 
123*5113495bSYour Name 			Or in case of RAW MPDUs, it indicates the length of the
124*5113495bSYour Name 			entire MPDU (without FCS field)
125*5113495bSYour Name 
126*5113495bSYour Name 			<legal all>
127*5113495bSYour Name 
128*5113495bSYour Name reo_destination_indication
129*5113495bSYour Name 
130*5113495bSYour Name 			The ID of the REO exit ring where the MSDU frame shall
131*5113495bSYour Name 			push after (MPDU level) reordering has finished.
132*5113495bSYour Name 
133*5113495bSYour Name 
134*5113495bSYour Name 
135*5113495bSYour Name 			<enum 0 reo_destination_tcl> Reo will push the frame
136*5113495bSYour Name 			into the REO2TCL ring
137*5113495bSYour Name 
138*5113495bSYour Name 			<enum 1 reo_destination_sw1> Reo will push the frame
139*5113495bSYour Name 			into the REO2SW1 ring
140*5113495bSYour Name 
141*5113495bSYour Name 			<enum 2 reo_destination_sw2> Reo will push the frame
142*5113495bSYour Name 			into the REO2SW1 ring
143*5113495bSYour Name 
144*5113495bSYour Name 			<enum 3 reo_destination_sw3> Reo will push the frame
145*5113495bSYour Name 			into the REO2SW1 ring
146*5113495bSYour Name 
147*5113495bSYour Name 			<enum 4 reo_destination_sw4> Reo will push the frame
148*5113495bSYour Name 			into the REO2SW1 ring
149*5113495bSYour Name 
150*5113495bSYour Name 			<enum 5 reo_destination_release> Reo will push the frame
151*5113495bSYour Name 			into the REO_release ring
152*5113495bSYour Name 
153*5113495bSYour Name 			<enum 6 reo_destination_fw> Reo will push the frame into
154*5113495bSYour Name 			the REO2FW ring
155*5113495bSYour Name 
156*5113495bSYour Name 			<enum 7 reo_destination_7> REO remaps this
157*5113495bSYour Name 
158*5113495bSYour Name 			<enum 8 reo_destination_8> REO remaps this <enum 9
159*5113495bSYour Name 			reo_destination_9> REO remaps this <enum 10
160*5113495bSYour Name 			reo_destination_10> REO remaps this
161*5113495bSYour Name 
162*5113495bSYour Name 			<enum 11 reo_destination_11> REO remaps this
163*5113495bSYour Name 
164*5113495bSYour Name 			<enum 12 reo_destination_12> REO remaps this <enum 13
165*5113495bSYour Name 			reo_destination_13> REO remaps this
166*5113495bSYour Name 
167*5113495bSYour Name 			<enum 14 reo_destination_14> REO remaps this
168*5113495bSYour Name 
169*5113495bSYour Name 			<enum 15 reo_destination_15> REO remaps this
170*5113495bSYour Name 
171*5113495bSYour Name 			<enum 16 reo_destination_16> REO remaps this
172*5113495bSYour Name 
173*5113495bSYour Name 			<enum 17 reo_destination_17> REO remaps this
174*5113495bSYour Name 
175*5113495bSYour Name 			<enum 18 reo_destination_18> REO remaps this
176*5113495bSYour Name 
177*5113495bSYour Name 			<enum 19 reo_destination_19> REO remaps this
178*5113495bSYour Name 
179*5113495bSYour Name 			<enum 20 reo_destination_20> REO remaps this
180*5113495bSYour Name 
181*5113495bSYour Name 			<enum 21 reo_destination_21> REO remaps this
182*5113495bSYour Name 
183*5113495bSYour Name 			<enum 22 reo_destination_22> REO remaps this
184*5113495bSYour Name 
185*5113495bSYour Name 			<enum 23 reo_destination_23> REO remaps this
186*5113495bSYour Name 
187*5113495bSYour Name 			<enum 24 reo_destination_24> REO remaps this
188*5113495bSYour Name 
189*5113495bSYour Name 			<enum 25 reo_destination_25> REO remaps this
190*5113495bSYour Name 
191*5113495bSYour Name 			<enum 26 reo_destination_26> REO remaps this
192*5113495bSYour Name 
193*5113495bSYour Name 			<enum 27 reo_destination_27> REO remaps this
194*5113495bSYour Name 
195*5113495bSYour Name 			<enum 28 reo_destination_28> REO remaps this
196*5113495bSYour Name 
197*5113495bSYour Name 			<enum 29 reo_destination_29> REO remaps this
198*5113495bSYour Name 
199*5113495bSYour Name 			<enum 30 reo_destination_30> REO remaps this
200*5113495bSYour Name 
201*5113495bSYour Name 			<enum 31 reo_destination_31> REO remaps this
202*5113495bSYour Name 
203*5113495bSYour Name 
204*5113495bSYour Name 
205*5113495bSYour Name 			<legal all>
206*5113495bSYour Name 
207*5113495bSYour Name msdu_drop
208*5113495bSYour Name 
209*5113495bSYour Name 			When set, REO shall drop this MSDU and not forward it to
210*5113495bSYour Name 			any other ring...
211*5113495bSYour Name 
212*5113495bSYour Name 			<legal all>
213*5113495bSYour Name 
214*5113495bSYour Name sa_is_valid
215*5113495bSYour Name 
216*5113495bSYour Name 			Indicates that OLE found a valid SA entry for this MSDU
217*5113495bSYour Name 
218*5113495bSYour Name 			<legal all>
219*5113495bSYour Name 
220*5113495bSYour Name sa_idx_timeout
221*5113495bSYour Name 
222*5113495bSYour Name 			Indicates an unsuccessful MAC source address search due
223*5113495bSYour Name 			to the expiring of the search timer for this MSDU
224*5113495bSYour Name 
225*5113495bSYour Name 			<legal all>
226*5113495bSYour Name 
227*5113495bSYour Name da_is_valid
228*5113495bSYour Name 
229*5113495bSYour Name 			Indicates that OLE found a valid DA entry for this MSDU
230*5113495bSYour Name 
231*5113495bSYour Name 			<legal all>
232*5113495bSYour Name 
233*5113495bSYour Name da_is_mcbc
234*5113495bSYour Name 
235*5113495bSYour Name 			Field Only valid if da_is_valid is set
236*5113495bSYour Name 
237*5113495bSYour Name 
238*5113495bSYour Name 
239*5113495bSYour Name 			Indicates the DA address was a Multicast of Broadcast
240*5113495bSYour Name 			address for this MSDU
241*5113495bSYour Name 
242*5113495bSYour Name 			<legal all>
243*5113495bSYour Name 
244*5113495bSYour Name da_idx_timeout
245*5113495bSYour Name 
246*5113495bSYour Name 			Indicates an unsuccessful MAC destination address search
247*5113495bSYour Name 			due to the expiring of the search timer for this MSDU
248*5113495bSYour Name 
249*5113495bSYour Name 			<legal all>
250*5113495bSYour Name 
251*5113495bSYour Name reserved_0a
252*5113495bSYour Name 
253*5113495bSYour Name 			<legal 0>
254*5113495bSYour Name 
255*5113495bSYour Name reserved_1a
256*5113495bSYour Name 
257*5113495bSYour Name 			<legal 0>
258*5113495bSYour Name */
259*5113495bSYour Name 
260*5113495bSYour Name 
261*5113495bSYour Name /* Description		RX_MSDU_DESC_INFO_0_FIRST_MSDU_IN_MPDU_FLAG
262*5113495bSYour Name 
263*5113495bSYour Name 			<enum 0 Not_first_msdu> This is not the first MSDU in
264*5113495bSYour Name 			the MPDU.
265*5113495bSYour Name 
266*5113495bSYour Name 			<enum 1 first_msdu> This MSDU is the first one in the
267*5113495bSYour Name 			MPDU. <legal all>
268*5113495bSYour Name */
269*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_FIRST_MSDU_IN_MPDU_FLAG_OFFSET           0x00000000
270*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_FIRST_MSDU_IN_MPDU_FLAG_LSB              0
271*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_FIRST_MSDU_IN_MPDU_FLAG_MASK             0x00000001
272*5113495bSYour Name 
273*5113495bSYour Name /* Description		RX_MSDU_DESC_INFO_0_LAST_MSDU_IN_MPDU_FLAG
274*5113495bSYour Name 
275*5113495bSYour Name 			Consumer: WBM/REO/SW/FW
276*5113495bSYour Name 
277*5113495bSYour Name 			Producer: RXDMA
278*5113495bSYour Name 
279*5113495bSYour Name 
280*5113495bSYour Name 
281*5113495bSYour Name 
282*5113495bSYour Name 
283*5113495bSYour Name 			<enum 0 Not_last_msdu> There are more MSDUs linked to
284*5113495bSYour Name 			this MSDU that belongs to this MPDU
285*5113495bSYour Name 
286*5113495bSYour Name 			<enum 1 Last_msdu> this MSDU is the last one in the
287*5113495bSYour Name 			MPDU. This setting is only allowed in combination with
288*5113495bSYour Name 			'Msdu_continuation' set to 0. This implies that when an msdu
289*5113495bSYour Name 			is spread out over multiple buffers and thus
290*5113495bSYour Name 			msdu_continuation is set, only for the very last buffer of
291*5113495bSYour Name 			the msdu, can the 'last_msdu_in_mpdu_flag' be set.
292*5113495bSYour Name 
293*5113495bSYour Name 
294*5113495bSYour Name 
295*5113495bSYour Name 			When both first_msdu_in_mpdu_flag and
296*5113495bSYour Name 			last_msdu_in_mpdu_flag are set, the MPDU that this MSDU
297*5113495bSYour Name 			belongs to only contains a single MSDU.
298*5113495bSYour Name 
299*5113495bSYour Name 			<legal all>
300*5113495bSYour Name */
301*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_LAST_MSDU_IN_MPDU_FLAG_OFFSET            0x00000000
302*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_LAST_MSDU_IN_MPDU_FLAG_LSB               1
303*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_LAST_MSDU_IN_MPDU_FLAG_MASK              0x00000002
304*5113495bSYour Name 
305*5113495bSYour Name /* Description		RX_MSDU_DESC_INFO_0_MSDU_CONTINUATION
306*5113495bSYour Name 
307*5113495bSYour Name 			When set, this MSDU buffer was not able to hold the
308*5113495bSYour Name 			entire MSDU. The next buffer will therefor contain
309*5113495bSYour Name 			additional information related to this MSDU.
310*5113495bSYour Name 
311*5113495bSYour Name 
312*5113495bSYour Name 
313*5113495bSYour Name 			<legal all>
314*5113495bSYour Name */
315*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_MSDU_CONTINUATION_OFFSET                 0x00000000
316*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_MSDU_CONTINUATION_LSB                    2
317*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_MSDU_CONTINUATION_MASK                   0x00000004
318*5113495bSYour Name 
319*5113495bSYour Name /* Description		RX_MSDU_DESC_INFO_0_MSDU_LENGTH
320*5113495bSYour Name 
321*5113495bSYour Name 			Field is only valid in combination with the
322*5113495bSYour Name 			'first_msdu_in_mpdu_flag ' being set. When the
323*5113495bSYour Name 			'first_msdu_in_mpdu_flag ' is not set, this field shall be
324*5113495bSYour Name 			0.
325*5113495bSYour Name 
326*5113495bSYour Name 
327*5113495bSYour Name 
328*5113495bSYour Name 			Full MSDU length in bytes after decapsulation.
329*5113495bSYour Name 
330*5113495bSYour Name 
331*5113495bSYour Name 
332*5113495bSYour Name 			This field is still valid for MPDU frames without
333*5113495bSYour Name 			A-MSDU.  It still represents MSDU length after decapsulation
334*5113495bSYour Name 
335*5113495bSYour Name 
336*5113495bSYour Name 
337*5113495bSYour Name 			Or in case of RAW MPDUs, it indicates the length of the
338*5113495bSYour Name 			entire MPDU (without FCS field)
339*5113495bSYour Name 
340*5113495bSYour Name 			<legal all>
341*5113495bSYour Name */
342*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_MSDU_LENGTH_OFFSET                       0x00000000
343*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_MSDU_LENGTH_LSB                          3
344*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_MSDU_LENGTH_MASK                         0x0001fff8
345*5113495bSYour Name 
346*5113495bSYour Name /* Description		RX_MSDU_DESC_INFO_0_REO_DESTINATION_INDICATION
347*5113495bSYour Name 
348*5113495bSYour Name 			The ID of the REO exit ring where the MSDU frame shall
349*5113495bSYour Name 			push after (MPDU level) reordering has finished.
350*5113495bSYour Name 
351*5113495bSYour Name 
352*5113495bSYour Name 
353*5113495bSYour Name 			<enum 0 reo_destination_tcl> Reo will push the frame
354*5113495bSYour Name 			into the REO2TCL ring
355*5113495bSYour Name 
356*5113495bSYour Name 			<enum 1 reo_destination_sw1> Reo will push the frame
357*5113495bSYour Name 			into the REO2SW1 ring
358*5113495bSYour Name 
359*5113495bSYour Name 			<enum 2 reo_destination_sw2> Reo will push the frame
360*5113495bSYour Name 			into the REO2SW1 ring
361*5113495bSYour Name 
362*5113495bSYour Name 			<enum 3 reo_destination_sw3> Reo will push the frame
363*5113495bSYour Name 			into the REO2SW1 ring
364*5113495bSYour Name 
365*5113495bSYour Name 			<enum 4 reo_destination_sw4> Reo will push the frame
366*5113495bSYour Name 			into the REO2SW1 ring
367*5113495bSYour Name 
368*5113495bSYour Name 			<enum 5 reo_destination_release> Reo will push the frame
369*5113495bSYour Name 			into the REO_release ring
370*5113495bSYour Name 
371*5113495bSYour Name 			<enum 6 reo_destination_fw> Reo will push the frame into
372*5113495bSYour Name 			the REO2FW ring
373*5113495bSYour Name 
374*5113495bSYour Name 			<enum 7 reo_destination_7> REO remaps this
375*5113495bSYour Name 
376*5113495bSYour Name 			<enum 8 reo_destination_8> REO remaps this <enum 9
377*5113495bSYour Name 			reo_destination_9> REO remaps this <enum 10
378*5113495bSYour Name 			reo_destination_10> REO remaps this
379*5113495bSYour Name 
380*5113495bSYour Name 			<enum 11 reo_destination_11> REO remaps this
381*5113495bSYour Name 
382*5113495bSYour Name 			<enum 12 reo_destination_12> REO remaps this <enum 13
383*5113495bSYour Name 			reo_destination_13> REO remaps this
384*5113495bSYour Name 
385*5113495bSYour Name 			<enum 14 reo_destination_14> REO remaps this
386*5113495bSYour Name 
387*5113495bSYour Name 			<enum 15 reo_destination_15> REO remaps this
388*5113495bSYour Name 
389*5113495bSYour Name 			<enum 16 reo_destination_16> REO remaps this
390*5113495bSYour Name 
391*5113495bSYour Name 			<enum 17 reo_destination_17> REO remaps this
392*5113495bSYour Name 
393*5113495bSYour Name 			<enum 18 reo_destination_18> REO remaps this
394*5113495bSYour Name 
395*5113495bSYour Name 			<enum 19 reo_destination_19> REO remaps this
396*5113495bSYour Name 
397*5113495bSYour Name 			<enum 20 reo_destination_20> REO remaps this
398*5113495bSYour Name 
399*5113495bSYour Name 			<enum 21 reo_destination_21> REO remaps this
400*5113495bSYour Name 
401*5113495bSYour Name 			<enum 22 reo_destination_22> REO remaps this
402*5113495bSYour Name 
403*5113495bSYour Name 			<enum 23 reo_destination_23> REO remaps this
404*5113495bSYour Name 
405*5113495bSYour Name 			<enum 24 reo_destination_24> REO remaps this
406*5113495bSYour Name 
407*5113495bSYour Name 			<enum 25 reo_destination_25> REO remaps this
408*5113495bSYour Name 
409*5113495bSYour Name 			<enum 26 reo_destination_26> REO remaps this
410*5113495bSYour Name 
411*5113495bSYour Name 			<enum 27 reo_destination_27> REO remaps this
412*5113495bSYour Name 
413*5113495bSYour Name 			<enum 28 reo_destination_28> REO remaps this
414*5113495bSYour Name 
415*5113495bSYour Name 			<enum 29 reo_destination_29> REO remaps this
416*5113495bSYour Name 
417*5113495bSYour Name 			<enum 30 reo_destination_30> REO remaps this
418*5113495bSYour Name 
419*5113495bSYour Name 			<enum 31 reo_destination_31> REO remaps this
420*5113495bSYour Name 
421*5113495bSYour Name 
422*5113495bSYour Name 
423*5113495bSYour Name 			<legal all>
424*5113495bSYour Name */
425*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_REO_DESTINATION_INDICATION_OFFSET        0x00000000
426*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_REO_DESTINATION_INDICATION_LSB           17
427*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_REO_DESTINATION_INDICATION_MASK          0x003e0000
428*5113495bSYour Name 
429*5113495bSYour Name /* Description		RX_MSDU_DESC_INFO_0_MSDU_DROP
430*5113495bSYour Name 
431*5113495bSYour Name 			When set, REO shall drop this MSDU and not forward it to
432*5113495bSYour Name 			any other ring...
433*5113495bSYour Name 
434*5113495bSYour Name 			<legal all>
435*5113495bSYour Name */
436*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_MSDU_DROP_OFFSET                         0x00000000
437*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_MSDU_DROP_LSB                            22
438*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_MSDU_DROP_MASK                           0x00400000
439*5113495bSYour Name 
440*5113495bSYour Name /* Description		RX_MSDU_DESC_INFO_0_SA_IS_VALID
441*5113495bSYour Name 
442*5113495bSYour Name 			Indicates that OLE found a valid SA entry for this MSDU
443*5113495bSYour Name 
444*5113495bSYour Name 			<legal all>
445*5113495bSYour Name */
446*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_SA_IS_VALID_OFFSET                       0x00000000
447*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_SA_IS_VALID_LSB                          23
448*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_SA_IS_VALID_MASK                         0x00800000
449*5113495bSYour Name 
450*5113495bSYour Name /* Description		RX_MSDU_DESC_INFO_0_SA_IDX_TIMEOUT
451*5113495bSYour Name 
452*5113495bSYour Name 			Indicates an unsuccessful MAC source address search due
453*5113495bSYour Name 			to the expiring of the search timer for this MSDU
454*5113495bSYour Name 
455*5113495bSYour Name 			<legal all>
456*5113495bSYour Name */
457*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_SA_IDX_TIMEOUT_OFFSET                    0x00000000
458*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_SA_IDX_TIMEOUT_LSB                       24
459*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_SA_IDX_TIMEOUT_MASK                      0x01000000
460*5113495bSYour Name 
461*5113495bSYour Name /* Description		RX_MSDU_DESC_INFO_0_DA_IS_VALID
462*5113495bSYour Name 
463*5113495bSYour Name 			Indicates that OLE found a valid DA entry for this MSDU
464*5113495bSYour Name 
465*5113495bSYour Name 			<legal all>
466*5113495bSYour Name */
467*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_DA_IS_VALID_OFFSET                       0x00000000
468*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_DA_IS_VALID_LSB                          25
469*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_DA_IS_VALID_MASK                         0x02000000
470*5113495bSYour Name 
471*5113495bSYour Name /* Description		RX_MSDU_DESC_INFO_0_DA_IS_MCBC
472*5113495bSYour Name 
473*5113495bSYour Name 			Field Only valid if da_is_valid is set
474*5113495bSYour Name 
475*5113495bSYour Name 
476*5113495bSYour Name 
477*5113495bSYour Name 			Indicates the DA address was a Multicast of Broadcast
478*5113495bSYour Name 			address for this MSDU
479*5113495bSYour Name 
480*5113495bSYour Name 			<legal all>
481*5113495bSYour Name */
482*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_DA_IS_MCBC_OFFSET                        0x00000000
483*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_DA_IS_MCBC_LSB                           26
484*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_DA_IS_MCBC_MASK                          0x04000000
485*5113495bSYour Name 
486*5113495bSYour Name /* Description		RX_MSDU_DESC_INFO_0_DA_IDX_TIMEOUT
487*5113495bSYour Name 
488*5113495bSYour Name 			Indicates an unsuccessful MAC destination address search
489*5113495bSYour Name 			due to the expiring of the search timer for this MSDU
490*5113495bSYour Name 
491*5113495bSYour Name 			<legal all>
492*5113495bSYour Name */
493*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_DA_IDX_TIMEOUT_OFFSET                    0x00000000
494*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_DA_IDX_TIMEOUT_LSB                       27
495*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_DA_IDX_TIMEOUT_MASK                      0x08000000
496*5113495bSYour Name 
497*5113495bSYour Name /* Description		RX_MSDU_DESC_INFO_0_RESERVED_0A
498*5113495bSYour Name 
499*5113495bSYour Name 			<legal 0>
500*5113495bSYour Name */
501*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_RESERVED_0A_OFFSET                       0x00000000
502*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_RESERVED_0A_LSB                          28
503*5113495bSYour Name #define RX_MSDU_DESC_INFO_0_RESERVED_0A_MASK                         0xf0000000
504*5113495bSYour Name 
505*5113495bSYour Name /* Description		RX_MSDU_DESC_INFO_1_RESERVED_1A
506*5113495bSYour Name 
507*5113495bSYour Name 			<legal 0>
508*5113495bSYour Name */
509*5113495bSYour Name #define RX_MSDU_DESC_INFO_1_RESERVED_1A_OFFSET                       0x00000004
510*5113495bSYour Name #define RX_MSDU_DESC_INFO_1_RESERVED_1A_LSB                          0
511*5113495bSYour Name #define RX_MSDU_DESC_INFO_1_RESERVED_1A_MASK                         0xffffffff
512*5113495bSYour Name 
513*5113495bSYour Name 
514*5113495bSYour Name #endif // _RX_MSDU_DESC_INFO_H_
515