xref: /wlan-driver/fw-api/hw/kiwi/v2/ht_sig_info.h (revision 5113495b16420b49004c444715d2daae2066e7dc)
1*5113495bSYour Name 
2*5113495bSYour Name /*
3*5113495bSYour Name  * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
4*5113495bSYour Name  *
5*5113495bSYour Name  * Permission to use, copy, modify, and/or distribute this software for
6*5113495bSYour Name  * any purpose with or without fee is hereby granted, provided that the
7*5113495bSYour Name  * above copyright notice and this permission notice appear in all
8*5113495bSYour Name  * copies.
9*5113495bSYour Name  *
10*5113495bSYour Name  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
11*5113495bSYour Name  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
12*5113495bSYour Name  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
13*5113495bSYour Name  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
14*5113495bSYour Name  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
15*5113495bSYour Name  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
16*5113495bSYour Name  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17*5113495bSYour Name  * PERFORMANCE OF THIS SOFTWARE.
18*5113495bSYour Name  */
19*5113495bSYour Name 
20*5113495bSYour Name 
21*5113495bSYour Name 
22*5113495bSYour Name #ifndef _HT_SIG_INFO_H_
23*5113495bSYour Name #define _HT_SIG_INFO_H_
24*5113495bSYour Name #if !defined(__ASSEMBLER__)
25*5113495bSYour Name #endif
26*5113495bSYour Name 
27*5113495bSYour Name #define NUM_OF_DWORDS_HT_SIG_INFO 2
28*5113495bSYour Name 
29*5113495bSYour Name struct ht_sig_info {
30*5113495bSYour Name #ifndef WIFI_BIT_ORDER_BIG_ENDIAN
31*5113495bSYour Name              uint32_t mcs                                                     :  7,
32*5113495bSYour Name                       cbw                                                     :  1,
33*5113495bSYour Name                       length                                                  : 16,
34*5113495bSYour Name                       reserved_0                                              :  8;
35*5113495bSYour Name              uint32_t smoothing                                               :  1,
36*5113495bSYour Name                       not_sounding                                            :  1,
37*5113495bSYour Name                       ht_reserved                                             :  1,
38*5113495bSYour Name                       aggregation                                             :  1,
39*5113495bSYour Name                       stbc                                                    :  2,
40*5113495bSYour Name                       fec_coding                                              :  1,
41*5113495bSYour Name                       short_gi                                                :  1,
42*5113495bSYour Name                       num_ext_sp_str                                          :  2,
43*5113495bSYour Name                       crc                                                     :  8,
44*5113495bSYour Name                       signal_tail                                             :  6,
45*5113495bSYour Name                       reserved_1                                              :  7,
46*5113495bSYour Name                       rx_integrity_check_passed                               :  1;
47*5113495bSYour Name #else
48*5113495bSYour Name              uint32_t reserved_0                                              :  8,
49*5113495bSYour Name                       length                                                  : 16,
50*5113495bSYour Name                       cbw                                                     :  1,
51*5113495bSYour Name                       mcs                                                     :  7;
52*5113495bSYour Name              uint32_t rx_integrity_check_passed                               :  1,
53*5113495bSYour Name                       reserved_1                                              :  7,
54*5113495bSYour Name                       signal_tail                                             :  6,
55*5113495bSYour Name                       crc                                                     :  8,
56*5113495bSYour Name                       num_ext_sp_str                                          :  2,
57*5113495bSYour Name                       short_gi                                                :  1,
58*5113495bSYour Name                       fec_coding                                              :  1,
59*5113495bSYour Name                       stbc                                                    :  2,
60*5113495bSYour Name                       aggregation                                             :  1,
61*5113495bSYour Name                       ht_reserved                                             :  1,
62*5113495bSYour Name                       not_sounding                                            :  1,
63*5113495bSYour Name                       smoothing                                               :  1;
64*5113495bSYour Name #endif
65*5113495bSYour Name };
66*5113495bSYour Name 
67*5113495bSYour Name #define HT_SIG_INFO_MCS_OFFSET                                                      0x00000000
68*5113495bSYour Name #define HT_SIG_INFO_MCS_LSB                                                         0
69*5113495bSYour Name #define HT_SIG_INFO_MCS_MSB                                                         6
70*5113495bSYour Name #define HT_SIG_INFO_MCS_MASK                                                        0x0000007f
71*5113495bSYour Name 
72*5113495bSYour Name #define HT_SIG_INFO_CBW_OFFSET                                                      0x00000000
73*5113495bSYour Name #define HT_SIG_INFO_CBW_LSB                                                         7
74*5113495bSYour Name #define HT_SIG_INFO_CBW_MSB                                                         7
75*5113495bSYour Name #define HT_SIG_INFO_CBW_MASK                                                        0x00000080
76*5113495bSYour Name 
77*5113495bSYour Name #define HT_SIG_INFO_LENGTH_OFFSET                                                   0x00000000
78*5113495bSYour Name #define HT_SIG_INFO_LENGTH_LSB                                                      8
79*5113495bSYour Name #define HT_SIG_INFO_LENGTH_MSB                                                      23
80*5113495bSYour Name #define HT_SIG_INFO_LENGTH_MASK                                                     0x00ffff00
81*5113495bSYour Name 
82*5113495bSYour Name #define HT_SIG_INFO_RESERVED_0_OFFSET                                               0x00000000
83*5113495bSYour Name #define HT_SIG_INFO_RESERVED_0_LSB                                                  24
84*5113495bSYour Name #define HT_SIG_INFO_RESERVED_0_MSB                                                  31
85*5113495bSYour Name #define HT_SIG_INFO_RESERVED_0_MASK                                                 0xff000000
86*5113495bSYour Name 
87*5113495bSYour Name #define HT_SIG_INFO_SMOOTHING_OFFSET                                                0x00000004
88*5113495bSYour Name #define HT_SIG_INFO_SMOOTHING_LSB                                                   0
89*5113495bSYour Name #define HT_SIG_INFO_SMOOTHING_MSB                                                   0
90*5113495bSYour Name #define HT_SIG_INFO_SMOOTHING_MASK                                                  0x00000001
91*5113495bSYour Name 
92*5113495bSYour Name #define HT_SIG_INFO_NOT_SOUNDING_OFFSET                                             0x00000004
93*5113495bSYour Name #define HT_SIG_INFO_NOT_SOUNDING_LSB                                                1
94*5113495bSYour Name #define HT_SIG_INFO_NOT_SOUNDING_MSB                                                1
95*5113495bSYour Name #define HT_SIG_INFO_NOT_SOUNDING_MASK                                               0x00000002
96*5113495bSYour Name 
97*5113495bSYour Name #define HT_SIG_INFO_HT_RESERVED_OFFSET                                              0x00000004
98*5113495bSYour Name #define HT_SIG_INFO_HT_RESERVED_LSB                                                 2
99*5113495bSYour Name #define HT_SIG_INFO_HT_RESERVED_MSB                                                 2
100*5113495bSYour Name #define HT_SIG_INFO_HT_RESERVED_MASK                                                0x00000004
101*5113495bSYour Name 
102*5113495bSYour Name #define HT_SIG_INFO_AGGREGATION_OFFSET                                              0x00000004
103*5113495bSYour Name #define HT_SIG_INFO_AGGREGATION_LSB                                                 3
104*5113495bSYour Name #define HT_SIG_INFO_AGGREGATION_MSB                                                 3
105*5113495bSYour Name #define HT_SIG_INFO_AGGREGATION_MASK                                                0x00000008
106*5113495bSYour Name 
107*5113495bSYour Name #define HT_SIG_INFO_STBC_OFFSET                                                     0x00000004
108*5113495bSYour Name #define HT_SIG_INFO_STBC_LSB                                                        4
109*5113495bSYour Name #define HT_SIG_INFO_STBC_MSB                                                        5
110*5113495bSYour Name #define HT_SIG_INFO_STBC_MASK                                                       0x00000030
111*5113495bSYour Name 
112*5113495bSYour Name #define HT_SIG_INFO_FEC_CODING_OFFSET                                               0x00000004
113*5113495bSYour Name #define HT_SIG_INFO_FEC_CODING_LSB                                                  6
114*5113495bSYour Name #define HT_SIG_INFO_FEC_CODING_MSB                                                  6
115*5113495bSYour Name #define HT_SIG_INFO_FEC_CODING_MASK                                                 0x00000040
116*5113495bSYour Name 
117*5113495bSYour Name #define HT_SIG_INFO_SHORT_GI_OFFSET                                                 0x00000004
118*5113495bSYour Name #define HT_SIG_INFO_SHORT_GI_LSB                                                    7
119*5113495bSYour Name #define HT_SIG_INFO_SHORT_GI_MSB                                                    7
120*5113495bSYour Name #define HT_SIG_INFO_SHORT_GI_MASK                                                   0x00000080
121*5113495bSYour Name 
122*5113495bSYour Name #define HT_SIG_INFO_NUM_EXT_SP_STR_OFFSET                                           0x00000004
123*5113495bSYour Name #define HT_SIG_INFO_NUM_EXT_SP_STR_LSB                                              8
124*5113495bSYour Name #define HT_SIG_INFO_NUM_EXT_SP_STR_MSB                                              9
125*5113495bSYour Name #define HT_SIG_INFO_NUM_EXT_SP_STR_MASK                                             0x00000300
126*5113495bSYour Name 
127*5113495bSYour Name #define HT_SIG_INFO_CRC_OFFSET                                                      0x00000004
128*5113495bSYour Name #define HT_SIG_INFO_CRC_LSB                                                         10
129*5113495bSYour Name #define HT_SIG_INFO_CRC_MSB                                                         17
130*5113495bSYour Name #define HT_SIG_INFO_CRC_MASK                                                        0x0003fc00
131*5113495bSYour Name 
132*5113495bSYour Name #define HT_SIG_INFO_SIGNAL_TAIL_OFFSET                                              0x00000004
133*5113495bSYour Name #define HT_SIG_INFO_SIGNAL_TAIL_LSB                                                 18
134*5113495bSYour Name #define HT_SIG_INFO_SIGNAL_TAIL_MSB                                                 23
135*5113495bSYour Name #define HT_SIG_INFO_SIGNAL_TAIL_MASK                                                0x00fc0000
136*5113495bSYour Name 
137*5113495bSYour Name #define HT_SIG_INFO_RESERVED_1_OFFSET                                               0x00000004
138*5113495bSYour Name #define HT_SIG_INFO_RESERVED_1_LSB                                                  24
139*5113495bSYour Name #define HT_SIG_INFO_RESERVED_1_MSB                                                  30
140*5113495bSYour Name #define HT_SIG_INFO_RESERVED_1_MASK                                                 0x7f000000
141*5113495bSYour Name 
142*5113495bSYour Name #define HT_SIG_INFO_RX_INTEGRITY_CHECK_PASSED_OFFSET                                0x00000004
143*5113495bSYour Name #define HT_SIG_INFO_RX_INTEGRITY_CHECK_PASSED_LSB                                   31
144*5113495bSYour Name #define HT_SIG_INFO_RX_INTEGRITY_CHECK_PASSED_MSB                                   31
145*5113495bSYour Name #define HT_SIG_INFO_RX_INTEGRITY_CHECK_PASSED_MASK                                  0x80000000
146*5113495bSYour Name 
147*5113495bSYour Name #endif
148