1 // SPDX-License-Identifier: GPL-2.0-only
2 /******************************************************************************
4 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
7 * Intel Linux Wireless <ilw@linux.intel.com>
8 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
9 *****************************************************************************/
15 il3945_stats_flag(struct il_priv
*il
, char *buf
, int bufsz
)
19 p
+= scnprintf(buf
+ p
, bufsz
- p
, "Statistics Flag(0x%X):\n",
20 le32_to_cpu(il
->_3945
.stats
.flag
));
21 if (le32_to_cpu(il
->_3945
.stats
.flag
) & UCODE_STATS_CLEAR_MSK
)
22 p
+= scnprintf(buf
+ p
, bufsz
- p
,
23 "\tStatistics have been cleared\n");
24 p
+= scnprintf(buf
+ p
, bufsz
- p
, "\tOperational Frequency: %s\n",
25 (le32_to_cpu(il
->_3945
.stats
.flag
) &
26 UCODE_STATS_FREQUENCY_MSK
) ? "2.4 GHz" : "5.2 GHz");
27 p
+= scnprintf(buf
+ p
, bufsz
- p
, "\tTGj Narrow Band: %s\n",
28 (le32_to_cpu(il
->_3945
.stats
.flag
) &
29 UCODE_STATS_NARROW_BAND_MSK
) ? "enabled" : "disabled");
34 il3945_ucode_rx_stats_read(struct file
*file
, char __user
*user_buf
,
35 size_t count
, loff_t
*ppos
)
37 struct il_priv
*il
= file
->private_data
;
41 sizeof(struct iwl39_stats_rx_phy
) * 40 +
42 sizeof(struct iwl39_stats_rx_non_phy
) * 40 + 400;
44 struct iwl39_stats_rx_phy
*ofdm
, *accum_ofdm
, *delta_ofdm
, *max_ofdm
;
45 struct iwl39_stats_rx_phy
*cck
, *accum_cck
, *delta_cck
, *max_cck
;
46 struct iwl39_stats_rx_non_phy
*general
, *accum_general
;
47 struct iwl39_stats_rx_non_phy
*delta_general
, *max_general
;
52 buf
= kzalloc(bufsz
, GFP_KERNEL
);
54 IL_ERR("Can not allocate Buffer\n");
59 * The statistic information display here is based on
60 * the last stats notification from uCode
61 * might not reflect the current uCode activity
63 ofdm
= &il
->_3945
.stats
.rx
.ofdm
;
64 cck
= &il
->_3945
.stats
.rx
.cck
;
65 general
= &il
->_3945
.stats
.rx
.general
;
66 accum_ofdm
= &il
->_3945
.accum_stats
.rx
.ofdm
;
67 accum_cck
= &il
->_3945
.accum_stats
.rx
.cck
;
68 accum_general
= &il
->_3945
.accum_stats
.rx
.general
;
69 delta_ofdm
= &il
->_3945
.delta_stats
.rx
.ofdm
;
70 delta_cck
= &il
->_3945
.delta_stats
.rx
.cck
;
71 delta_general
= &il
->_3945
.delta_stats
.rx
.general
;
72 max_ofdm
= &il
->_3945
.max_delta
.rx
.ofdm
;
73 max_cck
= &il
->_3945
.max_delta
.rx
.cck
;
74 max_general
= &il
->_3945
.max_delta
.rx
.general
;
76 pos
+= il3945_stats_flag(il
, buf
, bufsz
);
78 scnprintf(buf
+ pos
, bufsz
- pos
,
80 "accumulative delta max\n",
81 "Statistics_Rx - OFDM:");
83 scnprintf(buf
+ pos
, bufsz
- pos
,
84 " %-30s %10u %10u %10u %10u\n", "ina_cnt:",
85 le32_to_cpu(ofdm
->ina_cnt
), accum_ofdm
->ina_cnt
,
86 delta_ofdm
->ina_cnt
, max_ofdm
->ina_cnt
);
88 scnprintf(buf
+ pos
, bufsz
- pos
,
89 " %-30s %10u %10u %10u %10u\n", "fina_cnt:",
90 le32_to_cpu(ofdm
->fina_cnt
), accum_ofdm
->fina_cnt
,
91 delta_ofdm
->fina_cnt
, max_ofdm
->fina_cnt
);
93 scnprintf(buf
+ pos
, bufsz
- pos
,
94 " %-30s %10u %10u %10u %10u\n", "plcp_err:",
95 le32_to_cpu(ofdm
->plcp_err
), accum_ofdm
->plcp_err
,
96 delta_ofdm
->plcp_err
, max_ofdm
->plcp_err
);
98 scnprintf(buf
+ pos
, bufsz
- pos
,
99 " %-30s %10u %10u %10u %10u\n", "crc32_err:",
100 le32_to_cpu(ofdm
->crc32_err
), accum_ofdm
->crc32_err
,
101 delta_ofdm
->crc32_err
, max_ofdm
->crc32_err
);
103 scnprintf(buf
+ pos
, bufsz
- pos
,
104 " %-30s %10u %10u %10u %10u\n", "overrun_err:",
105 le32_to_cpu(ofdm
->overrun_err
), accum_ofdm
->overrun_err
,
106 delta_ofdm
->overrun_err
, max_ofdm
->overrun_err
);
108 scnprintf(buf
+ pos
, bufsz
- pos
,
109 " %-30s %10u %10u %10u %10u\n", "early_overrun_err:",
110 le32_to_cpu(ofdm
->early_overrun_err
),
111 accum_ofdm
->early_overrun_err
,
112 delta_ofdm
->early_overrun_err
,
113 max_ofdm
->early_overrun_err
);
115 scnprintf(buf
+ pos
, bufsz
- pos
,
116 " %-30s %10u %10u %10u %10u\n", "crc32_good:",
117 le32_to_cpu(ofdm
->crc32_good
), accum_ofdm
->crc32_good
,
118 delta_ofdm
->crc32_good
, max_ofdm
->crc32_good
);
120 scnprintf(buf
+ pos
, bufsz
- pos
,
121 " %-30s %10u %10u %10u %10u\n", "false_alarm_cnt:",
122 le32_to_cpu(ofdm
->false_alarm_cnt
),
123 accum_ofdm
->false_alarm_cnt
, delta_ofdm
->false_alarm_cnt
,
124 max_ofdm
->false_alarm_cnt
);
126 scnprintf(buf
+ pos
, bufsz
- pos
,
127 " %-30s %10u %10u %10u %10u\n", "fina_sync_err_cnt:",
128 le32_to_cpu(ofdm
->fina_sync_err_cnt
),
129 accum_ofdm
->fina_sync_err_cnt
,
130 delta_ofdm
->fina_sync_err_cnt
,
131 max_ofdm
->fina_sync_err_cnt
);
133 scnprintf(buf
+ pos
, bufsz
- pos
,
134 " %-30s %10u %10u %10u %10u\n", "sfd_timeout:",
135 le32_to_cpu(ofdm
->sfd_timeout
), accum_ofdm
->sfd_timeout
,
136 delta_ofdm
->sfd_timeout
, max_ofdm
->sfd_timeout
);
138 scnprintf(buf
+ pos
, bufsz
- pos
,
139 " %-30s %10u %10u %10u %10u\n", "fina_timeout:",
140 le32_to_cpu(ofdm
->fina_timeout
), accum_ofdm
->fina_timeout
,
141 delta_ofdm
->fina_timeout
, max_ofdm
->fina_timeout
);
143 scnprintf(buf
+ pos
, bufsz
- pos
,
144 " %-30s %10u %10u %10u %10u\n", "unresponded_rts:",
145 le32_to_cpu(ofdm
->unresponded_rts
),
146 accum_ofdm
->unresponded_rts
, delta_ofdm
->unresponded_rts
,
147 max_ofdm
->unresponded_rts
);
149 scnprintf(buf
+ pos
, bufsz
- pos
,
150 " %-30s %10u %10u %10u %10u\n",
151 "rxe_frame_lmt_ovrun:",
152 le32_to_cpu(ofdm
->rxe_frame_limit_overrun
),
153 accum_ofdm
->rxe_frame_limit_overrun
,
154 delta_ofdm
->rxe_frame_limit_overrun
,
155 max_ofdm
->rxe_frame_limit_overrun
);
157 scnprintf(buf
+ pos
, bufsz
- pos
,
158 " %-30s %10u %10u %10u %10u\n", "sent_ack_cnt:",
159 le32_to_cpu(ofdm
->sent_ack_cnt
), accum_ofdm
->sent_ack_cnt
,
160 delta_ofdm
->sent_ack_cnt
, max_ofdm
->sent_ack_cnt
);
162 scnprintf(buf
+ pos
, bufsz
- pos
,
163 " %-30s %10u %10u %10u %10u\n", "sent_cts_cnt:",
164 le32_to_cpu(ofdm
->sent_cts_cnt
), accum_ofdm
->sent_cts_cnt
,
165 delta_ofdm
->sent_cts_cnt
, max_ofdm
->sent_cts_cnt
);
168 scnprintf(buf
+ pos
, bufsz
- pos
,
170 "accumulative delta max\n",
171 "Statistics_Rx - CCK:");
173 scnprintf(buf
+ pos
, bufsz
- pos
,
174 " %-30s %10u %10u %10u %10u\n", "ina_cnt:",
175 le32_to_cpu(cck
->ina_cnt
), accum_cck
->ina_cnt
,
176 delta_cck
->ina_cnt
, max_cck
->ina_cnt
);
178 scnprintf(buf
+ pos
, bufsz
- pos
,
179 " %-30s %10u %10u %10u %10u\n", "fina_cnt:",
180 le32_to_cpu(cck
->fina_cnt
), accum_cck
->fina_cnt
,
181 delta_cck
->fina_cnt
, max_cck
->fina_cnt
);
183 scnprintf(buf
+ pos
, bufsz
- pos
,
184 " %-30s %10u %10u %10u %10u\n", "plcp_err:",
185 le32_to_cpu(cck
->plcp_err
), accum_cck
->plcp_err
,
186 delta_cck
->plcp_err
, max_cck
->plcp_err
);
188 scnprintf(buf
+ pos
, bufsz
- pos
,
189 " %-30s %10u %10u %10u %10u\n", "crc32_err:",
190 le32_to_cpu(cck
->crc32_err
), accum_cck
->crc32_err
,
191 delta_cck
->crc32_err
, max_cck
->crc32_err
);
193 scnprintf(buf
+ pos
, bufsz
- pos
,
194 " %-30s %10u %10u %10u %10u\n", "overrun_err:",
195 le32_to_cpu(cck
->overrun_err
), accum_cck
->overrun_err
,
196 delta_cck
->overrun_err
, max_cck
->overrun_err
);
198 scnprintf(buf
+ pos
, bufsz
- pos
,
199 " %-30s %10u %10u %10u %10u\n", "early_overrun_err:",
200 le32_to_cpu(cck
->early_overrun_err
),
201 accum_cck
->early_overrun_err
,
202 delta_cck
->early_overrun_err
, max_cck
->early_overrun_err
);
204 scnprintf(buf
+ pos
, bufsz
- pos
,
205 " %-30s %10u %10u %10u %10u\n", "crc32_good:",
206 le32_to_cpu(cck
->crc32_good
), accum_cck
->crc32_good
,
207 delta_cck
->crc32_good
, max_cck
->crc32_good
);
209 scnprintf(buf
+ pos
, bufsz
- pos
,
210 " %-30s %10u %10u %10u %10u\n", "false_alarm_cnt:",
211 le32_to_cpu(cck
->false_alarm_cnt
),
212 accum_cck
->false_alarm_cnt
, delta_cck
->false_alarm_cnt
,
213 max_cck
->false_alarm_cnt
);
215 scnprintf(buf
+ pos
, bufsz
- pos
,
216 " %-30s %10u %10u %10u %10u\n", "fina_sync_err_cnt:",
217 le32_to_cpu(cck
->fina_sync_err_cnt
),
218 accum_cck
->fina_sync_err_cnt
,
219 delta_cck
->fina_sync_err_cnt
, max_cck
->fina_sync_err_cnt
);
221 scnprintf(buf
+ pos
, bufsz
- pos
,
222 " %-30s %10u %10u %10u %10u\n", "sfd_timeout:",
223 le32_to_cpu(cck
->sfd_timeout
), accum_cck
->sfd_timeout
,
224 delta_cck
->sfd_timeout
, max_cck
->sfd_timeout
);
226 scnprintf(buf
+ pos
, bufsz
- pos
,
227 " %-30s %10u %10u %10u %10u\n", "fina_timeout:",
228 le32_to_cpu(cck
->fina_timeout
), accum_cck
->fina_timeout
,
229 delta_cck
->fina_timeout
, max_cck
->fina_timeout
);
231 scnprintf(buf
+ pos
, bufsz
- pos
,
232 " %-30s %10u %10u %10u %10u\n", "unresponded_rts:",
233 le32_to_cpu(cck
->unresponded_rts
),
234 accum_cck
->unresponded_rts
, delta_cck
->unresponded_rts
,
235 max_cck
->unresponded_rts
);
237 scnprintf(buf
+ pos
, bufsz
- pos
,
238 " %-30s %10u %10u %10u %10u\n",
239 "rxe_frame_lmt_ovrun:",
240 le32_to_cpu(cck
->rxe_frame_limit_overrun
),
241 accum_cck
->rxe_frame_limit_overrun
,
242 delta_cck
->rxe_frame_limit_overrun
,
243 max_cck
->rxe_frame_limit_overrun
);
245 scnprintf(buf
+ pos
, bufsz
- pos
,
246 " %-30s %10u %10u %10u %10u\n", "sent_ack_cnt:",
247 le32_to_cpu(cck
->sent_ack_cnt
), accum_cck
->sent_ack_cnt
,
248 delta_cck
->sent_ack_cnt
, max_cck
->sent_ack_cnt
);
250 scnprintf(buf
+ pos
, bufsz
- pos
,
251 " %-30s %10u %10u %10u %10u\n", "sent_cts_cnt:",
252 le32_to_cpu(cck
->sent_cts_cnt
), accum_cck
->sent_cts_cnt
,
253 delta_cck
->sent_cts_cnt
, max_cck
->sent_cts_cnt
);
256 scnprintf(buf
+ pos
, bufsz
- pos
,
258 "accumulative delta max\n",
259 "Statistics_Rx - GENERAL:");
261 scnprintf(buf
+ pos
, bufsz
- pos
,
262 " %-30s %10u %10u %10u %10u\n", "bogus_cts:",
263 le32_to_cpu(general
->bogus_cts
), accum_general
->bogus_cts
,
264 delta_general
->bogus_cts
, max_general
->bogus_cts
);
266 scnprintf(buf
+ pos
, bufsz
- pos
,
267 " %-30s %10u %10u %10u %10u\n", "bogus_ack:",
268 le32_to_cpu(general
->bogus_ack
), accum_general
->bogus_ack
,
269 delta_general
->bogus_ack
, max_general
->bogus_ack
);
271 scnprintf(buf
+ pos
, bufsz
- pos
,
272 " %-30s %10u %10u %10u %10u\n", "non_bssid_frames:",
273 le32_to_cpu(general
->non_bssid_frames
),
274 accum_general
->non_bssid_frames
,
275 delta_general
->non_bssid_frames
,
276 max_general
->non_bssid_frames
);
278 scnprintf(buf
+ pos
, bufsz
- pos
,
279 " %-30s %10u %10u %10u %10u\n", "filtered_frames:",
280 le32_to_cpu(general
->filtered_frames
),
281 accum_general
->filtered_frames
,
282 delta_general
->filtered_frames
,
283 max_general
->filtered_frames
);
285 scnprintf(buf
+ pos
, bufsz
- pos
,
286 " %-30s %10u %10u %10u %10u\n",
287 "non_channel_beacons:",
288 le32_to_cpu(general
->non_channel_beacons
),
289 accum_general
->non_channel_beacons
,
290 delta_general
->non_channel_beacons
,
291 max_general
->non_channel_beacons
);
293 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, pos
);
299 il3945_ucode_tx_stats_read(struct file
*file
, char __user
*user_buf
,
300 size_t count
, loff_t
*ppos
)
302 struct il_priv
*il
= file
->private_data
;
305 int bufsz
= (sizeof(struct iwl39_stats_tx
) * 48) + 250;
307 struct iwl39_stats_tx
*tx
, *accum_tx
, *delta_tx
, *max_tx
;
309 if (!il_is_alive(il
))
312 buf
= kzalloc(bufsz
, GFP_KERNEL
);
314 IL_ERR("Can not allocate Buffer\n");
319 * The statistic information display here is based on
320 * the last stats notification from uCode
321 * might not reflect the current uCode activity
323 tx
= &il
->_3945
.stats
.tx
;
324 accum_tx
= &il
->_3945
.accum_stats
.tx
;
325 delta_tx
= &il
->_3945
.delta_stats
.tx
;
326 max_tx
= &il
->_3945
.max_delta
.tx
;
327 pos
+= il3945_stats_flag(il
, buf
, bufsz
);
329 scnprintf(buf
+ pos
, bufsz
- pos
,
331 "accumulative delta max\n",
334 scnprintf(buf
+ pos
, bufsz
- pos
,
335 " %-30s %10u %10u %10u %10u\n", "preamble:",
336 le32_to_cpu(tx
->preamble_cnt
), accum_tx
->preamble_cnt
,
337 delta_tx
->preamble_cnt
, max_tx
->preamble_cnt
);
339 scnprintf(buf
+ pos
, bufsz
- pos
,
340 " %-30s %10u %10u %10u %10u\n", "rx_detected_cnt:",
341 le32_to_cpu(tx
->rx_detected_cnt
),
342 accum_tx
->rx_detected_cnt
, delta_tx
->rx_detected_cnt
,
343 max_tx
->rx_detected_cnt
);
345 scnprintf(buf
+ pos
, bufsz
- pos
,
346 " %-30s %10u %10u %10u %10u\n", "bt_prio_defer_cnt:",
347 le32_to_cpu(tx
->bt_prio_defer_cnt
),
348 accum_tx
->bt_prio_defer_cnt
, delta_tx
->bt_prio_defer_cnt
,
349 max_tx
->bt_prio_defer_cnt
);
351 scnprintf(buf
+ pos
, bufsz
- pos
,
352 " %-30s %10u %10u %10u %10u\n", "bt_prio_kill_cnt:",
353 le32_to_cpu(tx
->bt_prio_kill_cnt
),
354 accum_tx
->bt_prio_kill_cnt
, delta_tx
->bt_prio_kill_cnt
,
355 max_tx
->bt_prio_kill_cnt
);
357 scnprintf(buf
+ pos
, bufsz
- pos
,
358 " %-30s %10u %10u %10u %10u\n", "few_bytes_cnt:",
359 le32_to_cpu(tx
->few_bytes_cnt
), accum_tx
->few_bytes_cnt
,
360 delta_tx
->few_bytes_cnt
, max_tx
->few_bytes_cnt
);
362 scnprintf(buf
+ pos
, bufsz
- pos
,
363 " %-30s %10u %10u %10u %10u\n", "cts_timeout:",
364 le32_to_cpu(tx
->cts_timeout
), accum_tx
->cts_timeout
,
365 delta_tx
->cts_timeout
, max_tx
->cts_timeout
);
367 scnprintf(buf
+ pos
, bufsz
- pos
,
368 " %-30s %10u %10u %10u %10u\n", "ack_timeout:",
369 le32_to_cpu(tx
->ack_timeout
), accum_tx
->ack_timeout
,
370 delta_tx
->ack_timeout
, max_tx
->ack_timeout
);
372 scnprintf(buf
+ pos
, bufsz
- pos
,
373 " %-30s %10u %10u %10u %10u\n", "expected_ack_cnt:",
374 le32_to_cpu(tx
->expected_ack_cnt
),
375 accum_tx
->expected_ack_cnt
, delta_tx
->expected_ack_cnt
,
376 max_tx
->expected_ack_cnt
);
378 scnprintf(buf
+ pos
, bufsz
- pos
,
379 " %-30s %10u %10u %10u %10u\n", "actual_ack_cnt:",
380 le32_to_cpu(tx
->actual_ack_cnt
), accum_tx
->actual_ack_cnt
,
381 delta_tx
->actual_ack_cnt
, max_tx
->actual_ack_cnt
);
383 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, pos
);
389 il3945_ucode_general_stats_read(struct file
*file
, char __user
*user_buf
,
390 size_t count
, loff_t
*ppos
)
392 struct il_priv
*il
= file
->private_data
;
395 int bufsz
= sizeof(struct iwl39_stats_general
) * 10 + 300;
397 struct iwl39_stats_general
*general
, *accum_general
;
398 struct iwl39_stats_general
*delta_general
, *max_general
;
399 struct stats_dbg
*dbg
, *accum_dbg
, *delta_dbg
, *max_dbg
;
400 struct iwl39_stats_div
*div
, *accum_div
, *delta_div
, *max_div
;
402 if (!il_is_alive(il
))
405 buf
= kzalloc(bufsz
, GFP_KERNEL
);
407 IL_ERR("Can not allocate Buffer\n");
412 * The statistic information display here is based on
413 * the last stats notification from uCode
414 * might not reflect the current uCode activity
416 general
= &il
->_3945
.stats
.general
;
417 dbg
= &il
->_3945
.stats
.general
.dbg
;
418 div
= &il
->_3945
.stats
.general
.div
;
419 accum_general
= &il
->_3945
.accum_stats
.general
;
420 delta_general
= &il
->_3945
.delta_stats
.general
;
421 max_general
= &il
->_3945
.max_delta
.general
;
422 accum_dbg
= &il
->_3945
.accum_stats
.general
.dbg
;
423 delta_dbg
= &il
->_3945
.delta_stats
.general
.dbg
;
424 max_dbg
= &il
->_3945
.max_delta
.general
.dbg
;
425 accum_div
= &il
->_3945
.accum_stats
.general
.div
;
426 delta_div
= &il
->_3945
.delta_stats
.general
.div
;
427 max_div
= &il
->_3945
.max_delta
.general
.div
;
428 pos
+= il3945_stats_flag(il
, buf
, bufsz
);
430 scnprintf(buf
+ pos
, bufsz
- pos
,
432 "accumulative delta max\n",
433 "Statistics_General:");
435 scnprintf(buf
+ pos
, bufsz
- pos
,
436 " %-30s %10u %10u %10u %10u\n", "burst_check:",
437 le32_to_cpu(dbg
->burst_check
), accum_dbg
->burst_check
,
438 delta_dbg
->burst_check
, max_dbg
->burst_check
);
440 scnprintf(buf
+ pos
, bufsz
- pos
,
441 " %-30s %10u %10u %10u %10u\n", "burst_count:",
442 le32_to_cpu(dbg
->burst_count
), accum_dbg
->burst_count
,
443 delta_dbg
->burst_count
, max_dbg
->burst_count
);
445 scnprintf(buf
+ pos
, bufsz
- pos
,
446 " %-30s %10u %10u %10u %10u\n", "sleep_time:",
447 le32_to_cpu(general
->sleep_time
),
448 accum_general
->sleep_time
, delta_general
->sleep_time
,
449 max_general
->sleep_time
);
451 scnprintf(buf
+ pos
, bufsz
- pos
,
452 " %-30s %10u %10u %10u %10u\n", "slots_out:",
453 le32_to_cpu(general
->slots_out
), accum_general
->slots_out
,
454 delta_general
->slots_out
, max_general
->slots_out
);
456 scnprintf(buf
+ pos
, bufsz
- pos
,
457 " %-30s %10u %10u %10u %10u\n", "slots_idle:",
458 le32_to_cpu(general
->slots_idle
),
459 accum_general
->slots_idle
, delta_general
->slots_idle
,
460 max_general
->slots_idle
);
462 scnprintf(buf
+ pos
, bufsz
- pos
, "ttl_timestamp:\t\t\t%u\n",
463 le32_to_cpu(general
->ttl_timestamp
));
465 scnprintf(buf
+ pos
, bufsz
- pos
,
466 " %-30s %10u %10u %10u %10u\n", "tx_on_a:",
467 le32_to_cpu(div
->tx_on_a
), accum_div
->tx_on_a
,
468 delta_div
->tx_on_a
, max_div
->tx_on_a
);
470 scnprintf(buf
+ pos
, bufsz
- pos
,
471 " %-30s %10u %10u %10u %10u\n", "tx_on_b:",
472 le32_to_cpu(div
->tx_on_b
), accum_div
->tx_on_b
,
473 delta_div
->tx_on_b
, max_div
->tx_on_b
);
475 scnprintf(buf
+ pos
, bufsz
- pos
,
476 " %-30s %10u %10u %10u %10u\n", "exec_time:",
477 le32_to_cpu(div
->exec_time
), accum_div
->exec_time
,
478 delta_div
->exec_time
, max_div
->exec_time
);
480 scnprintf(buf
+ pos
, bufsz
- pos
,
481 " %-30s %10u %10u %10u %10u\n", "probe_time:",
482 le32_to_cpu(div
->probe_time
), accum_div
->probe_time
,
483 delta_div
->probe_time
, max_div
->probe_time
);
484 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, pos
);
489 const struct il_debugfs_ops il3945_debugfs_ops
= {
490 .rx_stats_read
= il3945_ucode_rx_stats_read
,
491 .tx_stats_read
= il3945_ucode_tx_stats_read
,
492 .general_stats_read
= il3945_ucode_general_stats_read
,