blob: c7531da508fd59203d713611cdf6bbc9c2f6ee4d [file] [log] [blame]
Johannes Bergd19ac582015-01-14 15:54:18 +01001/******************************************************************************
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
Johannes Bergd69f0a22017-03-14 10:58:16 +010010 * Copyright(c) 2016 - 2017 Intel Deutschland GmbH
Johannes Bergd19ac582015-01-14 15:54:18 +010011 *
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:
Emmanuel Grumbachd01c5362015-11-17 15:39:56 +020030 * Intel Linux Wireless <linuxwifi@intel.com>
Johannes Bergd19ac582015-01-14 15:54:18 +010031 * 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
67#ifndef __fw_api_stats_h__
68#define __fw_api_stats_h__
Johannes Berg777c9b62015-01-14 17:58:57 +010069#include "fw-api-mac.h"
Johannes Bergd19ac582015-01-14 15:54:18 +010070
71struct mvm_statistics_dbg {
72 __le32 burst_check;
73 __le32 burst_count;
74 __le32 wait_for_silence_timeout_cnt;
Johannes Bergaed35822017-03-13 12:47:37 +010075 u8 reserved[12];
Johannes Bergd19ac582015-01-14 15:54:18 +010076} __packed; /* STATISTICS_DEBUG_API_S_VER_2 */
77
78struct mvm_statistics_div {
79 __le32 tx_on_a;
80 __le32 tx_on_b;
81 __le32 exec_time;
82 __le32 probe_time;
83 __le32 rssi_ant;
84 __le32 reserved2;
85} __packed; /* STATISTICS_SLOW_DIV_API_S_VER_2 */
86
Liad Kaufman678d9b62017-05-18 18:00:49 +030087/**
88 * struct mvm_statistics_rx_non_phy
89 * @bogus_cts: CTS received when not expecting CTS
90 * @bogus_ack: ACK received when not expecting ACK
91 * @non_channel_beacons: beacons with our bss id but not on our serving channel
92 * @channel_beacons: beacons with our bss id and in our serving channel
93 * @num_missed_bcon: number of missed beacons
94 * @adc_rx_saturation_time: count in 0.8us units the time the ADC was in
95 * saturation
96 * @ina_detection_search_time: total time (in 0.8us) searched for INA
97 * @beacon_silence_rssi_a: RSSI silence after beacon frame
98 * @beacon_silence_rssi_b: RSSI silence after beacon frame
99 * @beacon_silence_rssi_c: RSSI silence after beacon frame
100 * @interference_data_flag: flag for interference data availability. 1 when data
101 * is available.
102 * @channel_load: counts RX Enable time in uSec
103 * @beacon_rssi_a: beacon RSSI on anntena A
104 * @beacon_rssi_b: beacon RSSI on antenna B
105 * @beacon_rssi_c: beacon RSSI on antenna C
106 * @beacon_energy_a: beacon energy on antenna A
107 * @beacon_energy_b: beacon energy on antenna B
108 * @beacon_energy_c: beacon energy on antenna C
109 * @num_bt_kills: number of BT "kills" (frame TX aborts)
110 * @mac_id: mac ID
111 */
Johannes Bergd19ac582015-01-14 15:54:18 +0100112struct mvm_statistics_rx_non_phy {
Liad Kaufman678d9b62017-05-18 18:00:49 +0300113 __le32 bogus_cts;
114 __le32 bogus_ack;
115 __le32 non_channel_beacons;
116 __le32 channel_beacons;
117 __le32 num_missed_bcon;
118 __le32 adc_rx_saturation_time;
119 __le32 ina_detection_search_time;
120 __le32 beacon_silence_rssi_a;
121 __le32 beacon_silence_rssi_b;
122 __le32 beacon_silence_rssi_c;
123 __le32 interference_data_flag;
124 __le32 channel_load;
125 __le32 beacon_rssi_a;
126 __le32 beacon_rssi_b;
127 __le32 beacon_rssi_c;
128 __le32 beacon_energy_a;
129 __le32 beacon_energy_b;
130 __le32 beacon_energy_c;
131 __le32 num_bt_kills;
132 __le32 mac_id;
133} __packed; /* STATISTICS_RX_NON_PHY_API_S_VER_4 */
134
135struct mvm_statistics_rx_non_phy_v3 {
Johannes Bergd19ac582015-01-14 15:54:18 +0100136 __le32 bogus_cts; /* CTS received when not expecting CTS */
137 __le32 bogus_ack; /* ACK received when not expecting ACK */
138 __le32 non_bssid_frames; /* number of frames with BSSID that
139 * doesn't belong to the STA BSSID */
140 __le32 filtered_frames; /* count frames that were dumped in the
141 * filtering process */
142 __le32 non_channel_beacons; /* beacons with our bss id but not on
143 * our serving channel */
144 __le32 channel_beacons; /* beacons with our bss id and in our
145 * serving channel */
146 __le32 num_missed_bcon; /* number of missed beacons */
147 __le32 adc_rx_saturation_time; /* count in 0.8us units the time the
148 * ADC was in saturation */
149 __le32 ina_detection_search_time;/* total time (in 0.8us) searched
150 * for INA */
151 __le32 beacon_silence_rssi_a; /* RSSI silence after beacon frame */
152 __le32 beacon_silence_rssi_b; /* RSSI silence after beacon frame */
153 __le32 beacon_silence_rssi_c; /* RSSI silence after beacon frame */
154 __le32 interference_data_flag; /* flag for interference data
155 * availability. 1 when data is
156 * available. */
157 __le32 channel_load; /* counts RX Enable time in uSec */
158 __le32 dsp_false_alarms; /* DSP false alarm (both OFDM
159 * and CCK) counter */
160 __le32 beacon_rssi_a;
161 __le32 beacon_rssi_b;
162 __le32 beacon_rssi_c;
163 __le32 beacon_energy_a;
164 __le32 beacon_energy_b;
165 __le32 beacon_energy_c;
166 __le32 num_bt_kills;
167 __le32 mac_id;
168 __le32 directed_data_mpdu;
169} __packed; /* STATISTICS_RX_NON_PHY_API_S_VER_3 */
170
171struct mvm_statistics_rx_phy {
Liad Kaufman678d9b62017-05-18 18:00:49 +0300172 __le32 unresponded_rts;
173 __le32 rxe_frame_lmt_overrun;
174 __le32 sent_ba_rsp_cnt;
175 __le32 dsp_self_kill;
176 __le32 reserved;
177} __packed; /* STATISTICS_RX_PHY_API_S_VER_3 */
178
179struct mvm_statistics_rx_phy_v2 {
Johannes Bergd19ac582015-01-14 15:54:18 +0100180 __le32 ina_cnt;
181 __le32 fina_cnt;
182 __le32 plcp_err;
183 __le32 crc32_err;
184 __le32 overrun_err;
185 __le32 early_overrun_err;
186 __le32 crc32_good;
187 __le32 false_alarm_cnt;
188 __le32 fina_sync_err_cnt;
189 __le32 sfd_timeout;
190 __le32 fina_timeout;
191 __le32 unresponded_rts;
Johannes Berg93d17cc2015-01-15 12:59:26 +0100192 __le32 rxe_frame_lmt_overrun;
Johannes Bergd19ac582015-01-14 15:54:18 +0100193 __le32 sent_ack_cnt;
194 __le32 sent_cts_cnt;
195 __le32 sent_ba_rsp_cnt;
196 __le32 dsp_self_kill;
197 __le32 mh_format_err;
198 __le32 re_acq_main_rssi_sum;
199 __le32 reserved;
200} __packed; /* STATISTICS_RX_PHY_API_S_VER_2 */
201
Liad Kaufman678d9b62017-05-18 18:00:49 +0300202struct mvm_statistics_rx_ht_phy_v1 {
Johannes Bergd19ac582015-01-14 15:54:18 +0100203 __le32 plcp_err;
204 __le32 overrun_err;
205 __le32 early_overrun_err;
206 __le32 crc32_good;
207 __le32 crc32_err;
208 __le32 mh_format_err;
209 __le32 agg_crc32_good;
210 __le32 agg_mpdu_cnt;
211 __le32 agg_cnt;
212 __le32 unsupport_mcs;
213} __packed; /* STATISTICS_HT_RX_PHY_API_S_VER_1 */
214
Liad Kaufman678d9b62017-05-18 18:00:49 +0300215struct mvm_statistics_rx_ht_phy {
216 __le32 mh_format_err;
217 __le32 agg_mpdu_cnt;
218 __le32 agg_cnt;
219 __le32 unsupport_mcs;
220} __packed; /* STATISTICS_HT_RX_PHY_API_S_VER_2 */
221
222struct mvm_statistics_tx_non_phy_v3 {
Johannes Bergd19ac582015-01-14 15:54:18 +0100223 __le32 preamble_cnt;
224 __le32 rx_detected_cnt;
225 __le32 bt_prio_defer_cnt;
226 __le32 bt_prio_kill_cnt;
227 __le32 few_bytes_cnt;
228 __le32 cts_timeout;
229 __le32 ack_timeout;
230 __le32 expected_ack_cnt;
231 __le32 actual_ack_cnt;
232 __le32 dump_msdu_cnt;
233 __le32 burst_abort_next_frame_mismatch_cnt;
234 __le32 burst_abort_missing_next_frame_cnt;
235 __le32 cts_timeout_collision;
236 __le32 ack_or_ba_timeout_collision;
237} __packed; /* STATISTICS_TX_NON_PHY_API_S_VER_3 */
238
Liad Kaufman678d9b62017-05-18 18:00:49 +0300239struct mvm_statistics_tx_non_phy {
240 __le32 bt_prio_defer_cnt;
241 __le32 bt_prio_kill_cnt;
242 __le32 few_bytes_cnt;
243 __le32 cts_timeout;
244 __le32 ack_timeout;
245 __le32 dump_msdu_cnt;
246 __le32 burst_abort_next_frame_mismatch_cnt;
247 __le32 burst_abort_missing_next_frame_cnt;
248 __le32 cts_timeout_collision;
249 __le32 ack_or_ba_timeout_collision;
250} __packed; /* STATISTICS_TX_NON_PHY_API_S_VER_4 */
251
Johannes Bergd19ac582015-01-14 15:54:18 +0100252#define MAX_CHAINS 3
253
254struct mvm_statistics_tx_non_phy_agg {
255 __le32 ba_timeout;
256 __le32 ba_reschedule_frames;
257 __le32 scd_query_agg_frame_cnt;
258 __le32 scd_query_no_agg;
259 __le32 scd_query_agg;
260 __le32 scd_query_mismatch;
261 __le32 frame_not_ready;
262 __le32 underrun;
263 __le32 bt_prio_kill;
264 __le32 rx_ba_rsp_cnt;
265 __s8 txpower[MAX_CHAINS];
266 __s8 reserved;
267 __le32 reserved2;
268} __packed; /* STATISTICS_TX_NON_PHY_AGG_API_S_VER_1 */
269
270struct mvm_statistics_tx_channel_width {
271 __le32 ext_cca_narrow_ch20[1];
272 __le32 ext_cca_narrow_ch40[2];
273 __le32 ext_cca_narrow_ch80[3];
274 __le32 ext_cca_narrow_ch160[4];
275 __le32 last_tx_ch_width_indx;
276 __le32 rx_detected_per_ch_width[4];
277 __le32 success_per_ch_width[4];
278 __le32 fail_per_ch_width[4];
279}; /* STATISTICS_TX_CHANNEL_WIDTH_API_S_VER_1 */
280
Liad Kaufman678d9b62017-05-18 18:00:49 +0300281struct mvm_statistics_tx_v4 {
282 struct mvm_statistics_tx_non_phy_v3 general;
283 struct mvm_statistics_tx_non_phy_agg agg;
284 struct mvm_statistics_tx_channel_width channel_width;
285} __packed; /* STATISTICS_TX_API_S_VER_4 */
286
Johannes Bergd19ac582015-01-14 15:54:18 +0100287struct mvm_statistics_tx {
288 struct mvm_statistics_tx_non_phy general;
289 struct mvm_statistics_tx_non_phy_agg agg;
290 struct mvm_statistics_tx_channel_width channel_width;
Liad Kaufman678d9b62017-05-18 18:00:49 +0300291} __packed; /* STATISTICS_TX_API_S_VER_5 */
Johannes Bergd19ac582015-01-14 15:54:18 +0100292
293
294struct mvm_statistics_bt_activity {
295 __le32 hi_priority_tx_req_cnt;
296 __le32 hi_priority_tx_denied_cnt;
297 __le32 lo_priority_tx_req_cnt;
298 __le32 lo_priority_tx_denied_cnt;
299 __le32 hi_priority_rx_req_cnt;
300 __le32 hi_priority_rx_denied_cnt;
301 __le32 lo_priority_rx_req_cnt;
302 __le32 lo_priority_rx_denied_cnt;
303} __packed; /* STATISTICS_BT_ACTIVITY_API_S_VER_1 */
304
Liad Kaufman678d9b62017-05-18 18:00:49 +0300305struct mvm_statistics_general_common_v19 {
Johannes Berg777c9b62015-01-14 17:58:57 +0100306 __le32 radio_temperature;
307 __le32 radio_voltage;
308 struct mvm_statistics_dbg dbg;
309 __le32 sleep_time;
310 __le32 slots_out;
311 __le32 slots_idle;
312 __le32 ttl_timestamp;
313 struct mvm_statistics_div slow_div;
314 __le32 rx_enable_counter;
315 /*
316 * num_of_sos_states:
317 * count the number of times we have to re-tune
318 * in order to get out of bad PHY status
319 */
320 __le32 num_of_sos_states;
321 __le32 beacon_filtered;
322 __le32 missed_beacons;
Sara Sharon62e004f2015-08-20 14:12:58 +0300323 u8 beacon_filter_average_energy;
324 u8 beacon_filter_reason;
325 u8 beacon_filter_current_energy;
326 u8 beacon_filter_reserved;
Johannes Berg777c9b62015-01-14 17:58:57 +0100327 __le32 beacon_filter_delta_time;
328 struct mvm_statistics_bt_activity bt_activity;
329 __le64 rx_time;
330 __le64 on_time_rf;
331 __le64 on_time_scan;
332 __le64 tx_time;
Sara Sharon0e7ac012016-09-08 17:32:19 +0300333} __packed;
334
Liad Kaufman678d9b62017-05-18 18:00:49 +0300335struct mvm_statistics_general_common {
336 __le32 radio_temperature;
337 struct mvm_statistics_dbg dbg;
338 __le32 sleep_time;
339 __le32 slots_out;
340 __le32 slots_idle;
341 __le32 ttl_timestamp;
342 struct mvm_statistics_div slow_div;
343 __le32 rx_enable_counter;
344 /*
345 * num_of_sos_states:
346 * count the number of times we have to re-tune
347 * in order to get out of bad PHY status
348 */
349 __le32 num_of_sos_states;
350 __le32 beacon_filtered;
351 __le32 missed_beacons;
352 u8 beacon_filter_average_energy;
353 u8 beacon_filter_reason;
354 u8 beacon_filter_current_energy;
355 u8 beacon_filter_reserved;
356 __le32 beacon_filter_delta_time;
357 struct mvm_statistics_bt_activity bt_activity;
358 __le64 rx_time;
359 __le64 on_time_rf;
360 __le64 on_time_scan;
361 __le64 tx_time;
362} __packed; /* STATISTICS_GENERAL_API_S_VER_10 */
363
Sara Sharon0e7ac012016-09-08 17:32:19 +0300364struct mvm_statistics_general_v8 {
Liad Kaufman678d9b62017-05-18 18:00:49 +0300365 struct mvm_statistics_general_common_v19 common;
Johannes Berg777c9b62015-01-14 17:58:57 +0100366 __le32 beacon_counter[NUM_MAC_INDEX];
367 u8 beacon_average_energy[NUM_MAC_INDEX];
368 u8 reserved[4 - (NUM_MAC_INDEX % 4)];
369} __packed; /* STATISTICS_GENERAL_API_S_VER_8 */
370
Liad Kaufman678d9b62017-05-18 18:00:49 +0300371struct mvm_statistics_general_cdb_v9 {
372 struct mvm_statistics_general_common_v19 common;
Sara Sharon0e7ac012016-09-08 17:32:19 +0300373 __le32 beacon_counter[NUM_MAC_INDEX_CDB];
374 u8 beacon_average_energy[NUM_MAC_INDEX_CDB];
375 u8 reserved[4 - (NUM_MAC_INDEX_CDB % 4)];
376} __packed; /* STATISTICS_GENERAL_API_S_VER_9 */
377
Liad Kaufman678d9b62017-05-18 18:00:49 +0300378struct mvm_statistics_general_cdb {
379 struct mvm_statistics_general_common common;
380 __le32 beacon_counter[MAC_INDEX_AUX];
381 u8 beacon_average_energy[MAC_INDEX_AUX];
382 u8 reserved[8 - MAC_INDEX_AUX];
383} __packed; /* STATISTICS_GENERAL_API_S_VER_10 */
384
Sara Sharon988b5962016-04-10 15:06:55 +0300385/**
386 * struct mvm_statistics_load - RX statistics for multi-queue devices
387 * @air_time: accumulated air time, per mac
388 * @byte_count: accumulated byte count, per mac
389 * @pkt_count: accumulated packet count, per mac
390 * @avg_energy: average RSSI, per station
391 */
392struct mvm_statistics_load {
Liad Kaufman678d9b62017-05-18 18:00:49 +0300393 __le32 air_time[MAC_INDEX_AUX];
394 __le32 byte_count[MAC_INDEX_AUX];
395 __le32 pkt_count[MAC_INDEX_AUX];
396 u8 avg_energy[IWL_MVM_STATION_COUNT];
397} __packed; /* STATISTICS_RX_MAC_STATION_S_VER_3 */
398
399struct mvm_statistics_load_v1 {
Sara Sharon988b5962016-04-10 15:06:55 +0300400 __le32 air_time[NUM_MAC_INDEX];
401 __le32 byte_count[NUM_MAC_INDEX];
402 __le32 pkt_count[NUM_MAC_INDEX];
403 u8 avg_energy[IWL_MVM_STATION_COUNT];
404} __packed; /* STATISTICS_RX_MAC_STATION_S_VER_1 */
405
Johannes Bergd19ac582015-01-14 15:54:18 +0100406struct mvm_statistics_rx {
407 struct mvm_statistics_rx_phy ofdm;
408 struct mvm_statistics_rx_phy cck;
409 struct mvm_statistics_rx_non_phy general;
410 struct mvm_statistics_rx_ht_phy ofdm_ht;
Liad Kaufman678d9b62017-05-18 18:00:49 +0300411} __packed; /* STATISTICS_RX_API_S_VER_4 */
412
413struct mvm_statistics_rx_v3 {
414 struct mvm_statistics_rx_phy_v2 ofdm;
415 struct mvm_statistics_rx_phy_v2 cck;
416 struct mvm_statistics_rx_non_phy_v3 general;
417 struct mvm_statistics_rx_ht_phy_v1 ofdm_ht;
Johannes Bergd19ac582015-01-14 15:54:18 +0100418} __packed; /* STATISTICS_RX_API_S_VER_3 */
419
420/*
421 * STATISTICS_NOTIFICATION = 0x9d (notification only, not a command)
422 *
423 * By default, uCode issues this notification after receiving a beacon
424 * while associated. To disable this behavior, set DISABLE_NOTIF flag in the
Johannes Berg91a8bcd2015-01-14 18:12:41 +0100425 * STATISTICS_CMD (0x9c), below.
Johannes Bergd19ac582015-01-14 15:54:18 +0100426 */
Sara Sharon0e7ac012016-09-08 17:32:19 +0300427
Johannes Berg777c9b62015-01-14 17:58:57 +0100428struct iwl_notif_statistics_v10 {
429 __le32 flag;
Liad Kaufman678d9b62017-05-18 18:00:49 +0300430 struct mvm_statistics_rx_v3 rx;
431 struct mvm_statistics_tx_v4 tx;
Johannes Berg777c9b62015-01-14 17:58:57 +0100432 struct mvm_statistics_general_v8 general;
433} __packed; /* STATISTICS_NTFY_API_S_VER_10 */
434
Sara Sharon988b5962016-04-10 15:06:55 +0300435struct iwl_notif_statistics_v11 {
436 __le32 flag;
Liad Kaufman678d9b62017-05-18 18:00:49 +0300437 struct mvm_statistics_rx_v3 rx;
438 struct mvm_statistics_tx_v4 tx;
Sara Sharon988b5962016-04-10 15:06:55 +0300439 struct mvm_statistics_general_v8 general;
Liad Kaufman678d9b62017-05-18 18:00:49 +0300440 struct mvm_statistics_load_v1 load_stats;
Sara Sharon988b5962016-04-10 15:06:55 +0300441} __packed; /* STATISTICS_NTFY_API_S_VER_11 */
442
Sara Sharon0e7ac012016-09-08 17:32:19 +0300443struct iwl_notif_statistics_cdb {
444 __le32 flag;
445 struct mvm_statistics_rx rx;
446 struct mvm_statistics_tx tx;
447 struct mvm_statistics_general_cdb general;
Liad Kaufman678d9b62017-05-18 18:00:49 +0300448 struct mvm_statistics_load load_stats;
449} __packed; /* STATISTICS_NTFY_API_S_VER_13 */
Sara Sharon0e7ac012016-09-08 17:32:19 +0300450
Johannes Bergd69f0a22017-03-14 10:58:16 +0100451/**
452 * enum iwl_statistics_notif_flags - flags used in statistics notification
453 * @IWL_STATISTICS_REPLY_FLG_CLEAR: statistics were cleared after this report
454 */
455enum iwl_statistics_notif_flags {
456 IWL_STATISTICS_REPLY_FLG_CLEAR = 0x1,
457};
458
459/**
460 * enum iwl_statistics_cmd_flags - flags used in statistics command
461 * @IWL_STATISTICS_FLG_CLEAR: request to clear statistics after the report
462 * that's sent after this command
463 * @IWL_STATISTICS_FLG_DISABLE_NOTIF: disable unilateral statistics
464 * notifications
465 */
466enum iwl_statistics_cmd_flags {
467 IWL_STATISTICS_FLG_CLEAR = 0x1,
468 IWL_STATISTICS_FLG_DISABLE_NOTIF = 0x2,
469};
Johannes Berg91a8bcd2015-01-14 18:12:41 +0100470
Johannes Berg67625862017-03-14 11:01:27 +0100471/**
472 * struct iwl_statistics_cmd - statistics config command
Johannes Bergd69f0a22017-03-14 10:58:16 +0100473 * @flags: flags from &enum iwl_statistics_cmd_flags
Johannes Berg67625862017-03-14 11:01:27 +0100474 */
Johannes Berg91a8bcd2015-01-14 18:12:41 +0100475struct iwl_statistics_cmd {
476 __le32 flags;
477} __packed; /* STATISTICS_CMD_API_S_VER_1 */
478
Johannes Bergd19ac582015-01-14 15:54:18 +0100479#endif /* __fw_api_stats_h__ */