Loading...
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3* Portions of this file
4* Copyright(c) 2016 Intel Deutschland GmbH
5* Copyright (C) 2018-2019, 2021-2024 Intel Corporation
6*/
7
8#ifndef __MAC80211_DRIVER_OPS
9#define __MAC80211_DRIVER_OPS
10
11#include <net/mac80211.h>
12#include "ieee80211_i.h"
13#include "trace.h"
14
15#define check_sdata_in_driver(sdata) ({ \
16 WARN_ONCE(!sdata->local->reconfig_failure && \
17 !(sdata->flags & IEEE80211_SDATA_IN_DRIVER), \
18 "%s: Failed check-sdata-in-driver check, flags: 0x%x\n", \
19 sdata->dev ? sdata->dev->name : sdata->name, sdata->flags); \
20 !!(sdata->flags & IEEE80211_SDATA_IN_DRIVER); \
21})
22
23static inline struct ieee80211_sub_if_data *
24get_bss_sdata(struct ieee80211_sub_if_data *sdata)
25{
26 if (sdata && sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
27 sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
28 u.ap);
29
30 return sdata;
31}
32
33static inline void drv_tx(struct ieee80211_local *local,
34 struct ieee80211_tx_control *control,
35 struct sk_buff *skb)
36{
37 local->ops->tx(&local->hw, control, skb);
38}
39
40static inline void drv_sync_rx_queues(struct ieee80211_local *local,
41 struct sta_info *sta)
42{
43 might_sleep();
44 lockdep_assert_wiphy(local->hw.wiphy);
45
46 if (local->ops->sync_rx_queues) {
47 trace_drv_sync_rx_queues(local, sta->sdata, &sta->sta);
48 local->ops->sync_rx_queues(&local->hw);
49 trace_drv_return_void(local);
50 }
51}
52
53static inline void drv_get_et_strings(struct ieee80211_sub_if_data *sdata,
54 u32 sset, u8 *data)
55{
56 struct ieee80211_local *local = sdata->local;
57 if (local->ops->get_et_strings) {
58 trace_drv_get_et_strings(local, sset);
59 local->ops->get_et_strings(&local->hw, &sdata->vif, sset, data);
60 trace_drv_return_void(local);
61 }
62}
63
64static inline void drv_get_et_stats(struct ieee80211_sub_if_data *sdata,
65 struct ethtool_stats *stats,
66 u64 *data)
67{
68 struct ieee80211_local *local = sdata->local;
69 if (local->ops->get_et_stats) {
70 trace_drv_get_et_stats(local);
71 local->ops->get_et_stats(&local->hw, &sdata->vif, stats, data);
72 trace_drv_return_void(local);
73 }
74}
75
76static inline int drv_get_et_sset_count(struct ieee80211_sub_if_data *sdata,
77 int sset)
78{
79 struct ieee80211_local *local = sdata->local;
80 int rv = 0;
81 if (local->ops->get_et_sset_count) {
82 trace_drv_get_et_sset_count(local, sset);
83 rv = local->ops->get_et_sset_count(&local->hw, &sdata->vif,
84 sset);
85 trace_drv_return_int(local, rv);
86 }
87 return rv;
88}
89
90int drv_start(struct ieee80211_local *local);
91void drv_stop(struct ieee80211_local *local, bool suspend);
92
93#ifdef CONFIG_PM
94static inline int drv_suspend(struct ieee80211_local *local,
95 struct cfg80211_wowlan *wowlan)
96{
97 int ret;
98
99 might_sleep();
100 lockdep_assert_wiphy(local->hw.wiphy);
101
102 trace_drv_suspend(local);
103 ret = local->ops->suspend(&local->hw, wowlan);
104 trace_drv_return_int(local, ret);
105 return ret;
106}
107
108static inline int drv_resume(struct ieee80211_local *local)
109{
110 int ret;
111
112 might_sleep();
113 lockdep_assert_wiphy(local->hw.wiphy);
114
115 trace_drv_resume(local);
116 ret = local->ops->resume(&local->hw);
117 trace_drv_return_int(local, ret);
118 return ret;
119}
120
121static inline void drv_set_wakeup(struct ieee80211_local *local,
122 bool enabled)
123{
124 might_sleep();
125 lockdep_assert_wiphy(local->hw.wiphy);
126
127 if (!local->ops->set_wakeup)
128 return;
129
130 trace_drv_set_wakeup(local, enabled);
131 local->ops->set_wakeup(&local->hw, enabled);
132 trace_drv_return_void(local);
133}
134#endif
135
136int drv_add_interface(struct ieee80211_local *local,
137 struct ieee80211_sub_if_data *sdata);
138
139int drv_change_interface(struct ieee80211_local *local,
140 struct ieee80211_sub_if_data *sdata,
141 enum nl80211_iftype type, bool p2p);
142
143void drv_remove_interface(struct ieee80211_local *local,
144 struct ieee80211_sub_if_data *sdata);
145
146static inline int drv_config(struct ieee80211_local *local, u32 changed)
147{
148 int ret;
149
150 might_sleep();
151 lockdep_assert_wiphy(local->hw.wiphy);
152
153 trace_drv_config(local, changed);
154 ret = local->ops->config(&local->hw, changed);
155 trace_drv_return_int(local, ret);
156 return ret;
157}
158
159static inline void drv_vif_cfg_changed(struct ieee80211_local *local,
160 struct ieee80211_sub_if_data *sdata,
161 u64 changed)
162{
163 might_sleep();
164 lockdep_assert_wiphy(local->hw.wiphy);
165
166 if (!check_sdata_in_driver(sdata))
167 return;
168
169 trace_drv_vif_cfg_changed(local, sdata, changed);
170 if (local->ops->vif_cfg_changed)
171 local->ops->vif_cfg_changed(&local->hw, &sdata->vif, changed);
172 else if (local->ops->bss_info_changed)
173 local->ops->bss_info_changed(&local->hw, &sdata->vif,
174 &sdata->vif.bss_conf, changed);
175 trace_drv_return_void(local);
176}
177
178void drv_link_info_changed(struct ieee80211_local *local,
179 struct ieee80211_sub_if_data *sdata,
180 struct ieee80211_bss_conf *info,
181 int link_id, u64 changed);
182
183static inline u64 drv_prepare_multicast(struct ieee80211_local *local,
184 struct netdev_hw_addr_list *mc_list)
185{
186 u64 ret = 0;
187
188 trace_drv_prepare_multicast(local, mc_list->count);
189
190 if (local->ops->prepare_multicast)
191 ret = local->ops->prepare_multicast(&local->hw, mc_list);
192
193 trace_drv_return_u64(local, ret);
194
195 return ret;
196}
197
198static inline void drv_configure_filter(struct ieee80211_local *local,
199 unsigned int changed_flags,
200 unsigned int *total_flags,
201 u64 multicast)
202{
203 might_sleep();
204 lockdep_assert_wiphy(local->hw.wiphy);
205
206 trace_drv_configure_filter(local, changed_flags, total_flags,
207 multicast);
208 local->ops->configure_filter(&local->hw, changed_flags, total_flags,
209 multicast);
210 trace_drv_return_void(local);
211}
212
213static inline void drv_config_iface_filter(struct ieee80211_local *local,
214 struct ieee80211_sub_if_data *sdata,
215 unsigned int filter_flags,
216 unsigned int changed_flags)
217{
218 might_sleep();
219 lockdep_assert_wiphy(local->hw.wiphy);
220
221 trace_drv_config_iface_filter(local, sdata, filter_flags,
222 changed_flags);
223 if (local->ops->config_iface_filter)
224 local->ops->config_iface_filter(&local->hw, &sdata->vif,
225 filter_flags,
226 changed_flags);
227 trace_drv_return_void(local);
228}
229
230static inline int drv_set_tim(struct ieee80211_local *local,
231 struct ieee80211_sta *sta, bool set)
232{
233 int ret = 0;
234 trace_drv_set_tim(local, sta, set);
235 if (local->ops->set_tim)
236 ret = local->ops->set_tim(&local->hw, sta, set);
237 trace_drv_return_int(local, ret);
238 return ret;
239}
240
241int drv_set_key(struct ieee80211_local *local,
242 enum set_key_cmd cmd,
243 struct ieee80211_sub_if_data *sdata,
244 struct ieee80211_sta *sta,
245 struct ieee80211_key_conf *key);
246
247static inline void drv_update_tkip_key(struct ieee80211_local *local,
248 struct ieee80211_sub_if_data *sdata,
249 struct ieee80211_key_conf *conf,
250 struct sta_info *sta, u32 iv32,
251 u16 *phase1key)
252{
253 struct ieee80211_sta *ista = NULL;
254
255 if (sta)
256 ista = &sta->sta;
257
258 sdata = get_bss_sdata(sdata);
259 if (!check_sdata_in_driver(sdata))
260 return;
261
262 trace_drv_update_tkip_key(local, sdata, conf, ista, iv32);
263 if (local->ops->update_tkip_key)
264 local->ops->update_tkip_key(&local->hw, &sdata->vif, conf,
265 ista, iv32, phase1key);
266 trace_drv_return_void(local);
267}
268
269static inline int drv_hw_scan(struct ieee80211_local *local,
270 struct ieee80211_sub_if_data *sdata,
271 struct ieee80211_scan_request *req)
272{
273 int ret;
274
275 might_sleep();
276 lockdep_assert_wiphy(local->hw.wiphy);
277
278 if (!check_sdata_in_driver(sdata))
279 return -EIO;
280
281 trace_drv_hw_scan(local, sdata);
282 ret = local->ops->hw_scan(&local->hw, &sdata->vif, req);
283 trace_drv_return_int(local, ret);
284 return ret;
285}
286
287static inline void drv_cancel_hw_scan(struct ieee80211_local *local,
288 struct ieee80211_sub_if_data *sdata)
289{
290 might_sleep();
291 lockdep_assert_wiphy(local->hw.wiphy);
292
293 if (!check_sdata_in_driver(sdata))
294 return;
295
296 trace_drv_cancel_hw_scan(local, sdata);
297 local->ops->cancel_hw_scan(&local->hw, &sdata->vif);
298 trace_drv_return_void(local);
299}
300
301static inline int
302drv_sched_scan_start(struct ieee80211_local *local,
303 struct ieee80211_sub_if_data *sdata,
304 struct cfg80211_sched_scan_request *req,
305 struct ieee80211_scan_ies *ies)
306{
307 int ret;
308
309 might_sleep();
310 lockdep_assert_wiphy(local->hw.wiphy);
311
312 if (!check_sdata_in_driver(sdata))
313 return -EIO;
314
315 trace_drv_sched_scan_start(local, sdata);
316 ret = local->ops->sched_scan_start(&local->hw, &sdata->vif,
317 req, ies);
318 trace_drv_return_int(local, ret);
319 return ret;
320}
321
322static inline int drv_sched_scan_stop(struct ieee80211_local *local,
323 struct ieee80211_sub_if_data *sdata)
324{
325 int ret;
326
327 might_sleep();
328 lockdep_assert_wiphy(local->hw.wiphy);
329
330 if (!check_sdata_in_driver(sdata))
331 return -EIO;
332
333 trace_drv_sched_scan_stop(local, sdata);
334 ret = local->ops->sched_scan_stop(&local->hw, &sdata->vif);
335 trace_drv_return_int(local, ret);
336
337 return ret;
338}
339
340static inline void drv_sw_scan_start(struct ieee80211_local *local,
341 struct ieee80211_sub_if_data *sdata,
342 const u8 *mac_addr)
343{
344 might_sleep();
345 lockdep_assert_wiphy(local->hw.wiphy);
346
347 trace_drv_sw_scan_start(local, sdata, mac_addr);
348 if (local->ops->sw_scan_start)
349 local->ops->sw_scan_start(&local->hw, &sdata->vif, mac_addr);
350 trace_drv_return_void(local);
351}
352
353static inline void drv_sw_scan_complete(struct ieee80211_local *local,
354 struct ieee80211_sub_if_data *sdata)
355{
356 might_sleep();
357 lockdep_assert_wiphy(local->hw.wiphy);
358
359 trace_drv_sw_scan_complete(local, sdata);
360 if (local->ops->sw_scan_complete)
361 local->ops->sw_scan_complete(&local->hw, &sdata->vif);
362 trace_drv_return_void(local);
363}
364
365static inline int drv_get_stats(struct ieee80211_local *local,
366 struct ieee80211_low_level_stats *stats)
367{
368 int ret = -EOPNOTSUPP;
369
370 might_sleep();
371 lockdep_assert_wiphy(local->hw.wiphy);
372
373 if (local->ops->get_stats)
374 ret = local->ops->get_stats(&local->hw, stats);
375 trace_drv_get_stats(local, stats, ret);
376
377 return ret;
378}
379
380static inline void drv_get_key_seq(struct ieee80211_local *local,
381 struct ieee80211_key *key,
382 struct ieee80211_key_seq *seq)
383{
384 if (local->ops->get_key_seq)
385 local->ops->get_key_seq(&local->hw, &key->conf, seq);
386 trace_drv_get_key_seq(local, &key->conf);
387}
388
389static inline int drv_set_frag_threshold(struct ieee80211_local *local,
390 u32 value)
391{
392 int ret = 0;
393
394 might_sleep();
395 lockdep_assert_wiphy(local->hw.wiphy);
396
397 trace_drv_set_frag_threshold(local, value);
398 if (local->ops->set_frag_threshold)
399 ret = local->ops->set_frag_threshold(&local->hw, value);
400 trace_drv_return_int(local, ret);
401 return ret;
402}
403
404static inline int drv_set_rts_threshold(struct ieee80211_local *local,
405 u32 value)
406{
407 int ret = 0;
408
409 might_sleep();
410 lockdep_assert_wiphy(local->hw.wiphy);
411
412 trace_drv_set_rts_threshold(local, value);
413 if (local->ops->set_rts_threshold)
414 ret = local->ops->set_rts_threshold(&local->hw, value);
415 trace_drv_return_int(local, ret);
416 return ret;
417}
418
419static inline int drv_set_coverage_class(struct ieee80211_local *local,
420 s16 value)
421{
422 int ret = 0;
423 might_sleep();
424 lockdep_assert_wiphy(local->hw.wiphy);
425
426 trace_drv_set_coverage_class(local, value);
427 if (local->ops->set_coverage_class)
428 local->ops->set_coverage_class(&local->hw, value);
429 else
430 ret = -EOPNOTSUPP;
431
432 trace_drv_return_int(local, ret);
433 return ret;
434}
435
436static inline void drv_sta_notify(struct ieee80211_local *local,
437 struct ieee80211_sub_if_data *sdata,
438 enum sta_notify_cmd cmd,
439 struct ieee80211_sta *sta)
440{
441 sdata = get_bss_sdata(sdata);
442 if (!check_sdata_in_driver(sdata))
443 return;
444
445 trace_drv_sta_notify(local, sdata, cmd, sta);
446 if (local->ops->sta_notify)
447 local->ops->sta_notify(&local->hw, &sdata->vif, cmd, sta);
448 trace_drv_return_void(local);
449}
450
451static inline int drv_sta_add(struct ieee80211_local *local,
452 struct ieee80211_sub_if_data *sdata,
453 struct ieee80211_sta *sta)
454{
455 int ret = 0;
456
457 might_sleep();
458 lockdep_assert_wiphy(local->hw.wiphy);
459
460 sdata = get_bss_sdata(sdata);
461 if (!check_sdata_in_driver(sdata))
462 return -EIO;
463
464 trace_drv_sta_add(local, sdata, sta);
465 if (local->ops->sta_add)
466 ret = local->ops->sta_add(&local->hw, &sdata->vif, sta);
467
468 trace_drv_return_int(local, ret);
469
470 return ret;
471}
472
473static inline void drv_sta_remove(struct ieee80211_local *local,
474 struct ieee80211_sub_if_data *sdata,
475 struct ieee80211_sta *sta)
476{
477 might_sleep();
478 lockdep_assert_wiphy(local->hw.wiphy);
479
480 sdata = get_bss_sdata(sdata);
481 if (!check_sdata_in_driver(sdata))
482 return;
483
484 trace_drv_sta_remove(local, sdata, sta);
485 if (local->ops->sta_remove)
486 local->ops->sta_remove(&local->hw, &sdata->vif, sta);
487
488 trace_drv_return_void(local);
489}
490
491#ifdef CONFIG_MAC80211_DEBUGFS
492static inline void drv_vif_add_debugfs(struct ieee80211_local *local,
493 struct ieee80211_sub_if_data *sdata)
494{
495 might_sleep();
496
497 if (sdata->vif.type == NL80211_IFTYPE_MONITOR ||
498 WARN_ON(!sdata->vif.debugfs_dir))
499 return;
500
501 sdata = get_bss_sdata(sdata);
502 if (!check_sdata_in_driver(sdata))
503 return;
504
505 if (local->ops->vif_add_debugfs)
506 local->ops->vif_add_debugfs(&local->hw, &sdata->vif);
507}
508
509static inline void drv_link_add_debugfs(struct ieee80211_local *local,
510 struct ieee80211_sub_if_data *sdata,
511 struct ieee80211_bss_conf *link_conf,
512 struct dentry *dir)
513{
514 might_sleep();
515 lockdep_assert_wiphy(local->hw.wiphy);
516
517 sdata = get_bss_sdata(sdata);
518 if (!check_sdata_in_driver(sdata))
519 return;
520
521 if (local->ops->link_add_debugfs)
522 local->ops->link_add_debugfs(&local->hw, &sdata->vif,
523 link_conf, dir);
524}
525
526static inline void drv_sta_add_debugfs(struct ieee80211_local *local,
527 struct ieee80211_sub_if_data *sdata,
528 struct ieee80211_sta *sta,
529 struct dentry *dir)
530{
531 might_sleep();
532 lockdep_assert_wiphy(local->hw.wiphy);
533
534 sdata = get_bss_sdata(sdata);
535 if (!check_sdata_in_driver(sdata))
536 return;
537
538 if (local->ops->sta_add_debugfs)
539 local->ops->sta_add_debugfs(&local->hw, &sdata->vif,
540 sta, dir);
541}
542
543static inline void drv_link_sta_add_debugfs(struct ieee80211_local *local,
544 struct ieee80211_sub_if_data *sdata,
545 struct ieee80211_link_sta *link_sta,
546 struct dentry *dir)
547{
548 might_sleep();
549 lockdep_assert_wiphy(local->hw.wiphy);
550
551 sdata = get_bss_sdata(sdata);
552 if (!check_sdata_in_driver(sdata))
553 return;
554
555 if (local->ops->link_sta_add_debugfs)
556 local->ops->link_sta_add_debugfs(&local->hw, &sdata->vif,
557 link_sta, dir);
558}
559#else
560static inline void drv_vif_add_debugfs(struct ieee80211_local *local,
561 struct ieee80211_sub_if_data *sdata)
562{
563 might_sleep();
564}
565#endif
566
567static inline void drv_sta_pre_rcu_remove(struct ieee80211_local *local,
568 struct ieee80211_sub_if_data *sdata,
569 struct sta_info *sta)
570{
571 might_sleep();
572 lockdep_assert_wiphy(local->hw.wiphy);
573
574 sdata = get_bss_sdata(sdata);
575 if (!check_sdata_in_driver(sdata))
576 return;
577
578 trace_drv_sta_pre_rcu_remove(local, sdata, &sta->sta);
579 if (local->ops->sta_pre_rcu_remove)
580 local->ops->sta_pre_rcu_remove(&local->hw, &sdata->vif,
581 &sta->sta);
582 trace_drv_return_void(local);
583}
584
585__must_check
586int drv_sta_state(struct ieee80211_local *local,
587 struct ieee80211_sub_if_data *sdata,
588 struct sta_info *sta,
589 enum ieee80211_sta_state old_state,
590 enum ieee80211_sta_state new_state);
591
592__must_check
593int drv_sta_set_txpwr(struct ieee80211_local *local,
594 struct ieee80211_sub_if_data *sdata,
595 struct sta_info *sta);
596
597void drv_link_sta_rc_update(struct ieee80211_local *local,
598 struct ieee80211_sub_if_data *sdata,
599 struct ieee80211_link_sta *link_sta, u32 changed);
600
601static inline void drv_sta_rate_tbl_update(struct ieee80211_local *local,
602 struct ieee80211_sub_if_data *sdata,
603 struct ieee80211_sta *sta)
604{
605 sdata = get_bss_sdata(sdata);
606 if (!check_sdata_in_driver(sdata))
607 return;
608
609 trace_drv_sta_rate_tbl_update(local, sdata, sta);
610 if (local->ops->sta_rate_tbl_update)
611 local->ops->sta_rate_tbl_update(&local->hw, &sdata->vif, sta);
612
613 trace_drv_return_void(local);
614}
615
616static inline void drv_sta_statistics(struct ieee80211_local *local,
617 struct ieee80211_sub_if_data *sdata,
618 struct ieee80211_sta *sta,
619 struct station_info *sinfo)
620{
621 might_sleep();
622 lockdep_assert_wiphy(local->hw.wiphy);
623
624 sdata = get_bss_sdata(sdata);
625 if (!check_sdata_in_driver(sdata))
626 return;
627
628 trace_drv_sta_statistics(local, sdata, sta);
629 if (local->ops->sta_statistics)
630 local->ops->sta_statistics(&local->hw, &sdata->vif, sta, sinfo);
631 trace_drv_return_void(local);
632}
633
634int drv_conf_tx(struct ieee80211_local *local,
635 struct ieee80211_link_data *link, u16 ac,
636 const struct ieee80211_tx_queue_params *params);
637
638u64 drv_get_tsf(struct ieee80211_local *local,
639 struct ieee80211_sub_if_data *sdata);
640void drv_set_tsf(struct ieee80211_local *local,
641 struct ieee80211_sub_if_data *sdata,
642 u64 tsf);
643void drv_offset_tsf(struct ieee80211_local *local,
644 struct ieee80211_sub_if_data *sdata,
645 s64 offset);
646void drv_reset_tsf(struct ieee80211_local *local,
647 struct ieee80211_sub_if_data *sdata);
648
649static inline int drv_tx_last_beacon(struct ieee80211_local *local)
650{
651 int ret = 0; /* default unsupported op for less congestion */
652
653 might_sleep();
654 lockdep_assert_wiphy(local->hw.wiphy);
655
656 trace_drv_tx_last_beacon(local);
657 if (local->ops->tx_last_beacon)
658 ret = local->ops->tx_last_beacon(&local->hw);
659 trace_drv_return_int(local, ret);
660 return ret;
661}
662
663int drv_ampdu_action(struct ieee80211_local *local,
664 struct ieee80211_sub_if_data *sdata,
665 struct ieee80211_ampdu_params *params);
666
667static inline int drv_get_survey(struct ieee80211_local *local, int idx,
668 struct survey_info *survey)
669{
670 int ret = -EOPNOTSUPP;
671
672 might_sleep();
673 lockdep_assert_wiphy(local->hw.wiphy);
674
675 trace_drv_get_survey(local, idx, survey);
676
677 if (local->ops->get_survey)
678 ret = local->ops->get_survey(&local->hw, idx, survey);
679
680 trace_drv_return_int(local, ret);
681
682 return ret;
683}
684
685static inline void drv_rfkill_poll(struct ieee80211_local *local)
686{
687 might_sleep();
688 lockdep_assert_wiphy(local->hw.wiphy);
689
690 if (local->ops->rfkill_poll)
691 local->ops->rfkill_poll(&local->hw);
692}
693
694static inline void drv_flush(struct ieee80211_local *local,
695 struct ieee80211_sub_if_data *sdata,
696 u32 queues, bool drop)
697{
698 struct ieee80211_vif *vif;
699
700 might_sleep();
701 lockdep_assert_wiphy(local->hw.wiphy);
702
703 sdata = get_bss_sdata(sdata);
704 vif = sdata ? &sdata->vif : NULL;
705
706 if (sdata && !check_sdata_in_driver(sdata))
707 return;
708
709 trace_drv_flush(local, queues, drop);
710 if (local->ops->flush)
711 local->ops->flush(&local->hw, vif, queues, drop);
712 trace_drv_return_void(local);
713}
714
715static inline void drv_flush_sta(struct ieee80211_local *local,
716 struct ieee80211_sub_if_data *sdata,
717 struct sta_info *sta)
718{
719 might_sleep();
720 lockdep_assert_wiphy(local->hw.wiphy);
721
722 sdata = get_bss_sdata(sdata);
723
724 if (sdata && !check_sdata_in_driver(sdata))
725 return;
726
727 if (!sta->uploaded)
728 return;
729
730 trace_drv_flush_sta(local, sdata, &sta->sta);
731 if (local->ops->flush_sta)
732 local->ops->flush_sta(&local->hw, &sdata->vif, &sta->sta);
733 trace_drv_return_void(local);
734}
735
736static inline void drv_channel_switch(struct ieee80211_local *local,
737 struct ieee80211_sub_if_data *sdata,
738 struct ieee80211_channel_switch *ch_switch)
739{
740 might_sleep();
741 lockdep_assert_wiphy(local->hw.wiphy);
742
743 trace_drv_channel_switch(local, sdata, ch_switch);
744 local->ops->channel_switch(&local->hw, &sdata->vif, ch_switch);
745 trace_drv_return_void(local);
746}
747
748
749static inline int drv_set_antenna(struct ieee80211_local *local,
750 u32 tx_ant, u32 rx_ant)
751{
752 int ret = -EOPNOTSUPP;
753 might_sleep();
754 lockdep_assert_wiphy(local->hw.wiphy);
755 if (local->ops->set_antenna)
756 ret = local->ops->set_antenna(&local->hw, tx_ant, rx_ant);
757 trace_drv_set_antenna(local, tx_ant, rx_ant, ret);
758 return ret;
759}
760
761static inline int drv_get_antenna(struct ieee80211_local *local,
762 u32 *tx_ant, u32 *rx_ant)
763{
764 int ret = -EOPNOTSUPP;
765 might_sleep();
766 lockdep_assert_wiphy(local->hw.wiphy);
767 if (local->ops->get_antenna)
768 ret = local->ops->get_antenna(&local->hw, tx_ant, rx_ant);
769 trace_drv_get_antenna(local, *tx_ant, *rx_ant, ret);
770 return ret;
771}
772
773static inline int drv_remain_on_channel(struct ieee80211_local *local,
774 struct ieee80211_sub_if_data *sdata,
775 struct ieee80211_channel *chan,
776 unsigned int duration,
777 enum ieee80211_roc_type type)
778{
779 int ret;
780
781 might_sleep();
782 lockdep_assert_wiphy(local->hw.wiphy);
783
784 trace_drv_remain_on_channel(local, sdata, chan, duration, type);
785 ret = local->ops->remain_on_channel(&local->hw, &sdata->vif,
786 chan, duration, type);
787 trace_drv_return_int(local, ret);
788
789 return ret;
790}
791
792static inline int
793drv_cancel_remain_on_channel(struct ieee80211_local *local,
794 struct ieee80211_sub_if_data *sdata)
795{
796 int ret;
797
798 might_sleep();
799 lockdep_assert_wiphy(local->hw.wiphy);
800
801 trace_drv_cancel_remain_on_channel(local, sdata);
802 ret = local->ops->cancel_remain_on_channel(&local->hw, &sdata->vif);
803 trace_drv_return_int(local, ret);
804
805 return ret;
806}
807
808static inline int drv_set_ringparam(struct ieee80211_local *local,
809 u32 tx, u32 rx)
810{
811 int ret = -EOPNOTSUPP;
812
813 might_sleep();
814 lockdep_assert_wiphy(local->hw.wiphy);
815
816 trace_drv_set_ringparam(local, tx, rx);
817 if (local->ops->set_ringparam)
818 ret = local->ops->set_ringparam(&local->hw, tx, rx);
819 trace_drv_return_int(local, ret);
820
821 return ret;
822}
823
824static inline void drv_get_ringparam(struct ieee80211_local *local,
825 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max)
826{
827 might_sleep();
828 lockdep_assert_wiphy(local->hw.wiphy);
829
830 trace_drv_get_ringparam(local, tx, tx_max, rx, rx_max);
831 if (local->ops->get_ringparam)
832 local->ops->get_ringparam(&local->hw, tx, tx_max, rx, rx_max);
833 trace_drv_return_void(local);
834}
835
836static inline bool drv_tx_frames_pending(struct ieee80211_local *local)
837{
838 bool ret = false;
839
840 might_sleep();
841 lockdep_assert_wiphy(local->hw.wiphy);
842
843 trace_drv_tx_frames_pending(local);
844 if (local->ops->tx_frames_pending)
845 ret = local->ops->tx_frames_pending(&local->hw);
846 trace_drv_return_bool(local, ret);
847
848 return ret;
849}
850
851static inline int drv_set_bitrate_mask(struct ieee80211_local *local,
852 struct ieee80211_sub_if_data *sdata,
853 const struct cfg80211_bitrate_mask *mask)
854{
855 int ret = -EOPNOTSUPP;
856
857 might_sleep();
858 lockdep_assert_wiphy(local->hw.wiphy);
859
860 if (!check_sdata_in_driver(sdata))
861 return -EIO;
862
863 trace_drv_set_bitrate_mask(local, sdata, mask);
864 if (local->ops->set_bitrate_mask)
865 ret = local->ops->set_bitrate_mask(&local->hw,
866 &sdata->vif, mask);
867 trace_drv_return_int(local, ret);
868
869 return ret;
870}
871
872static inline void drv_set_rekey_data(struct ieee80211_local *local,
873 struct ieee80211_sub_if_data *sdata,
874 struct cfg80211_gtk_rekey_data *data)
875{
876 might_sleep();
877 lockdep_assert_wiphy(local->hw.wiphy);
878
879 if (!check_sdata_in_driver(sdata))
880 return;
881
882 trace_drv_set_rekey_data(local, sdata, data);
883 if (local->ops->set_rekey_data)
884 local->ops->set_rekey_data(&local->hw, &sdata->vif, data);
885 trace_drv_return_void(local);
886}
887
888static inline void drv_event_callback(struct ieee80211_local *local,
889 struct ieee80211_sub_if_data *sdata,
890 const struct ieee80211_event *event)
891{
892 trace_drv_event_callback(local, sdata, event);
893 if (local->ops->event_callback)
894 local->ops->event_callback(&local->hw, &sdata->vif, event);
895 trace_drv_return_void(local);
896}
897
898static inline void
899drv_release_buffered_frames(struct ieee80211_local *local,
900 struct sta_info *sta, u16 tids, int num_frames,
901 enum ieee80211_frame_release_type reason,
902 bool more_data)
903{
904 trace_drv_release_buffered_frames(local, &sta->sta, tids, num_frames,
905 reason, more_data);
906 if (local->ops->release_buffered_frames)
907 local->ops->release_buffered_frames(&local->hw, &sta->sta, tids,
908 num_frames, reason,
909 more_data);
910 trace_drv_return_void(local);
911}
912
913static inline void
914drv_allow_buffered_frames(struct ieee80211_local *local,
915 struct sta_info *sta, u16 tids, int num_frames,
916 enum ieee80211_frame_release_type reason,
917 bool more_data)
918{
919 trace_drv_allow_buffered_frames(local, &sta->sta, tids, num_frames,
920 reason, more_data);
921 if (local->ops->allow_buffered_frames)
922 local->ops->allow_buffered_frames(&local->hw, &sta->sta,
923 tids, num_frames, reason,
924 more_data);
925 trace_drv_return_void(local);
926}
927
928static inline void drv_mgd_prepare_tx(struct ieee80211_local *local,
929 struct ieee80211_sub_if_data *sdata,
930 struct ieee80211_prep_tx_info *info)
931{
932 might_sleep();
933 lockdep_assert_wiphy(local->hw.wiphy);
934
935 if (!check_sdata_in_driver(sdata))
936 return;
937 WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION);
938
939 info->link_id = info->link_id < 0 ? 0 : info->link_id;
940 trace_drv_mgd_prepare_tx(local, sdata, info->duration,
941 info->subtype, info->success);
942 if (local->ops->mgd_prepare_tx)
943 local->ops->mgd_prepare_tx(&local->hw, &sdata->vif, info);
944 trace_drv_return_void(local);
945}
946
947static inline void drv_mgd_complete_tx(struct ieee80211_local *local,
948 struct ieee80211_sub_if_data *sdata,
949 struct ieee80211_prep_tx_info *info)
950{
951 might_sleep();
952 lockdep_assert_wiphy(local->hw.wiphy);
953
954 if (!check_sdata_in_driver(sdata))
955 return;
956 WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION);
957
958 trace_drv_mgd_complete_tx(local, sdata, info->duration,
959 info->subtype, info->success);
960 if (local->ops->mgd_complete_tx)
961 local->ops->mgd_complete_tx(&local->hw, &sdata->vif, info);
962 trace_drv_return_void(local);
963}
964
965static inline void
966drv_mgd_protect_tdls_discover(struct ieee80211_local *local,
967 struct ieee80211_sub_if_data *sdata,
968 int link_id)
969{
970 might_sleep();
971 lockdep_assert_wiphy(local->hw.wiphy);
972
973 if (!check_sdata_in_driver(sdata))
974 return;
975 WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION);
976
977 link_id = link_id > 0 ? link_id : 0;
978
979 trace_drv_mgd_protect_tdls_discover(local, sdata);
980 if (local->ops->mgd_protect_tdls_discover)
981 local->ops->mgd_protect_tdls_discover(&local->hw, &sdata->vif,
982 link_id);
983 trace_drv_return_void(local);
984}
985
986static inline int drv_add_chanctx(struct ieee80211_local *local,
987 struct ieee80211_chanctx *ctx)
988{
989 int ret = -EOPNOTSUPP;
990
991 might_sleep();
992 lockdep_assert_wiphy(local->hw.wiphy);
993
994 trace_drv_add_chanctx(local, ctx);
995 if (local->ops->add_chanctx)
996 ret = local->ops->add_chanctx(&local->hw, &ctx->conf);
997 trace_drv_return_int(local, ret);
998 if (!ret)
999 ctx->driver_present = true;
1000
1001 return ret;
1002}
1003
1004static inline void drv_remove_chanctx(struct ieee80211_local *local,
1005 struct ieee80211_chanctx *ctx)
1006{
1007 might_sleep();
1008 lockdep_assert_wiphy(local->hw.wiphy);
1009
1010 if (WARN_ON(!ctx->driver_present))
1011 return;
1012
1013 trace_drv_remove_chanctx(local, ctx);
1014 if (local->ops->remove_chanctx)
1015 local->ops->remove_chanctx(&local->hw, &ctx->conf);
1016 trace_drv_return_void(local);
1017 ctx->driver_present = false;
1018}
1019
1020static inline void drv_change_chanctx(struct ieee80211_local *local,
1021 struct ieee80211_chanctx *ctx,
1022 u32 changed)
1023{
1024 might_sleep();
1025 lockdep_assert_wiphy(local->hw.wiphy);
1026
1027 trace_drv_change_chanctx(local, ctx, changed);
1028 if (local->ops->change_chanctx) {
1029 WARN_ON_ONCE(!ctx->driver_present);
1030 local->ops->change_chanctx(&local->hw, &ctx->conf, changed);
1031 }
1032 trace_drv_return_void(local);
1033}
1034
1035int drv_assign_vif_chanctx(struct ieee80211_local *local,
1036 struct ieee80211_sub_if_data *sdata,
1037 struct ieee80211_bss_conf *link_conf,
1038 struct ieee80211_chanctx *ctx);
1039void drv_unassign_vif_chanctx(struct ieee80211_local *local,
1040 struct ieee80211_sub_if_data *sdata,
1041 struct ieee80211_bss_conf *link_conf,
1042 struct ieee80211_chanctx *ctx);
1043int drv_switch_vif_chanctx(struct ieee80211_local *local,
1044 struct ieee80211_vif_chanctx_switch *vifs,
1045 int n_vifs, enum ieee80211_chanctx_switch_mode mode);
1046
1047static inline int drv_start_ap(struct ieee80211_local *local,
1048 struct ieee80211_sub_if_data *sdata,
1049 struct ieee80211_bss_conf *link_conf)
1050{
1051 int ret = 0;
1052
1053 might_sleep();
1054 lockdep_assert_wiphy(local->hw.wiphy);
1055
1056 if (!check_sdata_in_driver(sdata))
1057 return -EIO;
1058
1059 trace_drv_start_ap(local, sdata, link_conf);
1060 if (local->ops->start_ap)
1061 ret = local->ops->start_ap(&local->hw, &sdata->vif, link_conf);
1062 trace_drv_return_int(local, ret);
1063 return ret;
1064}
1065
1066static inline void drv_stop_ap(struct ieee80211_local *local,
1067 struct ieee80211_sub_if_data *sdata,
1068 struct ieee80211_bss_conf *link_conf)
1069{
1070 might_sleep();
1071 lockdep_assert_wiphy(local->hw.wiphy);
1072
1073 if (!check_sdata_in_driver(sdata))
1074 return;
1075
1076 trace_drv_stop_ap(local, sdata, link_conf);
1077 if (local->ops->stop_ap)
1078 local->ops->stop_ap(&local->hw, &sdata->vif, link_conf);
1079 trace_drv_return_void(local);
1080}
1081
1082static inline void
1083drv_reconfig_complete(struct ieee80211_local *local,
1084 enum ieee80211_reconfig_type reconfig_type)
1085{
1086 might_sleep();
1087 lockdep_assert_wiphy(local->hw.wiphy);
1088
1089 trace_drv_reconfig_complete(local, reconfig_type);
1090 if (local->ops->reconfig_complete)
1091 local->ops->reconfig_complete(&local->hw, reconfig_type);
1092 trace_drv_return_void(local);
1093}
1094
1095static inline void
1096drv_set_default_unicast_key(struct ieee80211_local *local,
1097 struct ieee80211_sub_if_data *sdata,
1098 int key_idx)
1099{
1100 might_sleep();
1101 lockdep_assert_wiphy(local->hw.wiphy);
1102
1103 if (!check_sdata_in_driver(sdata))
1104 return;
1105
1106 WARN_ON_ONCE(key_idx < -1 || key_idx > 3);
1107
1108 trace_drv_set_default_unicast_key(local, sdata, key_idx);
1109 if (local->ops->set_default_unicast_key)
1110 local->ops->set_default_unicast_key(&local->hw, &sdata->vif,
1111 key_idx);
1112 trace_drv_return_void(local);
1113}
1114
1115#if IS_ENABLED(CONFIG_IPV6)
1116static inline void drv_ipv6_addr_change(struct ieee80211_local *local,
1117 struct ieee80211_sub_if_data *sdata,
1118 struct inet6_dev *idev)
1119{
1120 trace_drv_ipv6_addr_change(local, sdata);
1121 if (local->ops->ipv6_addr_change)
1122 local->ops->ipv6_addr_change(&local->hw, &sdata->vif, idev);
1123 trace_drv_return_void(local);
1124}
1125#endif
1126
1127static inline void
1128drv_channel_switch_beacon(struct ieee80211_sub_if_data *sdata,
1129 struct cfg80211_chan_def *chandef)
1130{
1131 struct ieee80211_local *local = sdata->local;
1132
1133 might_sleep();
1134 lockdep_assert_wiphy(local->hw.wiphy);
1135
1136 if (local->ops->channel_switch_beacon) {
1137 trace_drv_channel_switch_beacon(local, sdata, chandef);
1138 local->ops->channel_switch_beacon(&local->hw, &sdata->vif,
1139 chandef);
1140 }
1141}
1142
1143static inline int
1144drv_pre_channel_switch(struct ieee80211_sub_if_data *sdata,
1145 struct ieee80211_channel_switch *ch_switch)
1146{
1147 struct ieee80211_local *local = sdata->local;
1148 int ret = 0;
1149
1150 might_sleep();
1151 lockdep_assert_wiphy(local->hw.wiphy);
1152
1153 if (!check_sdata_in_driver(sdata))
1154 return -EIO;
1155
1156 if (!ieee80211_vif_link_active(&sdata->vif, ch_switch->link_id))
1157 return 0;
1158
1159 trace_drv_pre_channel_switch(local, sdata, ch_switch);
1160 if (local->ops->pre_channel_switch)
1161 ret = local->ops->pre_channel_switch(&local->hw, &sdata->vif,
1162 ch_switch);
1163 trace_drv_return_int(local, ret);
1164 return ret;
1165}
1166
1167static inline int
1168drv_post_channel_switch(struct ieee80211_link_data *link)
1169{
1170 struct ieee80211_sub_if_data *sdata = link->sdata;
1171 struct ieee80211_local *local = sdata->local;
1172 int ret = 0;
1173
1174 might_sleep();
1175 lockdep_assert_wiphy(local->hw.wiphy);
1176
1177 if (!check_sdata_in_driver(sdata))
1178 return -EIO;
1179
1180 if (!ieee80211_vif_link_active(&sdata->vif, link->link_id))
1181 return 0;
1182
1183 trace_drv_post_channel_switch(local, sdata);
1184 if (local->ops->post_channel_switch)
1185 ret = local->ops->post_channel_switch(&local->hw, &sdata->vif,
1186 link->conf);
1187 trace_drv_return_int(local, ret);
1188 return ret;
1189}
1190
1191static inline void
1192drv_abort_channel_switch(struct ieee80211_link_data *link)
1193{
1194 struct ieee80211_sub_if_data *sdata = link->sdata;
1195 struct ieee80211_local *local = sdata->local;
1196
1197 might_sleep();
1198 lockdep_assert_wiphy(local->hw.wiphy);
1199
1200 if (!check_sdata_in_driver(sdata))
1201 return;
1202
1203 if (!ieee80211_vif_link_active(&sdata->vif, link->link_id))
1204 return;
1205
1206 trace_drv_abort_channel_switch(local, sdata);
1207
1208 if (local->ops->abort_channel_switch)
1209 local->ops->abort_channel_switch(&local->hw, &sdata->vif,
1210 link->conf);
1211}
1212
1213static inline void
1214drv_channel_switch_rx_beacon(struct ieee80211_sub_if_data *sdata,
1215 struct ieee80211_channel_switch *ch_switch)
1216{
1217 struct ieee80211_local *local = sdata->local;
1218
1219 might_sleep();
1220 lockdep_assert_wiphy(local->hw.wiphy);
1221
1222 if (!check_sdata_in_driver(sdata))
1223 return;
1224
1225 if (!ieee80211_vif_link_active(&sdata->vif, ch_switch->link_id))
1226 return;
1227
1228 trace_drv_channel_switch_rx_beacon(local, sdata, ch_switch);
1229 if (local->ops->channel_switch_rx_beacon)
1230 local->ops->channel_switch_rx_beacon(&local->hw, &sdata->vif,
1231 ch_switch);
1232}
1233
1234static inline int drv_join_ibss(struct ieee80211_local *local,
1235 struct ieee80211_sub_if_data *sdata)
1236{
1237 int ret = 0;
1238
1239 might_sleep();
1240 lockdep_assert_wiphy(local->hw.wiphy);
1241 if (!check_sdata_in_driver(sdata))
1242 return -EIO;
1243
1244 trace_drv_join_ibss(local, sdata, &sdata->vif.bss_conf);
1245 if (local->ops->join_ibss)
1246 ret = local->ops->join_ibss(&local->hw, &sdata->vif);
1247 trace_drv_return_int(local, ret);
1248 return ret;
1249}
1250
1251static inline void drv_leave_ibss(struct ieee80211_local *local,
1252 struct ieee80211_sub_if_data *sdata)
1253{
1254 might_sleep();
1255 lockdep_assert_wiphy(local->hw.wiphy);
1256 if (!check_sdata_in_driver(sdata))
1257 return;
1258
1259 trace_drv_leave_ibss(local, sdata);
1260 if (local->ops->leave_ibss)
1261 local->ops->leave_ibss(&local->hw, &sdata->vif);
1262 trace_drv_return_void(local);
1263}
1264
1265static inline u32 drv_get_expected_throughput(struct ieee80211_local *local,
1266 struct sta_info *sta)
1267{
1268 u32 ret = 0;
1269
1270 trace_drv_get_expected_throughput(&sta->sta);
1271 if (local->ops->get_expected_throughput && sta->uploaded)
1272 ret = local->ops->get_expected_throughput(&local->hw, &sta->sta);
1273 trace_drv_return_u32(local, ret);
1274
1275 return ret;
1276}
1277
1278static inline int drv_get_txpower(struct ieee80211_local *local,
1279 struct ieee80211_sub_if_data *sdata, int *dbm)
1280{
1281 int ret;
1282
1283 might_sleep();
1284 lockdep_assert_wiphy(local->hw.wiphy);
1285
1286 if (!local->ops->get_txpower)
1287 return -EOPNOTSUPP;
1288
1289 ret = local->ops->get_txpower(&local->hw, &sdata->vif, dbm);
1290 trace_drv_get_txpower(local, sdata, *dbm, ret);
1291
1292 return ret;
1293}
1294
1295static inline int
1296drv_tdls_channel_switch(struct ieee80211_local *local,
1297 struct ieee80211_sub_if_data *sdata,
1298 struct ieee80211_sta *sta, u8 oper_class,
1299 struct cfg80211_chan_def *chandef,
1300 struct sk_buff *tmpl_skb, u32 ch_sw_tm_ie)
1301{
1302 int ret;
1303
1304 might_sleep();
1305 lockdep_assert_wiphy(local->hw.wiphy);
1306 if (!check_sdata_in_driver(sdata))
1307 return -EIO;
1308
1309 if (!local->ops->tdls_channel_switch)
1310 return -EOPNOTSUPP;
1311
1312 trace_drv_tdls_channel_switch(local, sdata, sta, oper_class, chandef);
1313 ret = local->ops->tdls_channel_switch(&local->hw, &sdata->vif, sta,
1314 oper_class, chandef, tmpl_skb,
1315 ch_sw_tm_ie);
1316 trace_drv_return_int(local, ret);
1317 return ret;
1318}
1319
1320static inline void
1321drv_tdls_cancel_channel_switch(struct ieee80211_local *local,
1322 struct ieee80211_sub_if_data *sdata,
1323 struct ieee80211_sta *sta)
1324{
1325 might_sleep();
1326 lockdep_assert_wiphy(local->hw.wiphy);
1327 if (!check_sdata_in_driver(sdata))
1328 return;
1329
1330 if (!local->ops->tdls_cancel_channel_switch)
1331 return;
1332
1333 trace_drv_tdls_cancel_channel_switch(local, sdata, sta);
1334 local->ops->tdls_cancel_channel_switch(&local->hw, &sdata->vif, sta);
1335 trace_drv_return_void(local);
1336}
1337
1338static inline void
1339drv_tdls_recv_channel_switch(struct ieee80211_local *local,
1340 struct ieee80211_sub_if_data *sdata,
1341 struct ieee80211_tdls_ch_sw_params *params)
1342{
1343 trace_drv_tdls_recv_channel_switch(local, sdata, params);
1344 if (local->ops->tdls_recv_channel_switch)
1345 local->ops->tdls_recv_channel_switch(&local->hw, &sdata->vif,
1346 params);
1347 trace_drv_return_void(local);
1348}
1349
1350static inline void drv_wake_tx_queue(struct ieee80211_local *local,
1351 struct txq_info *txq)
1352{
1353 struct ieee80211_sub_if_data *sdata = vif_to_sdata(txq->txq.vif);
1354
1355 /* In reconfig don't transmit now, but mark for waking later */
1356 if (local->in_reconfig) {
1357 set_bit(IEEE80211_TXQ_DIRTY, &txq->flags);
1358 return;
1359 }
1360
1361 if (!check_sdata_in_driver(sdata))
1362 return;
1363
1364 trace_drv_wake_tx_queue(local, sdata, txq);
1365 local->ops->wake_tx_queue(&local->hw, &txq->txq);
1366}
1367
1368static inline void schedule_and_wake_txq(struct ieee80211_local *local,
1369 struct txq_info *txqi)
1370{
1371 ieee80211_schedule_txq(&local->hw, &txqi->txq);
1372 drv_wake_tx_queue(local, txqi);
1373}
1374
1375static inline int drv_can_aggregate_in_amsdu(struct ieee80211_local *local,
1376 struct sk_buff *head,
1377 struct sk_buff *skb)
1378{
1379 if (!local->ops->can_aggregate_in_amsdu)
1380 return true;
1381
1382 return local->ops->can_aggregate_in_amsdu(&local->hw, head, skb);
1383}
1384
1385static inline int
1386drv_get_ftm_responder_stats(struct ieee80211_local *local,
1387 struct ieee80211_sub_if_data *sdata,
1388 struct cfg80211_ftm_responder_stats *ftm_stats)
1389{
1390 u32 ret = -EOPNOTSUPP;
1391
1392 might_sleep();
1393 lockdep_assert_wiphy(local->hw.wiphy);
1394 if (!check_sdata_in_driver(sdata))
1395 return -EIO;
1396
1397 if (local->ops->get_ftm_responder_stats)
1398 ret = local->ops->get_ftm_responder_stats(&local->hw,
1399 &sdata->vif,
1400 ftm_stats);
1401 trace_drv_get_ftm_responder_stats(local, sdata, ftm_stats);
1402
1403 return ret;
1404}
1405
1406static inline int drv_start_pmsr(struct ieee80211_local *local,
1407 struct ieee80211_sub_if_data *sdata,
1408 struct cfg80211_pmsr_request *request)
1409{
1410 int ret = -EOPNOTSUPP;
1411
1412 might_sleep();
1413 lockdep_assert_wiphy(local->hw.wiphy);
1414 if (!check_sdata_in_driver(sdata))
1415 return -EIO;
1416
1417 trace_drv_start_pmsr(local, sdata);
1418
1419 if (local->ops->start_pmsr)
1420 ret = local->ops->start_pmsr(&local->hw, &sdata->vif, request);
1421 trace_drv_return_int(local, ret);
1422
1423 return ret;
1424}
1425
1426static inline void drv_abort_pmsr(struct ieee80211_local *local,
1427 struct ieee80211_sub_if_data *sdata,
1428 struct cfg80211_pmsr_request *request)
1429{
1430 trace_drv_abort_pmsr(local, sdata);
1431
1432 might_sleep();
1433 lockdep_assert_wiphy(local->hw.wiphy);
1434 if (!check_sdata_in_driver(sdata))
1435 return;
1436
1437 if (local->ops->abort_pmsr)
1438 local->ops->abort_pmsr(&local->hw, &sdata->vif, request);
1439 trace_drv_return_void(local);
1440}
1441
1442static inline int drv_start_nan(struct ieee80211_local *local,
1443 struct ieee80211_sub_if_data *sdata,
1444 struct cfg80211_nan_conf *conf)
1445{
1446 int ret;
1447
1448 might_sleep();
1449 lockdep_assert_wiphy(local->hw.wiphy);
1450 check_sdata_in_driver(sdata);
1451
1452 trace_drv_start_nan(local, sdata, conf);
1453 ret = local->ops->start_nan(&local->hw, &sdata->vif, conf);
1454 trace_drv_return_int(local, ret);
1455 return ret;
1456}
1457
1458static inline void drv_stop_nan(struct ieee80211_local *local,
1459 struct ieee80211_sub_if_data *sdata)
1460{
1461 might_sleep();
1462 lockdep_assert_wiphy(local->hw.wiphy);
1463 check_sdata_in_driver(sdata);
1464
1465 trace_drv_stop_nan(local, sdata);
1466 local->ops->stop_nan(&local->hw, &sdata->vif);
1467 trace_drv_return_void(local);
1468}
1469
1470static inline int drv_nan_change_conf(struct ieee80211_local *local,
1471 struct ieee80211_sub_if_data *sdata,
1472 struct cfg80211_nan_conf *conf,
1473 u32 changes)
1474{
1475 int ret;
1476
1477 might_sleep();
1478 lockdep_assert_wiphy(local->hw.wiphy);
1479 check_sdata_in_driver(sdata);
1480
1481 if (!local->ops->nan_change_conf)
1482 return -EOPNOTSUPP;
1483
1484 trace_drv_nan_change_conf(local, sdata, conf, changes);
1485 ret = local->ops->nan_change_conf(&local->hw, &sdata->vif, conf,
1486 changes);
1487 trace_drv_return_int(local, ret);
1488
1489 return ret;
1490}
1491
1492static inline int drv_add_nan_func(struct ieee80211_local *local,
1493 struct ieee80211_sub_if_data *sdata,
1494 const struct cfg80211_nan_func *nan_func)
1495{
1496 int ret;
1497
1498 might_sleep();
1499 lockdep_assert_wiphy(local->hw.wiphy);
1500 check_sdata_in_driver(sdata);
1501
1502 if (!local->ops->add_nan_func)
1503 return -EOPNOTSUPP;
1504
1505 trace_drv_add_nan_func(local, sdata, nan_func);
1506 ret = local->ops->add_nan_func(&local->hw, &sdata->vif, nan_func);
1507 trace_drv_return_int(local, ret);
1508
1509 return ret;
1510}
1511
1512static inline void drv_del_nan_func(struct ieee80211_local *local,
1513 struct ieee80211_sub_if_data *sdata,
1514 u8 instance_id)
1515{
1516 might_sleep();
1517 lockdep_assert_wiphy(local->hw.wiphy);
1518 check_sdata_in_driver(sdata);
1519
1520 trace_drv_del_nan_func(local, sdata, instance_id);
1521 if (local->ops->del_nan_func)
1522 local->ops->del_nan_func(&local->hw, &sdata->vif, instance_id);
1523 trace_drv_return_void(local);
1524}
1525
1526static inline int drv_set_tid_config(struct ieee80211_local *local,
1527 struct ieee80211_sub_if_data *sdata,
1528 struct ieee80211_sta *sta,
1529 struct cfg80211_tid_config *tid_conf)
1530{
1531 int ret;
1532
1533 might_sleep();
1534 lockdep_assert_wiphy(local->hw.wiphy);
1535 ret = local->ops->set_tid_config(&local->hw, &sdata->vif, sta,
1536 tid_conf);
1537 trace_drv_return_int(local, ret);
1538
1539 return ret;
1540}
1541
1542static inline int drv_reset_tid_config(struct ieee80211_local *local,
1543 struct ieee80211_sub_if_data *sdata,
1544 struct ieee80211_sta *sta, u8 tids)
1545{
1546 int ret;
1547
1548 might_sleep();
1549 lockdep_assert_wiphy(local->hw.wiphy);
1550 ret = local->ops->reset_tid_config(&local->hw, &sdata->vif, sta, tids);
1551 trace_drv_return_int(local, ret);
1552
1553 return ret;
1554}
1555
1556static inline void drv_update_vif_offload(struct ieee80211_local *local,
1557 struct ieee80211_sub_if_data *sdata)
1558{
1559 might_sleep();
1560 lockdep_assert_wiphy(local->hw.wiphy);
1561 check_sdata_in_driver(sdata);
1562
1563 if (!local->ops->update_vif_offload)
1564 return;
1565
1566 trace_drv_update_vif_offload(local, sdata);
1567 local->ops->update_vif_offload(&local->hw, &sdata->vif);
1568 trace_drv_return_void(local);
1569}
1570
1571static inline void drv_sta_set_4addr(struct ieee80211_local *local,
1572 struct ieee80211_sub_if_data *sdata,
1573 struct ieee80211_sta *sta, bool enabled)
1574{
1575 sdata = get_bss_sdata(sdata);
1576
1577 might_sleep();
1578 lockdep_assert_wiphy(local->hw.wiphy);
1579 if (!check_sdata_in_driver(sdata))
1580 return;
1581
1582 trace_drv_sta_set_4addr(local, sdata, sta, enabled);
1583 if (local->ops->sta_set_4addr)
1584 local->ops->sta_set_4addr(&local->hw, &sdata->vif, sta, enabled);
1585 trace_drv_return_void(local);
1586}
1587
1588static inline void drv_sta_set_decap_offload(struct ieee80211_local *local,
1589 struct ieee80211_sub_if_data *sdata,
1590 struct ieee80211_sta *sta,
1591 bool enabled)
1592{
1593 sdata = get_bss_sdata(sdata);
1594
1595 might_sleep();
1596 lockdep_assert_wiphy(local->hw.wiphy);
1597 if (!check_sdata_in_driver(sdata))
1598 return;
1599
1600 trace_drv_sta_set_decap_offload(local, sdata, sta, enabled);
1601 if (local->ops->sta_set_decap_offload)
1602 local->ops->sta_set_decap_offload(&local->hw, &sdata->vif, sta,
1603 enabled);
1604 trace_drv_return_void(local);
1605}
1606
1607static inline void drv_add_twt_setup(struct ieee80211_local *local,
1608 struct ieee80211_sub_if_data *sdata,
1609 struct ieee80211_sta *sta,
1610 struct ieee80211_twt_setup *twt)
1611{
1612 struct ieee80211_twt_params *twt_agrt;
1613
1614 might_sleep();
1615 lockdep_assert_wiphy(local->hw.wiphy);
1616
1617 if (!check_sdata_in_driver(sdata))
1618 return;
1619
1620 twt_agrt = (void *)twt->params;
1621
1622 trace_drv_add_twt_setup(local, sta, twt, twt_agrt);
1623 local->ops->add_twt_setup(&local->hw, sta, twt);
1624 trace_drv_return_void(local);
1625}
1626
1627static inline void drv_twt_teardown_request(struct ieee80211_local *local,
1628 struct ieee80211_sub_if_data *sdata,
1629 struct ieee80211_sta *sta,
1630 u8 flowid)
1631{
1632 might_sleep();
1633 lockdep_assert_wiphy(local->hw.wiphy);
1634 if (!check_sdata_in_driver(sdata))
1635 return;
1636
1637 if (!local->ops->twt_teardown_request)
1638 return;
1639
1640 trace_drv_twt_teardown_request(local, sta, flowid);
1641 local->ops->twt_teardown_request(&local->hw, sta, flowid);
1642 trace_drv_return_void(local);
1643}
1644
1645static inline int drv_net_fill_forward_path(struct ieee80211_local *local,
1646 struct ieee80211_sub_if_data *sdata,
1647 struct ieee80211_sta *sta,
1648 struct net_device_path_ctx *ctx,
1649 struct net_device_path *path)
1650{
1651 int ret = -EOPNOTSUPP;
1652
1653 sdata = get_bss_sdata(sdata);
1654 if (!check_sdata_in_driver(sdata))
1655 return -EIO;
1656
1657 trace_drv_net_fill_forward_path(local, sdata, sta);
1658 if (local->ops->net_fill_forward_path)
1659 ret = local->ops->net_fill_forward_path(&local->hw,
1660 &sdata->vif, sta,
1661 ctx, path);
1662 trace_drv_return_int(local, ret);
1663
1664 return ret;
1665}
1666
1667static inline int drv_net_setup_tc(struct ieee80211_local *local,
1668 struct ieee80211_sub_if_data *sdata,
1669 struct net_device *dev,
1670 enum tc_setup_type type, void *type_data)
1671{
1672 int ret = -EOPNOTSUPP;
1673
1674 might_sleep();
1675
1676 sdata = get_bss_sdata(sdata);
1677 trace_drv_net_setup_tc(local, sdata, type);
1678 if (local->ops->net_setup_tc)
1679 ret = local->ops->net_setup_tc(&local->hw, &sdata->vif, dev,
1680 type, type_data);
1681 trace_drv_return_int(local, ret);
1682
1683 return ret;
1684}
1685
1686static inline bool drv_can_activate_links(struct ieee80211_local *local,
1687 struct ieee80211_sub_if_data *sdata,
1688 u16 active_links)
1689{
1690 bool ret = true;
1691
1692 lockdep_assert_wiphy(local->hw.wiphy);
1693
1694 if (!check_sdata_in_driver(sdata))
1695 return false;
1696
1697 trace_drv_can_activate_links(local, sdata, active_links);
1698 if (local->ops->can_activate_links)
1699 ret = local->ops->can_activate_links(&local->hw, &sdata->vif,
1700 active_links);
1701 trace_drv_return_bool(local, ret);
1702
1703 return ret;
1704}
1705
1706int drv_change_vif_links(struct ieee80211_local *local,
1707 struct ieee80211_sub_if_data *sdata,
1708 u16 old_links, u16 new_links,
1709 struct ieee80211_bss_conf *old[IEEE80211_MLD_MAX_NUM_LINKS]);
1710int drv_change_sta_links(struct ieee80211_local *local,
1711 struct ieee80211_sub_if_data *sdata,
1712 struct ieee80211_sta *sta,
1713 u16 old_links, u16 new_links);
1714
1715static inline enum ieee80211_neg_ttlm_res
1716drv_can_neg_ttlm(struct ieee80211_local *local,
1717 struct ieee80211_sub_if_data *sdata,
1718 struct ieee80211_neg_ttlm *neg_ttlm)
1719{
1720 enum ieee80211_neg_ttlm_res res = NEG_TTLM_RES_REJECT;
1721
1722 might_sleep();
1723 if (!check_sdata_in_driver(sdata))
1724 return -EIO;
1725
1726 trace_drv_can_neg_ttlm(local, sdata, neg_ttlm);
1727 if (local->ops->can_neg_ttlm)
1728 res = local->ops->can_neg_ttlm(&local->hw, &sdata->vif,
1729 neg_ttlm);
1730 trace_drv_neg_ttlm_res(local, sdata, res, neg_ttlm);
1731
1732 return res;
1733}
1734
1735static inline void
1736drv_prep_add_interface(struct ieee80211_local *local,
1737 enum nl80211_iftype type)
1738{
1739 trace_drv_prep_add_interface(local, type);
1740 if (local->ops->prep_add_interface)
1741 local->ops->prep_add_interface(&local->hw, type);
1742
1743 trace_drv_return_void(local);
1744}
1745
1746#endif /* __MAC80211_DRIVER_OPS */
1#ifndef __MAC80211_DRIVER_OPS
2#define __MAC80211_DRIVER_OPS
3
4#include <net/mac80211.h>
5#include "ieee80211_i.h"
6#include "trace.h"
7
8static inline bool check_sdata_in_driver(struct ieee80211_sub_if_data *sdata)
9{
10 return !WARN(!(sdata->flags & IEEE80211_SDATA_IN_DRIVER),
11 "%s: Failed check-sdata-in-driver check, flags: 0x%x\n",
12 sdata->dev ? sdata->dev->name : sdata->name, sdata->flags);
13}
14
15static inline struct ieee80211_sub_if_data *
16get_bss_sdata(struct ieee80211_sub_if_data *sdata)
17{
18 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
19 sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
20 u.ap);
21
22 return sdata;
23}
24
25static inline void drv_tx(struct ieee80211_local *local,
26 struct ieee80211_tx_control *control,
27 struct sk_buff *skb)
28{
29 local->ops->tx(&local->hw, control, skb);
30}
31
32static inline void drv_get_et_strings(struct ieee80211_sub_if_data *sdata,
33 u32 sset, u8 *data)
34{
35 struct ieee80211_local *local = sdata->local;
36 if (local->ops->get_et_strings) {
37 trace_drv_get_et_strings(local, sset);
38 local->ops->get_et_strings(&local->hw, &sdata->vif, sset, data);
39 trace_drv_return_void(local);
40 }
41}
42
43static inline void drv_get_et_stats(struct ieee80211_sub_if_data *sdata,
44 struct ethtool_stats *stats,
45 u64 *data)
46{
47 struct ieee80211_local *local = sdata->local;
48 if (local->ops->get_et_stats) {
49 trace_drv_get_et_stats(local);
50 local->ops->get_et_stats(&local->hw, &sdata->vif, stats, data);
51 trace_drv_return_void(local);
52 }
53}
54
55static inline int drv_get_et_sset_count(struct ieee80211_sub_if_data *sdata,
56 int sset)
57{
58 struct ieee80211_local *local = sdata->local;
59 int rv = 0;
60 if (local->ops->get_et_sset_count) {
61 trace_drv_get_et_sset_count(local, sset);
62 rv = local->ops->get_et_sset_count(&local->hw, &sdata->vif,
63 sset);
64 trace_drv_return_int(local, rv);
65 }
66 return rv;
67}
68
69int drv_start(struct ieee80211_local *local);
70void drv_stop(struct ieee80211_local *local);
71
72#ifdef CONFIG_PM
73static inline int drv_suspend(struct ieee80211_local *local,
74 struct cfg80211_wowlan *wowlan)
75{
76 int ret;
77
78 might_sleep();
79
80 trace_drv_suspend(local);
81 ret = local->ops->suspend(&local->hw, wowlan);
82 trace_drv_return_int(local, ret);
83 return ret;
84}
85
86static inline int drv_resume(struct ieee80211_local *local)
87{
88 int ret;
89
90 might_sleep();
91
92 trace_drv_resume(local);
93 ret = local->ops->resume(&local->hw);
94 trace_drv_return_int(local, ret);
95 return ret;
96}
97
98static inline void drv_set_wakeup(struct ieee80211_local *local,
99 bool enabled)
100{
101 might_sleep();
102
103 if (!local->ops->set_wakeup)
104 return;
105
106 trace_drv_set_wakeup(local, enabled);
107 local->ops->set_wakeup(&local->hw, enabled);
108 trace_drv_return_void(local);
109}
110#endif
111
112int drv_add_interface(struct ieee80211_local *local,
113 struct ieee80211_sub_if_data *sdata);
114
115int drv_change_interface(struct ieee80211_local *local,
116 struct ieee80211_sub_if_data *sdata,
117 enum nl80211_iftype type, bool p2p);
118
119void drv_remove_interface(struct ieee80211_local *local,
120 struct ieee80211_sub_if_data *sdata);
121
122static inline int drv_config(struct ieee80211_local *local, u32 changed)
123{
124 int ret;
125
126 might_sleep();
127
128 trace_drv_config(local, changed);
129 ret = local->ops->config(&local->hw, changed);
130 trace_drv_return_int(local, ret);
131 return ret;
132}
133
134static inline void drv_bss_info_changed(struct ieee80211_local *local,
135 struct ieee80211_sub_if_data *sdata,
136 struct ieee80211_bss_conf *info,
137 u32 changed)
138{
139 might_sleep();
140
141 if (WARN_ON_ONCE(changed & (BSS_CHANGED_BEACON |
142 BSS_CHANGED_BEACON_ENABLED) &&
143 sdata->vif.type != NL80211_IFTYPE_AP &&
144 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
145 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
146 sdata->vif.type != NL80211_IFTYPE_OCB))
147 return;
148
149 if (WARN_ON_ONCE(sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE ||
150 sdata->vif.type == NL80211_IFTYPE_MONITOR))
151 return;
152
153 if (!check_sdata_in_driver(sdata))
154 return;
155
156 trace_drv_bss_info_changed(local, sdata, info, changed);
157 if (local->ops->bss_info_changed)
158 local->ops->bss_info_changed(&local->hw, &sdata->vif, info, changed);
159 trace_drv_return_void(local);
160}
161
162static inline u64 drv_prepare_multicast(struct ieee80211_local *local,
163 struct netdev_hw_addr_list *mc_list)
164{
165 u64 ret = 0;
166
167 trace_drv_prepare_multicast(local, mc_list->count);
168
169 if (local->ops->prepare_multicast)
170 ret = local->ops->prepare_multicast(&local->hw, mc_list);
171
172 trace_drv_return_u64(local, ret);
173
174 return ret;
175}
176
177static inline void drv_configure_filter(struct ieee80211_local *local,
178 unsigned int changed_flags,
179 unsigned int *total_flags,
180 u64 multicast)
181{
182 might_sleep();
183
184 trace_drv_configure_filter(local, changed_flags, total_flags,
185 multicast);
186 local->ops->configure_filter(&local->hw, changed_flags, total_flags,
187 multicast);
188 trace_drv_return_void(local);
189}
190
191static inline void drv_config_iface_filter(struct ieee80211_local *local,
192 struct ieee80211_sub_if_data *sdata,
193 unsigned int filter_flags,
194 unsigned int changed_flags)
195{
196 might_sleep();
197
198 trace_drv_config_iface_filter(local, sdata, filter_flags,
199 changed_flags);
200 if (local->ops->config_iface_filter)
201 local->ops->config_iface_filter(&local->hw, &sdata->vif,
202 filter_flags,
203 changed_flags);
204 trace_drv_return_void(local);
205}
206
207static inline int drv_set_tim(struct ieee80211_local *local,
208 struct ieee80211_sta *sta, bool set)
209{
210 int ret = 0;
211 trace_drv_set_tim(local, sta, set);
212 if (local->ops->set_tim)
213 ret = local->ops->set_tim(&local->hw, sta, set);
214 trace_drv_return_int(local, ret);
215 return ret;
216}
217
218static inline int drv_set_key(struct ieee80211_local *local,
219 enum set_key_cmd cmd,
220 struct ieee80211_sub_if_data *sdata,
221 struct ieee80211_sta *sta,
222 struct ieee80211_key_conf *key)
223{
224 int ret;
225
226 might_sleep();
227
228 sdata = get_bss_sdata(sdata);
229 if (!check_sdata_in_driver(sdata))
230 return -EIO;
231
232 trace_drv_set_key(local, cmd, sdata, sta, key);
233 ret = local->ops->set_key(&local->hw, cmd, &sdata->vif, sta, key);
234 trace_drv_return_int(local, ret);
235 return ret;
236}
237
238static inline void drv_update_tkip_key(struct ieee80211_local *local,
239 struct ieee80211_sub_if_data *sdata,
240 struct ieee80211_key_conf *conf,
241 struct sta_info *sta, u32 iv32,
242 u16 *phase1key)
243{
244 struct ieee80211_sta *ista = NULL;
245
246 if (sta)
247 ista = &sta->sta;
248
249 sdata = get_bss_sdata(sdata);
250 if (!check_sdata_in_driver(sdata))
251 return;
252
253 trace_drv_update_tkip_key(local, sdata, conf, ista, iv32);
254 if (local->ops->update_tkip_key)
255 local->ops->update_tkip_key(&local->hw, &sdata->vif, conf,
256 ista, iv32, phase1key);
257 trace_drv_return_void(local);
258}
259
260static inline int drv_hw_scan(struct ieee80211_local *local,
261 struct ieee80211_sub_if_data *sdata,
262 struct ieee80211_scan_request *req)
263{
264 int ret;
265
266 might_sleep();
267
268 if (!check_sdata_in_driver(sdata))
269 return -EIO;
270
271 trace_drv_hw_scan(local, sdata);
272 ret = local->ops->hw_scan(&local->hw, &sdata->vif, req);
273 trace_drv_return_int(local, ret);
274 return ret;
275}
276
277static inline void drv_cancel_hw_scan(struct ieee80211_local *local,
278 struct ieee80211_sub_if_data *sdata)
279{
280 might_sleep();
281
282 if (!check_sdata_in_driver(sdata))
283 return;
284
285 trace_drv_cancel_hw_scan(local, sdata);
286 local->ops->cancel_hw_scan(&local->hw, &sdata->vif);
287 trace_drv_return_void(local);
288}
289
290static inline int
291drv_sched_scan_start(struct ieee80211_local *local,
292 struct ieee80211_sub_if_data *sdata,
293 struct cfg80211_sched_scan_request *req,
294 struct ieee80211_scan_ies *ies)
295{
296 int ret;
297
298 might_sleep();
299
300 if (!check_sdata_in_driver(sdata))
301 return -EIO;
302
303 trace_drv_sched_scan_start(local, sdata);
304 ret = local->ops->sched_scan_start(&local->hw, &sdata->vif,
305 req, ies);
306 trace_drv_return_int(local, ret);
307 return ret;
308}
309
310static inline int drv_sched_scan_stop(struct ieee80211_local *local,
311 struct ieee80211_sub_if_data *sdata)
312{
313 int ret;
314
315 might_sleep();
316
317 if (!check_sdata_in_driver(sdata))
318 return -EIO;
319
320 trace_drv_sched_scan_stop(local, sdata);
321 ret = local->ops->sched_scan_stop(&local->hw, &sdata->vif);
322 trace_drv_return_int(local, ret);
323
324 return ret;
325}
326
327static inline void drv_sw_scan_start(struct ieee80211_local *local,
328 struct ieee80211_sub_if_data *sdata,
329 const u8 *mac_addr)
330{
331 might_sleep();
332
333 trace_drv_sw_scan_start(local, sdata, mac_addr);
334 if (local->ops->sw_scan_start)
335 local->ops->sw_scan_start(&local->hw, &sdata->vif, mac_addr);
336 trace_drv_return_void(local);
337}
338
339static inline void drv_sw_scan_complete(struct ieee80211_local *local,
340 struct ieee80211_sub_if_data *sdata)
341{
342 might_sleep();
343
344 trace_drv_sw_scan_complete(local, sdata);
345 if (local->ops->sw_scan_complete)
346 local->ops->sw_scan_complete(&local->hw, &sdata->vif);
347 trace_drv_return_void(local);
348}
349
350static inline int drv_get_stats(struct ieee80211_local *local,
351 struct ieee80211_low_level_stats *stats)
352{
353 int ret = -EOPNOTSUPP;
354
355 might_sleep();
356
357 if (local->ops->get_stats)
358 ret = local->ops->get_stats(&local->hw, stats);
359 trace_drv_get_stats(local, stats, ret);
360
361 return ret;
362}
363
364static inline void drv_get_key_seq(struct ieee80211_local *local,
365 struct ieee80211_key *key,
366 struct ieee80211_key_seq *seq)
367{
368 if (local->ops->get_key_seq)
369 local->ops->get_key_seq(&local->hw, &key->conf, seq);
370 trace_drv_get_key_seq(local, &key->conf);
371}
372
373static inline int drv_set_frag_threshold(struct ieee80211_local *local,
374 u32 value)
375{
376 int ret = 0;
377
378 might_sleep();
379
380 trace_drv_set_frag_threshold(local, value);
381 if (local->ops->set_frag_threshold)
382 ret = local->ops->set_frag_threshold(&local->hw, value);
383 trace_drv_return_int(local, ret);
384 return ret;
385}
386
387static inline int drv_set_rts_threshold(struct ieee80211_local *local,
388 u32 value)
389{
390 int ret = 0;
391
392 might_sleep();
393
394 trace_drv_set_rts_threshold(local, value);
395 if (local->ops->set_rts_threshold)
396 ret = local->ops->set_rts_threshold(&local->hw, value);
397 trace_drv_return_int(local, ret);
398 return ret;
399}
400
401static inline int drv_set_coverage_class(struct ieee80211_local *local,
402 s16 value)
403{
404 int ret = 0;
405 might_sleep();
406
407 trace_drv_set_coverage_class(local, value);
408 if (local->ops->set_coverage_class)
409 local->ops->set_coverage_class(&local->hw, value);
410 else
411 ret = -EOPNOTSUPP;
412
413 trace_drv_return_int(local, ret);
414 return ret;
415}
416
417static inline void drv_sta_notify(struct ieee80211_local *local,
418 struct ieee80211_sub_if_data *sdata,
419 enum sta_notify_cmd cmd,
420 struct ieee80211_sta *sta)
421{
422 sdata = get_bss_sdata(sdata);
423 if (!check_sdata_in_driver(sdata))
424 return;
425
426 trace_drv_sta_notify(local, sdata, cmd, sta);
427 if (local->ops->sta_notify)
428 local->ops->sta_notify(&local->hw, &sdata->vif, cmd, sta);
429 trace_drv_return_void(local);
430}
431
432static inline int drv_sta_add(struct ieee80211_local *local,
433 struct ieee80211_sub_if_data *sdata,
434 struct ieee80211_sta *sta)
435{
436 int ret = 0;
437
438 might_sleep();
439
440 sdata = get_bss_sdata(sdata);
441 if (!check_sdata_in_driver(sdata))
442 return -EIO;
443
444 trace_drv_sta_add(local, sdata, sta);
445 if (local->ops->sta_add)
446 ret = local->ops->sta_add(&local->hw, &sdata->vif, sta);
447
448 trace_drv_return_int(local, ret);
449
450 return ret;
451}
452
453static inline void drv_sta_remove(struct ieee80211_local *local,
454 struct ieee80211_sub_if_data *sdata,
455 struct ieee80211_sta *sta)
456{
457 might_sleep();
458
459 sdata = get_bss_sdata(sdata);
460 if (!check_sdata_in_driver(sdata))
461 return;
462
463 trace_drv_sta_remove(local, sdata, sta);
464 if (local->ops->sta_remove)
465 local->ops->sta_remove(&local->hw, &sdata->vif, sta);
466
467 trace_drv_return_void(local);
468}
469
470#ifdef CONFIG_MAC80211_DEBUGFS
471static inline void drv_sta_add_debugfs(struct ieee80211_local *local,
472 struct ieee80211_sub_if_data *sdata,
473 struct ieee80211_sta *sta,
474 struct dentry *dir)
475{
476 might_sleep();
477
478 sdata = get_bss_sdata(sdata);
479 if (!check_sdata_in_driver(sdata))
480 return;
481
482 if (local->ops->sta_add_debugfs)
483 local->ops->sta_add_debugfs(&local->hw, &sdata->vif,
484 sta, dir);
485}
486
487static inline void drv_sta_remove_debugfs(struct ieee80211_local *local,
488 struct ieee80211_sub_if_data *sdata,
489 struct ieee80211_sta *sta,
490 struct dentry *dir)
491{
492 might_sleep();
493
494 sdata = get_bss_sdata(sdata);
495 check_sdata_in_driver(sdata);
496
497 if (local->ops->sta_remove_debugfs)
498 local->ops->sta_remove_debugfs(&local->hw, &sdata->vif,
499 sta, dir);
500}
501#endif
502
503static inline void drv_sta_pre_rcu_remove(struct ieee80211_local *local,
504 struct ieee80211_sub_if_data *sdata,
505 struct sta_info *sta)
506{
507 might_sleep();
508
509 sdata = get_bss_sdata(sdata);
510 if (!check_sdata_in_driver(sdata))
511 return;
512
513 trace_drv_sta_pre_rcu_remove(local, sdata, &sta->sta);
514 if (local->ops->sta_pre_rcu_remove)
515 local->ops->sta_pre_rcu_remove(&local->hw, &sdata->vif,
516 &sta->sta);
517 trace_drv_return_void(local);
518}
519
520__must_check
521int drv_sta_state(struct ieee80211_local *local,
522 struct ieee80211_sub_if_data *sdata,
523 struct sta_info *sta,
524 enum ieee80211_sta_state old_state,
525 enum ieee80211_sta_state new_state);
526
527void drv_sta_rc_update(struct ieee80211_local *local,
528 struct ieee80211_sub_if_data *sdata,
529 struct ieee80211_sta *sta, u32 changed);
530
531static inline void drv_sta_rate_tbl_update(struct ieee80211_local *local,
532 struct ieee80211_sub_if_data *sdata,
533 struct ieee80211_sta *sta)
534{
535 sdata = get_bss_sdata(sdata);
536 if (!check_sdata_in_driver(sdata))
537 return;
538
539 trace_drv_sta_rate_tbl_update(local, sdata, sta);
540 if (local->ops->sta_rate_tbl_update)
541 local->ops->sta_rate_tbl_update(&local->hw, &sdata->vif, sta);
542
543 trace_drv_return_void(local);
544}
545
546static inline void drv_sta_statistics(struct ieee80211_local *local,
547 struct ieee80211_sub_if_data *sdata,
548 struct ieee80211_sta *sta,
549 struct station_info *sinfo)
550{
551 sdata = get_bss_sdata(sdata);
552 if (!check_sdata_in_driver(sdata))
553 return;
554
555 trace_drv_sta_statistics(local, sdata, sta);
556 if (local->ops->sta_statistics)
557 local->ops->sta_statistics(&local->hw, &sdata->vif, sta, sinfo);
558 trace_drv_return_void(local);
559}
560
561int drv_conf_tx(struct ieee80211_local *local,
562 struct ieee80211_sub_if_data *sdata, u16 ac,
563 const struct ieee80211_tx_queue_params *params);
564
565u64 drv_get_tsf(struct ieee80211_local *local,
566 struct ieee80211_sub_if_data *sdata);
567void drv_set_tsf(struct ieee80211_local *local,
568 struct ieee80211_sub_if_data *sdata,
569 u64 tsf);
570void drv_reset_tsf(struct ieee80211_local *local,
571 struct ieee80211_sub_if_data *sdata);
572
573static inline int drv_tx_last_beacon(struct ieee80211_local *local)
574{
575 int ret = 0; /* default unsupported op for less congestion */
576
577 might_sleep();
578
579 trace_drv_tx_last_beacon(local);
580 if (local->ops->tx_last_beacon)
581 ret = local->ops->tx_last_beacon(&local->hw);
582 trace_drv_return_int(local, ret);
583 return ret;
584}
585
586int drv_ampdu_action(struct ieee80211_local *local,
587 struct ieee80211_sub_if_data *sdata,
588 struct ieee80211_ampdu_params *params);
589
590static inline int drv_get_survey(struct ieee80211_local *local, int idx,
591 struct survey_info *survey)
592{
593 int ret = -EOPNOTSUPP;
594
595 trace_drv_get_survey(local, idx, survey);
596
597 if (local->ops->get_survey)
598 ret = local->ops->get_survey(&local->hw, idx, survey);
599
600 trace_drv_return_int(local, ret);
601
602 return ret;
603}
604
605static inline void drv_rfkill_poll(struct ieee80211_local *local)
606{
607 might_sleep();
608
609 if (local->ops->rfkill_poll)
610 local->ops->rfkill_poll(&local->hw);
611}
612
613static inline void drv_flush(struct ieee80211_local *local,
614 struct ieee80211_sub_if_data *sdata,
615 u32 queues, bool drop)
616{
617 struct ieee80211_vif *vif = sdata ? &sdata->vif : NULL;
618
619 might_sleep();
620
621 if (sdata && !check_sdata_in_driver(sdata))
622 return;
623
624 trace_drv_flush(local, queues, drop);
625 if (local->ops->flush)
626 local->ops->flush(&local->hw, vif, queues, drop);
627 trace_drv_return_void(local);
628}
629
630static inline void drv_channel_switch(struct ieee80211_local *local,
631 struct ieee80211_sub_if_data *sdata,
632 struct ieee80211_channel_switch *ch_switch)
633{
634 might_sleep();
635
636 trace_drv_channel_switch(local, sdata, ch_switch);
637 local->ops->channel_switch(&local->hw, &sdata->vif, ch_switch);
638 trace_drv_return_void(local);
639}
640
641
642static inline int drv_set_antenna(struct ieee80211_local *local,
643 u32 tx_ant, u32 rx_ant)
644{
645 int ret = -EOPNOTSUPP;
646 might_sleep();
647 if (local->ops->set_antenna)
648 ret = local->ops->set_antenna(&local->hw, tx_ant, rx_ant);
649 trace_drv_set_antenna(local, tx_ant, rx_ant, ret);
650 return ret;
651}
652
653static inline int drv_get_antenna(struct ieee80211_local *local,
654 u32 *tx_ant, u32 *rx_ant)
655{
656 int ret = -EOPNOTSUPP;
657 might_sleep();
658 if (local->ops->get_antenna)
659 ret = local->ops->get_antenna(&local->hw, tx_ant, rx_ant);
660 trace_drv_get_antenna(local, *tx_ant, *rx_ant, ret);
661 return ret;
662}
663
664static inline int drv_remain_on_channel(struct ieee80211_local *local,
665 struct ieee80211_sub_if_data *sdata,
666 struct ieee80211_channel *chan,
667 unsigned int duration,
668 enum ieee80211_roc_type type)
669{
670 int ret;
671
672 might_sleep();
673
674 trace_drv_remain_on_channel(local, sdata, chan, duration, type);
675 ret = local->ops->remain_on_channel(&local->hw, &sdata->vif,
676 chan, duration, type);
677 trace_drv_return_int(local, ret);
678
679 return ret;
680}
681
682static inline int drv_cancel_remain_on_channel(struct ieee80211_local *local)
683{
684 int ret;
685
686 might_sleep();
687
688 trace_drv_cancel_remain_on_channel(local);
689 ret = local->ops->cancel_remain_on_channel(&local->hw);
690 trace_drv_return_int(local, ret);
691
692 return ret;
693}
694
695static inline int drv_set_ringparam(struct ieee80211_local *local,
696 u32 tx, u32 rx)
697{
698 int ret = -ENOTSUPP;
699
700 might_sleep();
701
702 trace_drv_set_ringparam(local, tx, rx);
703 if (local->ops->set_ringparam)
704 ret = local->ops->set_ringparam(&local->hw, tx, rx);
705 trace_drv_return_int(local, ret);
706
707 return ret;
708}
709
710static inline void drv_get_ringparam(struct ieee80211_local *local,
711 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max)
712{
713 might_sleep();
714
715 trace_drv_get_ringparam(local, tx, tx_max, rx, rx_max);
716 if (local->ops->get_ringparam)
717 local->ops->get_ringparam(&local->hw, tx, tx_max, rx, rx_max);
718 trace_drv_return_void(local);
719}
720
721static inline bool drv_tx_frames_pending(struct ieee80211_local *local)
722{
723 bool ret = false;
724
725 might_sleep();
726
727 trace_drv_tx_frames_pending(local);
728 if (local->ops->tx_frames_pending)
729 ret = local->ops->tx_frames_pending(&local->hw);
730 trace_drv_return_bool(local, ret);
731
732 return ret;
733}
734
735static inline int drv_set_bitrate_mask(struct ieee80211_local *local,
736 struct ieee80211_sub_if_data *sdata,
737 const struct cfg80211_bitrate_mask *mask)
738{
739 int ret = -EOPNOTSUPP;
740
741 might_sleep();
742
743 if (!check_sdata_in_driver(sdata))
744 return -EIO;
745
746 trace_drv_set_bitrate_mask(local, sdata, mask);
747 if (local->ops->set_bitrate_mask)
748 ret = local->ops->set_bitrate_mask(&local->hw,
749 &sdata->vif, mask);
750 trace_drv_return_int(local, ret);
751
752 return ret;
753}
754
755static inline void drv_set_rekey_data(struct ieee80211_local *local,
756 struct ieee80211_sub_if_data *sdata,
757 struct cfg80211_gtk_rekey_data *data)
758{
759 if (!check_sdata_in_driver(sdata))
760 return;
761
762 trace_drv_set_rekey_data(local, sdata, data);
763 if (local->ops->set_rekey_data)
764 local->ops->set_rekey_data(&local->hw, &sdata->vif, data);
765 trace_drv_return_void(local);
766}
767
768static inline void drv_event_callback(struct ieee80211_local *local,
769 struct ieee80211_sub_if_data *sdata,
770 const struct ieee80211_event *event)
771{
772 trace_drv_event_callback(local, sdata, event);
773 if (local->ops->event_callback)
774 local->ops->event_callback(&local->hw, &sdata->vif, event);
775 trace_drv_return_void(local);
776}
777
778static inline void
779drv_release_buffered_frames(struct ieee80211_local *local,
780 struct sta_info *sta, u16 tids, int num_frames,
781 enum ieee80211_frame_release_type reason,
782 bool more_data)
783{
784 trace_drv_release_buffered_frames(local, &sta->sta, tids, num_frames,
785 reason, more_data);
786 if (local->ops->release_buffered_frames)
787 local->ops->release_buffered_frames(&local->hw, &sta->sta, tids,
788 num_frames, reason,
789 more_data);
790 trace_drv_return_void(local);
791}
792
793static inline void
794drv_allow_buffered_frames(struct ieee80211_local *local,
795 struct sta_info *sta, u16 tids, int num_frames,
796 enum ieee80211_frame_release_type reason,
797 bool more_data)
798{
799 trace_drv_allow_buffered_frames(local, &sta->sta, tids, num_frames,
800 reason, more_data);
801 if (local->ops->allow_buffered_frames)
802 local->ops->allow_buffered_frames(&local->hw, &sta->sta,
803 tids, num_frames, reason,
804 more_data);
805 trace_drv_return_void(local);
806}
807
808static inline void drv_mgd_prepare_tx(struct ieee80211_local *local,
809 struct ieee80211_sub_if_data *sdata)
810{
811 might_sleep();
812
813 if (!check_sdata_in_driver(sdata))
814 return;
815 WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION);
816
817 trace_drv_mgd_prepare_tx(local, sdata);
818 if (local->ops->mgd_prepare_tx)
819 local->ops->mgd_prepare_tx(&local->hw, &sdata->vif);
820 trace_drv_return_void(local);
821}
822
823static inline void
824drv_mgd_protect_tdls_discover(struct ieee80211_local *local,
825 struct ieee80211_sub_if_data *sdata)
826{
827 might_sleep();
828
829 if (!check_sdata_in_driver(sdata))
830 return;
831 WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION);
832
833 trace_drv_mgd_protect_tdls_discover(local, sdata);
834 if (local->ops->mgd_protect_tdls_discover)
835 local->ops->mgd_protect_tdls_discover(&local->hw, &sdata->vif);
836 trace_drv_return_void(local);
837}
838
839static inline int drv_add_chanctx(struct ieee80211_local *local,
840 struct ieee80211_chanctx *ctx)
841{
842 int ret = -EOPNOTSUPP;
843
844 might_sleep();
845
846 trace_drv_add_chanctx(local, ctx);
847 if (local->ops->add_chanctx)
848 ret = local->ops->add_chanctx(&local->hw, &ctx->conf);
849 trace_drv_return_int(local, ret);
850 if (!ret)
851 ctx->driver_present = true;
852
853 return ret;
854}
855
856static inline void drv_remove_chanctx(struct ieee80211_local *local,
857 struct ieee80211_chanctx *ctx)
858{
859 might_sleep();
860
861 if (WARN_ON(!ctx->driver_present))
862 return;
863
864 trace_drv_remove_chanctx(local, ctx);
865 if (local->ops->remove_chanctx)
866 local->ops->remove_chanctx(&local->hw, &ctx->conf);
867 trace_drv_return_void(local);
868 ctx->driver_present = false;
869}
870
871static inline void drv_change_chanctx(struct ieee80211_local *local,
872 struct ieee80211_chanctx *ctx,
873 u32 changed)
874{
875 might_sleep();
876
877 trace_drv_change_chanctx(local, ctx, changed);
878 if (local->ops->change_chanctx) {
879 WARN_ON_ONCE(!ctx->driver_present);
880 local->ops->change_chanctx(&local->hw, &ctx->conf, changed);
881 }
882 trace_drv_return_void(local);
883}
884
885static inline int drv_assign_vif_chanctx(struct ieee80211_local *local,
886 struct ieee80211_sub_if_data *sdata,
887 struct ieee80211_chanctx *ctx)
888{
889 int ret = 0;
890
891 if (!check_sdata_in_driver(sdata))
892 return -EIO;
893
894 trace_drv_assign_vif_chanctx(local, sdata, ctx);
895 if (local->ops->assign_vif_chanctx) {
896 WARN_ON_ONCE(!ctx->driver_present);
897 ret = local->ops->assign_vif_chanctx(&local->hw,
898 &sdata->vif,
899 &ctx->conf);
900 }
901 trace_drv_return_int(local, ret);
902
903 return ret;
904}
905
906static inline void drv_unassign_vif_chanctx(struct ieee80211_local *local,
907 struct ieee80211_sub_if_data *sdata,
908 struct ieee80211_chanctx *ctx)
909{
910 might_sleep();
911
912 if (!check_sdata_in_driver(sdata))
913 return;
914
915 trace_drv_unassign_vif_chanctx(local, sdata, ctx);
916 if (local->ops->unassign_vif_chanctx) {
917 WARN_ON_ONCE(!ctx->driver_present);
918 local->ops->unassign_vif_chanctx(&local->hw,
919 &sdata->vif,
920 &ctx->conf);
921 }
922 trace_drv_return_void(local);
923}
924
925int drv_switch_vif_chanctx(struct ieee80211_local *local,
926 struct ieee80211_vif_chanctx_switch *vifs,
927 int n_vifs, enum ieee80211_chanctx_switch_mode mode);
928
929static inline int drv_start_ap(struct ieee80211_local *local,
930 struct ieee80211_sub_if_data *sdata)
931{
932 int ret = 0;
933
934 might_sleep();
935
936 if (!check_sdata_in_driver(sdata))
937 return -EIO;
938
939 trace_drv_start_ap(local, sdata, &sdata->vif.bss_conf);
940 if (local->ops->start_ap)
941 ret = local->ops->start_ap(&local->hw, &sdata->vif);
942 trace_drv_return_int(local, ret);
943 return ret;
944}
945
946static inline void drv_stop_ap(struct ieee80211_local *local,
947 struct ieee80211_sub_if_data *sdata)
948{
949 if (!check_sdata_in_driver(sdata))
950 return;
951
952 trace_drv_stop_ap(local, sdata);
953 if (local->ops->stop_ap)
954 local->ops->stop_ap(&local->hw, &sdata->vif);
955 trace_drv_return_void(local);
956}
957
958static inline void
959drv_reconfig_complete(struct ieee80211_local *local,
960 enum ieee80211_reconfig_type reconfig_type)
961{
962 might_sleep();
963
964 trace_drv_reconfig_complete(local, reconfig_type);
965 if (local->ops->reconfig_complete)
966 local->ops->reconfig_complete(&local->hw, reconfig_type);
967 trace_drv_return_void(local);
968}
969
970static inline void
971drv_set_default_unicast_key(struct ieee80211_local *local,
972 struct ieee80211_sub_if_data *sdata,
973 int key_idx)
974{
975 if (!check_sdata_in_driver(sdata))
976 return;
977
978 WARN_ON_ONCE(key_idx < -1 || key_idx > 3);
979
980 trace_drv_set_default_unicast_key(local, sdata, key_idx);
981 if (local->ops->set_default_unicast_key)
982 local->ops->set_default_unicast_key(&local->hw, &sdata->vif,
983 key_idx);
984 trace_drv_return_void(local);
985}
986
987#if IS_ENABLED(CONFIG_IPV6)
988static inline void drv_ipv6_addr_change(struct ieee80211_local *local,
989 struct ieee80211_sub_if_data *sdata,
990 struct inet6_dev *idev)
991{
992 trace_drv_ipv6_addr_change(local, sdata);
993 if (local->ops->ipv6_addr_change)
994 local->ops->ipv6_addr_change(&local->hw, &sdata->vif, idev);
995 trace_drv_return_void(local);
996}
997#endif
998
999static inline void
1000drv_channel_switch_beacon(struct ieee80211_sub_if_data *sdata,
1001 struct cfg80211_chan_def *chandef)
1002{
1003 struct ieee80211_local *local = sdata->local;
1004
1005 if (local->ops->channel_switch_beacon) {
1006 trace_drv_channel_switch_beacon(local, sdata, chandef);
1007 local->ops->channel_switch_beacon(&local->hw, &sdata->vif,
1008 chandef);
1009 }
1010}
1011
1012static inline int
1013drv_pre_channel_switch(struct ieee80211_sub_if_data *sdata,
1014 struct ieee80211_channel_switch *ch_switch)
1015{
1016 struct ieee80211_local *local = sdata->local;
1017 int ret = 0;
1018
1019 if (!check_sdata_in_driver(sdata))
1020 return -EIO;
1021
1022 trace_drv_pre_channel_switch(local, sdata, ch_switch);
1023 if (local->ops->pre_channel_switch)
1024 ret = local->ops->pre_channel_switch(&local->hw, &sdata->vif,
1025 ch_switch);
1026 trace_drv_return_int(local, ret);
1027 return ret;
1028}
1029
1030static inline int
1031drv_post_channel_switch(struct ieee80211_sub_if_data *sdata)
1032{
1033 struct ieee80211_local *local = sdata->local;
1034 int ret = 0;
1035
1036 if (!check_sdata_in_driver(sdata))
1037 return -EIO;
1038
1039 trace_drv_post_channel_switch(local, sdata);
1040 if (local->ops->post_channel_switch)
1041 ret = local->ops->post_channel_switch(&local->hw, &sdata->vif);
1042 trace_drv_return_int(local, ret);
1043 return ret;
1044}
1045
1046static inline int drv_join_ibss(struct ieee80211_local *local,
1047 struct ieee80211_sub_if_data *sdata)
1048{
1049 int ret = 0;
1050
1051 might_sleep();
1052 if (!check_sdata_in_driver(sdata))
1053 return -EIO;
1054
1055 trace_drv_join_ibss(local, sdata, &sdata->vif.bss_conf);
1056 if (local->ops->join_ibss)
1057 ret = local->ops->join_ibss(&local->hw, &sdata->vif);
1058 trace_drv_return_int(local, ret);
1059 return ret;
1060}
1061
1062static inline void drv_leave_ibss(struct ieee80211_local *local,
1063 struct ieee80211_sub_if_data *sdata)
1064{
1065 might_sleep();
1066 if (!check_sdata_in_driver(sdata))
1067 return;
1068
1069 trace_drv_leave_ibss(local, sdata);
1070 if (local->ops->leave_ibss)
1071 local->ops->leave_ibss(&local->hw, &sdata->vif);
1072 trace_drv_return_void(local);
1073}
1074
1075static inline u32 drv_get_expected_throughput(struct ieee80211_local *local,
1076 struct ieee80211_sta *sta)
1077{
1078 u32 ret = 0;
1079
1080 trace_drv_get_expected_throughput(sta);
1081 if (local->ops->get_expected_throughput)
1082 ret = local->ops->get_expected_throughput(sta);
1083 trace_drv_return_u32(local, ret);
1084
1085 return ret;
1086}
1087
1088static inline int drv_get_txpower(struct ieee80211_local *local,
1089 struct ieee80211_sub_if_data *sdata, int *dbm)
1090{
1091 int ret;
1092
1093 if (!local->ops->get_txpower)
1094 return -EOPNOTSUPP;
1095
1096 ret = local->ops->get_txpower(&local->hw, &sdata->vif, dbm);
1097 trace_drv_get_txpower(local, sdata, *dbm, ret);
1098
1099 return ret;
1100}
1101
1102static inline int
1103drv_tdls_channel_switch(struct ieee80211_local *local,
1104 struct ieee80211_sub_if_data *sdata,
1105 struct ieee80211_sta *sta, u8 oper_class,
1106 struct cfg80211_chan_def *chandef,
1107 struct sk_buff *tmpl_skb, u32 ch_sw_tm_ie)
1108{
1109 int ret;
1110
1111 might_sleep();
1112 if (!check_sdata_in_driver(sdata))
1113 return -EIO;
1114
1115 if (!local->ops->tdls_channel_switch)
1116 return -EOPNOTSUPP;
1117
1118 trace_drv_tdls_channel_switch(local, sdata, sta, oper_class, chandef);
1119 ret = local->ops->tdls_channel_switch(&local->hw, &sdata->vif, sta,
1120 oper_class, chandef, tmpl_skb,
1121 ch_sw_tm_ie);
1122 trace_drv_return_int(local, ret);
1123 return ret;
1124}
1125
1126static inline void
1127drv_tdls_cancel_channel_switch(struct ieee80211_local *local,
1128 struct ieee80211_sub_if_data *sdata,
1129 struct ieee80211_sta *sta)
1130{
1131 might_sleep();
1132 if (!check_sdata_in_driver(sdata))
1133 return;
1134
1135 if (!local->ops->tdls_cancel_channel_switch)
1136 return;
1137
1138 trace_drv_tdls_cancel_channel_switch(local, sdata, sta);
1139 local->ops->tdls_cancel_channel_switch(&local->hw, &sdata->vif, sta);
1140 trace_drv_return_void(local);
1141}
1142
1143static inline void
1144drv_tdls_recv_channel_switch(struct ieee80211_local *local,
1145 struct ieee80211_sub_if_data *sdata,
1146 struct ieee80211_tdls_ch_sw_params *params)
1147{
1148 trace_drv_tdls_recv_channel_switch(local, sdata, params);
1149 if (local->ops->tdls_recv_channel_switch)
1150 local->ops->tdls_recv_channel_switch(&local->hw, &sdata->vif,
1151 params);
1152 trace_drv_return_void(local);
1153}
1154
1155static inline void drv_wake_tx_queue(struct ieee80211_local *local,
1156 struct txq_info *txq)
1157{
1158 struct ieee80211_sub_if_data *sdata = vif_to_sdata(txq->txq.vif);
1159
1160 if (!check_sdata_in_driver(sdata))
1161 return;
1162
1163 trace_drv_wake_tx_queue(local, sdata, txq);
1164 local->ops->wake_tx_queue(&local->hw, &txq->txq);
1165}
1166
1167#endif /* __MAC80211_DRIVER_OPS */