fw-api-stats.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  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) 2012 - 2014 Intel Corporation. All rights reserved.
  9. * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
  10. * Copyright(c) 2016 Intel Deutschland GmbH
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of version 2 of the GNU General Public License as
  14. * published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful, but
  17. * WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. * General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
  24. * USA
  25. *
  26. * The full GNU General Public License is included in this distribution
  27. * in the file called COPYING.
  28. *
  29. * Contact Information:
  30. * Intel Linux Wireless <linuxwifi@intel.com>
  31. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  32. *
  33. * BSD LICENSE
  34. *
  35. * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
  36. * Copyright(c) 2013 - 2015 Intel Mobile Communications GmbH
  37. * All rights reserved.
  38. *
  39. * Redistribution and use in source and binary forms, with or without
  40. * modification, are permitted provided that the following conditions
  41. * are met:
  42. *
  43. * * Redistributions of source code must retain the above copyright
  44. * notice, this list of conditions and the following disclaimer.
  45. * * Redistributions in binary form must reproduce the above copyright
  46. * notice, this list of conditions and the following disclaimer in
  47. * the documentation and/or other materials provided with the
  48. * distribution.
  49. * * Neither the name Intel Corporation nor the names of its
  50. * contributors may be used to endorse or promote products derived
  51. * from this software without specific prior written permission.
  52. *
  53. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  54. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  55. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  56. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  57. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  58. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  59. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  60. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  61. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  62. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  63. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  64. *
  65. *****************************************************************************/
  66. #ifndef __fw_api_stats_h__
  67. #define __fw_api_stats_h__
  68. #include "fw-api-mac.h"
  69. struct mvm_statistics_dbg {
  70. __le32 burst_check;
  71. __le32 burst_count;
  72. __le32 wait_for_silence_timeout_cnt;
  73. __le32 reserved[3];
  74. } __packed; /* STATISTICS_DEBUG_API_S_VER_2 */
  75. struct mvm_statistics_div {
  76. __le32 tx_on_a;
  77. __le32 tx_on_b;
  78. __le32 exec_time;
  79. __le32 probe_time;
  80. __le32 rssi_ant;
  81. __le32 reserved2;
  82. } __packed; /* STATISTICS_SLOW_DIV_API_S_VER_2 */
  83. struct mvm_statistics_rx_non_phy {
  84. __le32 bogus_cts; /* CTS received when not expecting CTS */
  85. __le32 bogus_ack; /* ACK received when not expecting ACK */
  86. __le32 non_bssid_frames; /* number of frames with BSSID that
  87. * doesn't belong to the STA BSSID */
  88. __le32 filtered_frames; /* count frames that were dumped in the
  89. * filtering process */
  90. __le32 non_channel_beacons; /* beacons with our bss id but not on
  91. * our serving channel */
  92. __le32 channel_beacons; /* beacons with our bss id and in our
  93. * serving channel */
  94. __le32 num_missed_bcon; /* number of missed beacons */
  95. __le32 adc_rx_saturation_time; /* count in 0.8us units the time the
  96. * ADC was in saturation */
  97. __le32 ina_detection_search_time;/* total time (in 0.8us) searched
  98. * for INA */
  99. __le32 beacon_silence_rssi_a; /* RSSI silence after beacon frame */
  100. __le32 beacon_silence_rssi_b; /* RSSI silence after beacon frame */
  101. __le32 beacon_silence_rssi_c; /* RSSI silence after beacon frame */
  102. __le32 interference_data_flag; /* flag for interference data
  103. * availability. 1 when data is
  104. * available. */
  105. __le32 channel_load; /* counts RX Enable time in uSec */
  106. __le32 dsp_false_alarms; /* DSP false alarm (both OFDM
  107. * and CCK) counter */
  108. __le32 beacon_rssi_a;
  109. __le32 beacon_rssi_b;
  110. __le32 beacon_rssi_c;
  111. __le32 beacon_energy_a;
  112. __le32 beacon_energy_b;
  113. __le32 beacon_energy_c;
  114. __le32 num_bt_kills;
  115. __le32 mac_id;
  116. __le32 directed_data_mpdu;
  117. } __packed; /* STATISTICS_RX_NON_PHY_API_S_VER_3 */
  118. struct mvm_statistics_rx_phy {
  119. __le32 ina_cnt;
  120. __le32 fina_cnt;
  121. __le32 plcp_err;
  122. __le32 crc32_err;
  123. __le32 overrun_err;
  124. __le32 early_overrun_err;
  125. __le32 crc32_good;
  126. __le32 false_alarm_cnt;
  127. __le32 fina_sync_err_cnt;
  128. __le32 sfd_timeout;
  129. __le32 fina_timeout;
  130. __le32 unresponded_rts;
  131. __le32 rxe_frame_lmt_overrun;
  132. __le32 sent_ack_cnt;
  133. __le32 sent_cts_cnt;
  134. __le32 sent_ba_rsp_cnt;
  135. __le32 dsp_self_kill;
  136. __le32 mh_format_err;
  137. __le32 re_acq_main_rssi_sum;
  138. __le32 reserved;
  139. } __packed; /* STATISTICS_RX_PHY_API_S_VER_2 */
  140. struct mvm_statistics_rx_ht_phy {
  141. __le32 plcp_err;
  142. __le32 overrun_err;
  143. __le32 early_overrun_err;
  144. __le32 crc32_good;
  145. __le32 crc32_err;
  146. __le32 mh_format_err;
  147. __le32 agg_crc32_good;
  148. __le32 agg_mpdu_cnt;
  149. __le32 agg_cnt;
  150. __le32 unsupport_mcs;
  151. } __packed; /* STATISTICS_HT_RX_PHY_API_S_VER_1 */
  152. struct mvm_statistics_tx_non_phy {
  153. __le32 preamble_cnt;
  154. __le32 rx_detected_cnt;
  155. __le32 bt_prio_defer_cnt;
  156. __le32 bt_prio_kill_cnt;
  157. __le32 few_bytes_cnt;
  158. __le32 cts_timeout;
  159. __le32 ack_timeout;
  160. __le32 expected_ack_cnt;
  161. __le32 actual_ack_cnt;
  162. __le32 dump_msdu_cnt;
  163. __le32 burst_abort_next_frame_mismatch_cnt;
  164. __le32 burst_abort_missing_next_frame_cnt;
  165. __le32 cts_timeout_collision;
  166. __le32 ack_or_ba_timeout_collision;
  167. } __packed; /* STATISTICS_TX_NON_PHY_API_S_VER_3 */
  168. #define MAX_CHAINS 3
  169. struct mvm_statistics_tx_non_phy_agg {
  170. __le32 ba_timeout;
  171. __le32 ba_reschedule_frames;
  172. __le32 scd_query_agg_frame_cnt;
  173. __le32 scd_query_no_agg;
  174. __le32 scd_query_agg;
  175. __le32 scd_query_mismatch;
  176. __le32 frame_not_ready;
  177. __le32 underrun;
  178. __le32 bt_prio_kill;
  179. __le32 rx_ba_rsp_cnt;
  180. __s8 txpower[MAX_CHAINS];
  181. __s8 reserved;
  182. __le32 reserved2;
  183. } __packed; /* STATISTICS_TX_NON_PHY_AGG_API_S_VER_1 */
  184. struct mvm_statistics_tx_channel_width {
  185. __le32 ext_cca_narrow_ch20[1];
  186. __le32 ext_cca_narrow_ch40[2];
  187. __le32 ext_cca_narrow_ch80[3];
  188. __le32 ext_cca_narrow_ch160[4];
  189. __le32 last_tx_ch_width_indx;
  190. __le32 rx_detected_per_ch_width[4];
  191. __le32 success_per_ch_width[4];
  192. __le32 fail_per_ch_width[4];
  193. }; /* STATISTICS_TX_CHANNEL_WIDTH_API_S_VER_1 */
  194. struct mvm_statistics_tx {
  195. struct mvm_statistics_tx_non_phy general;
  196. struct mvm_statistics_tx_non_phy_agg agg;
  197. struct mvm_statistics_tx_channel_width channel_width;
  198. } __packed; /* STATISTICS_TX_API_S_VER_4 */
  199. struct mvm_statistics_bt_activity {
  200. __le32 hi_priority_tx_req_cnt;
  201. __le32 hi_priority_tx_denied_cnt;
  202. __le32 lo_priority_tx_req_cnt;
  203. __le32 lo_priority_tx_denied_cnt;
  204. __le32 hi_priority_rx_req_cnt;
  205. __le32 hi_priority_rx_denied_cnt;
  206. __le32 lo_priority_rx_req_cnt;
  207. __le32 lo_priority_rx_denied_cnt;
  208. } __packed; /* STATISTICS_BT_ACTIVITY_API_S_VER_1 */
  209. struct mvm_statistics_general_v8 {
  210. __le32 radio_temperature;
  211. __le32 radio_voltage;
  212. struct mvm_statistics_dbg dbg;
  213. __le32 sleep_time;
  214. __le32 slots_out;
  215. __le32 slots_idle;
  216. __le32 ttl_timestamp;
  217. struct mvm_statistics_div slow_div;
  218. __le32 rx_enable_counter;
  219. /*
  220. * num_of_sos_states:
  221. * count the number of times we have to re-tune
  222. * in order to get out of bad PHY status
  223. */
  224. __le32 num_of_sos_states;
  225. __le32 beacon_filtered;
  226. __le32 missed_beacons;
  227. u8 beacon_filter_average_energy;
  228. u8 beacon_filter_reason;
  229. u8 beacon_filter_current_energy;
  230. u8 beacon_filter_reserved;
  231. __le32 beacon_filter_delta_time;
  232. struct mvm_statistics_bt_activity bt_activity;
  233. __le64 rx_time;
  234. __le64 on_time_rf;
  235. __le64 on_time_scan;
  236. __le64 tx_time;
  237. __le32 beacon_counter[NUM_MAC_INDEX];
  238. u8 beacon_average_energy[NUM_MAC_INDEX];
  239. u8 reserved[4 - (NUM_MAC_INDEX % 4)];
  240. } __packed; /* STATISTICS_GENERAL_API_S_VER_8 */
  241. /**
  242. * struct mvm_statistics_load - RX statistics for multi-queue devices
  243. * @air_time: accumulated air time, per mac
  244. * @byte_count: accumulated byte count, per mac
  245. * @pkt_count: accumulated packet count, per mac
  246. * @avg_energy: average RSSI, per station
  247. */
  248. struct mvm_statistics_load {
  249. __le32 air_time[NUM_MAC_INDEX];
  250. __le32 byte_count[NUM_MAC_INDEX];
  251. __le32 pkt_count[NUM_MAC_INDEX];
  252. u8 avg_energy[IWL_MVM_STATION_COUNT];
  253. } __packed; /* STATISTICS_RX_MAC_STATION_S_VER_1 */
  254. struct mvm_statistics_rx {
  255. struct mvm_statistics_rx_phy ofdm;
  256. struct mvm_statistics_rx_phy cck;
  257. struct mvm_statistics_rx_non_phy general;
  258. struct mvm_statistics_rx_ht_phy ofdm_ht;
  259. } __packed; /* STATISTICS_RX_API_S_VER_3 */
  260. /*
  261. * STATISTICS_NOTIFICATION = 0x9d (notification only, not a command)
  262. *
  263. * By default, uCode issues this notification after receiving a beacon
  264. * while associated. To disable this behavior, set DISABLE_NOTIF flag in the
  265. * STATISTICS_CMD (0x9c), below.
  266. */
  267. struct iwl_notif_statistics_v10 {
  268. __le32 flag;
  269. struct mvm_statistics_rx rx;
  270. struct mvm_statistics_tx tx;
  271. struct mvm_statistics_general_v8 general;
  272. } __packed; /* STATISTICS_NTFY_API_S_VER_10 */
  273. struct iwl_notif_statistics_v11 {
  274. __le32 flag;
  275. struct mvm_statistics_rx rx;
  276. struct mvm_statistics_tx tx;
  277. struct mvm_statistics_general_v8 general;
  278. struct mvm_statistics_load load_stats;
  279. } __packed; /* STATISTICS_NTFY_API_S_VER_11 */
  280. #define IWL_STATISTICS_FLG_CLEAR 0x1
  281. #define IWL_STATISTICS_FLG_DISABLE_NOTIF 0x2
  282. struct iwl_statistics_cmd {
  283. __le32 flags;
  284. } __packed; /* STATISTICS_CMD_API_S_VER_1 */
  285. #endif /* __fw_api_stats_h__ */