iwl-4965-rx.c 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. /******************************************************************************
  2. *
  3. * GPL LICENSE SUMMARY
  4. *
  5. * Copyright(c) 2008 - 2011 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-4965-calib.h"
  36. #include "iwl-sta.h"
  37. #include "iwl-io.h"
  38. #include "iwl-helpers.h"
  39. #include "iwl-4965-hw.h"
  40. #include "iwl-4965.h"
  41. void iwl4965_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. iwl4965_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 iwl4965_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. rx_info = &(priv->_4965.statistics.rx.general);
  70. bcn_silence_a =
  71. le32_to_cpu(rx_info->beacon_silence_rssi_a) & IN_BAND_FILTER;
  72. bcn_silence_b =
  73. le32_to_cpu(rx_info->beacon_silence_rssi_b) & IN_BAND_FILTER;
  74. bcn_silence_c =
  75. le32_to_cpu(rx_info->beacon_silence_rssi_c) & IN_BAND_FILTER;
  76. if (bcn_silence_a) {
  77. total_silence += bcn_silence_a;
  78. num_active_rx++;
  79. }
  80. if (bcn_silence_b) {
  81. total_silence += bcn_silence_b;
  82. num_active_rx++;
  83. }
  84. if (bcn_silence_c) {
  85. total_silence += bcn_silence_c;
  86. num_active_rx++;
  87. }
  88. /* Average among active antennas */
  89. if (num_active_rx)
  90. last_rx_noise = (total_silence / num_active_rx) - 107;
  91. else
  92. last_rx_noise = IWL_NOISE_MEAS_NOT_AVAILABLE;
  93. IWL_DEBUG_CALIB(priv, "inband silence a %u, b %u, c %u, dBm %d\n",
  94. bcn_silence_a, bcn_silence_b, bcn_silence_c,
  95. last_rx_noise);
  96. }
  97. #ifdef CONFIG_IWLWIFI_LEGACY_DEBUGFS
  98. /*
  99. * based on the assumption of all statistics counter are in DWORD
  100. * FIXME: This function is for debugging, do not deal with
  101. * the case of counters roll-over.
  102. */
  103. static void iwl4965_accumulative_statistics(struct iwl_priv *priv,
  104. __le32 *stats)
  105. {
  106. int i, size;
  107. __le32 *prev_stats;
  108. u32 *accum_stats;
  109. u32 *delta, *max_delta;
  110. struct statistics_general_common *general, *accum_general;
  111. struct statistics_tx *tx, *accum_tx;
  112. prev_stats = (__le32 *)&priv->_4965.statistics;
  113. accum_stats = (u32 *)&priv->_4965.accum_statistics;
  114. size = sizeof(struct iwl_notif_statistics);
  115. general = &priv->_4965.statistics.general.common;
  116. accum_general = &priv->_4965.accum_statistics.general.common;
  117. tx = &priv->_4965.statistics.tx;
  118. accum_tx = &priv->_4965.accum_statistics.tx;
  119. delta = (u32 *)&priv->_4965.delta_statistics;
  120. max_delta = (u32 *)&priv->_4965.max_delta;
  121. for (i = sizeof(__le32); i < size;
  122. i += sizeof(__le32), stats++, prev_stats++, delta++,
  123. max_delta++, accum_stats++) {
  124. if (le32_to_cpu(*stats) > le32_to_cpu(*prev_stats)) {
  125. *delta = (le32_to_cpu(*stats) -
  126. le32_to_cpu(*prev_stats));
  127. *accum_stats += *delta;
  128. if (*delta > *max_delta)
  129. *max_delta = *delta;
  130. }
  131. }
  132. /* reset accumulative statistics for "no-counter" type statistics */
  133. accum_general->temperature = general->temperature;
  134. accum_general->ttl_timestamp = general->ttl_timestamp;
  135. }
  136. #endif
  137. #define REG_RECALIB_PERIOD (60)
  138. void iwl4965_rx_statistics(struct iwl_priv *priv,
  139. struct iwl_rx_mem_buffer *rxb)
  140. {
  141. int change;
  142. struct iwl_rx_packet *pkt = rxb_addr(rxb);
  143. IWL_DEBUG_RX(priv,
  144. "Statistics notification received (%d vs %d).\n",
  145. (int)sizeof(struct iwl_notif_statistics),
  146. le32_to_cpu(pkt->len_n_flags) &
  147. FH_RSCSR_FRAME_SIZE_MSK);
  148. change = ((priv->_4965.statistics.general.common.temperature !=
  149. pkt->u.stats.general.common.temperature) ||
  150. ((priv->_4965.statistics.flag &
  151. STATISTICS_REPLY_FLG_HT40_MODE_MSK) !=
  152. (pkt->u.stats.flag &
  153. STATISTICS_REPLY_FLG_HT40_MODE_MSK)));
  154. #ifdef CONFIG_IWLWIFI_LEGACY_DEBUGFS
  155. iwl4965_accumulative_statistics(priv, (__le32 *)&pkt->u.stats);
  156. #endif
  157. /* TODO: reading some of statistics is unneeded */
  158. memcpy(&priv->_4965.statistics, &pkt->u.stats,
  159. sizeof(priv->_4965.statistics));
  160. set_bit(STATUS_STATISTICS, &priv->status);
  161. /* Reschedule the statistics timer to occur in
  162. * REG_RECALIB_PERIOD seconds to ensure we get a
  163. * thermal update even if the uCode doesn't give
  164. * us one */
  165. mod_timer(&priv->statistics_periodic, jiffies +
  166. msecs_to_jiffies(REG_RECALIB_PERIOD * 1000));
  167. if (unlikely(!test_bit(STATUS_SCANNING, &priv->status)) &&
  168. (pkt->hdr.cmd == STATISTICS_NOTIFICATION)) {
  169. iwl4965_rx_calc_noise(priv);
  170. queue_work(priv->workqueue, &priv->run_time_calib_work);
  171. }
  172. if (priv->cfg->ops->lib->temp_ops.temperature && change)
  173. priv->cfg->ops->lib->temp_ops.temperature(priv);
  174. }
  175. void iwl4965_reply_statistics(struct iwl_priv *priv,
  176. struct iwl_rx_mem_buffer *rxb)
  177. {
  178. struct iwl_rx_packet *pkt = rxb_addr(rxb);
  179. if (le32_to_cpu(pkt->u.stats.flag) & UCODE_STATISTICS_CLEAR_MSK) {
  180. #ifdef CONFIG_IWLWIFI_LEGACY_DEBUGFS
  181. memset(&priv->_4965.accum_statistics, 0,
  182. sizeof(struct iwl_notif_statistics));
  183. memset(&priv->_4965.delta_statistics, 0,
  184. sizeof(struct iwl_notif_statistics));
  185. memset(&priv->_4965.max_delta, 0,
  186. sizeof(struct iwl_notif_statistics));
  187. #endif
  188. IWL_DEBUG_RX(priv, "Statistics have been cleared\n");
  189. }
  190. iwl4965_rx_statistics(priv, rxb);
  191. }