1 #ifndef __MAC80211_DRIVER_OPS
2 #define __MAC80211_DRIVER_OPS
4 #include <net/mac80211.h>
5 #include "ieee80211_i.h"
8 static inline void check_sdata_in_driver(struct ieee80211_sub_if_data
*sdata
)
10 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
);
15 static inline struct ieee80211_sub_if_data
*
16 get_bss_sdata(struct ieee80211_sub_if_data
*sdata
)
18 if (sdata
->vif
.type
== NL80211_IFTYPE_AP_VLAN
)
19 sdata
= container_of(sdata
->bss
, struct ieee80211_sub_if_data
,
25 static inline void drv_tx(struct ieee80211_local
*local
,
26 struct ieee80211_tx_control
*control
,
29 local
->ops
->tx(&local
->hw
, control
, skb
);
32 static inline void drv_get_et_strings(struct ieee80211_sub_if_data
*sdata
,
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
);
43 static inline void drv_get_et_stats(struct ieee80211_sub_if_data
*sdata
,
44 struct ethtool_stats
*stats
,
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
);
55 static inline int drv_get_et_sset_count(struct ieee80211_sub_if_data
*sdata
,
58 struct ieee80211_local
*local
= sdata
->local
;
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
,
64 trace_drv_return_int(local
, rv
);
69 static inline int drv_start(struct ieee80211_local
*local
)
75 trace_drv_start(local
);
76 local
->started
= true;
78 ret
= local
->ops
->start(&local
->hw
);
79 trace_drv_return_int(local
, ret
);
83 static inline void drv_stop(struct ieee80211_local
*local
)
87 trace_drv_stop(local
);
88 local
->ops
->stop(&local
->hw
);
89 trace_drv_return_void(local
);
91 /* sync away all work on the tasklet before clearing started */
92 tasklet_disable(&local
->tasklet
);
93 tasklet_enable(&local
->tasklet
);
97 local
->started
= false;
101 static inline int drv_suspend(struct ieee80211_local
*local
,
102 struct cfg80211_wowlan
*wowlan
)
108 trace_drv_suspend(local
);
109 ret
= local
->ops
->suspend(&local
->hw
, wowlan
);
110 trace_drv_return_int(local
, ret
);
114 static inline int drv_resume(struct ieee80211_local
*local
)
120 trace_drv_resume(local
);
121 ret
= local
->ops
->resume(&local
->hw
);
122 trace_drv_return_int(local
, ret
);
126 static inline void drv_set_wakeup(struct ieee80211_local
*local
,
131 if (!local
->ops
->set_wakeup
)
134 trace_drv_set_wakeup(local
, enabled
);
135 local
->ops
->set_wakeup(&local
->hw
, enabled
);
136 trace_drv_return_void(local
);
140 static inline int drv_add_interface(struct ieee80211_local
*local
,
141 struct ieee80211_sub_if_data
*sdata
)
147 if (WARN_ON(sdata
->vif
.type
== NL80211_IFTYPE_AP_VLAN
||
148 (sdata
->vif
.type
== NL80211_IFTYPE_MONITOR
&&
149 !(local
->hw
.flags
& IEEE80211_HW_WANT_MONITOR_VIF
))))
152 trace_drv_add_interface(local
, sdata
);
153 ret
= local
->ops
->add_interface(&local
->hw
, &sdata
->vif
);
154 trace_drv_return_int(local
, ret
);
157 sdata
->flags
|= IEEE80211_SDATA_IN_DRIVER
;
162 static inline int drv_change_interface(struct ieee80211_local
*local
,
163 struct ieee80211_sub_if_data
*sdata
,
164 enum nl80211_iftype type
, bool p2p
)
170 check_sdata_in_driver(sdata
);
172 trace_drv_change_interface(local
, sdata
, type
, p2p
);
173 ret
= local
->ops
->change_interface(&local
->hw
, &sdata
->vif
, type
, p2p
);
174 trace_drv_return_int(local
, ret
);
178 static inline void drv_remove_interface(struct ieee80211_local
*local
,
179 struct ieee80211_sub_if_data
*sdata
)
183 check_sdata_in_driver(sdata
);
185 trace_drv_remove_interface(local
, sdata
);
186 local
->ops
->remove_interface(&local
->hw
, &sdata
->vif
);
187 sdata
->flags
&= ~IEEE80211_SDATA_IN_DRIVER
;
188 trace_drv_return_void(local
);
191 static inline int drv_config(struct ieee80211_local
*local
, u32 changed
)
197 trace_drv_config(local
, changed
);
198 ret
= local
->ops
->config(&local
->hw
, changed
);
199 trace_drv_return_int(local
, ret
);
203 static inline void drv_bss_info_changed(struct ieee80211_local
*local
,
204 struct ieee80211_sub_if_data
*sdata
,
205 struct ieee80211_bss_conf
*info
,
210 if (WARN_ON_ONCE(changed
& (BSS_CHANGED_BEACON
|
211 BSS_CHANGED_BEACON_ENABLED
) &&
212 sdata
->vif
.type
!= NL80211_IFTYPE_AP
&&
213 sdata
->vif
.type
!= NL80211_IFTYPE_ADHOC
&&
214 sdata
->vif
.type
!= NL80211_IFTYPE_MESH_POINT
))
217 if (WARN_ON_ONCE(sdata
->vif
.type
== NL80211_IFTYPE_P2P_DEVICE
||
218 sdata
->vif
.type
== NL80211_IFTYPE_MONITOR
))
221 check_sdata_in_driver(sdata
);
223 trace_drv_bss_info_changed(local
, sdata
, info
, changed
);
224 if (local
->ops
->bss_info_changed
)
225 local
->ops
->bss_info_changed(&local
->hw
, &sdata
->vif
, info
, changed
);
226 trace_drv_return_void(local
);
229 static inline u64
drv_prepare_multicast(struct ieee80211_local
*local
,
230 struct netdev_hw_addr_list
*mc_list
)
234 trace_drv_prepare_multicast(local
, mc_list
->count
);
236 if (local
->ops
->prepare_multicast
)
237 ret
= local
->ops
->prepare_multicast(&local
->hw
, mc_list
);
239 trace_drv_return_u64(local
, ret
);
244 static inline void drv_set_multicast_list(struct ieee80211_local
*local
,
245 struct ieee80211_sub_if_data
*sdata
,
246 struct netdev_hw_addr_list
*mc_list
)
248 bool allmulti
= sdata
->flags
& IEEE80211_SDATA_ALLMULTI
;
250 trace_drv_set_multicast_list(local
, sdata
, mc_list
->count
);
252 check_sdata_in_driver(sdata
);
254 if (local
->ops
->set_multicast_list
)
255 local
->ops
->set_multicast_list(&local
->hw
, &sdata
->vif
,
257 trace_drv_return_void(local
);
260 static inline void drv_configure_filter(struct ieee80211_local
*local
,
261 unsigned int changed_flags
,
262 unsigned int *total_flags
,
267 trace_drv_configure_filter(local
, changed_flags
, total_flags
,
269 local
->ops
->configure_filter(&local
->hw
, changed_flags
, total_flags
,
271 trace_drv_return_void(local
);
274 static inline int drv_set_tim(struct ieee80211_local
*local
,
275 struct ieee80211_sta
*sta
, bool set
)
278 trace_drv_set_tim(local
, sta
, set
);
279 if (local
->ops
->set_tim
)
280 ret
= local
->ops
->set_tim(&local
->hw
, sta
, set
);
281 trace_drv_return_int(local
, ret
);
285 static inline int drv_set_key(struct ieee80211_local
*local
,
286 enum set_key_cmd cmd
,
287 struct ieee80211_sub_if_data
*sdata
,
288 struct ieee80211_sta
*sta
,
289 struct ieee80211_key_conf
*key
)
295 sdata
= get_bss_sdata(sdata
);
296 check_sdata_in_driver(sdata
);
298 trace_drv_set_key(local
, cmd
, sdata
, sta
, key
);
299 ret
= local
->ops
->set_key(&local
->hw
, cmd
, &sdata
->vif
, sta
, key
);
300 trace_drv_return_int(local
, ret
);
304 static inline void drv_update_tkip_key(struct ieee80211_local
*local
,
305 struct ieee80211_sub_if_data
*sdata
,
306 struct ieee80211_key_conf
*conf
,
307 struct sta_info
*sta
, u32 iv32
,
310 struct ieee80211_sta
*ista
= NULL
;
315 sdata
= get_bss_sdata(sdata
);
316 check_sdata_in_driver(sdata
);
318 trace_drv_update_tkip_key(local
, sdata
, conf
, ista
, iv32
);
319 if (local
->ops
->update_tkip_key
)
320 local
->ops
->update_tkip_key(&local
->hw
, &sdata
->vif
, conf
,
321 ista
, iv32
, phase1key
);
322 trace_drv_return_void(local
);
325 static inline int drv_hw_scan(struct ieee80211_local
*local
,
326 struct ieee80211_sub_if_data
*sdata
,
327 struct cfg80211_scan_request
*req
)
333 check_sdata_in_driver(sdata
);
335 trace_drv_hw_scan(local
, sdata
);
336 ret
= local
->ops
->hw_scan(&local
->hw
, &sdata
->vif
, req
);
337 trace_drv_return_int(local
, ret
);
341 static inline void drv_cancel_hw_scan(struct ieee80211_local
*local
,
342 struct ieee80211_sub_if_data
*sdata
)
346 check_sdata_in_driver(sdata
);
348 trace_drv_cancel_hw_scan(local
, sdata
);
349 local
->ops
->cancel_hw_scan(&local
->hw
, &sdata
->vif
);
350 trace_drv_return_void(local
);
354 drv_sched_scan_start(struct ieee80211_local
*local
,
355 struct ieee80211_sub_if_data
*sdata
,
356 struct cfg80211_sched_scan_request
*req
,
357 struct ieee80211_sched_scan_ies
*ies
)
363 check_sdata_in_driver(sdata
);
365 trace_drv_sched_scan_start(local
, sdata
);
366 ret
= local
->ops
->sched_scan_start(&local
->hw
, &sdata
->vif
,
368 trace_drv_return_int(local
, ret
);
372 static inline void drv_sched_scan_stop(struct ieee80211_local
*local
,
373 struct ieee80211_sub_if_data
*sdata
)
377 check_sdata_in_driver(sdata
);
379 trace_drv_sched_scan_stop(local
, sdata
);
380 local
->ops
->sched_scan_stop(&local
->hw
, &sdata
->vif
);
381 trace_drv_return_void(local
);
384 static inline void drv_sw_scan_start(struct ieee80211_local
*local
)
388 trace_drv_sw_scan_start(local
);
389 if (local
->ops
->sw_scan_start
)
390 local
->ops
->sw_scan_start(&local
->hw
);
391 trace_drv_return_void(local
);
394 static inline void drv_sw_scan_complete(struct ieee80211_local
*local
)
398 trace_drv_sw_scan_complete(local
);
399 if (local
->ops
->sw_scan_complete
)
400 local
->ops
->sw_scan_complete(&local
->hw
);
401 trace_drv_return_void(local
);
404 static inline int drv_get_stats(struct ieee80211_local
*local
,
405 struct ieee80211_low_level_stats
*stats
)
407 int ret
= -EOPNOTSUPP
;
411 if (local
->ops
->get_stats
)
412 ret
= local
->ops
->get_stats(&local
->hw
, stats
);
413 trace_drv_get_stats(local
, stats
, ret
);
418 static inline void drv_get_tkip_seq(struct ieee80211_local
*local
,
419 u8 hw_key_idx
, u32
*iv32
, u16
*iv16
)
421 if (local
->ops
->get_tkip_seq
)
422 local
->ops
->get_tkip_seq(&local
->hw
, hw_key_idx
, iv32
, iv16
);
423 trace_drv_get_tkip_seq(local
, hw_key_idx
, iv32
, iv16
);
426 static inline int drv_set_frag_threshold(struct ieee80211_local
*local
,
433 trace_drv_set_frag_threshold(local
, value
);
434 if (local
->ops
->set_frag_threshold
)
435 ret
= local
->ops
->set_frag_threshold(&local
->hw
, value
);
436 trace_drv_return_int(local
, ret
);
440 static inline int drv_set_rts_threshold(struct ieee80211_local
*local
,
447 trace_drv_set_rts_threshold(local
, value
);
448 if (local
->ops
->set_rts_threshold
)
449 ret
= local
->ops
->set_rts_threshold(&local
->hw
, value
);
450 trace_drv_return_int(local
, ret
);
454 static inline int drv_set_coverage_class(struct ieee80211_local
*local
,
460 trace_drv_set_coverage_class(local
, value
);
461 if (local
->ops
->set_coverage_class
)
462 local
->ops
->set_coverage_class(&local
->hw
, value
);
466 trace_drv_return_int(local
, ret
);
470 static inline void drv_sta_notify(struct ieee80211_local
*local
,
471 struct ieee80211_sub_if_data
*sdata
,
472 enum sta_notify_cmd cmd
,
473 struct ieee80211_sta
*sta
)
475 sdata
= get_bss_sdata(sdata
);
476 check_sdata_in_driver(sdata
);
478 trace_drv_sta_notify(local
, sdata
, cmd
, sta
);
479 if (local
->ops
->sta_notify
)
480 local
->ops
->sta_notify(&local
->hw
, &sdata
->vif
, cmd
, sta
);
481 trace_drv_return_void(local
);
484 static inline int drv_sta_add(struct ieee80211_local
*local
,
485 struct ieee80211_sub_if_data
*sdata
,
486 struct ieee80211_sta
*sta
)
492 sdata
= get_bss_sdata(sdata
);
493 check_sdata_in_driver(sdata
);
495 trace_drv_sta_add(local
, sdata
, sta
);
496 if (local
->ops
->sta_add
)
497 ret
= local
->ops
->sta_add(&local
->hw
, &sdata
->vif
, sta
);
499 trace_drv_return_int(local
, ret
);
504 static inline void drv_sta_remove(struct ieee80211_local
*local
,
505 struct ieee80211_sub_if_data
*sdata
,
506 struct ieee80211_sta
*sta
)
510 sdata
= get_bss_sdata(sdata
);
511 check_sdata_in_driver(sdata
);
513 trace_drv_sta_remove(local
, sdata
, sta
);
514 if (local
->ops
->sta_remove
)
515 local
->ops
->sta_remove(&local
->hw
, &sdata
->vif
, sta
);
517 trace_drv_return_void(local
);
520 #ifdef CONFIG_MAC80211_DEBUGFS
521 static inline void drv_sta_add_debugfs(struct ieee80211_local
*local
,
522 struct ieee80211_sub_if_data
*sdata
,
523 struct ieee80211_sta
*sta
,
528 sdata
= get_bss_sdata(sdata
);
529 check_sdata_in_driver(sdata
);
531 if (local
->ops
->sta_add_debugfs
)
532 local
->ops
->sta_add_debugfs(&local
->hw
, &sdata
->vif
,
536 static inline void drv_sta_remove_debugfs(struct ieee80211_local
*local
,
537 struct ieee80211_sub_if_data
*sdata
,
538 struct ieee80211_sta
*sta
,
543 sdata
= get_bss_sdata(sdata
);
544 check_sdata_in_driver(sdata
);
546 if (local
->ops
->sta_remove_debugfs
)
547 local
->ops
->sta_remove_debugfs(&local
->hw
, &sdata
->vif
,
552 static inline __must_check
553 int drv_sta_state(struct ieee80211_local
*local
,
554 struct ieee80211_sub_if_data
*sdata
,
555 struct sta_info
*sta
,
556 enum ieee80211_sta_state old_state
,
557 enum ieee80211_sta_state new_state
)
563 sdata
= get_bss_sdata(sdata
);
564 check_sdata_in_driver(sdata
);
566 trace_drv_sta_state(local
, sdata
, &sta
->sta
, old_state
, new_state
);
567 if (local
->ops
->sta_state
) {
568 ret
= local
->ops
->sta_state(&local
->hw
, &sdata
->vif
, &sta
->sta
,
569 old_state
, new_state
);
570 } else if (old_state
== IEEE80211_STA_AUTH
&&
571 new_state
== IEEE80211_STA_ASSOC
) {
572 ret
= drv_sta_add(local
, sdata
, &sta
->sta
);
574 sta
->uploaded
= true;
575 } else if (old_state
== IEEE80211_STA_ASSOC
&&
576 new_state
== IEEE80211_STA_AUTH
) {
577 drv_sta_remove(local
, sdata
, &sta
->sta
);
579 trace_drv_return_int(local
, ret
);
583 static inline void drv_sta_rc_update(struct ieee80211_local
*local
,
584 struct ieee80211_sub_if_data
*sdata
,
585 struct ieee80211_sta
*sta
, u32 changed
)
587 sdata
= get_bss_sdata(sdata
);
588 check_sdata_in_driver(sdata
);
590 WARN_ON(changed
& IEEE80211_RC_SUPP_RATES_CHANGED
&&
591 (sdata
->vif
.type
!= NL80211_IFTYPE_ADHOC
&&
592 sdata
->vif
.type
!= NL80211_IFTYPE_MESH_POINT
));
594 trace_drv_sta_rc_update(local
, sdata
, sta
, changed
);
595 if (local
->ops
->sta_rc_update
)
596 local
->ops
->sta_rc_update(&local
->hw
, &sdata
->vif
,
599 trace_drv_return_void(local
);
602 static inline int drv_conf_tx(struct ieee80211_local
*local
,
603 struct ieee80211_sub_if_data
*sdata
, u16 ac
,
604 const struct ieee80211_tx_queue_params
*params
)
606 int ret
= -EOPNOTSUPP
;
610 check_sdata_in_driver(sdata
);
612 trace_drv_conf_tx(local
, sdata
, ac
, params
);
613 if (local
->ops
->conf_tx
)
614 ret
= local
->ops
->conf_tx(&local
->hw
, &sdata
->vif
,
616 trace_drv_return_int(local
, ret
);
620 static inline u64
drv_get_tsf(struct ieee80211_local
*local
,
621 struct ieee80211_sub_if_data
*sdata
)
627 check_sdata_in_driver(sdata
);
629 trace_drv_get_tsf(local
, sdata
);
630 if (local
->ops
->get_tsf
)
631 ret
= local
->ops
->get_tsf(&local
->hw
, &sdata
->vif
);
632 trace_drv_return_u64(local
, ret
);
636 static inline void drv_set_tsf(struct ieee80211_local
*local
,
637 struct ieee80211_sub_if_data
*sdata
,
642 check_sdata_in_driver(sdata
);
644 trace_drv_set_tsf(local
, sdata
, tsf
);
645 if (local
->ops
->set_tsf
)
646 local
->ops
->set_tsf(&local
->hw
, &sdata
->vif
, tsf
);
647 trace_drv_return_void(local
);
650 static inline void drv_reset_tsf(struct ieee80211_local
*local
,
651 struct ieee80211_sub_if_data
*sdata
)
655 check_sdata_in_driver(sdata
);
657 trace_drv_reset_tsf(local
, sdata
);
658 if (local
->ops
->reset_tsf
)
659 local
->ops
->reset_tsf(&local
->hw
, &sdata
->vif
);
660 trace_drv_return_void(local
);
663 static inline int drv_tx_last_beacon(struct ieee80211_local
*local
)
665 int ret
= 0; /* default unsupported op for less congestion */
669 trace_drv_tx_last_beacon(local
);
670 if (local
->ops
->tx_last_beacon
)
671 ret
= local
->ops
->tx_last_beacon(&local
->hw
);
672 trace_drv_return_int(local
, ret
);
676 static inline int drv_ampdu_action(struct ieee80211_local
*local
,
677 struct ieee80211_sub_if_data
*sdata
,
678 enum ieee80211_ampdu_mlme_action action
,
679 struct ieee80211_sta
*sta
, u16 tid
,
680 u16
*ssn
, u8 buf_size
)
682 int ret
= -EOPNOTSUPP
;
686 sdata
= get_bss_sdata(sdata
);
687 check_sdata_in_driver(sdata
);
689 trace_drv_ampdu_action(local
, sdata
, action
, sta
, tid
, ssn
, buf_size
);
691 if (local
->ops
->ampdu_action
)
692 ret
= local
->ops
->ampdu_action(&local
->hw
, &sdata
->vif
, action
,
693 sta
, tid
, ssn
, buf_size
);
695 trace_drv_return_int(local
, ret
);
700 static inline int drv_get_survey(struct ieee80211_local
*local
, int idx
,
701 struct survey_info
*survey
)
703 int ret
= -EOPNOTSUPP
;
705 trace_drv_get_survey(local
, idx
, survey
);
707 if (local
->ops
->get_survey
)
708 ret
= local
->ops
->get_survey(&local
->hw
, idx
, survey
);
710 trace_drv_return_int(local
, ret
);
715 static inline void drv_rfkill_poll(struct ieee80211_local
*local
)
719 if (local
->ops
->rfkill_poll
)
720 local
->ops
->rfkill_poll(&local
->hw
);
723 static inline void drv_flush(struct ieee80211_local
*local
,
724 u32 queues
, bool drop
)
728 trace_drv_flush(local
, queues
, drop
);
729 if (local
->ops
->flush
)
730 local
->ops
->flush(&local
->hw
, queues
, drop
);
731 trace_drv_return_void(local
);
734 static inline void drv_channel_switch(struct ieee80211_local
*local
,
735 struct ieee80211_channel_switch
*ch_switch
)
739 trace_drv_channel_switch(local
, ch_switch
);
740 local
->ops
->channel_switch(&local
->hw
, ch_switch
);
741 trace_drv_return_void(local
);
745 static inline int drv_set_antenna(struct ieee80211_local
*local
,
746 u32 tx_ant
, u32 rx_ant
)
748 int ret
= -EOPNOTSUPP
;
750 if (local
->ops
->set_antenna
)
751 ret
= local
->ops
->set_antenna(&local
->hw
, tx_ant
, rx_ant
);
752 trace_drv_set_antenna(local
, tx_ant
, rx_ant
, ret
);
756 static inline int drv_get_antenna(struct ieee80211_local
*local
,
757 u32
*tx_ant
, u32
*rx_ant
)
759 int ret
= -EOPNOTSUPP
;
761 if (local
->ops
->get_antenna
)
762 ret
= local
->ops
->get_antenna(&local
->hw
, tx_ant
, rx_ant
);
763 trace_drv_get_antenna(local
, *tx_ant
, *rx_ant
, ret
);
767 static inline int drv_remain_on_channel(struct ieee80211_local
*local
,
768 struct ieee80211_sub_if_data
*sdata
,
769 struct ieee80211_channel
*chan
,
770 unsigned int duration
,
771 enum ieee80211_roc_type type
)
777 trace_drv_remain_on_channel(local
, sdata
, chan
, duration
, type
);
778 ret
= local
->ops
->remain_on_channel(&local
->hw
, &sdata
->vif
,
779 chan
, duration
, type
);
780 trace_drv_return_int(local
, ret
);
785 static inline int drv_cancel_remain_on_channel(struct ieee80211_local
*local
)
791 trace_drv_cancel_remain_on_channel(local
);
792 ret
= local
->ops
->cancel_remain_on_channel(&local
->hw
);
793 trace_drv_return_int(local
, ret
);
798 static inline int drv_set_ringparam(struct ieee80211_local
*local
,
805 trace_drv_set_ringparam(local
, tx
, rx
);
806 if (local
->ops
->set_ringparam
)
807 ret
= local
->ops
->set_ringparam(&local
->hw
, tx
, rx
);
808 trace_drv_return_int(local
, ret
);
813 static inline void drv_get_ringparam(struct ieee80211_local
*local
,
814 u32
*tx
, u32
*tx_max
, u32
*rx
, u32
*rx_max
)
818 trace_drv_get_ringparam(local
, tx
, tx_max
, rx
, rx_max
);
819 if (local
->ops
->get_ringparam
)
820 local
->ops
->get_ringparam(&local
->hw
, tx
, tx_max
, rx
, rx_max
);
821 trace_drv_return_void(local
);
824 static inline bool drv_tx_frames_pending(struct ieee80211_local
*local
)
830 trace_drv_tx_frames_pending(local
);
831 if (local
->ops
->tx_frames_pending
)
832 ret
= local
->ops
->tx_frames_pending(&local
->hw
);
833 trace_drv_return_bool(local
, ret
);
838 static inline int drv_set_bitrate_mask(struct ieee80211_local
*local
,
839 struct ieee80211_sub_if_data
*sdata
,
840 const struct cfg80211_bitrate_mask
*mask
)
842 int ret
= -EOPNOTSUPP
;
846 check_sdata_in_driver(sdata
);
848 trace_drv_set_bitrate_mask(local
, sdata
, mask
);
849 if (local
->ops
->set_bitrate_mask
)
850 ret
= local
->ops
->set_bitrate_mask(&local
->hw
,
852 trace_drv_return_int(local
, ret
);
857 static inline void drv_set_rekey_data(struct ieee80211_local
*local
,
858 struct ieee80211_sub_if_data
*sdata
,
859 struct cfg80211_gtk_rekey_data
*data
)
861 check_sdata_in_driver(sdata
);
863 trace_drv_set_rekey_data(local
, sdata
, data
);
864 if (local
->ops
->set_rekey_data
)
865 local
->ops
->set_rekey_data(&local
->hw
, &sdata
->vif
, data
);
866 trace_drv_return_void(local
);
869 static inline void drv_rssi_callback(struct ieee80211_local
*local
,
870 struct ieee80211_sub_if_data
*sdata
,
871 const enum ieee80211_rssi_event event
)
873 trace_drv_rssi_callback(local
, sdata
, event
);
874 if (local
->ops
->rssi_callback
)
875 local
->ops
->rssi_callback(&local
->hw
, &sdata
->vif
, event
);
876 trace_drv_return_void(local
);
880 drv_release_buffered_frames(struct ieee80211_local
*local
,
881 struct sta_info
*sta
, u16 tids
, int num_frames
,
882 enum ieee80211_frame_release_type reason
,
885 trace_drv_release_buffered_frames(local
, &sta
->sta
, tids
, num_frames
,
887 if (local
->ops
->release_buffered_frames
)
888 local
->ops
->release_buffered_frames(&local
->hw
, &sta
->sta
, tids
,
891 trace_drv_return_void(local
);
895 drv_allow_buffered_frames(struct ieee80211_local
*local
,
896 struct sta_info
*sta
, u16 tids
, int num_frames
,
897 enum ieee80211_frame_release_type reason
,
900 trace_drv_allow_buffered_frames(local
, &sta
->sta
, tids
, num_frames
,
902 if (local
->ops
->allow_buffered_frames
)
903 local
->ops
->allow_buffered_frames(&local
->hw
, &sta
->sta
,
904 tids
, num_frames
, reason
,
906 trace_drv_return_void(local
);
909 static inline int drv_get_rssi(struct ieee80211_local
*local
,
910 struct ieee80211_sub_if_data
*sdata
,
911 struct ieee80211_sta
*sta
,
918 ret
= local
->ops
->get_rssi(&local
->hw
, &sdata
->vif
, sta
, rssi_dbm
);
919 trace_drv_get_rssi(local
, sta
, *rssi_dbm
, ret
);
924 static inline void drv_mgd_prepare_tx(struct ieee80211_local
*local
,
925 struct ieee80211_sub_if_data
*sdata
)
929 check_sdata_in_driver(sdata
);
930 WARN_ON_ONCE(sdata
->vif
.type
!= NL80211_IFTYPE_STATION
);
932 trace_drv_mgd_prepare_tx(local
, sdata
);
933 if (local
->ops
->mgd_prepare_tx
)
934 local
->ops
->mgd_prepare_tx(&local
->hw
, &sdata
->vif
);
935 trace_drv_return_void(local
);
938 static inline int drv_add_chanctx(struct ieee80211_local
*local
,
939 struct ieee80211_chanctx
*ctx
)
941 int ret
= -EOPNOTSUPP
;
943 trace_drv_add_chanctx(local
, ctx
);
944 if (local
->ops
->add_chanctx
)
945 ret
= local
->ops
->add_chanctx(&local
->hw
, &ctx
->conf
);
946 trace_drv_return_int(local
, ret
);
948 ctx
->driver_present
= true;
953 static inline void drv_remove_chanctx(struct ieee80211_local
*local
,
954 struct ieee80211_chanctx
*ctx
)
956 trace_drv_remove_chanctx(local
, ctx
);
957 if (local
->ops
->remove_chanctx
)
958 local
->ops
->remove_chanctx(&local
->hw
, &ctx
->conf
);
959 trace_drv_return_void(local
);
960 ctx
->driver_present
= false;
963 static inline void drv_change_chanctx(struct ieee80211_local
*local
,
964 struct ieee80211_chanctx
*ctx
,
967 trace_drv_change_chanctx(local
, ctx
, changed
);
968 if (local
->ops
->change_chanctx
) {
969 WARN_ON_ONCE(!ctx
->driver_present
);
970 local
->ops
->change_chanctx(&local
->hw
, &ctx
->conf
, changed
);
972 trace_drv_return_void(local
);
975 static inline int drv_assign_vif_chanctx(struct ieee80211_local
*local
,
976 struct ieee80211_sub_if_data
*sdata
,
977 struct ieee80211_chanctx
*ctx
)
981 check_sdata_in_driver(sdata
);
983 trace_drv_assign_vif_chanctx(local
, sdata
, ctx
);
984 if (local
->ops
->assign_vif_chanctx
) {
985 WARN_ON_ONCE(!ctx
->driver_present
);
986 ret
= local
->ops
->assign_vif_chanctx(&local
->hw
,
990 trace_drv_return_int(local
, ret
);
995 static inline void drv_unassign_vif_chanctx(struct ieee80211_local
*local
,
996 struct ieee80211_sub_if_data
*sdata
,
997 struct ieee80211_chanctx
*ctx
)
999 check_sdata_in_driver(sdata
);
1001 trace_drv_unassign_vif_chanctx(local
, sdata
, ctx
);
1002 if (local
->ops
->unassign_vif_chanctx
) {
1003 WARN_ON_ONCE(!ctx
->driver_present
);
1004 local
->ops
->unassign_vif_chanctx(&local
->hw
,
1008 trace_drv_return_void(local
);
1011 static inline int drv_start_ap(struct ieee80211_local
*local
,
1012 struct ieee80211_sub_if_data
*sdata
)
1016 check_sdata_in_driver(sdata
);
1018 trace_drv_start_ap(local
, sdata
, &sdata
->vif
.bss_conf
);
1019 if (local
->ops
->start_ap
)
1020 ret
= local
->ops
->start_ap(&local
->hw
, &sdata
->vif
);
1021 trace_drv_return_int(local
, ret
);
1025 static inline void drv_stop_ap(struct ieee80211_local
*local
,
1026 struct ieee80211_sub_if_data
*sdata
)
1028 check_sdata_in_driver(sdata
);
1030 trace_drv_stop_ap(local
, sdata
);
1031 if (local
->ops
->stop_ap
)
1032 local
->ops
->stop_ap(&local
->hw
, &sdata
->vif
);
1033 trace_drv_return_void(local
);
1036 static inline void drv_restart_complete(struct ieee80211_local
*local
)
1040 trace_drv_restart_complete(local
);
1041 if (local
->ops
->restart_complete
)
1042 local
->ops
->restart_complete(&local
->hw
);
1043 trace_drv_return_void(local
);
1047 drv_set_default_unicast_key(struct ieee80211_local
*local
,
1048 struct ieee80211_sub_if_data
*sdata
,
1051 check_sdata_in_driver(sdata
);
1053 WARN_ON_ONCE(key_idx
< -1 || key_idx
> 3);
1055 trace_drv_set_default_unicast_key(local
, sdata
, key_idx
);
1056 if (local
->ops
->set_default_unicast_key
)
1057 local
->ops
->set_default_unicast_key(&local
->hw
, &sdata
->vif
,
1059 trace_drv_return_void(local
);
1062 #if IS_ENABLED(CONFIG_IPV6)
1063 static inline void drv_ipv6_addr_change(struct ieee80211_local
*local
,
1064 struct ieee80211_sub_if_data
*sdata
,
1065 struct inet6_dev
*idev
)
1067 trace_drv_ipv6_addr_change(local
, sdata
);
1068 if (local
->ops
->ipv6_addr_change
)
1069 local
->ops
->ipv6_addr_change(&local
->hw
, &sdata
->vif
, idev
);
1070 trace_drv_return_void(local
);
1074 #endif /* __MAC80211_DRIVER_OPS */