xref: /wlan-driver/fw-api/hw/qcn6432/uniform_descriptor_header.h (revision 5113495b16420b49004c444715d2daae2066e7dc)
1*5113495bSYour Name /*
2*5113495bSYour Name  * Copyright (c) 2023 Qualcomm Innovation Center, Inc. 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 #ifndef _UNIFORM_DESCRIPTOR_HEADER_H_
18*5113495bSYour Name #define _UNIFORM_DESCRIPTOR_HEADER_H_
19*5113495bSYour Name #if !defined(__ASSEMBLER__)
20*5113495bSYour Name #endif
21*5113495bSYour Name 
22*5113495bSYour Name #define NUM_OF_DWORDS_UNIFORM_DESCRIPTOR_HEADER 1
23*5113495bSYour Name 
24*5113495bSYour Name 
25*5113495bSYour Name struct uniform_descriptor_header {
26*5113495bSYour Name #ifndef WIFI_BIT_ORDER_BIG_ENDIAN
27*5113495bSYour Name              uint32_t owner                                                   :  4, // [3:0]
28*5113495bSYour Name                       buffer_type                                             :  4, // [7:4]
29*5113495bSYour Name                       tx_mpdu_queue_number                                    : 20, // [27:8]
30*5113495bSYour Name                       reserved_0a                                             :  4; // [31:28]
31*5113495bSYour Name #else
32*5113495bSYour Name              uint32_t reserved_0a                                             :  4, // [31:28]
33*5113495bSYour Name                       tx_mpdu_queue_number                                    : 20, // [27:8]
34*5113495bSYour Name                       buffer_type                                             :  4, // [7:4]
35*5113495bSYour Name                       owner                                                   :  4; // [3:0]
36*5113495bSYour Name #endif
37*5113495bSYour Name };
38*5113495bSYour Name 
39*5113495bSYour Name 
40*5113495bSYour Name /* Description		OWNER
41*5113495bSYour Name 
42*5113495bSYour Name 			Consumer: In DEBUG mode: WBM, TQM, TXDMA, RXDMA, REO
43*5113495bSYour Name 			Producer: In DEBUG mode: WBM, TQM, TXDMA, RXDMA, REO
44*5113495bSYour Name 
45*5113495bSYour Name 			The owner of this data structure:
46*5113495bSYour Name 			<enum 0 WBM_owned> Buffer Manager currently owns this data
47*5113495bSYour Name 			 structure.
48*5113495bSYour Name 			<enum 1 SW_OR_FW_owned> Software of FW currently owns this
49*5113495bSYour Name 			 data structure.
50*5113495bSYour Name 			<enum 2 TQM_owned> Transmit Queue Manager currently owns
51*5113495bSYour Name 			 this data structure.
52*5113495bSYour Name 			<enum 3 RXDMA_owned> Receive DMA currently owns this data
53*5113495bSYour Name 			 structure.
54*5113495bSYour Name 			<enum 4 REO_owned> Reorder currently owns this data structure.
55*5113495bSYour Name 
56*5113495bSYour Name 			<enum 5 SWITCH_owned> SWITCH currently owns this data structure.
57*5113495bSYour Name 
58*5113495bSYour Name 
59*5113495bSYour Name 			<legal 0-5>
60*5113495bSYour Name */
61*5113495bSYour Name 
62*5113495bSYour Name #define UNIFORM_DESCRIPTOR_HEADER_OWNER_OFFSET                                      0x00000000
63*5113495bSYour Name #define UNIFORM_DESCRIPTOR_HEADER_OWNER_LSB                                         0
64*5113495bSYour Name #define UNIFORM_DESCRIPTOR_HEADER_OWNER_MSB                                         3
65*5113495bSYour Name #define UNIFORM_DESCRIPTOR_HEADER_OWNER_MASK                                        0x0000000f
66*5113495bSYour Name 
67*5113495bSYour Name 
68*5113495bSYour Name /* Description		BUFFER_TYPE
69*5113495bSYour Name 
70*5113495bSYour Name 			Consumer: In DEBUG mode: WBM, TQM, TXDMA, RXDMA, REO
71*5113495bSYour Name 			Producer: In DEBUG mode: WBM, TQM, TXDMA, RXDMA, REO
72*5113495bSYour Name 
73*5113495bSYour Name 			Field describing what contents format is of this descriptor
74*5113495bSYour Name 
75*5113495bSYour Name 
76*5113495bSYour Name 			<enum 0 Transmit_MSDU_Link_descriptor>
77*5113495bSYour Name 			<enum 1 Transmit_MPDU_Link_descriptor>
78*5113495bSYour Name 			<enum 2 Transmit_MPDU_Queue_head_descriptor>
79*5113495bSYour Name 			<enum 3 Transmit_MPDU_Queue_ext_descriptor>
80*5113495bSYour Name 			<enum 4 Transmit_flow_descriptor>
81*5113495bSYour Name 			<enum 5 Transmit_buffer> NOT TO BE USED:
82*5113495bSYour Name 
83*5113495bSYour Name 			<enum 6 Receive_MSDU_Link_descriptor>
84*5113495bSYour Name 			<enum 7 Receive_MPDU_Link_descriptor>
85*5113495bSYour Name 			<enum 8 Receive_REO_queue_descriptor>
86*5113495bSYour Name 			<enum 9 Receive_REO_queue_1k_descriptor>
87*5113495bSYour Name 			<enum 10 Receive_REO_queue_ext_descriptor>
88*5113495bSYour Name 
89*5113495bSYour Name 			<enum 11 Receive_buffer>
90*5113495bSYour Name 
91*5113495bSYour Name 			<enum 12 Idle_link_list_entry>
92*5113495bSYour Name 
93*5113495bSYour Name 			<legal 0-12>
94*5113495bSYour Name */
95*5113495bSYour Name 
96*5113495bSYour Name #define UNIFORM_DESCRIPTOR_HEADER_BUFFER_TYPE_OFFSET                                0x00000000
97*5113495bSYour Name #define UNIFORM_DESCRIPTOR_HEADER_BUFFER_TYPE_LSB                                   4
98*5113495bSYour Name #define UNIFORM_DESCRIPTOR_HEADER_BUFFER_TYPE_MSB                                   7
99*5113495bSYour Name #define UNIFORM_DESCRIPTOR_HEADER_BUFFER_TYPE_MASK                                  0x000000f0
100*5113495bSYour Name 
101*5113495bSYour Name 
102*5113495bSYour Name /* Description		TX_MPDU_QUEUE_NUMBER
103*5113495bSYour Name 
104*5113495bSYour Name 			Consumer: TQM/Debug
105*5113495bSYour Name 			Producer: SW (in 'TX_MPDU_QUEUE_HEAD')/TQM (elsewhere)
106*5113495bSYour Name 
107*5113495bSYour Name 			Field only valid if Buffer_type is any of Transmit_MPDU_*_descriptor
108*5113495bSYour Name 
109*5113495bSYour Name 
110*5113495bSYour Name 			Indicates the MPDU queue ID to which this MPDU descriptor
111*5113495bSYour Name 			 belongs
112*5113495bSYour Name 			Used for tracking and debugging
113*5113495bSYour Name 
114*5113495bSYour Name 			 <legal all>
115*5113495bSYour Name */
116*5113495bSYour Name 
117*5113495bSYour Name #define UNIFORM_DESCRIPTOR_HEADER_TX_MPDU_QUEUE_NUMBER_OFFSET                       0x00000000
118*5113495bSYour Name #define UNIFORM_DESCRIPTOR_HEADER_TX_MPDU_QUEUE_NUMBER_LSB                          8
119*5113495bSYour Name #define UNIFORM_DESCRIPTOR_HEADER_TX_MPDU_QUEUE_NUMBER_MSB                          27
120*5113495bSYour Name #define UNIFORM_DESCRIPTOR_HEADER_TX_MPDU_QUEUE_NUMBER_MASK                         0x0fffff00
121*5113495bSYour Name 
122*5113495bSYour Name 
123*5113495bSYour Name /* Description		RESERVED_0A
124*5113495bSYour Name 
125*5113495bSYour Name 			<legal 0>
126*5113495bSYour Name */
127*5113495bSYour Name 
128*5113495bSYour Name #define UNIFORM_DESCRIPTOR_HEADER_RESERVED_0A_OFFSET                                0x00000000
129*5113495bSYour Name #define UNIFORM_DESCRIPTOR_HEADER_RESERVED_0A_LSB                                   28
130*5113495bSYour Name #define UNIFORM_DESCRIPTOR_HEADER_RESERVED_0A_MSB                                   31
131*5113495bSYour Name #define UNIFORM_DESCRIPTOR_HEADER_RESERVED_0A_MASK                                  0xf0000000
132*5113495bSYour Name 
133*5113495bSYour Name 
134*5113495bSYour Name 
135*5113495bSYour Name #endif   // UNIFORM_DESCRIPTOR_HEADER
136