iwlwifi: introduce statistics lock
[deliverable/linux.git] / drivers / net / wireless / iwlwifi / iwl-agn-calib.c
CommitLineData
f0832f13
EG
1/******************************************************************************
2 *
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
5 *
6 * GPL LICENSE SUMMARY
7 *
fb4961db 8 * Copyright(c) 2008 - 2012 Intel Corporation. All rights reserved.
f0832f13
EG
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
22 * USA
23 *
24 * The full GNU General Public License is included in this distribution
25 * in the file called LICENSE.GPL.
26 *
27 * Contact Information:
759ef89f 28 * Intel Linux Wireless <ilw@linux.intel.com>
f0832f13
EG
29 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
30 *
31 * BSD LICENSE
32 *
fb4961db 33 * Copyright(c) 2005 - 2012 Intel Corporation. All rights reserved.
f0832f13
EG
34 * All rights reserved.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 *
40 * * Redistributions of source code must retain the above copyright
41 * notice, this list of conditions and the following disclaimer.
42 * * Redistributions in binary form must reproduce the above copyright
43 * notice, this list of conditions and the following disclaimer in
44 * the documentation and/or other materials provided with the
45 * distribution.
46 * * Neither the name Intel Corporation nor the names of its
47 * contributors may be used to endorse or promote products derived
48 * from this software without specific prior written permission.
49 *
50 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
51 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
52 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
53 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
54 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
55 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
56 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
57 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
58 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
59 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
60 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
61 *****************************************************************************/
62
5a0e3ad6 63#include <linux/slab.h>
f0832f13
EG
64#include <net/mac80211.h>
65
3e0d4cb1 66#include "iwl-dev.h"
f0832f13 67#include "iwl-core.h"
0de76736 68#include "iwl-agn-calib.h"
bdfbf092 69#include "iwl-trans.h"
5c3d29fc 70#include "iwl-agn.h"
637d7925
EG
71#include "iwl-wifi.h"
72#include "iwl-ucode.h"
f0832f13 73
6e21f2c1
TW
74/*****************************************************************************
75 * INIT calibrations framework
76 *****************************************************************************/
77
34c22cf9
WT
78struct statistics_general_data {
79 u32 beacon_silence_rssi_a;
80 u32 beacon_silence_rssi_b;
81 u32 beacon_silence_rssi_c;
82 u32 beacon_energy_a;
83 u32 beacon_energy_b;
84 u32 beacon_energy_c;
85};
86
45c30dba 87int iwl_send_calib_results(struct iwl_trans *trans)
6e21f2c1 88{
6e21f2c1
TW
89 struct iwl_host_cmd hcmd = {
90 .id = REPLY_PHY_CALIBRATION_CMD,
e419d62d 91 .flags = CMD_SYNC,
6e21f2c1 92 };
f02c2fd3 93 struct iwl_calib_result *res;
6e21f2c1 94
45c30dba 95 list_for_each_entry(res, &trans->calib_results, list) {
93b64105
JB
96 int ret;
97
f02c2fd3
JB
98 hcmd.len[0] = res->cmd_len;
99 hcmd.data[0] = &res->hdr;
93b64105 100 hcmd.dataflags[0] = IWL_HCMD_DFL_NOCOPY;
45c30dba 101 ret = iwl_trans_send_cmd(trans, &hcmd);
93b64105 102 if (ret) {
45c30dba 103 IWL_ERR(trans, "Error %d on calib cmd %d\n",
f02c2fd3 104 ret, res->hdr.op_code);
93b64105 105 return ret;
6e21f2c1 106 }
be5d56ed 107 }
6e21f2c1 108
93b64105 109 return 0;
6e21f2c1 110}
6e21f2c1 111
45c30dba 112int iwl_calib_set(struct iwl_trans *trans,
f02c2fd3 113 const struct iwl_calib_hdr *cmd, int len)
6e21f2c1 114{
f02c2fd3
JB
115 struct iwl_calib_result *res, *tmp;
116
117 res = kmalloc(sizeof(*res) + len - sizeof(struct iwl_calib_hdr),
118 GFP_ATOMIC);
119 if (!res)
6e21f2c1 120 return -ENOMEM;
f02c2fd3
JB
121 memcpy(&res->hdr, cmd, len);
122 res->cmd_len = len;
123
45c30dba 124 list_for_each_entry(tmp, &trans->calib_results, list) {
f02c2fd3
JB
125 if (tmp->hdr.op_code == res->hdr.op_code) {
126 list_replace(&tmp->list, &res->list);
127 kfree(tmp);
128 return 0;
129 }
130 }
131
132 /* wasn't in list already */
45c30dba 133 list_add_tail(&res->list, &trans->calib_results);
6e21f2c1 134
6e21f2c1
TW
135 return 0;
136}
6e21f2c1 137
45c30dba 138void iwl_calib_free_results(struct iwl_trans *trans)
6e21f2c1 139{
f02c2fd3 140 struct iwl_calib_result *res, *tmp;
6e21f2c1 141
45c30dba 142 list_for_each_entry_safe(res, tmp, &trans->calib_results, list) {
f02c2fd3
JB
143 list_del(&res->list);
144 kfree(res);
6e21f2c1
TW
145 }
146}
147
148/*****************************************************************************
149 * RUNTIME calibrations framework
150 *****************************************************************************/
151
f0832f13
EG
152/* "false alarms" are signals that our DSP tries to lock onto,
153 * but then determines that they are either noise, or transmissions
154 * from a distant wireless network (also "noise", really) that get
155 * "stepped on" by stronger transmissions within our own network.
156 * This algorithm attempts to set a sensitivity level that is high
157 * enough to receive all of our own network traffic, but not so
158 * high that our DSP gets too busy trying to lock onto non-network
159 * activity/noise. */
160static int iwl_sens_energy_cck(struct iwl_priv *priv,
161 u32 norm_fa,
162 u32 rx_enable_time,
163 struct statistics_general_data *rx_info)
164{
165 u32 max_nrg_cck = 0;
166 int i = 0;
167 u8 max_silence_rssi = 0;
168 u32 silence_ref = 0;
169 u8 silence_rssi_a = 0;
170 u8 silence_rssi_b = 0;
171 u8 silence_rssi_c = 0;
172 u32 val;
173
174 /* "false_alarms" values below are cross-multiplications to assess the
175 * numbers of false alarms within the measured period of actual Rx
176 * (Rx is off when we're txing), vs the min/max expected false alarms
177 * (some should be expected if rx is sensitive enough) in a
178 * hypothetical listening period of 200 time units (TU), 204.8 msec:
179 *
180 * MIN_FA/fixed-time < false_alarms/actual-rx-time < MAX_FA/beacon-time
181 *
182 * */
183 u32 false_alarms = norm_fa * 200 * 1024;
184 u32 max_false_alarms = MAX_FA_CCK * rx_enable_time;
185 u32 min_false_alarms = MIN_FA_CCK * rx_enable_time;
186 struct iwl_sensitivity_data *data = NULL;
d6189124 187 const struct iwl_sensitivity_ranges *ranges = hw_params(priv).sens;
f0832f13
EG
188
189 data = &(priv->sensitivity_data);
190
191 data->nrg_auto_corr_silence_diff = 0;
192
193 /* Find max silence rssi among all 3 receivers.
194 * This is background noise, which may include transmissions from other
195 * networks, measured during silence before our network's beacon */
196 silence_rssi_a = (u8)((rx_info->beacon_silence_rssi_a &
197 ALL_BAND_FILTER) >> 8);
198 silence_rssi_b = (u8)((rx_info->beacon_silence_rssi_b &
199 ALL_BAND_FILTER) >> 8);
200 silence_rssi_c = (u8)((rx_info->beacon_silence_rssi_c &
201 ALL_BAND_FILTER) >> 8);
202
203 val = max(silence_rssi_b, silence_rssi_c);
204 max_silence_rssi = max(silence_rssi_a, (u8) val);
205
206 /* Store silence rssi in 20-beacon history table */
207 data->nrg_silence_rssi[data->nrg_silence_idx] = max_silence_rssi;
208 data->nrg_silence_idx++;
209 if (data->nrg_silence_idx >= NRG_NUM_PREV_STAT_L)
210 data->nrg_silence_idx = 0;
211
212 /* Find max silence rssi across 20 beacon history */
213 for (i = 0; i < NRG_NUM_PREV_STAT_L; i++) {
214 val = data->nrg_silence_rssi[i];
215 silence_ref = max(silence_ref, val);
216 }
e1623446 217 IWL_DEBUG_CALIB(priv, "silence a %u, b %u, c %u, 20-bcn max %u\n",
f0832f13
EG
218 silence_rssi_a, silence_rssi_b, silence_rssi_c,
219 silence_ref);
220
221 /* Find max rx energy (min value!) among all 3 receivers,
222 * measured during beacon frame.
223 * Save it in 10-beacon history table. */
224 i = data->nrg_energy_idx;
225 val = min(rx_info->beacon_energy_b, rx_info->beacon_energy_c);
226 data->nrg_value[i] = min(rx_info->beacon_energy_a, val);
227
228 data->nrg_energy_idx++;
229 if (data->nrg_energy_idx >= 10)
230 data->nrg_energy_idx = 0;
231
232 /* Find min rx energy (max value) across 10 beacon history.
233 * This is the minimum signal level that we want to receive well.
234 * Add backoff (margin so we don't miss slightly lower energy frames).
235 * This establishes an upper bound (min value) for energy threshold. */
236 max_nrg_cck = data->nrg_value[0];
237 for (i = 1; i < 10; i++)
238 max_nrg_cck = (u32) max(max_nrg_cck, (data->nrg_value[i]));
239 max_nrg_cck += 6;
240
e1623446 241 IWL_DEBUG_CALIB(priv, "rx energy a %u, b %u, c %u, 10-bcn max/min %u\n",
f0832f13
EG
242 rx_info->beacon_energy_a, rx_info->beacon_energy_b,
243 rx_info->beacon_energy_c, max_nrg_cck - 6);
244
245 /* Count number of consecutive beacons with fewer-than-desired
246 * false alarms. */
247 if (false_alarms < min_false_alarms)
248 data->num_in_cck_no_fa++;
249 else
250 data->num_in_cck_no_fa = 0;
e1623446 251 IWL_DEBUG_CALIB(priv, "consecutive bcns with few false alarms = %u\n",
f0832f13
EG
252 data->num_in_cck_no_fa);
253
254 /* If we got too many false alarms this time, reduce sensitivity */
255 if ((false_alarms > max_false_alarms) &&
256 (data->auto_corr_cck > AUTO_CORR_MAX_TH_CCK)) {
e1623446 257 IWL_DEBUG_CALIB(priv, "norm FA %u > max FA %u\n",
f0832f13 258 false_alarms, max_false_alarms);
e1623446 259 IWL_DEBUG_CALIB(priv, "... reducing sensitivity\n");
f0832f13
EG
260 data->nrg_curr_state = IWL_FA_TOO_MANY;
261 /* Store for "fewer than desired" on later beacon */
262 data->nrg_silence_ref = silence_ref;
263
264 /* increase energy threshold (reduce nrg value)
265 * to decrease sensitivity */
fe6efb4b 266 data->nrg_th_cck = data->nrg_th_cck - NRG_STEP_CCK;
f0832f13
EG
267 /* Else if we got fewer than desired, increase sensitivity */
268 } else if (false_alarms < min_false_alarms) {
269 data->nrg_curr_state = IWL_FA_TOO_FEW;
270
271 /* Compare silence level with silence level for most recent
272 * healthy number or too many false alarms */
273 data->nrg_auto_corr_silence_diff = (s32)data->nrg_silence_ref -
274 (s32)silence_ref;
275
e1623446 276 IWL_DEBUG_CALIB(priv, "norm FA %u < min FA %u, silence diff %d\n",
f0832f13
EG
277 false_alarms, min_false_alarms,
278 data->nrg_auto_corr_silence_diff);
279
280 /* Increase value to increase sensitivity, but only if:
281 * 1a) previous beacon did *not* have *too many* false alarms
282 * 1b) AND there's a significant difference in Rx levels
283 * from a previous beacon with too many, or healthy # FAs
284 * OR 2) We've seen a lot of beacons (100) with too few
285 * false alarms */
286 if ((data->nrg_prev_state != IWL_FA_TOO_MANY) &&
287 ((data->nrg_auto_corr_silence_diff > NRG_DIFF) ||
288 (data->num_in_cck_no_fa > MAX_NUMBER_CCK_NO_FA))) {
289
e1623446 290 IWL_DEBUG_CALIB(priv, "... increasing sensitivity\n");
f0832f13
EG
291 /* Increase nrg value to increase sensitivity */
292 val = data->nrg_th_cck + NRG_STEP_CCK;
293 data->nrg_th_cck = min((u32)ranges->min_nrg_cck, val);
294 } else {
e1623446 295 IWL_DEBUG_CALIB(priv, "... but not changing sensitivity\n");
f0832f13
EG
296 }
297
298 /* Else we got a healthy number of false alarms, keep status quo */
299 } else {
e1623446 300 IWL_DEBUG_CALIB(priv, " FA in safe zone\n");
f0832f13
EG
301 data->nrg_curr_state = IWL_FA_GOOD_RANGE;
302
303 /* Store for use in "fewer than desired" with later beacon */
304 data->nrg_silence_ref = silence_ref;
305
306 /* If previous beacon had too many false alarms,
307 * give it some extra margin by reducing sensitivity again
308 * (but don't go below measured energy of desired Rx) */
309 if (IWL_FA_TOO_MANY == data->nrg_prev_state) {
e1623446 310 IWL_DEBUG_CALIB(priv, "... increasing margin\n");
f0832f13
EG
311 if (data->nrg_th_cck > (max_nrg_cck + NRG_MARGIN))
312 data->nrg_th_cck -= NRG_MARGIN;
313 else
314 data->nrg_th_cck = max_nrg_cck;
315 }
316 }
317
318 /* Make sure the energy threshold does not go above the measured
319 * energy of the desired Rx signals (reduced by backoff margin),
320 * or else we might start missing Rx frames.
321 * Lower value is higher energy, so we use max()!
322 */
323 data->nrg_th_cck = max(max_nrg_cck, data->nrg_th_cck);
e1623446 324 IWL_DEBUG_CALIB(priv, "new nrg_th_cck %u\n", data->nrg_th_cck);
f0832f13
EG
325
326 data->nrg_prev_state = data->nrg_curr_state;
327
328 /* Auto-correlation CCK algorithm */
329 if (false_alarms > min_false_alarms) {
330
331 /* increase auto_corr values to decrease sensitivity
332 * so the DSP won't be disturbed by the noise
333 */
334 if (data->auto_corr_cck < AUTO_CORR_MAX_TH_CCK)
335 data->auto_corr_cck = AUTO_CORR_MAX_TH_CCK + 1;
336 else {
337 val = data->auto_corr_cck + AUTO_CORR_STEP_CCK;
338 data->auto_corr_cck =
339 min((u32)ranges->auto_corr_max_cck, val);
340 }
341 val = data->auto_corr_cck_mrc + AUTO_CORR_STEP_CCK;
342 data->auto_corr_cck_mrc =
343 min((u32)ranges->auto_corr_max_cck_mrc, val);
344 } else if ((false_alarms < min_false_alarms) &&
345 ((data->nrg_auto_corr_silence_diff > NRG_DIFF) ||
346 (data->num_in_cck_no_fa > MAX_NUMBER_CCK_NO_FA))) {
347
348 /* Decrease auto_corr values to increase sensitivity */
349 val = data->auto_corr_cck - AUTO_CORR_STEP_CCK;
350 data->auto_corr_cck =
351 max((u32)ranges->auto_corr_min_cck, val);
352 val = data->auto_corr_cck_mrc - AUTO_CORR_STEP_CCK;
353 data->auto_corr_cck_mrc =
354 max((u32)ranges->auto_corr_min_cck_mrc, val);
355 }
356
357 return 0;
358}
359
360
361static int iwl_sens_auto_corr_ofdm(struct iwl_priv *priv,
362 u32 norm_fa,
363 u32 rx_enable_time)
364{
365 u32 val;
366 u32 false_alarms = norm_fa * 200 * 1024;
367 u32 max_false_alarms = MAX_FA_OFDM * rx_enable_time;
368 u32 min_false_alarms = MIN_FA_OFDM * rx_enable_time;
369 struct iwl_sensitivity_data *data = NULL;
d6189124 370 const struct iwl_sensitivity_ranges *ranges = hw_params(priv).sens;
f0832f13
EG
371
372 data = &(priv->sensitivity_data);
373
374 /* If we got too many false alarms this time, reduce sensitivity */
375 if (false_alarms > max_false_alarms) {
376
e1623446 377 IWL_DEBUG_CALIB(priv, "norm FA %u > max FA %u)\n",
f0832f13
EG
378 false_alarms, max_false_alarms);
379
380 val = data->auto_corr_ofdm + AUTO_CORR_STEP_OFDM;
381 data->auto_corr_ofdm =
382 min((u32)ranges->auto_corr_max_ofdm, val);
383
384 val = data->auto_corr_ofdm_mrc + AUTO_CORR_STEP_OFDM;
385 data->auto_corr_ofdm_mrc =
386 min((u32)ranges->auto_corr_max_ofdm_mrc, val);
387
388 val = data->auto_corr_ofdm_x1 + AUTO_CORR_STEP_OFDM;
389 data->auto_corr_ofdm_x1 =
390 min((u32)ranges->auto_corr_max_ofdm_x1, val);
391
392 val = data->auto_corr_ofdm_mrc_x1 + AUTO_CORR_STEP_OFDM;
393 data->auto_corr_ofdm_mrc_x1 =
394 min((u32)ranges->auto_corr_max_ofdm_mrc_x1, val);
395 }
396
397 /* Else if we got fewer than desired, increase sensitivity */
398 else if (false_alarms < min_false_alarms) {
399
e1623446 400 IWL_DEBUG_CALIB(priv, "norm FA %u < min FA %u\n",
f0832f13
EG
401 false_alarms, min_false_alarms);
402
403 val = data->auto_corr_ofdm - AUTO_CORR_STEP_OFDM;
404 data->auto_corr_ofdm =
405 max((u32)ranges->auto_corr_min_ofdm, val);
406
407 val = data->auto_corr_ofdm_mrc - AUTO_CORR_STEP_OFDM;
408 data->auto_corr_ofdm_mrc =
409 max((u32)ranges->auto_corr_min_ofdm_mrc, val);
410
411 val = data->auto_corr_ofdm_x1 - AUTO_CORR_STEP_OFDM;
412 data->auto_corr_ofdm_x1 =
413 max((u32)ranges->auto_corr_min_ofdm_x1, val);
414
415 val = data->auto_corr_ofdm_mrc_x1 - AUTO_CORR_STEP_OFDM;
416 data->auto_corr_ofdm_mrc_x1 =
417 max((u32)ranges->auto_corr_min_ofdm_mrc_x1, val);
418 } else {
e1623446 419 IWL_DEBUG_CALIB(priv, "min FA %u < norm FA %u < max FA %u OK\n",
f0832f13
EG
420 min_false_alarms, false_alarms, max_false_alarms);
421 }
422 return 0;
423}
424
c8312fac
WYG
425static void iwl_prepare_legacy_sensitivity_tbl(struct iwl_priv *priv,
426 struct iwl_sensitivity_data *data,
427 __le16 *tbl)
f0832f13 428{
c8312fac 429 tbl[HD_AUTO_CORR32_X4_TH_ADD_MIN_INDEX] =
f0832f13 430 cpu_to_le16((u16)data->auto_corr_ofdm);
c8312fac 431 tbl[HD_AUTO_CORR32_X4_TH_ADD_MIN_MRC_INDEX] =
f0832f13 432 cpu_to_le16((u16)data->auto_corr_ofdm_mrc);
c8312fac 433 tbl[HD_AUTO_CORR32_X1_TH_ADD_MIN_INDEX] =
f0832f13 434 cpu_to_le16((u16)data->auto_corr_ofdm_x1);
c8312fac 435 tbl[HD_AUTO_CORR32_X1_TH_ADD_MIN_MRC_INDEX] =
f0832f13
EG
436 cpu_to_le16((u16)data->auto_corr_ofdm_mrc_x1);
437
c8312fac 438 tbl[HD_AUTO_CORR40_X4_TH_ADD_MIN_INDEX] =
f0832f13 439 cpu_to_le16((u16)data->auto_corr_cck);
c8312fac 440 tbl[HD_AUTO_CORR40_X4_TH_ADD_MIN_MRC_INDEX] =
f0832f13
EG
441 cpu_to_le16((u16)data->auto_corr_cck_mrc);
442
c8312fac 443 tbl[HD_MIN_ENERGY_CCK_DET_INDEX] =
f0832f13 444 cpu_to_le16((u16)data->nrg_th_cck);
c8312fac 445 tbl[HD_MIN_ENERGY_OFDM_DET_INDEX] =
f0832f13
EG
446 cpu_to_le16((u16)data->nrg_th_ofdm);
447
c8312fac 448 tbl[HD_BARKER_CORR_TH_ADD_MIN_INDEX] =
55036d66 449 cpu_to_le16(data->barker_corr_th_min);
c8312fac 450 tbl[HD_BARKER_CORR_TH_ADD_MIN_MRC_INDEX] =
55036d66 451 cpu_to_le16(data->barker_corr_th_min_mrc);
c8312fac 452 tbl[HD_OFDM_ENERGY_TH_IN_INDEX] =
55036d66 453 cpu_to_le16(data->nrg_th_cca);
f0832f13 454
e1623446 455 IWL_DEBUG_CALIB(priv, "ofdm: ac %u mrc %u x1 %u mrc_x1 %u thresh %u\n",
f0832f13
EG
456 data->auto_corr_ofdm, data->auto_corr_ofdm_mrc,
457 data->auto_corr_ofdm_x1, data->auto_corr_ofdm_mrc_x1,
458 data->nrg_th_ofdm);
459
e1623446 460 IWL_DEBUG_CALIB(priv, "cck: ac %u mrc %u thresh %u\n",
f0832f13
EG
461 data->auto_corr_cck, data->auto_corr_cck_mrc,
462 data->nrg_th_cck);
c8312fac
WYG
463}
464
465/* Prepare a SENSITIVITY_CMD, send to uCode if values have changed */
466static int iwl_sensitivity_write(struct iwl_priv *priv)
467{
468 struct iwl_sensitivity_cmd cmd;
469 struct iwl_sensitivity_data *data = NULL;
470 struct iwl_host_cmd cmd_out = {
471 .id = SENSITIVITY_CMD,
3fa50738 472 .len = { sizeof(struct iwl_sensitivity_cmd), },
c8312fac 473 .flags = CMD_ASYNC,
3fa50738 474 .data = { &cmd, },
c8312fac
WYG
475 };
476
477 data = &(priv->sensitivity_data);
478
479 memset(&cmd, 0, sizeof(cmd));
480
481 iwl_prepare_legacy_sensitivity_tbl(priv, data, &cmd.table[0]);
f0832f13
EG
482
483 /* Update uCode's "work" table, and copy it to DSP */
484 cmd.control = SENSITIVITY_CMD_CONTROL_WORK_TABLE;
485
486 /* Don't send command to uCode if nothing has changed */
487 if (!memcmp(&cmd.table[0], &(priv->sensitivity_tbl[0]),
488 sizeof(u16)*HD_TABLE_SIZE)) {
e1623446 489 IWL_DEBUG_CALIB(priv, "No change in SENSITIVITY_CMD\n");
f0832f13
EG
490 return 0;
491 }
492
493 /* Copy table for comparison next time */
494 memcpy(&(priv->sensitivity_tbl[0]), &(cmd.table[0]),
495 sizeof(u16)*HD_TABLE_SIZE);
496
e6bb4c9c 497 return iwl_trans_send_cmd(trans(priv), &cmd_out);
f0832f13
EG
498}
499
c8312fac
WYG
500/* Prepare a SENSITIVITY_CMD, send to uCode if values have changed */
501static int iwl_enhance_sensitivity_write(struct iwl_priv *priv)
502{
503 struct iwl_enhance_sensitivity_cmd cmd;
504 struct iwl_sensitivity_data *data = NULL;
505 struct iwl_host_cmd cmd_out = {
506 .id = SENSITIVITY_CMD,
3fa50738 507 .len = { sizeof(struct iwl_enhance_sensitivity_cmd), },
c8312fac 508 .flags = CMD_ASYNC,
3fa50738 509 .data = { &cmd, },
c8312fac
WYG
510 };
511
512 data = &(priv->sensitivity_data);
513
514 memset(&cmd, 0, sizeof(cmd));
515
516 iwl_prepare_legacy_sensitivity_tbl(priv, data, &cmd.enhance_table[0]);
517
38622419 518 if (cfg(priv)->base_params->hd_v2) {
ae7f9a74
WYG
519 cmd.enhance_table[HD_INA_NON_SQUARE_DET_OFDM_INDEX] =
520 HD_INA_NON_SQUARE_DET_OFDM_DATA_V2;
521 cmd.enhance_table[HD_INA_NON_SQUARE_DET_CCK_INDEX] =
522 HD_INA_NON_SQUARE_DET_CCK_DATA_V2;
523 cmd.enhance_table[HD_CORR_11_INSTEAD_OF_CORR_9_EN_INDEX] =
524 HD_CORR_11_INSTEAD_OF_CORR_9_EN_DATA_V2;
525 cmd.enhance_table[HD_OFDM_NON_SQUARE_DET_SLOPE_MRC_INDEX] =
526 HD_OFDM_NON_SQUARE_DET_SLOPE_MRC_DATA_V2;
527 cmd.enhance_table[HD_OFDM_NON_SQUARE_DET_INTERCEPT_MRC_INDEX] =
528 HD_OFDM_NON_SQUARE_DET_INTERCEPT_MRC_DATA_V2;
529 cmd.enhance_table[HD_OFDM_NON_SQUARE_DET_SLOPE_INDEX] =
530 HD_OFDM_NON_SQUARE_DET_SLOPE_DATA_V2;
531 cmd.enhance_table[HD_OFDM_NON_SQUARE_DET_INTERCEPT_INDEX] =
532 HD_OFDM_NON_SQUARE_DET_INTERCEPT_DATA_V2;
533 cmd.enhance_table[HD_CCK_NON_SQUARE_DET_SLOPE_MRC_INDEX] =
534 HD_CCK_NON_SQUARE_DET_SLOPE_MRC_DATA_V2;
535 cmd.enhance_table[HD_CCK_NON_SQUARE_DET_INTERCEPT_MRC_INDEX] =
536 HD_CCK_NON_SQUARE_DET_INTERCEPT_MRC_DATA_V2;
537 cmd.enhance_table[HD_CCK_NON_SQUARE_DET_SLOPE_INDEX] =
538 HD_CCK_NON_SQUARE_DET_SLOPE_DATA_V2;
539 cmd.enhance_table[HD_CCK_NON_SQUARE_DET_INTERCEPT_INDEX] =
540 HD_CCK_NON_SQUARE_DET_INTERCEPT_DATA_V2;
541 } else {
542 cmd.enhance_table[HD_INA_NON_SQUARE_DET_OFDM_INDEX] =
543 HD_INA_NON_SQUARE_DET_OFDM_DATA_V1;
544 cmd.enhance_table[HD_INA_NON_SQUARE_DET_CCK_INDEX] =
545 HD_INA_NON_SQUARE_DET_CCK_DATA_V1;
546 cmd.enhance_table[HD_CORR_11_INSTEAD_OF_CORR_9_EN_INDEX] =
547 HD_CORR_11_INSTEAD_OF_CORR_9_EN_DATA_V1;
548 cmd.enhance_table[HD_OFDM_NON_SQUARE_DET_SLOPE_MRC_INDEX] =
549 HD_OFDM_NON_SQUARE_DET_SLOPE_MRC_DATA_V1;
550 cmd.enhance_table[HD_OFDM_NON_SQUARE_DET_INTERCEPT_MRC_INDEX] =
551 HD_OFDM_NON_SQUARE_DET_INTERCEPT_MRC_DATA_V1;
552 cmd.enhance_table[HD_OFDM_NON_SQUARE_DET_SLOPE_INDEX] =
553 HD_OFDM_NON_SQUARE_DET_SLOPE_DATA_V1;
554 cmd.enhance_table[HD_OFDM_NON_SQUARE_DET_INTERCEPT_INDEX] =
555 HD_OFDM_NON_SQUARE_DET_INTERCEPT_DATA_V1;
556 cmd.enhance_table[HD_CCK_NON_SQUARE_DET_SLOPE_MRC_INDEX] =
557 HD_CCK_NON_SQUARE_DET_SLOPE_MRC_DATA_V1;
558 cmd.enhance_table[HD_CCK_NON_SQUARE_DET_INTERCEPT_MRC_INDEX] =
559 HD_CCK_NON_SQUARE_DET_INTERCEPT_MRC_DATA_V1;
560 cmd.enhance_table[HD_CCK_NON_SQUARE_DET_SLOPE_INDEX] =
561 HD_CCK_NON_SQUARE_DET_SLOPE_DATA_V1;
562 cmd.enhance_table[HD_CCK_NON_SQUARE_DET_INTERCEPT_INDEX] =
563 HD_CCK_NON_SQUARE_DET_INTERCEPT_DATA_V1;
564 }
c8312fac
WYG
565
566 /* Update uCode's "work" table, and copy it to DSP */
567 cmd.control = SENSITIVITY_CMD_CONTROL_WORK_TABLE;
568
569 /* Don't send command to uCode if nothing has changed */
570 if (!memcmp(&cmd.enhance_table[0], &(priv->sensitivity_tbl[0]),
571 sizeof(u16)*HD_TABLE_SIZE) &&
572 !memcmp(&cmd.enhance_table[HD_INA_NON_SQUARE_DET_OFDM_INDEX],
573 &(priv->enhance_sensitivity_tbl[0]),
574 sizeof(u16)*ENHANCE_HD_TABLE_ENTRIES)) {
575 IWL_DEBUG_CALIB(priv, "No change in SENSITIVITY_CMD\n");
576 return 0;
577 }
578
579 /* Copy table for comparison next time */
580 memcpy(&(priv->sensitivity_tbl[0]), &(cmd.enhance_table[0]),
581 sizeof(u16)*HD_TABLE_SIZE);
582 memcpy(&(priv->enhance_sensitivity_tbl[0]),
583 &(cmd.enhance_table[HD_INA_NON_SQUARE_DET_OFDM_INDEX]),
584 sizeof(u16)*ENHANCE_HD_TABLE_ENTRIES);
585
e6bb4c9c 586 return iwl_trans_send_cmd(trans(priv), &cmd_out);
c8312fac
WYG
587}
588
f0832f13
EG
589void iwl_init_sensitivity(struct iwl_priv *priv)
590{
591 int ret = 0;
592 int i;
593 struct iwl_sensitivity_data *data = NULL;
d6189124 594 const struct iwl_sensitivity_ranges *ranges = hw_params(priv).sens;
f0832f13 595
445c2dff
TW
596 if (priv->disable_sens_cal)
597 return;
598
e1623446 599 IWL_DEBUG_CALIB(priv, "Start iwl_init_sensitivity\n");
f0832f13
EG
600
601 /* Clear driver's sensitivity algo data */
602 data = &(priv->sensitivity_data);
603
604 if (ranges == NULL)
f0832f13
EG
605 return;
606
607 memset(data, 0, sizeof(struct iwl_sensitivity_data));
608
609 data->num_in_cck_no_fa = 0;
610 data->nrg_curr_state = IWL_FA_TOO_MANY;
611 data->nrg_prev_state = IWL_FA_TOO_MANY;
612 data->nrg_silence_ref = 0;
613 data->nrg_silence_idx = 0;
614 data->nrg_energy_idx = 0;
615
616 for (i = 0; i < 10; i++)
617 data->nrg_value[i] = 0;
618
619 for (i = 0; i < NRG_NUM_PREV_STAT_L; i++)
620 data->nrg_silence_rssi[i] = 0;
621
f3a2a424 622 data->auto_corr_ofdm = ranges->auto_corr_min_ofdm;
f0832f13
EG
623 data->auto_corr_ofdm_mrc = ranges->auto_corr_min_ofdm_mrc;
624 data->auto_corr_ofdm_x1 = ranges->auto_corr_min_ofdm_x1;
625 data->auto_corr_ofdm_mrc_x1 = ranges->auto_corr_min_ofdm_mrc_x1;
626 data->auto_corr_cck = AUTO_CORR_CCK_MIN_VAL_DEF;
627 data->auto_corr_cck_mrc = ranges->auto_corr_min_cck_mrc;
628 data->nrg_th_cck = ranges->nrg_th_cck;
629 data->nrg_th_ofdm = ranges->nrg_th_ofdm;
55036d66
WYG
630 data->barker_corr_th_min = ranges->barker_corr_th_min;
631 data->barker_corr_th_min_mrc = ranges->barker_corr_th_min_mrc;
632 data->nrg_th_cca = ranges->nrg_th_cca;
f0832f13
EG
633
634 data->last_bad_plcp_cnt_ofdm = 0;
635 data->last_fa_cnt_ofdm = 0;
636 data->last_bad_plcp_cnt_cck = 0;
637 data->last_fa_cnt_cck = 0;
638
637d7925 639 if (nic(priv)->fw.enhance_sensitivity_table)
c8312fac
WYG
640 ret |= iwl_enhance_sensitivity_write(priv);
641 else
642 ret |= iwl_sensitivity_write(priv);
e1623446 643 IWL_DEBUG_CALIB(priv, "<<return 0x%X\n", ret);
f0832f13 644}
f0832f13 645
0da0e5bf 646void iwl_sensitivity_calibration(struct iwl_priv *priv)
f0832f13
EG
647{
648 u32 rx_enable_time;
649 u32 fa_cck;
650 u32 fa_ofdm;
651 u32 bad_plcp_cck;
652 u32 bad_plcp_ofdm;
653 u32 norm_fa_ofdm;
654 u32 norm_fa_cck;
655 struct iwl_sensitivity_data *data = NULL;
7980fba5
WYG
656 struct statistics_rx_non_phy *rx_info;
657 struct statistics_rx_phy *ofdm, *cck;
f0832f13
EG
658 struct statistics_general_data statis;
659
445c2dff
TW
660 if (priv->disable_sens_cal)
661 return;
662
f0832f13
EG
663 data = &(priv->sensitivity_data);
664
246ed355 665 if (!iwl_is_any_associated(priv)) {
e1623446 666 IWL_DEBUG_CALIB(priv, "<< - not associated\n");
f0832f13
EG
667 return;
668 }
669
4ff70fcd 670 spin_lock_bh(&priv->statistics.lock);
0da0e5bf
JB
671 rx_info = &priv->statistics.rx_non_phy;
672 ofdm = &priv->statistics.rx_ofdm;
673 cck = &priv->statistics.rx_cck;
f0832f13 674 if (rx_info->interference_data_flag != INTERFERENCE_DATA_AVAILABLE) {
e1623446 675 IWL_DEBUG_CALIB(priv, "<< invalid data.\n");
4ff70fcd 676 spin_unlock_bh(&priv->statistics.lock);
f0832f13
EG
677 return;
678 }
679
680 /* Extract Statistics: */
681 rx_enable_time = le32_to_cpu(rx_info->channel_load);
7980fba5
WYG
682 fa_cck = le32_to_cpu(cck->false_alarm_cnt);
683 fa_ofdm = le32_to_cpu(ofdm->false_alarm_cnt);
684 bad_plcp_cck = le32_to_cpu(cck->plcp_err);
685 bad_plcp_ofdm = le32_to_cpu(ofdm->plcp_err);
f0832f13
EG
686
687 statis.beacon_silence_rssi_a =
7980fba5 688 le32_to_cpu(rx_info->beacon_silence_rssi_a);
f0832f13 689 statis.beacon_silence_rssi_b =
7980fba5 690 le32_to_cpu(rx_info->beacon_silence_rssi_b);
f0832f13 691 statis.beacon_silence_rssi_c =
7980fba5 692 le32_to_cpu(rx_info->beacon_silence_rssi_c);
f0832f13 693 statis.beacon_energy_a =
7980fba5 694 le32_to_cpu(rx_info->beacon_energy_a);
f0832f13 695 statis.beacon_energy_b =
7980fba5 696 le32_to_cpu(rx_info->beacon_energy_b);
f0832f13 697 statis.beacon_energy_c =
7980fba5 698 le32_to_cpu(rx_info->beacon_energy_c);
f0832f13 699
4ff70fcd 700 spin_unlock_bh(&priv->statistics.lock);
f0832f13 701
e1623446 702 IWL_DEBUG_CALIB(priv, "rx_enable_time = %u usecs\n", rx_enable_time);
f0832f13
EG
703
704 if (!rx_enable_time) {
91dd6c27 705 IWL_DEBUG_CALIB(priv, "<< RX Enable Time == 0!\n");
f0832f13
EG
706 return;
707 }
708
709 /* These statistics increase monotonically, and do not reset
710 * at each beacon. Calculate difference from last value, or just
711 * use the new statistics value if it has reset or wrapped around. */
712 if (data->last_bad_plcp_cnt_cck > bad_plcp_cck)
713 data->last_bad_plcp_cnt_cck = bad_plcp_cck;
714 else {
715 bad_plcp_cck -= data->last_bad_plcp_cnt_cck;
716 data->last_bad_plcp_cnt_cck += bad_plcp_cck;
717 }
718
719 if (data->last_bad_plcp_cnt_ofdm > bad_plcp_ofdm)
720 data->last_bad_plcp_cnt_ofdm = bad_plcp_ofdm;
721 else {
722 bad_plcp_ofdm -= data->last_bad_plcp_cnt_ofdm;
723 data->last_bad_plcp_cnt_ofdm += bad_plcp_ofdm;
724 }
725
726 if (data->last_fa_cnt_ofdm > fa_ofdm)
727 data->last_fa_cnt_ofdm = fa_ofdm;
728 else {
729 fa_ofdm -= data->last_fa_cnt_ofdm;
730 data->last_fa_cnt_ofdm += fa_ofdm;
731 }
732
733 if (data->last_fa_cnt_cck > fa_cck)
734 data->last_fa_cnt_cck = fa_cck;
735 else {
736 fa_cck -= data->last_fa_cnt_cck;
737 data->last_fa_cnt_cck += fa_cck;
738 }
739
740 /* Total aborted signal locks */
741 norm_fa_ofdm = fa_ofdm + bad_plcp_ofdm;
742 norm_fa_cck = fa_cck + bad_plcp_cck;
743
e1623446 744 IWL_DEBUG_CALIB(priv, "cck: fa %u badp %u ofdm: fa %u badp %u\n", fa_cck,
f0832f13
EG
745 bad_plcp_cck, fa_ofdm, bad_plcp_ofdm);
746
747 iwl_sens_auto_corr_ofdm(priv, norm_fa_ofdm, rx_enable_time);
748 iwl_sens_energy_cck(priv, norm_fa_cck, rx_enable_time, &statis);
637d7925 749 if (nic(priv)->fw.enhance_sensitivity_table)
c8312fac
WYG
750 iwl_enhance_sensitivity_write(priv);
751 else
752 iwl_sensitivity_write(priv);
f0832f13 753}
f0832f13 754
d8c07e7a
WYG
755static inline u8 find_first_chain(u8 mask)
756{
757 if (mask & ANT_A)
758 return CHAIN_A;
759 if (mask & ANT_B)
760 return CHAIN_B;
761 return CHAIN_C;
762}
763
3031242b
SZ
764/**
765 * Run disconnected antenna algorithm to find out which antennas are
766 * disconnected.
767 */
768static void iwl_find_disconn_antenna(struct iwl_priv *priv, u32* average_sig,
769 struct iwl_chain_noise_data *data)
770{
771 u32 active_chains = 0;
772 u32 max_average_sig;
773 u16 max_average_sig_antenna_i;
774 u8 num_tx_chains;
775 u8 first_chain;
776 u16 i = 0;
777
b8c2b05e
FD
778 average_sig[0] = data->chain_signal_a / IWL_CAL_NUM_BEACONS;
779 average_sig[1] = data->chain_signal_b / IWL_CAL_NUM_BEACONS;
780 average_sig[2] = data->chain_signal_c / IWL_CAL_NUM_BEACONS;
3031242b
SZ
781
782 if (average_sig[0] >= average_sig[1]) {
783 max_average_sig = average_sig[0];
784 max_average_sig_antenna_i = 0;
785 active_chains = (1 << max_average_sig_antenna_i);
786 } else {
787 max_average_sig = average_sig[1];
788 max_average_sig_antenna_i = 1;
789 active_chains = (1 << max_average_sig_antenna_i);
790 }
791
792 if (average_sig[2] >= max_average_sig) {
793 max_average_sig = average_sig[2];
794 max_average_sig_antenna_i = 2;
795 active_chains = (1 << max_average_sig_antenna_i);
796 }
797
798 IWL_DEBUG_CALIB(priv, "average_sig: a %d b %d c %d\n",
799 average_sig[0], average_sig[1], average_sig[2]);
800 IWL_DEBUG_CALIB(priv, "max_average_sig = %d, antenna %d\n",
801 max_average_sig, max_average_sig_antenna_i);
802
803 /* Compare signal strengths for all 3 receivers. */
804 for (i = 0; i < NUM_RX_CHAINS; i++) {
805 if (i != max_average_sig_antenna_i) {
806 s32 rssi_delta = (max_average_sig - average_sig[i]);
807
808 /* If signal is very weak, compared with
809 * strongest, mark it as disconnected. */
810 if (rssi_delta > MAXIMUM_ALLOWED_PATHLOSS)
811 data->disconn_array[i] = 1;
812 else
813 active_chains |= (1 << i);
814 IWL_DEBUG_CALIB(priv, "i = %d rssiDelta = %d "
815 "disconn_array[i] = %d\n",
816 i, rssi_delta, data->disconn_array[i]);
817 }
818 }
819
820 /*
821 * The above algorithm sometimes fails when the ucode
822 * reports 0 for all chains. It's not clear why that
823 * happens to start with, but it is then causing trouble
824 * because this can make us enable more chains than the
825 * hardware really has.
826 *
827 * To be safe, simply mask out any chains that we know
828 * are not on the device.
829 */
d6189124 830 active_chains &= hw_params(priv).valid_rx_ant;
3031242b
SZ
831
832 num_tx_chains = 0;
833 for (i = 0; i < NUM_RX_CHAINS; i++) {
834 /* loops on all the bits of
835 * priv->hw_setting.valid_tx_ant */
836 u8 ant_msk = (1 << i);
d6189124 837 if (!(hw_params(priv).valid_tx_ant & ant_msk))
3031242b
SZ
838 continue;
839
840 num_tx_chains++;
841 if (data->disconn_array[i] == 0)
842 /* there is a Tx antenna connected */
843 break;
d6189124 844 if (num_tx_chains == hw_params(priv).tx_chains_num &&
3031242b
SZ
845 data->disconn_array[i]) {
846 /*
847 * If all chains are disconnected
848 * connect the first valid tx chain
849 */
850 first_chain =
38622419 851 find_first_chain(cfg(priv)->valid_tx_ant);
3031242b
SZ
852 data->disconn_array[first_chain] = 0;
853 active_chains |= BIT(first_chain);
85ee7a1d
JP
854 IWL_DEBUG_CALIB(priv,
855 "All Tx chains are disconnected W/A - declare %d as connected\n",
3031242b
SZ
856 first_chain);
857 break;
858 }
859 }
860
d6189124 861 if (active_chains != hw_params(priv).valid_rx_ant &&
3031242b
SZ
862 active_chains != priv->chain_noise_data.active_chains)
863 IWL_DEBUG_CALIB(priv,
864 "Detected that not all antennas are connected! "
865 "Connected: %#x, valid: %#x.\n",
d6189124
EG
866 active_chains,
867 hw_params(priv).valid_rx_ant);
3031242b
SZ
868
869 /* Save for use within RXON, TX, SCAN commands, etc. */
870 data->active_chains = active_chains;
871 IWL_DEBUG_CALIB(priv, "active_chains (bitwise) = 0x%x\n",
872 active_chains);
873}
874
e505c433
WYG
875static void iwlagn_gain_computation(struct iwl_priv *priv,
876 u32 average_noise[NUM_RX_CHAINS],
877 u16 min_average_noise_antenna_i,
878 u32 min_average_noise,
879 u8 default_chain)
880{
881 int i;
882 s32 delta_g;
883 struct iwl_chain_noise_data *data = &priv->chain_noise_data;
884
885 /*
886 * Find Gain Code for the chains based on "default chain"
887 */
888 for (i = default_chain + 1; i < NUM_RX_CHAINS; i++) {
889 if ((data->disconn_array[i])) {
890 data->delta_gain_code[i] = 0;
891 continue;
892 }
893
38622419 894 delta_g = (cfg(priv)->base_params->chain_noise_scale *
e505c433
WYG
895 ((s32)average_noise[default_chain] -
896 (s32)average_noise[i])) / 1500;
897
898 /* bound gain by 2 bits value max, 3rd bit is sign */
899 data->delta_gain_code[i] =
900 min(abs(delta_g),
901 (long) CHAIN_NOISE_MAX_DELTA_GAIN_CODE);
902
903 if (delta_g < 0)
904 /*
905 * set negative sign ...
906 * note to Intel developers: This is uCode API format,
907 * not the format of any internal device registers.
908 * Do not change this format for e.g. 6050 or similar
909 * devices. Change format only if more resolution
910 * (i.e. more than 2 bits magnitude) is needed.
911 */
912 data->delta_gain_code[i] |= (1 << 2);
913 }
914
915 IWL_DEBUG_CALIB(priv, "Delta gains: ANT_B = %d ANT_C = %d\n",
916 data->delta_gain_code[1], data->delta_gain_code[2]);
917
918 if (!data->radio_write) {
919 struct iwl_calib_chain_noise_gain_cmd cmd;
920
921 memset(&cmd, 0, sizeof(cmd));
922
923 iwl_set_calib_hdr(&cmd.hdr,
898ed67b 924 priv->phy_calib_chain_noise_gain_cmd);
e505c433
WYG
925 cmd.delta_gain_1 = data->delta_gain_code[1];
926 cmd.delta_gain_2 = data->delta_gain_code[2];
e6bb4c9c 927 iwl_trans_send_cmd_pdu(trans(priv), REPLY_PHY_CALIBRATION_CMD,
e505c433
WYG
928 CMD_ASYNC, sizeof(cmd), &cmd);
929
930 data->radio_write = 1;
931 data->state = IWL_CHAIN_NOISE_CALIBRATED;
932 }
933}
3031242b 934
f0832f13 935/*
3031242b 936 * Accumulate 16 beacons of signal and noise statistics for each of
f0832f13
EG
937 * 3 receivers/antennas/rx-chains, then figure out:
938 * 1) Which antennas are connected.
939 * 2) Differential rx gain settings to balance the 3 receivers.
940 */
0da0e5bf 941void iwl_chain_noise_calibration(struct iwl_priv *priv)
f0832f13
EG
942{
943 struct iwl_chain_noise_data *data = NULL;
944
945 u32 chain_noise_a;
946 u32 chain_noise_b;
947 u32 chain_noise_c;
948 u32 chain_sig_a;
949 u32 chain_sig_b;
950 u32 chain_sig_c;
951 u32 average_sig[NUM_RX_CHAINS] = {INITIALIZATION_VALUE};
952 u32 average_noise[NUM_RX_CHAINS] = {INITIALIZATION_VALUE};
f0832f13
EG
953 u32 min_average_noise = MIN_AVERAGE_NOISE_MAX_VALUE;
954 u16 min_average_noise_antenna_i = INITIALIZATION_VALUE;
955 u16 i = 0;
956 u16 rxon_chnum = INITIALIZATION_VALUE;
957 u16 stat_chnum = INITIALIZATION_VALUE;
958 u8 rxon_band24;
959 u8 stat_band24;
7980fba5 960 struct statistics_rx_non_phy *rx_info;
3031242b 961
246ed355
JB
962 /*
963 * MULTI-FIXME:
964 * When we support multiple interfaces on different channels,
965 * this must be modified/fixed.
966 */
967 struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
f0832f13 968
445c2dff
TW
969 if (priv->disable_chain_noise_cal)
970 return;
971
f0832f13
EG
972 data = &(priv->chain_noise_data);
973
d8c07e7a
WYG
974 /*
975 * Accumulate just the first "chain_noise_num_beacons" after
976 * the first association, then we're done forever.
977 */
f0832f13
EG
978 if (data->state != IWL_CHAIN_NOISE_ACCUMULATE) {
979 if (data->state == IWL_CHAIN_NOISE_ALIVE)
e1623446 980 IWL_DEBUG_CALIB(priv, "Wait for noise calib reset\n");
f0832f13
EG
981 return;
982 }
983
4ff70fcd 984 spin_lock_bh(&priv->statistics.lock);
0da0e5bf
JB
985
986 rx_info = &priv->statistics.rx_non_phy;
987
f0832f13 988 if (rx_info->interference_data_flag != INTERFERENCE_DATA_AVAILABLE) {
e1623446 989 IWL_DEBUG_CALIB(priv, " << Interference data unavailable\n");
4ff70fcd 990 spin_unlock_bh(&priv->statistics.lock);
f0832f13
EG
991 return;
992 }
993
246ed355
JB
994 rxon_band24 = !!(ctx->staging.flags & RXON_FLG_BAND_24G_MSK);
995 rxon_chnum = le16_to_cpu(ctx->staging.channel);
0da0e5bf
JB
996 stat_band24 =
997 !!(priv->statistics.flag & STATISTICS_REPLY_FLG_BAND_24G_MSK);
998 stat_chnum = le32_to_cpu(priv->statistics.flag) >> 16;
f0832f13
EG
999
1000 /* Make sure we accumulate data for just the associated channel
1001 * (even if scanning). */
1002 if ((rxon_chnum != stat_chnum) || (rxon_band24 != stat_band24)) {
e1623446 1003 IWL_DEBUG_CALIB(priv, "Stats not from chan=%d, band24=%d\n",
f0832f13 1004 rxon_chnum, rxon_band24);
4ff70fcd 1005 spin_unlock_bh(&priv->statistics.lock);
f0832f13
EG
1006 return;
1007 }
1008
d8c07e7a
WYG
1009 /*
1010 * Accumulate beacon statistics values across
1011 * "chain_noise_num_beacons"
1012 */
f0832f13
EG
1013 chain_noise_a = le32_to_cpu(rx_info->beacon_silence_rssi_a) &
1014 IN_BAND_FILTER;
1015 chain_noise_b = le32_to_cpu(rx_info->beacon_silence_rssi_b) &
1016 IN_BAND_FILTER;
1017 chain_noise_c = le32_to_cpu(rx_info->beacon_silence_rssi_c) &
1018 IN_BAND_FILTER;
1019
1020 chain_sig_a = le32_to_cpu(rx_info->beacon_rssi_a) & IN_BAND_FILTER;
1021 chain_sig_b = le32_to_cpu(rx_info->beacon_rssi_b) & IN_BAND_FILTER;
1022 chain_sig_c = le32_to_cpu(rx_info->beacon_rssi_c) & IN_BAND_FILTER;
1023
4ff70fcd 1024 spin_unlock_bh(&priv->statistics.lock);
f0832f13
EG
1025
1026 data->beacon_count++;
1027
1028 data->chain_noise_a = (chain_noise_a + data->chain_noise_a);
1029 data->chain_noise_b = (chain_noise_b + data->chain_noise_b);
1030 data->chain_noise_c = (chain_noise_c + data->chain_noise_c);
1031
1032 data->chain_signal_a = (chain_sig_a + data->chain_signal_a);
1033 data->chain_signal_b = (chain_sig_b + data->chain_signal_b);
1034 data->chain_signal_c = (chain_sig_c + data->chain_signal_c);
1035
e1623446 1036 IWL_DEBUG_CALIB(priv, "chan=%d, band24=%d, beacon=%d\n",
f0832f13 1037 rxon_chnum, rxon_band24, data->beacon_count);
e1623446 1038 IWL_DEBUG_CALIB(priv, "chain_sig: a %d b %d c %d\n",
f0832f13 1039 chain_sig_a, chain_sig_b, chain_sig_c);
e1623446 1040 IWL_DEBUG_CALIB(priv, "chain_noise: a %d b %d c %d\n",
f0832f13
EG
1041 chain_noise_a, chain_noise_b, chain_noise_c);
1042
d8c07e7a 1043 /* If this is the "chain_noise_num_beacons", determine:
f0832f13
EG
1044 * 1) Disconnected antennas (using signal strengths)
1045 * 2) Differential gain (using silence noise) to balance receivers */
b8c2b05e 1046 if (data->beacon_count != IWL_CAL_NUM_BEACONS)
f0832f13
EG
1047 return;
1048
1049 /* Analyze signal for disconnected antenna */
38622419
DF
1050 if (cfg(priv)->bt_params &&
1051 cfg(priv)->bt_params->advanced_bt_coexist) {
6fe8efb2
SZ
1052 /* Disable disconnected antenna algorithm for advanced
1053 bt coex, assuming valid antennas are connected */
d6189124 1054 data->active_chains = hw_params(priv).valid_rx_ant;
6fe8efb2
SZ
1055 for (i = 0; i < NUM_RX_CHAINS; i++)
1056 if (!(data->active_chains & (1<<i)))
1057 data->disconn_array[i] = 1;
1058 } else
1059 iwl_find_disconn_antenna(priv, average_sig, data);
f0832f13 1060
f0832f13 1061 /* Analyze noise for rx balance */
b8c2b05e
FD
1062 average_noise[0] = data->chain_noise_a / IWL_CAL_NUM_BEACONS;
1063 average_noise[1] = data->chain_noise_b / IWL_CAL_NUM_BEACONS;
1064 average_noise[2] = data->chain_noise_c / IWL_CAL_NUM_BEACONS;
f0832f13
EG
1065
1066 for (i = 0; i < NUM_RX_CHAINS; i++) {
1067 if (!(data->disconn_array[i]) &&
1068 (average_noise[i] <= min_average_noise)) {
1069 /* This means that chain i is active and has
1070 * lower noise values so far: */
1071 min_average_noise = average_noise[i];
1072 min_average_noise_antenna_i = i;
1073 }
1074 }
1075
e1623446 1076 IWL_DEBUG_CALIB(priv, "average_noise: a %d b %d c %d\n",
f0832f13
EG
1077 average_noise[0], average_noise[1],
1078 average_noise[2]);
1079
e1623446 1080 IWL_DEBUG_CALIB(priv, "min_average_noise = %d, antenna %d\n",
f0832f13
EG
1081 min_average_noise, min_average_noise_antenna_i);
1082
5c3d29fc 1083 iwlagn_gain_computation(priv, average_noise,
d8c07e7a 1084 min_average_noise_antenna_i, min_average_noise,
38622419 1085 find_first_chain(cfg(priv)->valid_rx_ant));
04816448
GE
1086
1087 /* Some power changes may have been made during the calibration.
1088 * Update and commit the RXON
1089 */
6b6db91c 1090 iwl_update_chain_flags(priv);
04816448
GE
1091
1092 data->state = IWL_CHAIN_NOISE_DONE;
e312c24c 1093 iwl_power_update_mode(priv, false);
f0832f13 1094}
4a4a9e81
TW
1095
1096void iwl_reset_run_time_calib(struct iwl_priv *priv)
1097{
1098 int i;
1099 memset(&(priv->sensitivity_data), 0,
1100 sizeof(struct iwl_sensitivity_data));
1101 memset(&(priv->chain_noise_data), 0,
1102 sizeof(struct iwl_chain_noise_data));
1103 for (i = 0; i < NUM_RX_CHAINS; i++)
1104 priv->chain_noise_data.delta_gain_code[i] =
1105 CHAIN_NOISE_DELTA_GAIN_INIT_VAL;
1106
1107 /* Ask for statistics now, the uCode will send notification
1108 * periodically after association */
ef8d5529 1109 iwl_send_statistics_request(priv, CMD_ASYNC, true);
4a4a9e81 1110}
This page took 0.579257 seconds and 5 git commands to generate.