xref: /wlan-driver/fw-api/hw/kiwi/v2/rx_location_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 _RX_LOCATION_INFO_H_
23*5113495bSYour Name #define _RX_LOCATION_INFO_H_
24*5113495bSYour Name #if !defined(__ASSEMBLER__)
25*5113495bSYour Name #endif
26*5113495bSYour Name 
27*5113495bSYour Name #define NUM_OF_DWORDS_RX_LOCATION_INFO 28
28*5113495bSYour Name 
29*5113495bSYour Name struct rx_location_info {
30*5113495bSYour Name #ifndef WIFI_BIT_ORDER_BIG_ENDIAN
31*5113495bSYour Name              uint32_t rx_location_info_valid                                  :  1,
32*5113495bSYour Name                       rtt_hw_ifft_mode                                        :  1,
33*5113495bSYour Name                       rtt_11az_mode                                           :  2,
34*5113495bSYour Name                       reserved_0                                              :  4,
35*5113495bSYour Name                       rtt_num_fac                                             :  8,
36*5113495bSYour Name                       rtt_rx_chain_mask                                       :  8,
37*5113495bSYour Name                       rtt_num_streams                                         :  8;
38*5113495bSYour Name              uint32_t rtt_first_selected_chain                                :  8,
39*5113495bSYour Name                       rtt_second_selected_chain                               :  8,
40*5113495bSYour Name                       rtt_cfr_status                                          :  8,
41*5113495bSYour Name                       rtt_cir_status                                          :  8;
42*5113495bSYour Name              uint32_t rtt_che_buffer_pointer_low32                            : 32;
43*5113495bSYour Name              uint32_t rtt_che_buffer_pointer_high8                            :  8,
44*5113495bSYour Name                       reserved_3                                              :  8,
45*5113495bSYour Name                       rtt_pkt_bw_vht                                          :  4,
46*5113495bSYour Name                       rtt_pkt_bw_leg                                          :  4,
47*5113495bSYour Name                       rtt_mcs_rate                                            :  8;
48*5113495bSYour Name              uint32_t rtt_cfo_measurement                                     : 16,
49*5113495bSYour Name                       rtt_preamble_type                                       :  8,
50*5113495bSYour Name                       rtt_gi_type                                             :  8;
51*5113495bSYour Name              uint32_t rx_start_ts                                             : 32;
52*5113495bSYour Name              uint32_t rx_start_ts_upper                                       : 32;
53*5113495bSYour Name              uint32_t rx_end_ts                                               : 32;
54*5113495bSYour Name              uint32_t gain_chain0                                             : 16,
55*5113495bSYour Name                       gain_chain1                                             : 16;
56*5113495bSYour Name              uint32_t gain_chain2                                             : 16,
57*5113495bSYour Name                       gain_chain3                                             : 16;
58*5113495bSYour Name              uint32_t gain_report_status                                      :  8,
59*5113495bSYour Name                       rtt_timing_backoff_sel                                  :  8,
60*5113495bSYour Name                       rtt_fac_combined                                        : 16;
61*5113495bSYour Name              uint32_t rtt_fac_0                                               : 16,
62*5113495bSYour Name                       rtt_fac_1                                               : 16;
63*5113495bSYour Name              uint32_t rtt_fac_2                                               : 16,
64*5113495bSYour Name                       rtt_fac_3                                               : 16;
65*5113495bSYour Name              uint32_t rtt_fac_4                                               : 16,
66*5113495bSYour Name                       rtt_fac_5                                               : 16;
67*5113495bSYour Name              uint32_t rtt_fac_6                                               : 16,
68*5113495bSYour Name                       rtt_fac_7                                               : 16;
69*5113495bSYour Name              uint32_t rtt_fac_8                                               : 16,
70*5113495bSYour Name                       rtt_fac_9                                               : 16;
71*5113495bSYour Name              uint32_t rtt_fac_10                                              : 16,
72*5113495bSYour Name                       rtt_fac_11                                              : 16;
73*5113495bSYour Name              uint32_t rtt_fac_12                                              : 16,
74*5113495bSYour Name                       rtt_fac_13                                              : 16;
75*5113495bSYour Name              uint32_t rtt_fac_14                                              : 16,
76*5113495bSYour Name                       rtt_fac_15                                              : 16;
77*5113495bSYour Name              uint32_t rtt_fac_16                                              : 16,
78*5113495bSYour Name                       rtt_fac_17                                              : 16;
79*5113495bSYour Name              uint32_t rtt_fac_18                                              : 16,
80*5113495bSYour Name                       rtt_fac_19                                              : 16;
81*5113495bSYour Name              uint32_t rtt_fac_20                                              : 16,
82*5113495bSYour Name                       rtt_fac_21                                              : 16;
83*5113495bSYour Name              uint32_t rtt_fac_22                                              : 16,
84*5113495bSYour Name                       rtt_fac_23                                              : 16;
85*5113495bSYour Name              uint32_t rtt_fac_24                                              : 16,
86*5113495bSYour Name                       rtt_fac_25                                              : 16;
87*5113495bSYour Name              uint32_t rtt_fac_26                                              : 16,
88*5113495bSYour Name                       rtt_fac_27                                              : 16;
89*5113495bSYour Name              uint32_t rtt_fac_28                                              : 16,
90*5113495bSYour Name                       rtt_fac_29                                              : 16;
91*5113495bSYour Name              uint32_t rtt_fac_30                                              : 16,
92*5113495bSYour Name                       rtt_fac_31                                              : 16;
93*5113495bSYour Name              uint32_t reserved_27a                                            : 32;
94*5113495bSYour Name #else
95*5113495bSYour Name              uint32_t rtt_num_streams                                         :  8,
96*5113495bSYour Name                       rtt_rx_chain_mask                                       :  8,
97*5113495bSYour Name                       rtt_num_fac                                             :  8,
98*5113495bSYour Name                       reserved_0                                              :  4,
99*5113495bSYour Name                       rtt_11az_mode                                           :  2,
100*5113495bSYour Name                       rtt_hw_ifft_mode                                        :  1,
101*5113495bSYour Name                       rx_location_info_valid                                  :  1;
102*5113495bSYour Name              uint32_t rtt_cir_status                                          :  8,
103*5113495bSYour Name                       rtt_cfr_status                                          :  8,
104*5113495bSYour Name                       rtt_second_selected_chain                               :  8,
105*5113495bSYour Name                       rtt_first_selected_chain                                :  8;
106*5113495bSYour Name              uint32_t rtt_che_buffer_pointer_low32                            : 32;
107*5113495bSYour Name              uint32_t rtt_mcs_rate                                            :  8,
108*5113495bSYour Name                       rtt_pkt_bw_leg                                          :  4,
109*5113495bSYour Name                       rtt_pkt_bw_vht                                          :  4,
110*5113495bSYour Name                       reserved_3                                              :  8,
111*5113495bSYour Name                       rtt_che_buffer_pointer_high8                            :  8;
112*5113495bSYour Name              uint32_t rtt_gi_type                                             :  8,
113*5113495bSYour Name                       rtt_preamble_type                                       :  8,
114*5113495bSYour Name                       rtt_cfo_measurement                                     : 16;
115*5113495bSYour Name              uint32_t rx_start_ts                                             : 32;
116*5113495bSYour Name              uint32_t rx_start_ts_upper                                       : 32;
117*5113495bSYour Name              uint32_t rx_end_ts                                               : 32;
118*5113495bSYour Name              uint32_t gain_chain1                                             : 16,
119*5113495bSYour Name                       gain_chain0                                             : 16;
120*5113495bSYour Name              uint32_t gain_chain3                                             : 16,
121*5113495bSYour Name                       gain_chain2                                             : 16;
122*5113495bSYour Name              uint32_t rtt_fac_combined                                        : 16,
123*5113495bSYour Name                       rtt_timing_backoff_sel                                  :  8,
124*5113495bSYour Name                       gain_report_status                                      :  8;
125*5113495bSYour Name              uint32_t rtt_fac_1                                               : 16,
126*5113495bSYour Name                       rtt_fac_0                                               : 16;
127*5113495bSYour Name              uint32_t rtt_fac_3                                               : 16,
128*5113495bSYour Name                       rtt_fac_2                                               : 16;
129*5113495bSYour Name              uint32_t rtt_fac_5                                               : 16,
130*5113495bSYour Name                       rtt_fac_4                                               : 16;
131*5113495bSYour Name              uint32_t rtt_fac_7                                               : 16,
132*5113495bSYour Name                       rtt_fac_6                                               : 16;
133*5113495bSYour Name              uint32_t rtt_fac_9                                               : 16,
134*5113495bSYour Name                       rtt_fac_8                                               : 16;
135*5113495bSYour Name              uint32_t rtt_fac_11                                              : 16,
136*5113495bSYour Name                       rtt_fac_10                                              : 16;
137*5113495bSYour Name              uint32_t rtt_fac_13                                              : 16,
138*5113495bSYour Name                       rtt_fac_12                                              : 16;
139*5113495bSYour Name              uint32_t rtt_fac_15                                              : 16,
140*5113495bSYour Name                       rtt_fac_14                                              : 16;
141*5113495bSYour Name              uint32_t rtt_fac_17                                              : 16,
142*5113495bSYour Name                       rtt_fac_16                                              : 16;
143*5113495bSYour Name              uint32_t rtt_fac_19                                              : 16,
144*5113495bSYour Name                       rtt_fac_18                                              : 16;
145*5113495bSYour Name              uint32_t rtt_fac_21                                              : 16,
146*5113495bSYour Name                       rtt_fac_20                                              : 16;
147*5113495bSYour Name              uint32_t rtt_fac_23                                              : 16,
148*5113495bSYour Name                       rtt_fac_22                                              : 16;
149*5113495bSYour Name              uint32_t rtt_fac_25                                              : 16,
150*5113495bSYour Name                       rtt_fac_24                                              : 16;
151*5113495bSYour Name              uint32_t rtt_fac_27                                              : 16,
152*5113495bSYour Name                       rtt_fac_26                                              : 16;
153*5113495bSYour Name              uint32_t rtt_fac_29                                              : 16,
154*5113495bSYour Name                       rtt_fac_28                                              : 16;
155*5113495bSYour Name              uint32_t rtt_fac_31                                              : 16,
156*5113495bSYour Name                       rtt_fac_30                                              : 16;
157*5113495bSYour Name              uint32_t reserved_27a                                            : 32;
158*5113495bSYour Name #endif
159*5113495bSYour Name };
160*5113495bSYour Name 
161*5113495bSYour Name #define RX_LOCATION_INFO_RX_LOCATION_INFO_VALID_OFFSET                              0x00000000
162*5113495bSYour Name #define RX_LOCATION_INFO_RX_LOCATION_INFO_VALID_LSB                                 0
163*5113495bSYour Name #define RX_LOCATION_INFO_RX_LOCATION_INFO_VALID_MSB                                 0
164*5113495bSYour Name #define RX_LOCATION_INFO_RX_LOCATION_INFO_VALID_MASK                                0x00000001
165*5113495bSYour Name 
166*5113495bSYour Name #define RX_LOCATION_INFO_RTT_HW_IFFT_MODE_OFFSET                                    0x00000000
167*5113495bSYour Name #define RX_LOCATION_INFO_RTT_HW_IFFT_MODE_LSB                                       1
168*5113495bSYour Name #define RX_LOCATION_INFO_RTT_HW_IFFT_MODE_MSB                                       1
169*5113495bSYour Name #define RX_LOCATION_INFO_RTT_HW_IFFT_MODE_MASK                                      0x00000002
170*5113495bSYour Name 
171*5113495bSYour Name #define RX_LOCATION_INFO_RTT_11AZ_MODE_OFFSET                                       0x00000000
172*5113495bSYour Name #define RX_LOCATION_INFO_RTT_11AZ_MODE_LSB                                          2
173*5113495bSYour Name #define RX_LOCATION_INFO_RTT_11AZ_MODE_MSB                                          3
174*5113495bSYour Name #define RX_LOCATION_INFO_RTT_11AZ_MODE_MASK                                         0x0000000c
175*5113495bSYour Name 
176*5113495bSYour Name #define RX_LOCATION_INFO_RESERVED_0_OFFSET                                          0x00000000
177*5113495bSYour Name #define RX_LOCATION_INFO_RESERVED_0_LSB                                             4
178*5113495bSYour Name #define RX_LOCATION_INFO_RESERVED_0_MSB                                             7
179*5113495bSYour Name #define RX_LOCATION_INFO_RESERVED_0_MASK                                            0x000000f0
180*5113495bSYour Name 
181*5113495bSYour Name #define RX_LOCATION_INFO_RTT_NUM_FAC_OFFSET                                         0x00000000
182*5113495bSYour Name #define RX_LOCATION_INFO_RTT_NUM_FAC_LSB                                            8
183*5113495bSYour Name #define RX_LOCATION_INFO_RTT_NUM_FAC_MSB                                            15
184*5113495bSYour Name #define RX_LOCATION_INFO_RTT_NUM_FAC_MASK                                           0x0000ff00
185*5113495bSYour Name 
186*5113495bSYour Name #define RX_LOCATION_INFO_RTT_RX_CHAIN_MASK_OFFSET                                   0x00000000
187*5113495bSYour Name #define RX_LOCATION_INFO_RTT_RX_CHAIN_MASK_LSB                                      16
188*5113495bSYour Name #define RX_LOCATION_INFO_RTT_RX_CHAIN_MASK_MSB                                      23
189*5113495bSYour Name #define RX_LOCATION_INFO_RTT_RX_CHAIN_MASK_MASK                                     0x00ff0000
190*5113495bSYour Name 
191*5113495bSYour Name #define RX_LOCATION_INFO_RTT_NUM_STREAMS_OFFSET                                     0x00000000
192*5113495bSYour Name #define RX_LOCATION_INFO_RTT_NUM_STREAMS_LSB                                        24
193*5113495bSYour Name #define RX_LOCATION_INFO_RTT_NUM_STREAMS_MSB                                        31
194*5113495bSYour Name #define RX_LOCATION_INFO_RTT_NUM_STREAMS_MASK                                       0xff000000
195*5113495bSYour Name 
196*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FIRST_SELECTED_CHAIN_OFFSET                            0x00000004
197*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FIRST_SELECTED_CHAIN_LSB                               0
198*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FIRST_SELECTED_CHAIN_MSB                               7
199*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FIRST_SELECTED_CHAIN_MASK                              0x000000ff
200*5113495bSYour Name 
201*5113495bSYour Name #define RX_LOCATION_INFO_RTT_SECOND_SELECTED_CHAIN_OFFSET                           0x00000004
202*5113495bSYour Name #define RX_LOCATION_INFO_RTT_SECOND_SELECTED_CHAIN_LSB                              8
203*5113495bSYour Name #define RX_LOCATION_INFO_RTT_SECOND_SELECTED_CHAIN_MSB                              15
204*5113495bSYour Name #define RX_LOCATION_INFO_RTT_SECOND_SELECTED_CHAIN_MASK                             0x0000ff00
205*5113495bSYour Name 
206*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CFR_STATUS_OFFSET                                      0x00000004
207*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CFR_STATUS_LSB                                         16
208*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CFR_STATUS_MSB                                         23
209*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CFR_STATUS_MASK                                        0x00ff0000
210*5113495bSYour Name 
211*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CIR_STATUS_OFFSET                                      0x00000004
212*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CIR_STATUS_LSB                                         24
213*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CIR_STATUS_MSB                                         31
214*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CIR_STATUS_MASK                                        0xff000000
215*5113495bSYour Name 
216*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CHE_BUFFER_POINTER_LOW32_OFFSET                        0x00000008
217*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CHE_BUFFER_POINTER_LOW32_LSB                           0
218*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CHE_BUFFER_POINTER_LOW32_MSB                           31
219*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CHE_BUFFER_POINTER_LOW32_MASK                          0xffffffff
220*5113495bSYour Name 
221*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CHE_BUFFER_POINTER_HIGH8_OFFSET                        0x0000000c
222*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CHE_BUFFER_POINTER_HIGH8_LSB                           0
223*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CHE_BUFFER_POINTER_HIGH8_MSB                           7
224*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CHE_BUFFER_POINTER_HIGH8_MASK                          0x000000ff
225*5113495bSYour Name 
226*5113495bSYour Name #define RX_LOCATION_INFO_RESERVED_3_OFFSET                                          0x0000000c
227*5113495bSYour Name #define RX_LOCATION_INFO_RESERVED_3_LSB                                             8
228*5113495bSYour Name #define RX_LOCATION_INFO_RESERVED_3_MSB                                             15
229*5113495bSYour Name #define RX_LOCATION_INFO_RESERVED_3_MASK                                            0x0000ff00
230*5113495bSYour Name 
231*5113495bSYour Name #define RX_LOCATION_INFO_RTT_PKT_BW_VHT_OFFSET                                      0x0000000c
232*5113495bSYour Name #define RX_LOCATION_INFO_RTT_PKT_BW_VHT_LSB                                         16
233*5113495bSYour Name #define RX_LOCATION_INFO_RTT_PKT_BW_VHT_MSB                                         19
234*5113495bSYour Name #define RX_LOCATION_INFO_RTT_PKT_BW_VHT_MASK                                        0x000f0000
235*5113495bSYour Name 
236*5113495bSYour Name #define RX_LOCATION_INFO_RTT_PKT_BW_LEG_OFFSET                                      0x0000000c
237*5113495bSYour Name #define RX_LOCATION_INFO_RTT_PKT_BW_LEG_LSB                                         20
238*5113495bSYour Name #define RX_LOCATION_INFO_RTT_PKT_BW_LEG_MSB                                         23
239*5113495bSYour Name #define RX_LOCATION_INFO_RTT_PKT_BW_LEG_MASK                                        0x00f00000
240*5113495bSYour Name 
241*5113495bSYour Name #define RX_LOCATION_INFO_RTT_MCS_RATE_OFFSET                                        0x0000000c
242*5113495bSYour Name #define RX_LOCATION_INFO_RTT_MCS_RATE_LSB                                           24
243*5113495bSYour Name #define RX_LOCATION_INFO_RTT_MCS_RATE_MSB                                           31
244*5113495bSYour Name #define RX_LOCATION_INFO_RTT_MCS_RATE_MASK                                          0xff000000
245*5113495bSYour Name 
246*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CFO_MEASUREMENT_OFFSET                                 0x00000010
247*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CFO_MEASUREMENT_LSB                                    0
248*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CFO_MEASUREMENT_MSB                                    15
249*5113495bSYour Name #define RX_LOCATION_INFO_RTT_CFO_MEASUREMENT_MASK                                   0x0000ffff
250*5113495bSYour Name 
251*5113495bSYour Name #define RX_LOCATION_INFO_RTT_PREAMBLE_TYPE_OFFSET                                   0x00000010
252*5113495bSYour Name #define RX_LOCATION_INFO_RTT_PREAMBLE_TYPE_LSB                                      16
253*5113495bSYour Name #define RX_LOCATION_INFO_RTT_PREAMBLE_TYPE_MSB                                      23
254*5113495bSYour Name #define RX_LOCATION_INFO_RTT_PREAMBLE_TYPE_MASK                                     0x00ff0000
255*5113495bSYour Name 
256*5113495bSYour Name #define RX_LOCATION_INFO_RTT_GI_TYPE_OFFSET                                         0x00000010
257*5113495bSYour Name #define RX_LOCATION_INFO_RTT_GI_TYPE_LSB                                            24
258*5113495bSYour Name #define RX_LOCATION_INFO_RTT_GI_TYPE_MSB                                            31
259*5113495bSYour Name #define RX_LOCATION_INFO_RTT_GI_TYPE_MASK                                           0xff000000
260*5113495bSYour Name 
261*5113495bSYour Name #define RX_LOCATION_INFO_RX_START_TS_OFFSET                                         0x00000014
262*5113495bSYour Name #define RX_LOCATION_INFO_RX_START_TS_LSB                                            0
263*5113495bSYour Name #define RX_LOCATION_INFO_RX_START_TS_MSB                                            31
264*5113495bSYour Name #define RX_LOCATION_INFO_RX_START_TS_MASK                                           0xffffffff
265*5113495bSYour Name 
266*5113495bSYour Name #define RX_LOCATION_INFO_RX_START_TS_UPPER_OFFSET                                   0x00000018
267*5113495bSYour Name #define RX_LOCATION_INFO_RX_START_TS_UPPER_LSB                                      0
268*5113495bSYour Name #define RX_LOCATION_INFO_RX_START_TS_UPPER_MSB                                      31
269*5113495bSYour Name #define RX_LOCATION_INFO_RX_START_TS_UPPER_MASK                                     0xffffffff
270*5113495bSYour Name 
271*5113495bSYour Name #define RX_LOCATION_INFO_RX_END_TS_OFFSET                                           0x0000001c
272*5113495bSYour Name #define RX_LOCATION_INFO_RX_END_TS_LSB                                              0
273*5113495bSYour Name #define RX_LOCATION_INFO_RX_END_TS_MSB                                              31
274*5113495bSYour Name #define RX_LOCATION_INFO_RX_END_TS_MASK                                             0xffffffff
275*5113495bSYour Name 
276*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_CHAIN0_OFFSET                                         0x00000020
277*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_CHAIN0_LSB                                            0
278*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_CHAIN0_MSB                                            15
279*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_CHAIN0_MASK                                           0x0000ffff
280*5113495bSYour Name 
281*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_CHAIN1_OFFSET                                         0x00000020
282*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_CHAIN1_LSB                                            16
283*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_CHAIN1_MSB                                            31
284*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_CHAIN1_MASK                                           0xffff0000
285*5113495bSYour Name 
286*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_CHAIN2_OFFSET                                         0x00000024
287*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_CHAIN2_LSB                                            0
288*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_CHAIN2_MSB                                            15
289*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_CHAIN2_MASK                                           0x0000ffff
290*5113495bSYour Name 
291*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_CHAIN3_OFFSET                                         0x00000024
292*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_CHAIN3_LSB                                            16
293*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_CHAIN3_MSB                                            31
294*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_CHAIN3_MASK                                           0xffff0000
295*5113495bSYour Name 
296*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_REPORT_STATUS_OFFSET                                  0x00000028
297*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_REPORT_STATUS_LSB                                     0
298*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_REPORT_STATUS_MSB                                     7
299*5113495bSYour Name #define RX_LOCATION_INFO_GAIN_REPORT_STATUS_MASK                                    0x000000ff
300*5113495bSYour Name 
301*5113495bSYour Name #define RX_LOCATION_INFO_RTT_TIMING_BACKOFF_SEL_OFFSET                              0x00000028
302*5113495bSYour Name #define RX_LOCATION_INFO_RTT_TIMING_BACKOFF_SEL_LSB                                 8
303*5113495bSYour Name #define RX_LOCATION_INFO_RTT_TIMING_BACKOFF_SEL_MSB                                 15
304*5113495bSYour Name #define RX_LOCATION_INFO_RTT_TIMING_BACKOFF_SEL_MASK                                0x0000ff00
305*5113495bSYour Name 
306*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_COMBINED_OFFSET                                    0x00000028
307*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_COMBINED_LSB                                       16
308*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_COMBINED_MSB                                       31
309*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_COMBINED_MASK                                      0xffff0000
310*5113495bSYour Name 
311*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_0_OFFSET                                           0x0000002c
312*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_0_LSB                                              0
313*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_0_MSB                                              15
314*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_0_MASK                                             0x0000ffff
315*5113495bSYour Name 
316*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_1_OFFSET                                           0x0000002c
317*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_1_LSB                                              16
318*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_1_MSB                                              31
319*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_1_MASK                                             0xffff0000
320*5113495bSYour Name 
321*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_2_OFFSET                                           0x00000030
322*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_2_LSB                                              0
323*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_2_MSB                                              15
324*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_2_MASK                                             0x0000ffff
325*5113495bSYour Name 
326*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_3_OFFSET                                           0x00000030
327*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_3_LSB                                              16
328*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_3_MSB                                              31
329*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_3_MASK                                             0xffff0000
330*5113495bSYour Name 
331*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_4_OFFSET                                           0x00000034
332*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_4_LSB                                              0
333*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_4_MSB                                              15
334*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_4_MASK                                             0x0000ffff
335*5113495bSYour Name 
336*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_5_OFFSET                                           0x00000034
337*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_5_LSB                                              16
338*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_5_MSB                                              31
339*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_5_MASK                                             0xffff0000
340*5113495bSYour Name 
341*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_6_OFFSET                                           0x00000038
342*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_6_LSB                                              0
343*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_6_MSB                                              15
344*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_6_MASK                                             0x0000ffff
345*5113495bSYour Name 
346*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_7_OFFSET                                           0x00000038
347*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_7_LSB                                              16
348*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_7_MSB                                              31
349*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_7_MASK                                             0xffff0000
350*5113495bSYour Name 
351*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_8_OFFSET                                           0x0000003c
352*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_8_LSB                                              0
353*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_8_MSB                                              15
354*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_8_MASK                                             0x0000ffff
355*5113495bSYour Name 
356*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_9_OFFSET                                           0x0000003c
357*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_9_LSB                                              16
358*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_9_MSB                                              31
359*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_9_MASK                                             0xffff0000
360*5113495bSYour Name 
361*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_10_OFFSET                                          0x00000040
362*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_10_LSB                                             0
363*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_10_MSB                                             15
364*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_10_MASK                                            0x0000ffff
365*5113495bSYour Name 
366*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_11_OFFSET                                          0x00000040
367*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_11_LSB                                             16
368*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_11_MSB                                             31
369*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_11_MASK                                            0xffff0000
370*5113495bSYour Name 
371*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_12_OFFSET                                          0x00000044
372*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_12_LSB                                             0
373*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_12_MSB                                             15
374*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_12_MASK                                            0x0000ffff
375*5113495bSYour Name 
376*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_13_OFFSET                                          0x00000044
377*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_13_LSB                                             16
378*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_13_MSB                                             31
379*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_13_MASK                                            0xffff0000
380*5113495bSYour Name 
381*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_14_OFFSET                                          0x00000048
382*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_14_LSB                                             0
383*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_14_MSB                                             15
384*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_14_MASK                                            0x0000ffff
385*5113495bSYour Name 
386*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_15_OFFSET                                          0x00000048
387*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_15_LSB                                             16
388*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_15_MSB                                             31
389*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_15_MASK                                            0xffff0000
390*5113495bSYour Name 
391*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_16_OFFSET                                          0x0000004c
392*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_16_LSB                                             0
393*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_16_MSB                                             15
394*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_16_MASK                                            0x0000ffff
395*5113495bSYour Name 
396*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_17_OFFSET                                          0x0000004c
397*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_17_LSB                                             16
398*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_17_MSB                                             31
399*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_17_MASK                                            0xffff0000
400*5113495bSYour Name 
401*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_18_OFFSET                                          0x00000050
402*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_18_LSB                                             0
403*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_18_MSB                                             15
404*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_18_MASK                                            0x0000ffff
405*5113495bSYour Name 
406*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_19_OFFSET                                          0x00000050
407*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_19_LSB                                             16
408*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_19_MSB                                             31
409*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_19_MASK                                            0xffff0000
410*5113495bSYour Name 
411*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_20_OFFSET                                          0x00000054
412*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_20_LSB                                             0
413*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_20_MSB                                             15
414*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_20_MASK                                            0x0000ffff
415*5113495bSYour Name 
416*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_21_OFFSET                                          0x00000054
417*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_21_LSB                                             16
418*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_21_MSB                                             31
419*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_21_MASK                                            0xffff0000
420*5113495bSYour Name 
421*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_22_OFFSET                                          0x00000058
422*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_22_LSB                                             0
423*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_22_MSB                                             15
424*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_22_MASK                                            0x0000ffff
425*5113495bSYour Name 
426*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_23_OFFSET                                          0x00000058
427*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_23_LSB                                             16
428*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_23_MSB                                             31
429*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_23_MASK                                            0xffff0000
430*5113495bSYour Name 
431*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_24_OFFSET                                          0x0000005c
432*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_24_LSB                                             0
433*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_24_MSB                                             15
434*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_24_MASK                                            0x0000ffff
435*5113495bSYour Name 
436*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_25_OFFSET                                          0x0000005c
437*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_25_LSB                                             16
438*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_25_MSB                                             31
439*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_25_MASK                                            0xffff0000
440*5113495bSYour Name 
441*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_26_OFFSET                                          0x00000060
442*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_26_LSB                                             0
443*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_26_MSB                                             15
444*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_26_MASK                                            0x0000ffff
445*5113495bSYour Name 
446*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_27_OFFSET                                          0x00000060
447*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_27_LSB                                             16
448*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_27_MSB                                             31
449*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_27_MASK                                            0xffff0000
450*5113495bSYour Name 
451*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_28_OFFSET                                          0x00000064
452*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_28_LSB                                             0
453*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_28_MSB                                             15
454*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_28_MASK                                            0x0000ffff
455*5113495bSYour Name 
456*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_29_OFFSET                                          0x00000064
457*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_29_LSB                                             16
458*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_29_MSB                                             31
459*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_29_MASK                                            0xffff0000
460*5113495bSYour Name 
461*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_30_OFFSET                                          0x00000068
462*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_30_LSB                                             0
463*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_30_MSB                                             15
464*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_30_MASK                                            0x0000ffff
465*5113495bSYour Name 
466*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_31_OFFSET                                          0x00000068
467*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_31_LSB                                             16
468*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_31_MSB                                             31
469*5113495bSYour Name #define RX_LOCATION_INFO_RTT_FAC_31_MASK                                            0xffff0000
470*5113495bSYour Name 
471*5113495bSYour Name #define RX_LOCATION_INFO_RESERVED_27A_OFFSET                                        0x0000006c
472*5113495bSYour Name #define RX_LOCATION_INFO_RESERVED_27A_LSB                                           0
473*5113495bSYour Name #define RX_LOCATION_INFO_RESERVED_27A_MSB                                           31
474*5113495bSYour Name #define RX_LOCATION_INFO_RESERVED_27A_MASK                                          0xffffffff
475*5113495bSYour Name 
476*5113495bSYour Name #endif
477