iwl-agn-calib.c 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109
  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. *
  8. * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
  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:
  28. * Intel Linux Wireless <ilw@linux.intel.com>
  29. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  30. *
  31. * BSD LICENSE
  32. *
  33. * Copyright(c) 2005 - 2011 Intel Corporation. All rights reserved.
  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. #include <linux/slab.h>
  63. #include <net/mac80211.h>
  64. #include "iwl-dev.h"
  65. #include "iwl-core.h"
  66. #include "iwl-agn-calib.h"
  67. #include "iwl-trans.h"
  68. #include "iwl-agn.h"
  69. /*****************************************************************************
  70. * INIT calibrations framework
  71. *****************************************************************************/
  72. struct statistics_general_data {
  73. u32 beacon_silence_rssi_a;
  74. u32 beacon_silence_rssi_b;
  75. u32 beacon_silence_rssi_c;
  76. u32 beacon_energy_a;
  77. u32 beacon_energy_b;
  78. u32 beacon_energy_c;
  79. };
  80. int iwl_send_calib_results(struct iwl_priv *priv)
  81. {
  82. int ret = 0;
  83. int i = 0;
  84. struct iwl_host_cmd hcmd = {
  85. .id = REPLY_PHY_CALIBRATION_CMD,
  86. .flags = CMD_SYNC,
  87. };
  88. for (i = 0; i < IWL_CALIB_MAX; i++) {
  89. if ((BIT(i) & hw_params(priv).calib_init_cfg) &&
  90. priv->calib_results[i].buf) {
  91. hcmd.len[0] = priv->calib_results[i].buf_len;
  92. hcmd.data[0] = priv->calib_results[i].buf;
  93. hcmd.dataflags[0] = IWL_HCMD_DFL_NOCOPY;
  94. ret = trans_send_cmd(&priv->trans, &hcmd);
  95. if (ret) {
  96. IWL_ERR(priv, "Error %d iteration %d\n",
  97. ret, i);
  98. break;
  99. }
  100. }
  101. }
  102. return ret;
  103. }
  104. int iwl_calib_set(struct iwl_calib_result *res, const u8 *buf, int len)
  105. {
  106. if (res->buf_len != len) {
  107. kfree(res->buf);
  108. res->buf = kzalloc(len, GFP_ATOMIC);
  109. }
  110. if (unlikely(res->buf == NULL))
  111. return -ENOMEM;
  112. res->buf_len = len;
  113. memcpy(res->buf, buf, len);
  114. return 0;
  115. }
  116. void iwl_calib_free_results(struct iwl_priv *priv)
  117. {
  118. int i;
  119. for (i = 0; i < IWL_CALIB_MAX; i++) {
  120. kfree(priv->calib_results[i].buf);
  121. priv->calib_results[i].buf = NULL;
  122. priv->calib_results[i].buf_len = 0;
  123. }
  124. }
  125. /*****************************************************************************
  126. * RUNTIME calibrations framework
  127. *****************************************************************************/
  128. /* "false alarms" are signals that our DSP tries to lock onto,
  129. * but then determines that they are either noise, or transmissions
  130. * from a distant wireless network (also "noise", really) that get
  131. * "stepped on" by stronger transmissions within our own network.
  132. * This algorithm attempts to set a sensitivity level that is high
  133. * enough to receive all of our own network traffic, but not so
  134. * high that our DSP gets too busy trying to lock onto non-network
  135. * activity/noise. */
  136. static int iwl_sens_energy_cck(struct iwl_priv *priv,
  137. u32 norm_fa,
  138. u32 rx_enable_time,
  139. struct statistics_general_data *rx_info)
  140. {
  141. u32 max_nrg_cck = 0;
  142. int i = 0;
  143. u8 max_silence_rssi = 0;
  144. u32 silence_ref = 0;
  145. u8 silence_rssi_a = 0;
  146. u8 silence_rssi_b = 0;
  147. u8 silence_rssi_c = 0;
  148. u32 val;
  149. /* "false_alarms" values below are cross-multiplications to assess the
  150. * numbers of false alarms within the measured period of actual Rx
  151. * (Rx is off when we're txing), vs the min/max expected false alarms
  152. * (some should be expected if rx is sensitive enough) in a
  153. * hypothetical listening period of 200 time units (TU), 204.8 msec:
  154. *
  155. * MIN_FA/fixed-time < false_alarms/actual-rx-time < MAX_FA/beacon-time
  156. *
  157. * */
  158. u32 false_alarms = norm_fa * 200 * 1024;
  159. u32 max_false_alarms = MAX_FA_CCK * rx_enable_time;
  160. u32 min_false_alarms = MIN_FA_CCK * rx_enable_time;
  161. struct iwl_sensitivity_data *data = NULL;
  162. const struct iwl_sensitivity_ranges *ranges = hw_params(priv).sens;
  163. data = &(priv->sensitivity_data);
  164. data->nrg_auto_corr_silence_diff = 0;
  165. /* Find max silence rssi among all 3 receivers.
  166. * This is background noise, which may include transmissions from other
  167. * networks, measured during silence before our network's beacon */
  168. silence_rssi_a = (u8)((rx_info->beacon_silence_rssi_a &
  169. ALL_BAND_FILTER) >> 8);
  170. silence_rssi_b = (u8)((rx_info->beacon_silence_rssi_b &
  171. ALL_BAND_FILTER) >> 8);
  172. silence_rssi_c = (u8)((rx_info->beacon_silence_rssi_c &
  173. ALL_BAND_FILTER) >> 8);
  174. val = max(silence_rssi_b, silence_rssi_c);
  175. max_silence_rssi = max(silence_rssi_a, (u8) val);
  176. /* Store silence rssi in 20-beacon history table */
  177. data->nrg_silence_rssi[data->nrg_silence_idx] = max_silence_rssi;
  178. data->nrg_silence_idx++;
  179. if (data->nrg_silence_idx >= NRG_NUM_PREV_STAT_L)
  180. data->nrg_silence_idx = 0;
  181. /* Find max silence rssi across 20 beacon history */
  182. for (i = 0; i < NRG_NUM_PREV_STAT_L; i++) {
  183. val = data->nrg_silence_rssi[i];
  184. silence_ref = max(silence_ref, val);
  185. }
  186. IWL_DEBUG_CALIB(priv, "silence a %u, b %u, c %u, 20-bcn max %u\n",
  187. silence_rssi_a, silence_rssi_b, silence_rssi_c,
  188. silence_ref);
  189. /* Find max rx energy (min value!) among all 3 receivers,
  190. * measured during beacon frame.
  191. * Save it in 10-beacon history table. */
  192. i = data->nrg_energy_idx;
  193. val = min(rx_info->beacon_energy_b, rx_info->beacon_energy_c);
  194. data->nrg_value[i] = min(rx_info->beacon_energy_a, val);
  195. data->nrg_energy_idx++;
  196. if (data->nrg_energy_idx >= 10)
  197. data->nrg_energy_idx = 0;
  198. /* Find min rx energy (max value) across 10 beacon history.
  199. * This is the minimum signal level that we want to receive well.
  200. * Add backoff (margin so we don't miss slightly lower energy frames).
  201. * This establishes an upper bound (min value) for energy threshold. */
  202. max_nrg_cck = data->nrg_value[0];
  203. for (i = 1; i < 10; i++)
  204. max_nrg_cck = (u32) max(max_nrg_cck, (data->nrg_value[i]));
  205. max_nrg_cck += 6;
  206. IWL_DEBUG_CALIB(priv, "rx energy a %u, b %u, c %u, 10-bcn max/min %u\n",
  207. rx_info->beacon_energy_a, rx_info->beacon_energy_b,
  208. rx_info->beacon_energy_c, max_nrg_cck - 6);
  209. /* Count number of consecutive beacons with fewer-than-desired
  210. * false alarms. */
  211. if (false_alarms < min_false_alarms)
  212. data->num_in_cck_no_fa++;
  213. else
  214. data->num_in_cck_no_fa = 0;
  215. IWL_DEBUG_CALIB(priv, "consecutive bcns with few false alarms = %u\n",
  216. data->num_in_cck_no_fa);
  217. /* If we got too many false alarms this time, reduce sensitivity */
  218. if ((false_alarms > max_false_alarms) &&
  219. (data->auto_corr_cck > AUTO_CORR_MAX_TH_CCK)) {
  220. IWL_DEBUG_CALIB(priv, "norm FA %u > max FA %u\n",
  221. false_alarms, max_false_alarms);
  222. IWL_DEBUG_CALIB(priv, "... reducing sensitivity\n");
  223. data->nrg_curr_state = IWL_FA_TOO_MANY;
  224. /* Store for "fewer than desired" on later beacon */
  225. data->nrg_silence_ref = silence_ref;
  226. /* increase energy threshold (reduce nrg value)
  227. * to decrease sensitivity */
  228. data->nrg_th_cck = data->nrg_th_cck - NRG_STEP_CCK;
  229. /* Else if we got fewer than desired, increase sensitivity */
  230. } else if (false_alarms < min_false_alarms) {
  231. data->nrg_curr_state = IWL_FA_TOO_FEW;
  232. /* Compare silence level with silence level for most recent
  233. * healthy number or too many false alarms */
  234. data->nrg_auto_corr_silence_diff = (s32)data->nrg_silence_ref -
  235. (s32)silence_ref;
  236. IWL_DEBUG_CALIB(priv, "norm FA %u < min FA %u, silence diff %d\n",
  237. false_alarms, min_false_alarms,
  238. data->nrg_auto_corr_silence_diff);
  239. /* Increase value to increase sensitivity, but only if:
  240. * 1a) previous beacon did *not* have *too many* false alarms
  241. * 1b) AND there's a significant difference in Rx levels
  242. * from a previous beacon with too many, or healthy # FAs
  243. * OR 2) We've seen a lot of beacons (100) with too few
  244. * false alarms */
  245. if ((data->nrg_prev_state != IWL_FA_TOO_MANY) &&
  246. ((data->nrg_auto_corr_silence_diff > NRG_DIFF) ||
  247. (data->num_in_cck_no_fa > MAX_NUMBER_CCK_NO_FA))) {
  248. IWL_DEBUG_CALIB(priv, "... increasing sensitivity\n");
  249. /* Increase nrg value to increase sensitivity */
  250. val = data->nrg_th_cck + NRG_STEP_CCK;
  251. data->nrg_th_cck = min((u32)ranges->min_nrg_cck, val);
  252. } else {
  253. IWL_DEBUG_CALIB(priv, "... but not changing sensitivity\n");
  254. }
  255. /* Else we got a healthy number of false alarms, keep status quo */
  256. } else {
  257. IWL_DEBUG_CALIB(priv, " FA in safe zone\n");
  258. data->nrg_curr_state = IWL_FA_GOOD_RANGE;
  259. /* Store for use in "fewer than desired" with later beacon */
  260. data->nrg_silence_ref = silence_ref;
  261. /* If previous beacon had too many false alarms,
  262. * give it some extra margin by reducing sensitivity again
  263. * (but don't go below measured energy of desired Rx) */
  264. if (IWL_FA_TOO_MANY == data->nrg_prev_state) {
  265. IWL_DEBUG_CALIB(priv, "... increasing margin\n");
  266. if (data->nrg_th_cck > (max_nrg_cck + NRG_MARGIN))
  267. data->nrg_th_cck -= NRG_MARGIN;
  268. else
  269. data->nrg_th_cck = max_nrg_cck;
  270. }
  271. }
  272. /* Make sure the energy threshold does not go above the measured
  273. * energy of the desired Rx signals (reduced by backoff margin),
  274. * or else we might start missing Rx frames.
  275. * Lower value is higher energy, so we use max()!
  276. */
  277. data->nrg_th_cck = max(max_nrg_cck, data->nrg_th_cck);
  278. IWL_DEBUG_CALIB(priv, "new nrg_th_cck %u\n", data->nrg_th_cck);
  279. data->nrg_prev_state = data->nrg_curr_state;
  280. /* Auto-correlation CCK algorithm */
  281. if (false_alarms > min_false_alarms) {
  282. /* increase auto_corr values to decrease sensitivity
  283. * so the DSP won't be disturbed by the noise
  284. */
  285. if (data->auto_corr_cck < AUTO_CORR_MAX_TH_CCK)
  286. data->auto_corr_cck = AUTO_CORR_MAX_TH_CCK + 1;
  287. else {
  288. val = data->auto_corr_cck + AUTO_CORR_STEP_CCK;
  289. data->auto_corr_cck =
  290. min((u32)ranges->auto_corr_max_cck, val);
  291. }
  292. val = data->auto_corr_cck_mrc + AUTO_CORR_STEP_CCK;
  293. data->auto_corr_cck_mrc =
  294. min((u32)ranges->auto_corr_max_cck_mrc, val);
  295. } else if ((false_alarms < min_false_alarms) &&
  296. ((data->nrg_auto_corr_silence_diff > NRG_DIFF) ||
  297. (data->num_in_cck_no_fa > MAX_NUMBER_CCK_NO_FA))) {
  298. /* Decrease auto_corr values to increase sensitivity */
  299. val = data->auto_corr_cck - AUTO_CORR_STEP_CCK;
  300. data->auto_corr_cck =
  301. max((u32)ranges->auto_corr_min_cck, val);
  302. val = data->auto_corr_cck_mrc - AUTO_CORR_STEP_CCK;
  303. data->auto_corr_cck_mrc =
  304. max((u32)ranges->auto_corr_min_cck_mrc, val);
  305. }
  306. return 0;
  307. }
  308. static int iwl_sens_auto_corr_ofdm(struct iwl_priv *priv,
  309. u32 norm_fa,
  310. u32 rx_enable_time)
  311. {
  312. u32 val;
  313. u32 false_alarms = norm_fa * 200 * 1024;
  314. u32 max_false_alarms = MAX_FA_OFDM * rx_enable_time;
  315. u32 min_false_alarms = MIN_FA_OFDM * rx_enable_time;
  316. struct iwl_sensitivity_data *data = NULL;
  317. const struct iwl_sensitivity_ranges *ranges = hw_params(priv).sens;
  318. data = &(priv->sensitivity_data);
  319. /* If we got too many false alarms this time, reduce sensitivity */
  320. if (false_alarms > max_false_alarms) {
  321. IWL_DEBUG_CALIB(priv, "norm FA %u > max FA %u)\n",
  322. false_alarms, max_false_alarms);
  323. val = data->auto_corr_ofdm + AUTO_CORR_STEP_OFDM;
  324. data->auto_corr_ofdm =
  325. min((u32)ranges->auto_corr_max_ofdm, val);
  326. val = data->auto_corr_ofdm_mrc + AUTO_CORR_STEP_OFDM;
  327. data->auto_corr_ofdm_mrc =
  328. min((u32)ranges->auto_corr_max_ofdm_mrc, val);
  329. val = data->auto_corr_ofdm_x1 + AUTO_CORR_STEP_OFDM;
  330. data->auto_corr_ofdm_x1 =
  331. min((u32)ranges->auto_corr_max_ofdm_x1, val);
  332. val = data->auto_corr_ofdm_mrc_x1 + AUTO_CORR_STEP_OFDM;
  333. data->auto_corr_ofdm_mrc_x1 =
  334. min((u32)ranges->auto_corr_max_ofdm_mrc_x1, val);
  335. }
  336. /* Else if we got fewer than desired, increase sensitivity */
  337. else if (false_alarms < min_false_alarms) {
  338. IWL_DEBUG_CALIB(priv, "norm FA %u < min FA %u\n",
  339. false_alarms, min_false_alarms);
  340. val = data->auto_corr_ofdm - AUTO_CORR_STEP_OFDM;
  341. data->auto_corr_ofdm =
  342. max((u32)ranges->auto_corr_min_ofdm, val);
  343. val = data->auto_corr_ofdm_mrc - AUTO_CORR_STEP_OFDM;
  344. data->auto_corr_ofdm_mrc =
  345. max((u32)ranges->auto_corr_min_ofdm_mrc, val);
  346. val = data->auto_corr_ofdm_x1 - AUTO_CORR_STEP_OFDM;
  347. data->auto_corr_ofdm_x1 =
  348. max((u32)ranges->auto_corr_min_ofdm_x1, val);
  349. val = data->auto_corr_ofdm_mrc_x1 - AUTO_CORR_STEP_OFDM;
  350. data->auto_corr_ofdm_mrc_x1 =
  351. max((u32)ranges->auto_corr_min_ofdm_mrc_x1, val);
  352. } else {
  353. IWL_DEBUG_CALIB(priv, "min FA %u < norm FA %u < max FA %u OK\n",
  354. min_false_alarms, false_alarms, max_false_alarms);
  355. }
  356. return 0;
  357. }
  358. static void iwl_prepare_legacy_sensitivity_tbl(struct iwl_priv *priv,
  359. struct iwl_sensitivity_data *data,
  360. __le16 *tbl)
  361. {
  362. tbl[HD_AUTO_CORR32_X4_TH_ADD_MIN_INDEX] =
  363. cpu_to_le16((u16)data->auto_corr_ofdm);
  364. tbl[HD_AUTO_CORR32_X4_TH_ADD_MIN_MRC_INDEX] =
  365. cpu_to_le16((u16)data->auto_corr_ofdm_mrc);
  366. tbl[HD_AUTO_CORR32_X1_TH_ADD_MIN_INDEX] =
  367. cpu_to_le16((u16)data->auto_corr_ofdm_x1);
  368. tbl[HD_AUTO_CORR32_X1_TH_ADD_MIN_MRC_INDEX] =
  369. cpu_to_le16((u16)data->auto_corr_ofdm_mrc_x1);
  370. tbl[HD_AUTO_CORR40_X4_TH_ADD_MIN_INDEX] =
  371. cpu_to_le16((u16)data->auto_corr_cck);
  372. tbl[HD_AUTO_CORR40_X4_TH_ADD_MIN_MRC_INDEX] =
  373. cpu_to_le16((u16)data->auto_corr_cck_mrc);
  374. tbl[HD_MIN_ENERGY_CCK_DET_INDEX] =
  375. cpu_to_le16((u16)data->nrg_th_cck);
  376. tbl[HD_MIN_ENERGY_OFDM_DET_INDEX] =
  377. cpu_to_le16((u16)data->nrg_th_ofdm);
  378. tbl[HD_BARKER_CORR_TH_ADD_MIN_INDEX] =
  379. cpu_to_le16(data->barker_corr_th_min);
  380. tbl[HD_BARKER_CORR_TH_ADD_MIN_MRC_INDEX] =
  381. cpu_to_le16(data->barker_corr_th_min_mrc);
  382. tbl[HD_OFDM_ENERGY_TH_IN_INDEX] =
  383. cpu_to_le16(data->nrg_th_cca);
  384. IWL_DEBUG_CALIB(priv, "ofdm: ac %u mrc %u x1 %u mrc_x1 %u thresh %u\n",
  385. data->auto_corr_ofdm, data->auto_corr_ofdm_mrc,
  386. data->auto_corr_ofdm_x1, data->auto_corr_ofdm_mrc_x1,
  387. data->nrg_th_ofdm);
  388. IWL_DEBUG_CALIB(priv, "cck: ac %u mrc %u thresh %u\n",
  389. data->auto_corr_cck, data->auto_corr_cck_mrc,
  390. data->nrg_th_cck);
  391. }
  392. /* Prepare a SENSITIVITY_CMD, send to uCode if values have changed */
  393. static int iwl_sensitivity_write(struct iwl_priv *priv)
  394. {
  395. struct iwl_sensitivity_cmd cmd;
  396. struct iwl_sensitivity_data *data = NULL;
  397. struct iwl_host_cmd cmd_out = {
  398. .id = SENSITIVITY_CMD,
  399. .len = { sizeof(struct iwl_sensitivity_cmd), },
  400. .flags = CMD_ASYNC,
  401. .data = { &cmd, },
  402. };
  403. data = &(priv->sensitivity_data);
  404. memset(&cmd, 0, sizeof(cmd));
  405. iwl_prepare_legacy_sensitivity_tbl(priv, data, &cmd.table[0]);
  406. /* Update uCode's "work" table, and copy it to DSP */
  407. cmd.control = SENSITIVITY_CMD_CONTROL_WORK_TABLE;
  408. /* Don't send command to uCode if nothing has changed */
  409. if (!memcmp(&cmd.table[0], &(priv->sensitivity_tbl[0]),
  410. sizeof(u16)*HD_TABLE_SIZE)) {
  411. IWL_DEBUG_CALIB(priv, "No change in SENSITIVITY_CMD\n");
  412. return 0;
  413. }
  414. /* Copy table for comparison next time */
  415. memcpy(&(priv->sensitivity_tbl[0]), &(cmd.table[0]),
  416. sizeof(u16)*HD_TABLE_SIZE);
  417. return trans_send_cmd(&priv->trans, &cmd_out);
  418. }
  419. /* Prepare a SENSITIVITY_CMD, send to uCode if values have changed */
  420. static int iwl_enhance_sensitivity_write(struct iwl_priv *priv)
  421. {
  422. struct iwl_enhance_sensitivity_cmd cmd;
  423. struct iwl_sensitivity_data *data = NULL;
  424. struct iwl_host_cmd cmd_out = {
  425. .id = SENSITIVITY_CMD,
  426. .len = { sizeof(struct iwl_enhance_sensitivity_cmd), },
  427. .flags = CMD_ASYNC,
  428. .data = { &cmd, },
  429. };
  430. data = &(priv->sensitivity_data);
  431. memset(&cmd, 0, sizeof(cmd));
  432. iwl_prepare_legacy_sensitivity_tbl(priv, data, &cmd.enhance_table[0]);
  433. if (priv->cfg->base_params->hd_v2) {
  434. cmd.enhance_table[HD_INA_NON_SQUARE_DET_OFDM_INDEX] =
  435. HD_INA_NON_SQUARE_DET_OFDM_DATA_V2;
  436. cmd.enhance_table[HD_INA_NON_SQUARE_DET_CCK_INDEX] =
  437. HD_INA_NON_SQUARE_DET_CCK_DATA_V2;
  438. cmd.enhance_table[HD_CORR_11_INSTEAD_OF_CORR_9_EN_INDEX] =
  439. HD_CORR_11_INSTEAD_OF_CORR_9_EN_DATA_V2;
  440. cmd.enhance_table[HD_OFDM_NON_SQUARE_DET_SLOPE_MRC_INDEX] =
  441. HD_OFDM_NON_SQUARE_DET_SLOPE_MRC_DATA_V2;
  442. cmd.enhance_table[HD_OFDM_NON_SQUARE_DET_INTERCEPT_MRC_INDEX] =
  443. HD_OFDM_NON_SQUARE_DET_INTERCEPT_MRC_DATA_V2;
  444. cmd.enhance_table[HD_OFDM_NON_SQUARE_DET_SLOPE_INDEX] =
  445. HD_OFDM_NON_SQUARE_DET_SLOPE_DATA_V2;
  446. cmd.enhance_table[HD_OFDM_NON_SQUARE_DET_INTERCEPT_INDEX] =
  447. HD_OFDM_NON_SQUARE_DET_INTERCEPT_DATA_V2;
  448. cmd.enhance_table[HD_CCK_NON_SQUARE_DET_SLOPE_MRC_INDEX] =
  449. HD_CCK_NON_SQUARE_DET_SLOPE_MRC_DATA_V2;
  450. cmd.enhance_table[HD_CCK_NON_SQUARE_DET_INTERCEPT_MRC_INDEX] =
  451. HD_CCK_NON_SQUARE_DET_INTERCEPT_MRC_DATA_V2;
  452. cmd.enhance_table[HD_CCK_NON_SQUARE_DET_SLOPE_INDEX] =
  453. HD_CCK_NON_SQUARE_DET_SLOPE_DATA_V2;
  454. cmd.enhance_table[HD_CCK_NON_SQUARE_DET_INTERCEPT_INDEX] =
  455. HD_CCK_NON_SQUARE_DET_INTERCEPT_DATA_V2;
  456. } else {
  457. cmd.enhance_table[HD_INA_NON_SQUARE_DET_OFDM_INDEX] =
  458. HD_INA_NON_SQUARE_DET_OFDM_DATA_V1;
  459. cmd.enhance_table[HD_INA_NON_SQUARE_DET_CCK_INDEX] =
  460. HD_INA_NON_SQUARE_DET_CCK_DATA_V1;
  461. cmd.enhance_table[HD_CORR_11_INSTEAD_OF_CORR_9_EN_INDEX] =
  462. HD_CORR_11_INSTEAD_OF_CORR_9_EN_DATA_V1;
  463. cmd.enhance_table[HD_OFDM_NON_SQUARE_DET_SLOPE_MRC_INDEX] =
  464. HD_OFDM_NON_SQUARE_DET_SLOPE_MRC_DATA_V1;
  465. cmd.enhance_table[HD_OFDM_NON_SQUARE_DET_INTERCEPT_MRC_INDEX] =
  466. HD_OFDM_NON_SQUARE_DET_INTERCEPT_MRC_DATA_V1;
  467. cmd.enhance_table[HD_OFDM_NON_SQUARE_DET_SLOPE_INDEX] =
  468. HD_OFDM_NON_SQUARE_DET_SLOPE_DATA_V1;
  469. cmd.enhance_table[HD_OFDM_NON_SQUARE_DET_INTERCEPT_INDEX] =
  470. HD_OFDM_NON_SQUARE_DET_INTERCEPT_DATA_V1;
  471. cmd.enhance_table[HD_CCK_NON_SQUARE_DET_SLOPE_MRC_INDEX] =
  472. HD_CCK_NON_SQUARE_DET_SLOPE_MRC_DATA_V1;
  473. cmd.enhance_table[HD_CCK_NON_SQUARE_DET_INTERCEPT_MRC_INDEX] =
  474. HD_CCK_NON_SQUARE_DET_INTERCEPT_MRC_DATA_V1;
  475. cmd.enhance_table[HD_CCK_NON_SQUARE_DET_SLOPE_INDEX] =
  476. HD_CCK_NON_SQUARE_DET_SLOPE_DATA_V1;
  477. cmd.enhance_table[HD_CCK_NON_SQUARE_DET_INTERCEPT_INDEX] =
  478. HD_CCK_NON_SQUARE_DET_INTERCEPT_DATA_V1;
  479. }
  480. /* Update uCode's "work" table, and copy it to DSP */
  481. cmd.control = SENSITIVITY_CMD_CONTROL_WORK_TABLE;
  482. /* Don't send command to uCode if nothing has changed */
  483. if (!memcmp(&cmd.enhance_table[0], &(priv->sensitivity_tbl[0]),
  484. sizeof(u16)*HD_TABLE_SIZE) &&
  485. !memcmp(&cmd.enhance_table[HD_INA_NON_SQUARE_DET_OFDM_INDEX],
  486. &(priv->enhance_sensitivity_tbl[0]),
  487. sizeof(u16)*ENHANCE_HD_TABLE_ENTRIES)) {
  488. IWL_DEBUG_CALIB(priv, "No change in SENSITIVITY_CMD\n");
  489. return 0;
  490. }
  491. /* Copy table for comparison next time */
  492. memcpy(&(priv->sensitivity_tbl[0]), &(cmd.enhance_table[0]),
  493. sizeof(u16)*HD_TABLE_SIZE);
  494. memcpy(&(priv->enhance_sensitivity_tbl[0]),
  495. &(cmd.enhance_table[HD_INA_NON_SQUARE_DET_OFDM_INDEX]),
  496. sizeof(u16)*ENHANCE_HD_TABLE_ENTRIES);
  497. return trans_send_cmd(&priv->trans, &cmd_out);
  498. }
  499. void iwl_init_sensitivity(struct iwl_priv *priv)
  500. {
  501. int ret = 0;
  502. int i;
  503. struct iwl_sensitivity_data *data = NULL;
  504. const struct iwl_sensitivity_ranges *ranges = hw_params(priv).sens;
  505. if (priv->disable_sens_cal)
  506. return;
  507. IWL_DEBUG_CALIB(priv, "Start iwl_init_sensitivity\n");
  508. /* Clear driver's sensitivity algo data */
  509. data = &(priv->sensitivity_data);
  510. if (ranges == NULL)
  511. return;
  512. memset(data, 0, sizeof(struct iwl_sensitivity_data));
  513. data->num_in_cck_no_fa = 0;
  514. data->nrg_curr_state = IWL_FA_TOO_MANY;
  515. data->nrg_prev_state = IWL_FA_TOO_MANY;
  516. data->nrg_silence_ref = 0;
  517. data->nrg_silence_idx = 0;
  518. data->nrg_energy_idx = 0;
  519. for (i = 0; i < 10; i++)
  520. data->nrg_value[i] = 0;
  521. for (i = 0; i < NRG_NUM_PREV_STAT_L; i++)
  522. data->nrg_silence_rssi[i] = 0;
  523. data->auto_corr_ofdm = ranges->auto_corr_min_ofdm;
  524. data->auto_corr_ofdm_mrc = ranges->auto_corr_min_ofdm_mrc;
  525. data->auto_corr_ofdm_x1 = ranges->auto_corr_min_ofdm_x1;
  526. data->auto_corr_ofdm_mrc_x1 = ranges->auto_corr_min_ofdm_mrc_x1;
  527. data->auto_corr_cck = AUTO_CORR_CCK_MIN_VAL_DEF;
  528. data->auto_corr_cck_mrc = ranges->auto_corr_min_cck_mrc;
  529. data->nrg_th_cck = ranges->nrg_th_cck;
  530. data->nrg_th_ofdm = ranges->nrg_th_ofdm;
  531. data->barker_corr_th_min = ranges->barker_corr_th_min;
  532. data->barker_corr_th_min_mrc = ranges->barker_corr_th_min_mrc;
  533. data->nrg_th_cca = ranges->nrg_th_cca;
  534. data->last_bad_plcp_cnt_ofdm = 0;
  535. data->last_fa_cnt_ofdm = 0;
  536. data->last_bad_plcp_cnt_cck = 0;
  537. data->last_fa_cnt_cck = 0;
  538. if (priv->enhance_sensitivity_table)
  539. ret |= iwl_enhance_sensitivity_write(priv);
  540. else
  541. ret |= iwl_sensitivity_write(priv);
  542. IWL_DEBUG_CALIB(priv, "<<return 0x%X\n", ret);
  543. }
  544. void iwl_sensitivity_calibration(struct iwl_priv *priv)
  545. {
  546. u32 rx_enable_time;
  547. u32 fa_cck;
  548. u32 fa_ofdm;
  549. u32 bad_plcp_cck;
  550. u32 bad_plcp_ofdm;
  551. u32 norm_fa_ofdm;
  552. u32 norm_fa_cck;
  553. struct iwl_sensitivity_data *data = NULL;
  554. struct statistics_rx_non_phy *rx_info;
  555. struct statistics_rx_phy *ofdm, *cck;
  556. unsigned long flags;
  557. struct statistics_general_data statis;
  558. if (priv->disable_sens_cal)
  559. return;
  560. data = &(priv->sensitivity_data);
  561. if (!iwl_is_any_associated(priv)) {
  562. IWL_DEBUG_CALIB(priv, "<< - not associated\n");
  563. return;
  564. }
  565. spin_lock_irqsave(&priv->lock, flags);
  566. rx_info = &priv->statistics.rx_non_phy;
  567. ofdm = &priv->statistics.rx_ofdm;
  568. cck = &priv->statistics.rx_cck;
  569. if (rx_info->interference_data_flag != INTERFERENCE_DATA_AVAILABLE) {
  570. IWL_DEBUG_CALIB(priv, "<< invalid data.\n");
  571. spin_unlock_irqrestore(&priv->lock, flags);
  572. return;
  573. }
  574. /* Extract Statistics: */
  575. rx_enable_time = le32_to_cpu(rx_info->channel_load);
  576. fa_cck = le32_to_cpu(cck->false_alarm_cnt);
  577. fa_ofdm = le32_to_cpu(ofdm->false_alarm_cnt);
  578. bad_plcp_cck = le32_to_cpu(cck->plcp_err);
  579. bad_plcp_ofdm = le32_to_cpu(ofdm->plcp_err);
  580. statis.beacon_silence_rssi_a =
  581. le32_to_cpu(rx_info->beacon_silence_rssi_a);
  582. statis.beacon_silence_rssi_b =
  583. le32_to_cpu(rx_info->beacon_silence_rssi_b);
  584. statis.beacon_silence_rssi_c =
  585. le32_to_cpu(rx_info->beacon_silence_rssi_c);
  586. statis.beacon_energy_a =
  587. le32_to_cpu(rx_info->beacon_energy_a);
  588. statis.beacon_energy_b =
  589. le32_to_cpu(rx_info->beacon_energy_b);
  590. statis.beacon_energy_c =
  591. le32_to_cpu(rx_info->beacon_energy_c);
  592. spin_unlock_irqrestore(&priv->lock, flags);
  593. IWL_DEBUG_CALIB(priv, "rx_enable_time = %u usecs\n", rx_enable_time);
  594. if (!rx_enable_time) {
  595. IWL_DEBUG_CALIB(priv, "<< RX Enable Time == 0!\n");
  596. return;
  597. }
  598. /* These statistics increase monotonically, and do not reset
  599. * at each beacon. Calculate difference from last value, or just
  600. * use the new statistics value if it has reset or wrapped around. */
  601. if (data->last_bad_plcp_cnt_cck > bad_plcp_cck)
  602. data->last_bad_plcp_cnt_cck = bad_plcp_cck;
  603. else {
  604. bad_plcp_cck -= data->last_bad_plcp_cnt_cck;
  605. data->last_bad_plcp_cnt_cck += bad_plcp_cck;
  606. }
  607. if (data->last_bad_plcp_cnt_ofdm > bad_plcp_ofdm)
  608. data->last_bad_plcp_cnt_ofdm = bad_plcp_ofdm;
  609. else {
  610. bad_plcp_ofdm -= data->last_bad_plcp_cnt_ofdm;
  611. data->last_bad_plcp_cnt_ofdm += bad_plcp_ofdm;
  612. }
  613. if (data->last_fa_cnt_ofdm > fa_ofdm)
  614. data->last_fa_cnt_ofdm = fa_ofdm;
  615. else {
  616. fa_ofdm -= data->last_fa_cnt_ofdm;
  617. data->last_fa_cnt_ofdm += fa_ofdm;
  618. }
  619. if (data->last_fa_cnt_cck > fa_cck)
  620. data->last_fa_cnt_cck = fa_cck;
  621. else {
  622. fa_cck -= data->last_fa_cnt_cck;
  623. data->last_fa_cnt_cck += fa_cck;
  624. }
  625. /* Total aborted signal locks */
  626. norm_fa_ofdm = fa_ofdm + bad_plcp_ofdm;
  627. norm_fa_cck = fa_cck + bad_plcp_cck;
  628. IWL_DEBUG_CALIB(priv, "cck: fa %u badp %u ofdm: fa %u badp %u\n", fa_cck,
  629. bad_plcp_cck, fa_ofdm, bad_plcp_ofdm);
  630. iwl_sens_auto_corr_ofdm(priv, norm_fa_ofdm, rx_enable_time);
  631. iwl_sens_energy_cck(priv, norm_fa_cck, rx_enable_time, &statis);
  632. if (priv->enhance_sensitivity_table)
  633. iwl_enhance_sensitivity_write(priv);
  634. else
  635. iwl_sensitivity_write(priv);
  636. }
  637. static inline u8 find_first_chain(u8 mask)
  638. {
  639. if (mask & ANT_A)
  640. return CHAIN_A;
  641. if (mask & ANT_B)
  642. return CHAIN_B;
  643. return CHAIN_C;
  644. }
  645. /**
  646. * Run disconnected antenna algorithm to find out which antennas are
  647. * disconnected.
  648. */
  649. static void iwl_find_disconn_antenna(struct iwl_priv *priv, u32* average_sig,
  650. struct iwl_chain_noise_data *data)
  651. {
  652. u32 active_chains = 0;
  653. u32 max_average_sig;
  654. u16 max_average_sig_antenna_i;
  655. u8 num_tx_chains;
  656. u8 first_chain;
  657. u16 i = 0;
  658. average_sig[0] = data->chain_signal_a /
  659. priv->cfg->base_params->chain_noise_num_beacons;
  660. average_sig[1] = data->chain_signal_b /
  661. priv->cfg->base_params->chain_noise_num_beacons;
  662. average_sig[2] = data->chain_signal_c /
  663. priv->cfg->base_params->chain_noise_num_beacons;
  664. if (average_sig[0] >= average_sig[1]) {
  665. max_average_sig = average_sig[0];
  666. max_average_sig_antenna_i = 0;
  667. active_chains = (1 << max_average_sig_antenna_i);
  668. } else {
  669. max_average_sig = average_sig[1];
  670. max_average_sig_antenna_i = 1;
  671. active_chains = (1 << max_average_sig_antenna_i);
  672. }
  673. if (average_sig[2] >= max_average_sig) {
  674. max_average_sig = average_sig[2];
  675. max_average_sig_antenna_i = 2;
  676. active_chains = (1 << max_average_sig_antenna_i);
  677. }
  678. IWL_DEBUG_CALIB(priv, "average_sig: a %d b %d c %d\n",
  679. average_sig[0], average_sig[1], average_sig[2]);
  680. IWL_DEBUG_CALIB(priv, "max_average_sig = %d, antenna %d\n",
  681. max_average_sig, max_average_sig_antenna_i);
  682. /* Compare signal strengths for all 3 receivers. */
  683. for (i = 0; i < NUM_RX_CHAINS; i++) {
  684. if (i != max_average_sig_antenna_i) {
  685. s32 rssi_delta = (max_average_sig - average_sig[i]);
  686. /* If signal is very weak, compared with
  687. * strongest, mark it as disconnected. */
  688. if (rssi_delta > MAXIMUM_ALLOWED_PATHLOSS)
  689. data->disconn_array[i] = 1;
  690. else
  691. active_chains |= (1 << i);
  692. IWL_DEBUG_CALIB(priv, "i = %d rssiDelta = %d "
  693. "disconn_array[i] = %d\n",
  694. i, rssi_delta, data->disconn_array[i]);
  695. }
  696. }
  697. /*
  698. * The above algorithm sometimes fails when the ucode
  699. * reports 0 for all chains. It's not clear why that
  700. * happens to start with, but it is then causing trouble
  701. * because this can make us enable more chains than the
  702. * hardware really has.
  703. *
  704. * To be safe, simply mask out any chains that we know
  705. * are not on the device.
  706. */
  707. active_chains &= hw_params(priv).valid_rx_ant;
  708. num_tx_chains = 0;
  709. for (i = 0; i < NUM_RX_CHAINS; i++) {
  710. /* loops on all the bits of
  711. * priv->hw_setting.valid_tx_ant */
  712. u8 ant_msk = (1 << i);
  713. if (!(hw_params(priv).valid_tx_ant & ant_msk))
  714. continue;
  715. num_tx_chains++;
  716. if (data->disconn_array[i] == 0)
  717. /* there is a Tx antenna connected */
  718. break;
  719. if (num_tx_chains == hw_params(priv).tx_chains_num &&
  720. data->disconn_array[i]) {
  721. /*
  722. * If all chains are disconnected
  723. * connect the first valid tx chain
  724. */
  725. first_chain =
  726. find_first_chain(priv->cfg->valid_tx_ant);
  727. data->disconn_array[first_chain] = 0;
  728. active_chains |= BIT(first_chain);
  729. IWL_DEBUG_CALIB(priv,
  730. "All Tx chains are disconnected W/A - declare %d as connected\n",
  731. first_chain);
  732. break;
  733. }
  734. }
  735. if (active_chains != hw_params(priv).valid_rx_ant &&
  736. active_chains != priv->chain_noise_data.active_chains)
  737. IWL_DEBUG_CALIB(priv,
  738. "Detected that not all antennas are connected! "
  739. "Connected: %#x, valid: %#x.\n",
  740. active_chains,
  741. hw_params(priv).valid_rx_ant);
  742. /* Save for use within RXON, TX, SCAN commands, etc. */
  743. data->active_chains = active_chains;
  744. IWL_DEBUG_CALIB(priv, "active_chains (bitwise) = 0x%x\n",
  745. active_chains);
  746. }
  747. static void iwlagn_gain_computation(struct iwl_priv *priv,
  748. u32 average_noise[NUM_RX_CHAINS],
  749. u16 min_average_noise_antenna_i,
  750. u32 min_average_noise,
  751. u8 default_chain)
  752. {
  753. int i;
  754. s32 delta_g;
  755. struct iwl_chain_noise_data *data = &priv->chain_noise_data;
  756. /*
  757. * Find Gain Code for the chains based on "default chain"
  758. */
  759. for (i = default_chain + 1; i < NUM_RX_CHAINS; i++) {
  760. if ((data->disconn_array[i])) {
  761. data->delta_gain_code[i] = 0;
  762. continue;
  763. }
  764. delta_g = (priv->cfg->base_params->chain_noise_scale *
  765. ((s32)average_noise[default_chain] -
  766. (s32)average_noise[i])) / 1500;
  767. /* bound gain by 2 bits value max, 3rd bit is sign */
  768. data->delta_gain_code[i] =
  769. min(abs(delta_g),
  770. (long) CHAIN_NOISE_MAX_DELTA_GAIN_CODE);
  771. if (delta_g < 0)
  772. /*
  773. * set negative sign ...
  774. * note to Intel developers: This is uCode API format,
  775. * not the format of any internal device registers.
  776. * Do not change this format for e.g. 6050 or similar
  777. * devices. Change format only if more resolution
  778. * (i.e. more than 2 bits magnitude) is needed.
  779. */
  780. data->delta_gain_code[i] |= (1 << 2);
  781. }
  782. IWL_DEBUG_CALIB(priv, "Delta gains: ANT_B = %d ANT_C = %d\n",
  783. data->delta_gain_code[1], data->delta_gain_code[2]);
  784. if (!data->radio_write) {
  785. struct iwl_calib_chain_noise_gain_cmd cmd;
  786. memset(&cmd, 0, sizeof(cmd));
  787. iwl_set_calib_hdr(&cmd.hdr,
  788. priv->phy_calib_chain_noise_gain_cmd);
  789. cmd.delta_gain_1 = data->delta_gain_code[1];
  790. cmd.delta_gain_2 = data->delta_gain_code[2];
  791. trans_send_cmd_pdu(&priv->trans, REPLY_PHY_CALIBRATION_CMD,
  792. CMD_ASYNC, sizeof(cmd), &cmd);
  793. data->radio_write = 1;
  794. data->state = IWL_CHAIN_NOISE_CALIBRATED;
  795. }
  796. }
  797. /*
  798. * Accumulate 16 beacons of signal and noise statistics for each of
  799. * 3 receivers/antennas/rx-chains, then figure out:
  800. * 1) Which antennas are connected.
  801. * 2) Differential rx gain settings to balance the 3 receivers.
  802. */
  803. void iwl_chain_noise_calibration(struct iwl_priv *priv)
  804. {
  805. struct iwl_chain_noise_data *data = NULL;
  806. u32 chain_noise_a;
  807. u32 chain_noise_b;
  808. u32 chain_noise_c;
  809. u32 chain_sig_a;
  810. u32 chain_sig_b;
  811. u32 chain_sig_c;
  812. u32 average_sig[NUM_RX_CHAINS] = {INITIALIZATION_VALUE};
  813. u32 average_noise[NUM_RX_CHAINS] = {INITIALIZATION_VALUE};
  814. u32 min_average_noise = MIN_AVERAGE_NOISE_MAX_VALUE;
  815. u16 min_average_noise_antenna_i = INITIALIZATION_VALUE;
  816. u16 i = 0;
  817. u16 rxon_chnum = INITIALIZATION_VALUE;
  818. u16 stat_chnum = INITIALIZATION_VALUE;
  819. u8 rxon_band24;
  820. u8 stat_band24;
  821. unsigned long flags;
  822. struct statistics_rx_non_phy *rx_info;
  823. /*
  824. * MULTI-FIXME:
  825. * When we support multiple interfaces on different channels,
  826. * this must be modified/fixed.
  827. */
  828. struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS];
  829. if (priv->disable_chain_noise_cal)
  830. return;
  831. data = &(priv->chain_noise_data);
  832. /*
  833. * Accumulate just the first "chain_noise_num_beacons" after
  834. * the first association, then we're done forever.
  835. */
  836. if (data->state != IWL_CHAIN_NOISE_ACCUMULATE) {
  837. if (data->state == IWL_CHAIN_NOISE_ALIVE)
  838. IWL_DEBUG_CALIB(priv, "Wait for noise calib reset\n");
  839. return;
  840. }
  841. spin_lock_irqsave(&priv->lock, flags);
  842. rx_info = &priv->statistics.rx_non_phy;
  843. if (rx_info->interference_data_flag != INTERFERENCE_DATA_AVAILABLE) {
  844. IWL_DEBUG_CALIB(priv, " << Interference data unavailable\n");
  845. spin_unlock_irqrestore(&priv->lock, flags);
  846. return;
  847. }
  848. rxon_band24 = !!(ctx->staging.flags & RXON_FLG_BAND_24G_MSK);
  849. rxon_chnum = le16_to_cpu(ctx->staging.channel);
  850. stat_band24 =
  851. !!(priv->statistics.flag & STATISTICS_REPLY_FLG_BAND_24G_MSK);
  852. stat_chnum = le32_to_cpu(priv->statistics.flag) >> 16;
  853. /* Make sure we accumulate data for just the associated channel
  854. * (even if scanning). */
  855. if ((rxon_chnum != stat_chnum) || (rxon_band24 != stat_band24)) {
  856. IWL_DEBUG_CALIB(priv, "Stats not from chan=%d, band24=%d\n",
  857. rxon_chnum, rxon_band24);
  858. spin_unlock_irqrestore(&priv->lock, flags);
  859. return;
  860. }
  861. /*
  862. * Accumulate beacon statistics values across
  863. * "chain_noise_num_beacons"
  864. */
  865. chain_noise_a = le32_to_cpu(rx_info->beacon_silence_rssi_a) &
  866. IN_BAND_FILTER;
  867. chain_noise_b = le32_to_cpu(rx_info->beacon_silence_rssi_b) &
  868. IN_BAND_FILTER;
  869. chain_noise_c = le32_to_cpu(rx_info->beacon_silence_rssi_c) &
  870. IN_BAND_FILTER;
  871. chain_sig_a = le32_to_cpu(rx_info->beacon_rssi_a) & IN_BAND_FILTER;
  872. chain_sig_b = le32_to_cpu(rx_info->beacon_rssi_b) & IN_BAND_FILTER;
  873. chain_sig_c = le32_to_cpu(rx_info->beacon_rssi_c) & IN_BAND_FILTER;
  874. spin_unlock_irqrestore(&priv->lock, flags);
  875. data->beacon_count++;
  876. data->chain_noise_a = (chain_noise_a + data->chain_noise_a);
  877. data->chain_noise_b = (chain_noise_b + data->chain_noise_b);
  878. data->chain_noise_c = (chain_noise_c + data->chain_noise_c);
  879. data->chain_signal_a = (chain_sig_a + data->chain_signal_a);
  880. data->chain_signal_b = (chain_sig_b + data->chain_signal_b);
  881. data->chain_signal_c = (chain_sig_c + data->chain_signal_c);
  882. IWL_DEBUG_CALIB(priv, "chan=%d, band24=%d, beacon=%d\n",
  883. rxon_chnum, rxon_band24, data->beacon_count);
  884. IWL_DEBUG_CALIB(priv, "chain_sig: a %d b %d c %d\n",
  885. chain_sig_a, chain_sig_b, chain_sig_c);
  886. IWL_DEBUG_CALIB(priv, "chain_noise: a %d b %d c %d\n",
  887. chain_noise_a, chain_noise_b, chain_noise_c);
  888. /* If this is the "chain_noise_num_beacons", determine:
  889. * 1) Disconnected antennas (using signal strengths)
  890. * 2) Differential gain (using silence noise) to balance receivers */
  891. if (data->beacon_count !=
  892. priv->cfg->base_params->chain_noise_num_beacons)
  893. return;
  894. /* Analyze signal for disconnected antenna */
  895. if (priv->cfg->bt_params &&
  896. priv->cfg->bt_params->advanced_bt_coexist) {
  897. /* Disable disconnected antenna algorithm for advanced
  898. bt coex, assuming valid antennas are connected */
  899. data->active_chains = hw_params(priv).valid_rx_ant;
  900. for (i = 0; i < NUM_RX_CHAINS; i++)
  901. if (!(data->active_chains & (1<<i)))
  902. data->disconn_array[i] = 1;
  903. } else
  904. iwl_find_disconn_antenna(priv, average_sig, data);
  905. /* Analyze noise for rx balance */
  906. average_noise[0] = data->chain_noise_a /
  907. priv->cfg->base_params->chain_noise_num_beacons;
  908. average_noise[1] = data->chain_noise_b /
  909. priv->cfg->base_params->chain_noise_num_beacons;
  910. average_noise[2] = data->chain_noise_c /
  911. priv->cfg->base_params->chain_noise_num_beacons;
  912. for (i = 0; i < NUM_RX_CHAINS; i++) {
  913. if (!(data->disconn_array[i]) &&
  914. (average_noise[i] <= min_average_noise)) {
  915. /* This means that chain i is active and has
  916. * lower noise values so far: */
  917. min_average_noise = average_noise[i];
  918. min_average_noise_antenna_i = i;
  919. }
  920. }
  921. IWL_DEBUG_CALIB(priv, "average_noise: a %d b %d c %d\n",
  922. average_noise[0], average_noise[1],
  923. average_noise[2]);
  924. IWL_DEBUG_CALIB(priv, "min_average_noise = %d, antenna %d\n",
  925. min_average_noise, min_average_noise_antenna_i);
  926. iwlagn_gain_computation(priv, average_noise,
  927. min_average_noise_antenna_i, min_average_noise,
  928. find_first_chain(priv->cfg->valid_rx_ant));
  929. /* Some power changes may have been made during the calibration.
  930. * Update and commit the RXON
  931. */
  932. iwl_update_chain_flags(priv);
  933. data->state = IWL_CHAIN_NOISE_DONE;
  934. iwl_power_update_mode(priv, false);
  935. }
  936. void iwl_reset_run_time_calib(struct iwl_priv *priv)
  937. {
  938. int i;
  939. memset(&(priv->sensitivity_data), 0,
  940. sizeof(struct iwl_sensitivity_data));
  941. memset(&(priv->chain_noise_data), 0,
  942. sizeof(struct iwl_chain_noise_data));
  943. for (i = 0; i < NUM_RX_CHAINS; i++)
  944. priv->chain_noise_data.delta_gain_code[i] =
  945. CHAIN_NOISE_DELTA_GAIN_INIT_VAL;
  946. /* Ask for statistics now, the uCode will send notification
  947. * periodically after association */
  948. iwl_send_statistics_request(priv, CMD_ASYNC, true);
  949. }