iwl-agn-rx.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. /******************************************************************************
  2. *
  3. * GPL LICENSE SUMMARY
  4. *
  5. * Copyright(c) 2008 - 2010 Intel Corporation. All rights reserved.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of version 2 of the GNU General Public License as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
  19. * USA
  20. *
  21. * The full GNU General Public License is included in this distribution
  22. * in the file called LICENSE.GPL.
  23. *
  24. * Contact Information:
  25. * Intel Linux Wireless <ilw@linux.intel.com>
  26. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  27. *
  28. *****************************************************************************/
  29. #include <linux/kernel.h>
  30. #include <linux/module.h>
  31. #include <linux/init.h>
  32. #include <linux/sched.h>
  33. #include "iwl-dev.h"
  34. #include "iwl-core.h"
  35. #include "iwl-agn-calib.h"
  36. #include "iwl-sta.h"
  37. #include "iwl-io.h"
  38. #include "iwl-helpers.h"
  39. #include "iwl-agn-hw.h"
  40. #include "iwl-agn.h"
  41. void iwl_rx_missed_beacon_notif(struct iwl_priv *priv,
  42. struct iwl_rx_mem_buffer *rxb)
  43. {
  44. struct iwl_rx_packet *pkt = rxb_addr(rxb);
  45. struct iwl_missed_beacon_notif *missed_beacon;
  46. missed_beacon = &pkt->u.missed_beacon;
  47. if (le32_to_cpu(missed_beacon->consecutive_missed_beacons) >
  48. priv->missed_beacon_threshold) {
  49. IWL_DEBUG_CALIB(priv,
  50. "missed bcn cnsq %d totl %d rcd %d expctd %d\n",
  51. le32_to_cpu(missed_beacon->consecutive_missed_beacons),
  52. le32_to_cpu(missed_beacon->total_missed_becons),
  53. le32_to_cpu(missed_beacon->num_recvd_beacons),
  54. le32_to_cpu(missed_beacon->num_expected_beacons));
  55. if (!test_bit(STATUS_SCANNING, &priv->status))
  56. iwl_init_sensitivity(priv);
  57. }
  58. }
  59. /* Calculate noise level, based on measurements during network silence just
  60. * before arriving beacon. This measurement can be done only if we know
  61. * exactly when to expect beacons, therefore only when we're associated. */
  62. static void iwl_rx_calc_noise(struct iwl_priv *priv)
  63. {
  64. struct statistics_rx_non_phy *rx_info;
  65. int num_active_rx = 0;
  66. int total_silence = 0;
  67. int bcn_silence_a, bcn_silence_b, bcn_silence_c;
  68. int last_rx_noise;
  69. if (iwl_bt_statistics(priv))
  70. rx_info = &(priv->_agn.statistics_bt.rx.general.common);
  71. else
  72. rx_info = &(priv->_agn.statistics.rx.general);
  73. bcn_silence_a =
  74. le32_to_cpu(rx_info->beacon_silence_rssi_a) & IN_BAND_FILTER;
  75. bcn_silence_b =
  76. le32_to_cpu(rx_info->beacon_silence_rssi_b) & IN_BAND_FILTER;
  77. bcn_silence_c =
  78. le32_to_cpu(rx_info->beacon_silence_rssi_c) & IN_BAND_FILTER;
  79. if (bcn_silence_a) {
  80. total_silence += bcn_silence_a;
  81. num_active_rx++;
  82. }
  83. if (bcn_silence_b) {
  84. total_silence += bcn_silence_b;
  85. num_active_rx++;
  86. }
  87. if (bcn_silence_c) {
  88. total_silence += bcn_silence_c;
  89. num_active_rx++;
  90. }
  91. /* Average among active antennas */
  92. if (num_active_rx)
  93. last_rx_noise = (total_silence / num_active_rx) - 107;
  94. else
  95. last_rx_noise = IWL_NOISE_MEAS_NOT_AVAILABLE;
  96. IWL_DEBUG_CALIB(priv, "inband silence a %u, b %u, c %u, dBm %d\n",
  97. bcn_silence_a, bcn_silence_b, bcn_silence_c,
  98. last_rx_noise);
  99. }
  100. #ifdef CONFIG_IWLWIFI_DEBUGFS
  101. /*
  102. * based on the assumption of all statistics counter are in DWORD
  103. * FIXME: This function is for debugging, do not deal with
  104. * the case of counters roll-over.
  105. */
  106. static void iwl_accumulative_statistics(struct iwl_priv *priv,
  107. __le32 *stats)
  108. {
  109. int i, size;
  110. __le32 *prev_stats;
  111. u32 *accum_stats;
  112. u32 *delta, *max_delta;
  113. struct statistics_general_common *general, *accum_general;
  114. struct statistics_tx *tx, *accum_tx;
  115. if (iwl_bt_statistics(priv)) {
  116. prev_stats = (__le32 *)&priv->_agn.statistics_bt;
  117. accum_stats = (u32 *)&priv->_agn.accum_statistics_bt;
  118. size = sizeof(struct iwl_bt_notif_statistics);
  119. general = &priv->_agn.statistics_bt.general.common;
  120. accum_general = &priv->_agn.accum_statistics_bt.general.common;
  121. tx = &priv->_agn.statistics_bt.tx;
  122. accum_tx = &priv->_agn.accum_statistics_bt.tx;
  123. delta = (u32 *)&priv->_agn.delta_statistics_bt;
  124. max_delta = (u32 *)&priv->_agn.max_delta_bt;
  125. } else {
  126. prev_stats = (__le32 *)&priv->_agn.statistics;
  127. accum_stats = (u32 *)&priv->_agn.accum_statistics;
  128. size = sizeof(struct iwl_notif_statistics);
  129. general = &priv->_agn.statistics.general.common;
  130. accum_general = &priv->_agn.accum_statistics.general.common;
  131. tx = &priv->_agn.statistics.tx;
  132. accum_tx = &priv->_agn.accum_statistics.tx;
  133. delta = (u32 *)&priv->_agn.delta_statistics;
  134. max_delta = (u32 *)&priv->_agn.max_delta;
  135. }
  136. for (i = sizeof(__le32); i < size;
  137. i += sizeof(__le32), stats++, prev_stats++, delta++,
  138. max_delta++, accum_stats++) {
  139. if (le32_to_cpu(*stats) > le32_to_cpu(*prev_stats)) {
  140. *delta = (le32_to_cpu(*stats) -
  141. le32_to_cpu(*prev_stats));
  142. *accum_stats += *delta;
  143. if (*delta > *max_delta)
  144. *max_delta = *delta;
  145. }
  146. }
  147. /* reset accumulative statistics for "no-counter" type statistics */
  148. accum_general->temperature = general->temperature;
  149. accum_general->temperature_m = general->temperature_m;
  150. accum_general->ttl_timestamp = general->ttl_timestamp;
  151. accum_tx->tx_power.ant_a = tx->tx_power.ant_a;
  152. accum_tx->tx_power.ant_b = tx->tx_power.ant_b;
  153. accum_tx->tx_power.ant_c = tx->tx_power.ant_c;
  154. }
  155. #endif
  156. #define REG_RECALIB_PERIOD (60)
  157. /**
  158. * iwl_good_plcp_health - checks for plcp error.
  159. *
  160. * When the plcp error is exceeding the thresholds, reset the radio
  161. * to improve the throughput.
  162. */
  163. bool iwl_good_plcp_health(struct iwl_priv *priv,
  164. struct iwl_rx_packet *pkt)
  165. {
  166. bool rc = true;
  167. int combined_plcp_delta;
  168. unsigned int plcp_msec;
  169. unsigned long plcp_received_jiffies;
  170. if (priv->cfg->base_params->plcp_delta_threshold ==
  171. IWL_MAX_PLCP_ERR_THRESHOLD_DISABLE) {
  172. IWL_DEBUG_RADIO(priv, "plcp_err check disabled\n");
  173. return rc;
  174. }
  175. /*
  176. * check for plcp_err and trigger radio reset if it exceeds
  177. * the plcp error threshold plcp_delta.
  178. */
  179. plcp_received_jiffies = jiffies;
  180. plcp_msec = jiffies_to_msecs((long) plcp_received_jiffies -
  181. (long) priv->plcp_jiffies);
  182. priv->plcp_jiffies = plcp_received_jiffies;
  183. /*
  184. * check to make sure plcp_msec is not 0 to prevent division
  185. * by zero.
  186. */
  187. if (plcp_msec) {
  188. struct statistics_rx_phy *ofdm;
  189. struct statistics_rx_ht_phy *ofdm_ht;
  190. if (iwl_bt_statistics(priv)) {
  191. ofdm = &pkt->u.stats_bt.rx.ofdm;
  192. ofdm_ht = &pkt->u.stats_bt.rx.ofdm_ht;
  193. combined_plcp_delta =
  194. (le32_to_cpu(ofdm->plcp_err) -
  195. le32_to_cpu(priv->_agn.statistics_bt.
  196. rx.ofdm.plcp_err)) +
  197. (le32_to_cpu(ofdm_ht->plcp_err) -
  198. le32_to_cpu(priv->_agn.statistics_bt.
  199. rx.ofdm_ht.plcp_err));
  200. } else {
  201. ofdm = &pkt->u.stats.rx.ofdm;
  202. ofdm_ht = &pkt->u.stats.rx.ofdm_ht;
  203. combined_plcp_delta =
  204. (le32_to_cpu(ofdm->plcp_err) -
  205. le32_to_cpu(priv->_agn.statistics.
  206. rx.ofdm.plcp_err)) +
  207. (le32_to_cpu(ofdm_ht->plcp_err) -
  208. le32_to_cpu(priv->_agn.statistics.
  209. rx.ofdm_ht.plcp_err));
  210. }
  211. if ((combined_plcp_delta > 0) &&
  212. ((combined_plcp_delta * 100) / plcp_msec) >
  213. priv->cfg->base_params->plcp_delta_threshold) {
  214. /*
  215. * if plcp_err exceed the threshold,
  216. * the following data is printed in csv format:
  217. * Text: plcp_err exceeded %d,
  218. * Received ofdm.plcp_err,
  219. * Current ofdm.plcp_err,
  220. * Received ofdm_ht.plcp_err,
  221. * Current ofdm_ht.plcp_err,
  222. * combined_plcp_delta,
  223. * plcp_msec
  224. */
  225. IWL_DEBUG_RADIO(priv, "plcp_err exceeded %u, "
  226. "%u, %u, %u, %u, %d, %u mSecs\n",
  227. priv->cfg->base_params->plcp_delta_threshold,
  228. le32_to_cpu(ofdm->plcp_err),
  229. le32_to_cpu(ofdm->plcp_err),
  230. le32_to_cpu(ofdm_ht->plcp_err),
  231. le32_to_cpu(ofdm_ht->plcp_err),
  232. combined_plcp_delta, plcp_msec);
  233. rc = false;
  234. }
  235. }
  236. return rc;
  237. }
  238. void iwl_rx_statistics(struct iwl_priv *priv,
  239. struct iwl_rx_mem_buffer *rxb)
  240. {
  241. int change;
  242. struct iwl_rx_packet *pkt = rxb_addr(rxb);
  243. if (iwl_bt_statistics(priv)) {
  244. IWL_DEBUG_RX(priv,
  245. "Statistics notification received (%d vs %d).\n",
  246. (int)sizeof(struct iwl_bt_notif_statistics),
  247. le32_to_cpu(pkt->len_n_flags) &
  248. FH_RSCSR_FRAME_SIZE_MSK);
  249. change = ((priv->_agn.statistics_bt.general.common.temperature !=
  250. pkt->u.stats_bt.general.common.temperature) ||
  251. ((priv->_agn.statistics_bt.flag &
  252. STATISTICS_REPLY_FLG_HT40_MODE_MSK) !=
  253. (pkt->u.stats_bt.flag &
  254. STATISTICS_REPLY_FLG_HT40_MODE_MSK)));
  255. #ifdef CONFIG_IWLWIFI_DEBUGFS
  256. iwl_accumulative_statistics(priv, (__le32 *)&pkt->u.stats_bt);
  257. #endif
  258. } else {
  259. IWL_DEBUG_RX(priv,
  260. "Statistics notification received (%d vs %d).\n",
  261. (int)sizeof(struct iwl_notif_statistics),
  262. le32_to_cpu(pkt->len_n_flags) &
  263. FH_RSCSR_FRAME_SIZE_MSK);
  264. change = ((priv->_agn.statistics.general.common.temperature !=
  265. pkt->u.stats.general.common.temperature) ||
  266. ((priv->_agn.statistics.flag &
  267. STATISTICS_REPLY_FLG_HT40_MODE_MSK) !=
  268. (pkt->u.stats.flag &
  269. STATISTICS_REPLY_FLG_HT40_MODE_MSK)));
  270. #ifdef CONFIG_IWLWIFI_DEBUGFS
  271. iwl_accumulative_statistics(priv, (__le32 *)&pkt->u.stats);
  272. #endif
  273. }
  274. iwl_recover_from_statistics(priv, pkt);
  275. if (iwl_bt_statistics(priv))
  276. memcpy(&priv->_agn.statistics_bt, &pkt->u.stats_bt,
  277. sizeof(priv->_agn.statistics_bt));
  278. else
  279. memcpy(&priv->_agn.statistics, &pkt->u.stats,
  280. sizeof(priv->_agn.statistics));
  281. set_bit(STATUS_STATISTICS, &priv->status);
  282. /* Reschedule the statistics timer to occur in
  283. * REG_RECALIB_PERIOD seconds to ensure we get a
  284. * thermal update even if the uCode doesn't give
  285. * us one */
  286. mod_timer(&priv->statistics_periodic, jiffies +
  287. msecs_to_jiffies(REG_RECALIB_PERIOD * 1000));
  288. if (unlikely(!test_bit(STATUS_SCANNING, &priv->status)) &&
  289. (pkt->hdr.cmd == STATISTICS_NOTIFICATION)) {
  290. iwl_rx_calc_noise(priv);
  291. queue_work(priv->workqueue, &priv->run_time_calib_work);
  292. }
  293. if (priv->cfg->ops->lib->temp_ops.temperature && change)
  294. priv->cfg->ops->lib->temp_ops.temperature(priv);
  295. }
  296. void iwl_reply_statistics(struct iwl_priv *priv,
  297. struct iwl_rx_mem_buffer *rxb)
  298. {
  299. struct iwl_rx_packet *pkt = rxb_addr(rxb);
  300. if (le32_to_cpu(pkt->u.stats.flag) & UCODE_STATISTICS_CLEAR_MSK) {
  301. #ifdef CONFIG_IWLWIFI_DEBUGFS
  302. memset(&priv->_agn.accum_statistics, 0,
  303. sizeof(struct iwl_notif_statistics));
  304. memset(&priv->_agn.delta_statistics, 0,
  305. sizeof(struct iwl_notif_statistics));
  306. memset(&priv->_agn.max_delta, 0,
  307. sizeof(struct iwl_notif_statistics));
  308. memset(&priv->_agn.accum_statistics_bt, 0,
  309. sizeof(struct iwl_bt_notif_statistics));
  310. memset(&priv->_agn.delta_statistics_bt, 0,
  311. sizeof(struct iwl_bt_notif_statistics));
  312. memset(&priv->_agn.max_delta_bt, 0,
  313. sizeof(struct iwl_bt_notif_statistics));
  314. #endif
  315. IWL_DEBUG_RX(priv, "Statistics have been cleared\n");
  316. }
  317. iwl_rx_statistics(priv, rxb);
  318. }