blob: 604ca59937f0f68685aa857c458941f42e710168 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Sara Sharonf59374e2016-03-02 23:46:14 +02002/*
3* Portions of this file
4* Copyright(c) 2016 Intel Deutschland GmbH
Sara Sharonfafd2bc2019-02-06 13:17:15 +02005* Copyright (C) 2018 - 2019 Intel Corporation
Sara Sharonf59374e2016-03-02 23:46:14 +02006*/
7
Johannes Berg24487982009-04-23 18:52:52 +02008#ifndef __MAC80211_DRIVER_OPS
9#define __MAC80211_DRIVER_OPS
10
11#include <net/mac80211.h>
12#include "ieee80211_i.h"
Johannes Berg011ad0e2012-06-22 12:55:52 +020013#include "trace.h"
Johannes Berg24487982009-04-23 18:52:52 +020014
Johannes Bergc8ad0102020-07-30 15:52:13 +020015#define check_sdata_in_driver(sdata) ({ \
16 !WARN_ONCE(!(sdata->flags & IEEE80211_SDATA_IN_DRIVER), \
17 "%s: Failed check-sdata-in-driver check, flags: 0x%x\n", \
18 sdata->dev ? sdata->dev->name : sdata->name, sdata->flags); \
19})
Johannes Berg7b7eab62011-11-03 14:41:13 +010020
Felix Fietkaubc192f82011-11-23 21:09:49 +070021static inline struct ieee80211_sub_if_data *
22get_bss_sdata(struct ieee80211_sub_if_data *sdata)
23{
24 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
25 sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
26 u.ap);
27
28 return sdata;
29}
30
Thomas Huehn36323f82012-07-23 21:33:42 +020031static inline void drv_tx(struct ieee80211_local *local,
32 struct ieee80211_tx_control *control,
33 struct sk_buff *skb)
Johannes Berg24487982009-04-23 18:52:52 +020034{
Thomas Huehn36323f82012-07-23 21:33:42 +020035 local->ops->tx(&local->hw, control, skb);
Johannes Berg24487982009-04-23 18:52:52 +020036}
37
Sara Sharonf59374e2016-03-02 23:46:14 +020038static inline void drv_sync_rx_queues(struct ieee80211_local *local,
39 struct sta_info *sta)
40{
41 if (local->ops->sync_rx_queues) {
42 trace_drv_sync_rx_queues(local, sta->sdata, &sta->sta);
43 local->ops->sync_rx_queues(&local->hw);
44 trace_drv_return_void(local);
45 }
46}
47
Ben Greeare3521142012-04-23 12:50:31 -070048static inline void drv_get_et_strings(struct ieee80211_sub_if_data *sdata,
49 u32 sset, u8 *data)
50{
51 struct ieee80211_local *local = sdata->local;
52 if (local->ops->get_et_strings) {
53 trace_drv_get_et_strings(local, sset);
54 local->ops->get_et_strings(&local->hw, &sdata->vif, sset, data);
55 trace_drv_return_void(local);
56 }
57}
58
59static inline void drv_get_et_stats(struct ieee80211_sub_if_data *sdata,
60 struct ethtool_stats *stats,
61 u64 *data)
62{
63 struct ieee80211_local *local = sdata->local;
64 if (local->ops->get_et_stats) {
65 trace_drv_get_et_stats(local);
66 local->ops->get_et_stats(&local->hw, &sdata->vif, stats, data);
67 trace_drv_return_void(local);
68 }
69}
70
71static inline int drv_get_et_sset_count(struct ieee80211_sub_if_data *sdata,
72 int sset)
73{
74 struct ieee80211_local *local = sdata->local;
75 int rv = 0;
76 if (local->ops->get_et_sset_count) {
77 trace_drv_get_et_sset_count(local, sset);
78 rv = local->ops->get_et_sset_count(&local->hw, &sdata->vif,
79 sset);
80 trace_drv_return_int(local, rv);
81 }
82 return rv;
83}
84
Eliad Peller968a76c2015-10-25 10:59:36 +020085int drv_start(struct ieee80211_local *local);
86void drv_stop(struct ieee80211_local *local);
Johannes Berg24487982009-04-23 18:52:52 +020087
Johannes Bergeecc4802011-05-04 15:37:29 +020088#ifdef CONFIG_PM
89static inline int drv_suspend(struct ieee80211_local *local,
90 struct cfg80211_wowlan *wowlan)
91{
92 int ret;
93
94 might_sleep();
95
96 trace_drv_suspend(local);
97 ret = local->ops->suspend(&local->hw, wowlan);
98 trace_drv_return_int(local, ret);
99 return ret;
100}
101
102static inline int drv_resume(struct ieee80211_local *local)
103{
104 int ret;
105
106 might_sleep();
107
108 trace_drv_resume(local);
109 ret = local->ops->resume(&local->hw);
110 trace_drv_return_int(local, ret);
111 return ret;
112}
Johannes Berg6d525632012-04-04 15:05:25 +0200113
114static inline void drv_set_wakeup(struct ieee80211_local *local,
115 bool enabled)
116{
117 might_sleep();
118
119 if (!local->ops->set_wakeup)
120 return;
121
122 trace_drv_set_wakeup(local, enabled);
123 local->ops->set_wakeup(&local->hw, enabled);
124 trace_drv_return_void(local);
125}
Johannes Bergeecc4802011-05-04 15:37:29 +0200126#endif
127
Denys Vlasenko9aae2962015-09-18 15:19:38 +0200128int drv_add_interface(struct ieee80211_local *local,
129 struct ieee80211_sub_if_data *sdata);
Kalle Valoe1781ed2009-12-23 13:15:47 +0100130
Denys Vlasenko9aae2962015-09-18 15:19:38 +0200131int drv_change_interface(struct ieee80211_local *local,
132 struct ieee80211_sub_if_data *sdata,
133 enum nl80211_iftype type, bool p2p);
Kalle Valoe1781ed2009-12-23 13:15:47 +0100134
Denys Vlasenko9aae2962015-09-18 15:19:38 +0200135void drv_remove_interface(struct ieee80211_local *local,
136 struct ieee80211_sub_if_data *sdata);
Johannes Berg24487982009-04-23 18:52:52 +0200137
138static inline int drv_config(struct ieee80211_local *local, u32 changed)
139{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100140 int ret;
141
142 might_sleep();
143
Johannes Berg4efc76b2010-06-10 10:56:20 +0200144 trace_drv_config(local, changed);
Kalle Valoe1781ed2009-12-23 13:15:47 +0100145 ret = local->ops->config(&local->hw, changed);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200146 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200147 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200148}
149
150static inline void drv_bss_info_changed(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100151 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200152 struct ieee80211_bss_conf *info,
153 u32 changed)
154{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100155 might_sleep();
156
Johannes Berg5bbe754d2013-02-13 13:50:51 +0100157 if (WARN_ON_ONCE(changed & (BSS_CHANGED_BEACON |
158 BSS_CHANGED_BEACON_ENABLED) &&
159 sdata->vif.type != NL80211_IFTYPE_AP &&
160 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Rostislav Lisovy239281f2014-11-03 10:33:19 +0100161 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
162 sdata->vif.type != NL80211_IFTYPE_OCB))
Johannes Berg5bbe754d2013-02-13 13:50:51 +0100163 return;
164
165 if (WARN_ON_ONCE(sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE ||
Ayala Beker708d50e2016-09-20 17:31:14 +0300166 sdata->vif.type == NL80211_IFTYPE_NAN ||
Aviya Erenfeld42bd20d2016-08-29 23:25:16 +0300167 (sdata->vif.type == NL80211_IFTYPE_MONITOR &&
Peter Große3a3713e2017-12-13 18:29:46 +0100168 !sdata->vif.mu_mimo_owner &&
169 !(changed & BSS_CHANGED_TXPOWER))))
Johannes Berg5bbe754d2013-02-13 13:50:51 +0100170 return;
Johannes Bergb8dc1a32012-12-14 14:22:10 +0100171
Johannes Bergf6837ba82014-04-30 14:19:04 +0200172 if (!check_sdata_in_driver(sdata))
173 return;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100174
Johannes Berg4efc76b2010-06-10 10:56:20 +0200175 trace_drv_bss_info_changed(local, sdata, info, changed);
Johannes Berg24487982009-04-23 18:52:52 +0200176 if (local->ops->bss_info_changed)
Johannes Berg12375ef2009-11-25 20:30:31 +0100177 local->ops->bss_info_changed(&local->hw, &sdata->vif, info, changed);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200178 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200179}
180
Johannes Berg3ac64be2009-08-17 16:16:53 +0200181static inline u64 drv_prepare_multicast(struct ieee80211_local *local,
Jiri Pirko22bedad32010-04-01 21:22:57 +0000182 struct netdev_hw_addr_list *mc_list)
Johannes Berg24487982009-04-23 18:52:52 +0200183{
Johannes Berg3ac64be2009-08-17 16:16:53 +0200184 u64 ret = 0;
185
Johannes Berg4efc76b2010-06-10 10:56:20 +0200186 trace_drv_prepare_multicast(local, mc_list->count);
187
Johannes Berg3ac64be2009-08-17 16:16:53 +0200188 if (local->ops->prepare_multicast)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000189 ret = local->ops->prepare_multicast(&local->hw, mc_list);
Johannes Berg3ac64be2009-08-17 16:16:53 +0200190
Johannes Berg4efc76b2010-06-10 10:56:20 +0200191 trace_drv_return_u64(local, ret);
Johannes Berg3ac64be2009-08-17 16:16:53 +0200192
193 return ret;
194}
195
196static inline void drv_configure_filter(struct ieee80211_local *local,
197 unsigned int changed_flags,
198 unsigned int *total_flags,
199 u64 multicast)
200{
201 might_sleep();
202
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200203 trace_drv_configure_filter(local, changed_flags, total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +0200204 multicast);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200205 local->ops->configure_filter(&local->hw, changed_flags, total_flags,
206 multicast);
207 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200208}
209
Andrei Otcheretianski1b09b552015-08-15 22:39:50 +0300210static inline void drv_config_iface_filter(struct ieee80211_local *local,
211 struct ieee80211_sub_if_data *sdata,
212 unsigned int filter_flags,
213 unsigned int changed_flags)
214{
215 might_sleep();
216
217 trace_drv_config_iface_filter(local, sdata, filter_flags,
218 changed_flags);
219 if (local->ops->config_iface_filter)
220 local->ops->config_iface_filter(&local->hw, &sdata->vif,
221 filter_flags,
222 changed_flags);
223 trace_drv_return_void(local);
224}
225
Johannes Berg24487982009-04-23 18:52:52 +0200226static inline int drv_set_tim(struct ieee80211_local *local,
227 struct ieee80211_sta *sta, bool set)
228{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200229 int ret = 0;
Johannes Berg4efc76b2010-06-10 10:56:20 +0200230 trace_drv_set_tim(local, sta, set);
Johannes Berg24487982009-04-23 18:52:52 +0200231 if (local->ops->set_tim)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200232 ret = local->ops->set_tim(&local->hw, sta, set);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200233 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200234 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200235}
236
237static inline int drv_set_key(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100238 enum set_key_cmd cmd,
239 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200240 struct ieee80211_sta *sta,
241 struct ieee80211_key_conf *key)
242{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100243 int ret;
244
245 might_sleep();
246
Johannes Berg077f4932012-01-20 13:55:18 +0100247 sdata = get_bss_sdata(sdata);
Johannes Bergf6837ba82014-04-30 14:19:04 +0200248 if (!check_sdata_in_driver(sdata))
249 return -EIO;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100250
Johannes Berg4efc76b2010-06-10 10:56:20 +0200251 trace_drv_set_key(local, cmd, sdata, sta, key);
Kalle Valoe1781ed2009-12-23 13:15:47 +0100252 ret = local->ops->set_key(&local->hw, cmd, &sdata->vif, sta, key);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200253 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200254 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200255}
256
257static inline void drv_update_tkip_key(struct ieee80211_local *local,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100258 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200259 struct ieee80211_key_conf *conf,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100260 struct sta_info *sta, u32 iv32,
Johannes Berg24487982009-04-23 18:52:52 +0200261 u16 *phase1key)
262{
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100263 struct ieee80211_sta *ista = NULL;
264
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100265 if (sta)
266 ista = &sta->sta;
267
Johannes Berg077f4932012-01-20 13:55:18 +0100268 sdata = get_bss_sdata(sdata);
Johannes Bergf6837ba82014-04-30 14:19:04 +0200269 if (!check_sdata_in_driver(sdata))
270 return;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100271
Johannes Berg4efc76b2010-06-10 10:56:20 +0200272 trace_drv_update_tkip_key(local, sdata, conf, ista, iv32);
Johannes Berg24487982009-04-23 18:52:52 +0200273 if (local->ops->update_tkip_key)
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100274 local->ops->update_tkip_key(&local->hw, &sdata->vif, conf,
275 ista, iv32, phase1key);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200276 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200277}
278
279static inline int drv_hw_scan(struct ieee80211_local *local,
Johannes Berga060bbf2010-04-27 11:59:34 +0200280 struct ieee80211_sub_if_data *sdata,
David Spinadelc56ef672014-02-05 15:21:13 +0200281 struct ieee80211_scan_request *req)
Johannes Berg24487982009-04-23 18:52:52 +0200282{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100283 int ret;
284
285 might_sleep();
286
Johannes Bergf6837ba82014-04-30 14:19:04 +0200287 if (!check_sdata_in_driver(sdata))
288 return -EIO;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100289
Luciano Coelho79f460c2011-05-11 17:09:36 +0300290 trace_drv_hw_scan(local, sdata);
Johannes Berga060bbf2010-04-27 11:59:34 +0200291 ret = local->ops->hw_scan(&local->hw, &sdata->vif, req);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200292 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200293 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200294}
295
Eliad Pellerb8564392011-06-13 12:47:30 +0300296static inline void drv_cancel_hw_scan(struct ieee80211_local *local,
297 struct ieee80211_sub_if_data *sdata)
298{
299 might_sleep();
300
Johannes Bergf6837ba82014-04-30 14:19:04 +0200301 if (!check_sdata_in_driver(sdata))
302 return;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100303
Eliad Pellerb8564392011-06-13 12:47:30 +0300304 trace_drv_cancel_hw_scan(local, sdata);
305 local->ops->cancel_hw_scan(&local->hw, &sdata->vif);
306 trace_drv_return_void(local);
307}
308
Luciano Coelho79f460c2011-05-11 17:09:36 +0300309static inline int
310drv_sched_scan_start(struct ieee80211_local *local,
311 struct ieee80211_sub_if_data *sdata,
312 struct cfg80211_sched_scan_request *req,
David Spinadel633e2712014-02-06 16:15:23 +0200313 struct ieee80211_scan_ies *ies)
Luciano Coelho79f460c2011-05-11 17:09:36 +0300314{
315 int ret;
316
317 might_sleep();
318
Johannes Bergf6837ba82014-04-30 14:19:04 +0200319 if (!check_sdata_in_driver(sdata))
320 return -EIO;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100321
Luciano Coelho79f460c2011-05-11 17:09:36 +0300322 trace_drv_sched_scan_start(local, sdata);
323 ret = local->ops->sched_scan_start(&local->hw, &sdata->vif,
324 req, ies);
325 trace_drv_return_int(local, ret);
326 return ret;
327}
328
Johannes Berg37e33082014-02-17 10:48:17 +0100329static inline int drv_sched_scan_stop(struct ieee80211_local *local,
330 struct ieee80211_sub_if_data *sdata)
Luciano Coelho79f460c2011-05-11 17:09:36 +0300331{
Johannes Berg37e33082014-02-17 10:48:17 +0100332 int ret;
333
Luciano Coelho79f460c2011-05-11 17:09:36 +0300334 might_sleep();
335
Johannes Bergf6837ba82014-04-30 14:19:04 +0200336 if (!check_sdata_in_driver(sdata))
337 return -EIO;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100338
Luciano Coelho79f460c2011-05-11 17:09:36 +0300339 trace_drv_sched_scan_stop(local, sdata);
Johannes Berg37e33082014-02-17 10:48:17 +0100340 ret = local->ops->sched_scan_stop(&local->hw, &sdata->vif);
341 trace_drv_return_int(local, ret);
342
343 return ret;
Luciano Coelho79f460c2011-05-11 17:09:36 +0300344}
345
Johannes Berga344d672014-06-12 22:24:31 +0200346static inline void drv_sw_scan_start(struct ieee80211_local *local,
347 struct ieee80211_sub_if_data *sdata,
348 const u8 *mac_addr)
Johannes Berg24487982009-04-23 18:52:52 +0200349{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100350 might_sleep();
351
Johannes Berga344d672014-06-12 22:24:31 +0200352 trace_drv_sw_scan_start(local, sdata, mac_addr);
Johannes Berg24487982009-04-23 18:52:52 +0200353 if (local->ops->sw_scan_start)
Johannes Berga344d672014-06-12 22:24:31 +0200354 local->ops->sw_scan_start(&local->hw, &sdata->vif, mac_addr);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200355 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200356}
357
Johannes Berga344d672014-06-12 22:24:31 +0200358static inline void drv_sw_scan_complete(struct ieee80211_local *local,
359 struct ieee80211_sub_if_data *sdata)
Johannes Berg24487982009-04-23 18:52:52 +0200360{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100361 might_sleep();
362
Johannes Berga344d672014-06-12 22:24:31 +0200363 trace_drv_sw_scan_complete(local, sdata);
Johannes Berg24487982009-04-23 18:52:52 +0200364 if (local->ops->sw_scan_complete)
Johannes Berga344d672014-06-12 22:24:31 +0200365 local->ops->sw_scan_complete(&local->hw, &sdata->vif);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200366 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200367}
368
369static inline int drv_get_stats(struct ieee80211_local *local,
370 struct ieee80211_low_level_stats *stats)
371{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200372 int ret = -EOPNOTSUPP;
373
Kalle Valoe1781ed2009-12-23 13:15:47 +0100374 might_sleep();
375
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200376 if (local->ops->get_stats)
377 ret = local->ops->get_stats(&local->hw, stats);
378 trace_drv_get_stats(local, stats, ret);
379
380 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200381}
382
Johannes Berg9352c192015-04-20 18:12:41 +0200383static inline void drv_get_key_seq(struct ieee80211_local *local,
384 struct ieee80211_key *key,
385 struct ieee80211_key_seq *seq)
Johannes Berg24487982009-04-23 18:52:52 +0200386{
Johannes Berg9352c192015-04-20 18:12:41 +0200387 if (local->ops->get_key_seq)
388 local->ops->get_key_seq(&local->hw, &key->conf, seq);
389 trace_drv_get_key_seq(local, &key->conf);
Johannes Berg24487982009-04-23 18:52:52 +0200390}
391
Arik Nemtsovf23a4782010-11-08 11:51:06 +0200392static inline int drv_set_frag_threshold(struct ieee80211_local *local,
393 u32 value)
394{
395 int ret = 0;
396
397 might_sleep();
398
399 trace_drv_set_frag_threshold(local, value);
400 if (local->ops->set_frag_threshold)
401 ret = local->ops->set_frag_threshold(&local->hw, value);
402 trace_drv_return_int(local, ret);
403 return ret;
404}
405
Johannes Berg24487982009-04-23 18:52:52 +0200406static inline int drv_set_rts_threshold(struct ieee80211_local *local,
407 u32 value)
408{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200409 int ret = 0;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100410
411 might_sleep();
412
Johannes Berg4efc76b2010-06-10 10:56:20 +0200413 trace_drv_set_rts_threshold(local, value);
Johannes Berg24487982009-04-23 18:52:52 +0200414 if (local->ops->set_rts_threshold)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200415 ret = local->ops->set_rts_threshold(&local->hw, value);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200416 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200417 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200418}
419
Lukáš Turek310bc672009-12-21 22:50:48 +0100420static inline int drv_set_coverage_class(struct ieee80211_local *local,
Lorenzo Bianconia4bcaf52014-09-04 23:57:41 +0200421 s16 value)
Lukáš Turek310bc672009-12-21 22:50:48 +0100422{
423 int ret = 0;
424 might_sleep();
425
Johannes Berg4efc76b2010-06-10 10:56:20 +0200426 trace_drv_set_coverage_class(local, value);
Lukáš Turek310bc672009-12-21 22:50:48 +0100427 if (local->ops->set_coverage_class)
428 local->ops->set_coverage_class(&local->hw, value);
429 else
430 ret = -EOPNOTSUPP;
431
Johannes Berg4efc76b2010-06-10 10:56:20 +0200432 trace_drv_return_int(local, ret);
Lukáš Turek310bc672009-12-21 22:50:48 +0100433 return ret;
434}
435
Johannes Berg24487982009-04-23 18:52:52 +0200436static inline void drv_sta_notify(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100437 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200438 enum sta_notify_cmd cmd,
439 struct ieee80211_sta *sta)
440{
Felix Fietkaubc192f82011-11-23 21:09:49 +0700441 sdata = get_bss_sdata(sdata);
Johannes Bergf6837ba82014-04-30 14:19:04 +0200442 if (!check_sdata_in_driver(sdata))
443 return;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100444
Johannes Berg4efc76b2010-06-10 10:56:20 +0200445 trace_drv_sta_notify(local, sdata, cmd, sta);
Johannes Berg24487982009-04-23 18:52:52 +0200446 if (local->ops->sta_notify)
Johannes Berg12375ef2009-11-25 20:30:31 +0100447 local->ops->sta_notify(&local->hw, &sdata->vif, cmd, sta);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200448 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200449}
450
Johannes Berg34e89502010-02-03 13:59:58 +0100451static 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
Felix Fietkaubc192f82011-11-23 21:09:49 +0700459 sdata = get_bss_sdata(sdata);
Johannes Bergf6837ba82014-04-30 14:19:04 +0200460 if (!check_sdata_in_driver(sdata))
461 return -EIO;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100462
Johannes Berg4efc76b2010-06-10 10:56:20 +0200463 trace_drv_sta_add(local, sdata, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100464 if (local->ops->sta_add)
465 ret = local->ops->sta_add(&local->hw, &sdata->vif, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100466
Johannes Berg4efc76b2010-06-10 10:56:20 +0200467 trace_drv_return_int(local, ret);
Johannes Berg34e89502010-02-03 13:59:58 +0100468
469 return ret;
470}
471
472static inline void drv_sta_remove(struct ieee80211_local *local,
473 struct ieee80211_sub_if_data *sdata,
474 struct ieee80211_sta *sta)
475{
476 might_sleep();
477
Felix Fietkaubc192f82011-11-23 21:09:49 +0700478 sdata = get_bss_sdata(sdata);
Johannes Bergf6837ba82014-04-30 14:19:04 +0200479 if (!check_sdata_in_driver(sdata))
480 return;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100481
Johannes Berg4efc76b2010-06-10 10:56:20 +0200482 trace_drv_sta_remove(local, sdata, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100483 if (local->ops->sta_remove)
484 local->ops->sta_remove(&local->hw, &sdata->vif, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100485
Johannes Berg4efc76b2010-06-10 10:56:20 +0200486 trace_drv_return_void(local);
Johannes Berg34e89502010-02-03 13:59:58 +0100487}
488
Sujith Manoharan77d2ece62012-11-20 08:46:02 +0530489#ifdef CONFIG_MAC80211_DEBUGFS
490static inline void drv_sta_add_debugfs(struct ieee80211_local *local,
491 struct ieee80211_sub_if_data *sdata,
492 struct ieee80211_sta *sta,
493 struct dentry *dir)
494{
495 might_sleep();
496
497 sdata = get_bss_sdata(sdata);
Johannes Bergf6837ba82014-04-30 14:19:04 +0200498 if (!check_sdata_in_driver(sdata))
499 return;
Sujith Manoharan77d2ece62012-11-20 08:46:02 +0530500
501 if (local->ops->sta_add_debugfs)
502 local->ops->sta_add_debugfs(&local->hw, &sdata->vif,
503 sta, dir);
504}
Sujith Manoharan77d2ece62012-11-20 08:46:02 +0530505#endif
506
Johannes Berg6a9d1b92013-12-04 22:39:17 +0100507static inline void drv_sta_pre_rcu_remove(struct ieee80211_local *local,
508 struct ieee80211_sub_if_data *sdata,
509 struct sta_info *sta)
510{
511 might_sleep();
512
513 sdata = get_bss_sdata(sdata);
Johannes Bergf6837ba82014-04-30 14:19:04 +0200514 if (!check_sdata_in_driver(sdata))
515 return;
Johannes Berg6a9d1b92013-12-04 22:39:17 +0100516
517 trace_drv_sta_pre_rcu_remove(local, sdata, &sta->sta);
518 if (local->ops->sta_pre_rcu_remove)
519 local->ops->sta_pre_rcu_remove(&local->hw, &sdata->vif,
520 &sta->sta);
521 trace_drv_return_void(local);
522}
523
Denys Vlasenko727da602015-07-15 14:56:05 +0200524__must_check
Johannes Bergf09603a2012-01-20 13:55:21 +0100525int drv_sta_state(struct ieee80211_local *local,
526 struct ieee80211_sub_if_data *sdata,
527 struct sta_info *sta,
528 enum ieee80211_sta_state old_state,
Denys Vlasenko727da602015-07-15 14:56:05 +0200529 enum ieee80211_sta_state new_state);
Johannes Bergf09603a2012-01-20 13:55:21 +0100530
Ashok Raj Nagarajanba905bf2019-03-29 16:19:09 +0530531__must_check
532int drv_sta_set_txpwr(struct ieee80211_local *local,
533 struct ieee80211_sub_if_data *sdata,
534 struct sta_info *sta);
535
Denys Vlasenko4fbd5722015-09-18 15:19:35 +0200536void drv_sta_rc_update(struct ieee80211_local *local,
537 struct ieee80211_sub_if_data *sdata,
538 struct ieee80211_sta *sta, u32 changed);
Johannes Berg8f727ef2012-03-30 08:43:32 +0200539
Johannes Bergf815e2b2014-11-19 00:10:42 +0100540static inline void drv_sta_rate_tbl_update(struct ieee80211_local *local,
541 struct ieee80211_sub_if_data *sdata,
542 struct ieee80211_sta *sta)
543{
544 sdata = get_bss_sdata(sdata);
545 if (!check_sdata_in_driver(sdata))
546 return;
547
548 trace_drv_sta_rate_tbl_update(local, sdata, sta);
549 if (local->ops->sta_rate_tbl_update)
550 local->ops->sta_rate_tbl_update(&local->hw, &sdata->vif, sta);
551
552 trace_drv_return_void(local);
553}
554
Johannes Berg2b9a7e12014-11-17 11:35:23 +0100555static inline void drv_sta_statistics(struct ieee80211_local *local,
556 struct ieee80211_sub_if_data *sdata,
557 struct ieee80211_sta *sta,
558 struct station_info *sinfo)
559{
560 sdata = get_bss_sdata(sdata);
561 if (!check_sdata_in_driver(sdata))
562 return;
563
564 trace_drv_sta_statistics(local, sdata, sta);
565 if (local->ops->sta_statistics)
566 local->ops->sta_statistics(&local->hw, &sdata->vif, sta, sinfo);
567 trace_drv_return_void(local);
568}
569
Denys Vlasenkob23dcd42015-09-18 15:19:34 +0200570int drv_conf_tx(struct ieee80211_local *local,
571 struct ieee80211_sub_if_data *sdata, u16 ac,
572 const struct ieee80211_tx_queue_params *params);
Johannes Berg24487982009-04-23 18:52:52 +0200573
Denys Vlasenko416eb9f2015-09-23 14:18:36 +0200574u64 drv_get_tsf(struct ieee80211_local *local,
575 struct ieee80211_sub_if_data *sdata);
576void drv_set_tsf(struct ieee80211_local *local,
577 struct ieee80211_sub_if_data *sdata,
578 u64 tsf);
Pedersen, Thomas354d3812016-09-28 16:56:28 -0700579void drv_offset_tsf(struct ieee80211_local *local,
580 struct ieee80211_sub_if_data *sdata,
581 s64 offset);
Denys Vlasenko416eb9f2015-09-23 14:18:36 +0200582void drv_reset_tsf(struct ieee80211_local *local,
583 struct ieee80211_sub_if_data *sdata);
Johannes Berg24487982009-04-23 18:52:52 +0200584
585static inline int drv_tx_last_beacon(struct ieee80211_local *local)
586{
Masanari Iida02582e92012-08-22 19:11:26 +0900587 int ret = 0; /* default unsupported op for less congestion */
Kalle Valoe1781ed2009-12-23 13:15:47 +0100588
589 might_sleep();
590
Johannes Berg4efc76b2010-06-10 10:56:20 +0200591 trace_drv_tx_last_beacon(local);
Johannes Berg24487982009-04-23 18:52:52 +0200592 if (local->ops->tx_last_beacon)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200593 ret = local->ops->tx_last_beacon(&local->hw);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200594 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200595 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200596}
597
Denys Vlasenko6db96832015-09-23 14:18:35 +0200598int drv_ampdu_action(struct ieee80211_local *local,
599 struct ieee80211_sub_if_data *sdata,
Sara Sharon50ea05e2015-12-30 16:06:04 +0200600 struct ieee80211_ampdu_params *params);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200601
Holger Schurig12897232010-04-19 10:23:57 +0200602static inline int drv_get_survey(struct ieee80211_local *local, int idx,
603 struct survey_info *survey)
604{
605 int ret = -EOPNOTSUPP;
John W. Linvillec466d4e2010-06-29 14:51:23 -0400606
607 trace_drv_get_survey(local, idx, survey);
608
Holger Schurig35dd0502010-06-07 16:33:49 +0200609 if (local->ops->get_survey)
Holger Schurig12897232010-04-19 10:23:57 +0200610 ret = local->ops->get_survey(&local->hw, idx, survey);
John W. Linvillec466d4e2010-06-29 14:51:23 -0400611
612 trace_drv_return_int(local, ret);
613
Holger Schurig12897232010-04-19 10:23:57 +0200614 return ret;
615}
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200616
617static inline void drv_rfkill_poll(struct ieee80211_local *local)
618{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100619 might_sleep();
620
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200621 if (local->ops->rfkill_poll)
622 local->ops->rfkill_poll(&local->hw);
623}
Johannes Berga80f7c02009-12-23 13:15:32 +0100624
Johannes Berg39ecc012013-02-13 12:11:00 +0100625static inline void drv_flush(struct ieee80211_local *local,
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +0200626 struct ieee80211_sub_if_data *sdata,
Johannes Berg39ecc012013-02-13 12:11:00 +0100627 u32 queues, bool drop)
Johannes Berga80f7c02009-12-23 13:15:32 +0100628{
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +0200629 struct ieee80211_vif *vif = sdata ? &sdata->vif : NULL;
630
Kalle Valoe1781ed2009-12-23 13:15:47 +0100631 might_sleep();
632
Johannes Bergf6837ba82014-04-30 14:19:04 +0200633 if (sdata && !check_sdata_in_driver(sdata))
634 return;
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +0200635
Johannes Berg39ecc012013-02-13 12:11:00 +0100636 trace_drv_flush(local, queues, drop);
Johannes Berga80f7c02009-12-23 13:15:32 +0100637 if (local->ops->flush)
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +0200638 local->ops->flush(&local->hw, vif, queues, drop);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200639 trace_drv_return_void(local);
Johannes Berga80f7c02009-12-23 13:15:32 +0100640}
Johannes Berg5ce6e432010-05-11 16:20:57 +0200641
642static inline void drv_channel_switch(struct ieee80211_local *local,
Luciano Coelho0f791eb42014-10-08 09:48:40 +0300643 struct ieee80211_sub_if_data *sdata,
644 struct ieee80211_channel_switch *ch_switch)
Johannes Berg5ce6e432010-05-11 16:20:57 +0200645{
646 might_sleep();
647
Luciano Coelho0f791eb42014-10-08 09:48:40 +0300648 trace_drv_channel_switch(local, sdata, ch_switch);
649 local->ops->channel_switch(&local->hw, &sdata->vif, ch_switch);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200650 trace_drv_return_void(local);
Johannes Berg5ce6e432010-05-11 16:20:57 +0200651}
652
Bruno Randolf15d96752010-11-10 12:50:56 +0900653
654static inline int drv_set_antenna(struct ieee80211_local *local,
655 u32 tx_ant, u32 rx_ant)
656{
657 int ret = -EOPNOTSUPP;
658 might_sleep();
659 if (local->ops->set_antenna)
660 ret = local->ops->set_antenna(&local->hw, tx_ant, rx_ant);
661 trace_drv_set_antenna(local, tx_ant, rx_ant, ret);
662 return ret;
663}
664
665static inline int drv_get_antenna(struct ieee80211_local *local,
666 u32 *tx_ant, u32 *rx_ant)
667{
668 int ret = -EOPNOTSUPP;
669 might_sleep();
670 if (local->ops->get_antenna)
671 ret = local->ops->get_antenna(&local->hw, tx_ant, rx_ant);
672 trace_drv_get_antenna(local, *tx_ant, *rx_ant, ret);
673 return ret;
674}
675
Johannes Berg21f83582010-12-18 17:20:47 +0100676static inline int drv_remain_on_channel(struct ieee80211_local *local,
Eliad Peller49884562012-11-19 17:05:09 +0200677 struct ieee80211_sub_if_data *sdata,
Johannes Berg21f83582010-12-18 17:20:47 +0100678 struct ieee80211_channel *chan,
Ilan Peerd339d5c2013-02-12 09:34:13 +0200679 unsigned int duration,
680 enum ieee80211_roc_type type)
Johannes Berg21f83582010-12-18 17:20:47 +0100681{
682 int ret;
683
684 might_sleep();
685
Ilan Peerd339d5c2013-02-12 09:34:13 +0200686 trace_drv_remain_on_channel(local, sdata, chan, duration, type);
Eliad Peller49884562012-11-19 17:05:09 +0200687 ret = local->ops->remain_on_channel(&local->hw, &sdata->vif,
Ilan Peerd339d5c2013-02-12 09:34:13 +0200688 chan, duration, type);
Johannes Berg21f83582010-12-18 17:20:47 +0100689 trace_drv_return_int(local, ret);
690
691 return ret;
692}
693
Emmanuel Grumbach5db4c4b2019-07-23 21:00:01 +0300694static inline int
695drv_cancel_remain_on_channel(struct ieee80211_local *local,
696 struct ieee80211_sub_if_data *sdata)
Johannes Berg21f83582010-12-18 17:20:47 +0100697{
698 int ret;
699
700 might_sleep();
701
Emmanuel Grumbach5db4c4b2019-07-23 21:00:01 +0300702 trace_drv_cancel_remain_on_channel(local, sdata);
703 ret = local->ops->cancel_remain_on_channel(&local->hw, &sdata->vif);
Johannes Berg21f83582010-12-18 17:20:47 +0100704 trace_drv_return_int(local, ret);
705
706 return ret;
707}
708
John W. Linville38c09152011-03-07 16:19:18 -0500709static inline int drv_set_ringparam(struct ieee80211_local *local,
710 u32 tx, u32 rx)
711{
712 int ret = -ENOTSUPP;
713
714 might_sleep();
715
716 trace_drv_set_ringparam(local, tx, rx);
717 if (local->ops->set_ringparam)
718 ret = local->ops->set_ringparam(&local->hw, tx, rx);
719 trace_drv_return_int(local, ret);
720
721 return ret;
722}
723
724static inline void drv_get_ringparam(struct ieee80211_local *local,
725 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max)
726{
727 might_sleep();
728
729 trace_drv_get_ringparam(local, tx, tx_max, rx, rx_max);
730 if (local->ops->get_ringparam)
731 local->ops->get_ringparam(&local->hw, tx, tx_max, rx, rx_max);
732 trace_drv_return_void(local);
733}
734
Vivek Natarajane8306f92011-04-06 11:41:10 +0530735static inline bool drv_tx_frames_pending(struct ieee80211_local *local)
736{
737 bool ret = false;
738
739 might_sleep();
740
741 trace_drv_tx_frames_pending(local);
742 if (local->ops->tx_frames_pending)
743 ret = local->ops->tx_frames_pending(&local->hw);
744 trace_drv_return_bool(local, ret);
745
746 return ret;
747}
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +0530748
749static inline int drv_set_bitrate_mask(struct ieee80211_local *local,
750 struct ieee80211_sub_if_data *sdata,
751 const struct cfg80211_bitrate_mask *mask)
752{
753 int ret = -EOPNOTSUPP;
754
755 might_sleep();
756
Johannes Bergf6837ba82014-04-30 14:19:04 +0200757 if (!check_sdata_in_driver(sdata))
758 return -EIO;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100759
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +0530760 trace_drv_set_bitrate_mask(local, sdata, mask);
761 if (local->ops->set_bitrate_mask)
762 ret = local->ops->set_bitrate_mask(&local->hw,
763 &sdata->vif, mask);
764 trace_drv_return_int(local, ret);
765
766 return ret;
767}
768
Johannes Bergc68f4b82011-07-05 16:35:41 +0200769static inline void drv_set_rekey_data(struct ieee80211_local *local,
770 struct ieee80211_sub_if_data *sdata,
771 struct cfg80211_gtk_rekey_data *data)
772{
Johannes Bergf6837ba82014-04-30 14:19:04 +0200773 if (!check_sdata_in_driver(sdata))
774 return;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100775
Johannes Bergc68f4b82011-07-05 16:35:41 +0200776 trace_drv_set_rekey_data(local, sdata, data);
777 if (local->ops->set_rekey_data)
778 local->ops->set_rekey_data(&local->hw, &sdata->vif, data);
779 trace_drv_return_void(local);
780}
781
Emmanuel Grumbacha8182922015-03-16 23:23:34 +0200782static inline void drv_event_callback(struct ieee80211_local *local,
783 struct ieee80211_sub_if_data *sdata,
784 const struct ieee80211_event *event)
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -0700785{
Emmanuel Grumbacha8182922015-03-16 23:23:34 +0200786 trace_drv_event_callback(local, sdata, event);
787 if (local->ops->event_callback)
788 local->ops->event_callback(&local->hw, &sdata->vif, event);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -0700789 trace_drv_return_void(local);
790}
Johannes Berg4049e092011-09-29 16:04:32 +0200791
792static inline void
793drv_release_buffered_frames(struct ieee80211_local *local,
794 struct sta_info *sta, u16 tids, int num_frames,
795 enum ieee80211_frame_release_type reason,
796 bool more_data)
797{
798 trace_drv_release_buffered_frames(local, &sta->sta, tids, num_frames,
799 reason, more_data);
800 if (local->ops->release_buffered_frames)
801 local->ops->release_buffered_frames(&local->hw, &sta->sta, tids,
802 num_frames, reason,
803 more_data);
804 trace_drv_return_void(local);
805}
Johannes Berg40b96402011-09-29 16:04:38 +0200806
807static inline void
808drv_allow_buffered_frames(struct ieee80211_local *local,
809 struct sta_info *sta, u16 tids, int num_frames,
810 enum ieee80211_frame_release_type reason,
811 bool more_data)
812{
813 trace_drv_allow_buffered_frames(local, &sta->sta, tids, num_frames,
814 reason, more_data);
815 if (local->ops->allow_buffered_frames)
816 local->ops->allow_buffered_frames(&local->hw, &sta->sta,
817 tids, num_frames, reason,
818 more_data);
819 trace_drv_return_void(local);
820}
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300821
Johannes Berga1845fc2012-06-27 13:18:36 +0200822static inline void drv_mgd_prepare_tx(struct ieee80211_local *local,
Ilan Peerd4e36e52018-04-20 13:49:25 +0300823 struct ieee80211_sub_if_data *sdata,
824 u16 duration)
Johannes Berga1845fc2012-06-27 13:18:36 +0200825{
826 might_sleep();
827
Johannes Bergf6837ba82014-04-30 14:19:04 +0200828 if (!check_sdata_in_driver(sdata))
829 return;
Johannes Berga1845fc2012-06-27 13:18:36 +0200830 WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION);
831
Ilan Peerd4e36e52018-04-20 13:49:25 +0300832 trace_drv_mgd_prepare_tx(local, sdata, duration);
Johannes Berga1845fc2012-06-27 13:18:36 +0200833 if (local->ops->mgd_prepare_tx)
Ilan Peerd4e36e52018-04-20 13:49:25 +0300834 local->ops->mgd_prepare_tx(&local->hw, &sdata->vif, duration);
Johannes Berga1845fc2012-06-27 13:18:36 +0200835 trace_drv_return_void(local);
836}
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200837
Arik Nemtsovee10f2c2014-06-11 17:18:27 +0300838static inline void
839drv_mgd_protect_tdls_discover(struct ieee80211_local *local,
840 struct ieee80211_sub_if_data *sdata)
841{
842 might_sleep();
843
844 if (!check_sdata_in_driver(sdata))
845 return;
846 WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION);
847
848 trace_drv_mgd_protect_tdls_discover(local, sdata);
849 if (local->ops->mgd_protect_tdls_discover)
850 local->ops->mgd_protect_tdls_discover(&local->hw, &sdata->vif);
851 trace_drv_return_void(local);
852}
853
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200854static inline int drv_add_chanctx(struct ieee80211_local *local,
855 struct ieee80211_chanctx *ctx)
856{
857 int ret = -EOPNOTSUPP;
858
Chaitanya T Kdcae9e02015-10-30 23:16:15 +0530859 might_sleep();
860
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200861 trace_drv_add_chanctx(local, ctx);
862 if (local->ops->add_chanctx)
863 ret = local->ops->add_chanctx(&local->hw, &ctx->conf);
864 trace_drv_return_int(local, ret);
Johannes Berg8a61af62012-12-13 17:42:30 +0100865 if (!ret)
866 ctx->driver_present = true;
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200867
868 return ret;
869}
870
871static inline void drv_remove_chanctx(struct ieee80211_local *local,
872 struct ieee80211_chanctx *ctx)
873{
Chaitanya T Kdcae9e02015-10-30 23:16:15 +0530874 might_sleep();
875
Johannes Bergf6837ba82014-04-30 14:19:04 +0200876 if (WARN_ON(!ctx->driver_present))
877 return;
878
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200879 trace_drv_remove_chanctx(local, ctx);
880 if (local->ops->remove_chanctx)
881 local->ops->remove_chanctx(&local->hw, &ctx->conf);
882 trace_drv_return_void(local);
Johannes Berg8a61af62012-12-13 17:42:30 +0100883 ctx->driver_present = false;
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200884}
885
886static inline void drv_change_chanctx(struct ieee80211_local *local,
887 struct ieee80211_chanctx *ctx,
888 u32 changed)
889{
Chaitanya T Kdcae9e02015-10-30 23:16:15 +0530890 might_sleep();
891
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200892 trace_drv_change_chanctx(local, ctx, changed);
Johannes Berg8a61af62012-12-13 17:42:30 +0100893 if (local->ops->change_chanctx) {
894 WARN_ON_ONCE(!ctx->driver_present);
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200895 local->ops->change_chanctx(&local->hw, &ctx->conf, changed);
Johannes Berg8a61af62012-12-13 17:42:30 +0100896 }
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200897 trace_drv_return_void(local);
898}
899
900static inline int drv_assign_vif_chanctx(struct ieee80211_local *local,
901 struct ieee80211_sub_if_data *sdata,
902 struct ieee80211_chanctx *ctx)
903{
904 int ret = 0;
905
Johannes Bergf6837ba82014-04-30 14:19:04 +0200906 if (!check_sdata_in_driver(sdata))
907 return -EIO;
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200908
909 trace_drv_assign_vif_chanctx(local, sdata, ctx);
Johannes Berg8a61af62012-12-13 17:42:30 +0100910 if (local->ops->assign_vif_chanctx) {
911 WARN_ON_ONCE(!ctx->driver_present);
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200912 ret = local->ops->assign_vif_chanctx(&local->hw,
913 &sdata->vif,
914 &ctx->conf);
Johannes Berg8a61af62012-12-13 17:42:30 +0100915 }
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200916 trace_drv_return_int(local, ret);
917
918 return ret;
919}
920
921static inline void drv_unassign_vif_chanctx(struct ieee80211_local *local,
922 struct ieee80211_sub_if_data *sdata,
923 struct ieee80211_chanctx *ctx)
924{
Chaitanya T Kdcae9e02015-10-30 23:16:15 +0530925 might_sleep();
926
Johannes Bergf6837ba82014-04-30 14:19:04 +0200927 if (!check_sdata_in_driver(sdata))
928 return;
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200929
930 trace_drv_unassign_vif_chanctx(local, sdata, ctx);
Johannes Berg8a61af62012-12-13 17:42:30 +0100931 if (local->ops->unassign_vif_chanctx) {
932 WARN_ON_ONCE(!ctx->driver_present);
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200933 local->ops->unassign_vif_chanctx(&local->hw,
934 &sdata->vif,
935 &ctx->conf);
Johannes Berg8a61af62012-12-13 17:42:30 +0100936 }
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200937 trace_drv_return_void(local);
938}
939
Denys Vlasenko42677ed2015-09-23 14:18:34 +0200940int drv_switch_vif_chanctx(struct ieee80211_local *local,
941 struct ieee80211_vif_chanctx_switch *vifs,
942 int n_vifs, enum ieee80211_chanctx_switch_mode mode);
Luciano Coelho1a5f0c12014-05-23 14:33:12 +0300943
Johannes Berg10416382012-10-19 15:44:42 +0200944static inline int drv_start_ap(struct ieee80211_local *local,
945 struct ieee80211_sub_if_data *sdata)
946{
947 int ret = 0;
948
Chaitanya T Kdcae9e02015-10-30 23:16:15 +0530949 might_sleep();
950
Johannes Bergf6837ba82014-04-30 14:19:04 +0200951 if (!check_sdata_in_driver(sdata))
952 return -EIO;
Johannes Berg10416382012-10-19 15:44:42 +0200953
954 trace_drv_start_ap(local, sdata, &sdata->vif.bss_conf);
955 if (local->ops->start_ap)
956 ret = local->ops->start_ap(&local->hw, &sdata->vif);
957 trace_drv_return_int(local, ret);
958 return ret;
959}
960
961static inline void drv_stop_ap(struct ieee80211_local *local,
962 struct ieee80211_sub_if_data *sdata)
963{
Johannes Bergf6837ba82014-04-30 14:19:04 +0200964 if (!check_sdata_in_driver(sdata))
965 return;
Johannes Berg10416382012-10-19 15:44:42 +0200966
967 trace_drv_stop_ap(local, sdata);
968 if (local->ops->stop_ap)
969 local->ops->stop_ap(&local->hw, &sdata->vif);
970 trace_drv_return_void(local);
971}
972
Eliad Pellercf2c92d2014-11-04 11:43:54 +0200973static inline void
974drv_reconfig_complete(struct ieee80211_local *local,
975 enum ieee80211_reconfig_type reconfig_type)
Johannes Berg9214ad72012-11-06 19:18:13 +0100976{
977 might_sleep();
978
Eliad Pellercf2c92d2014-11-04 11:43:54 +0200979 trace_drv_reconfig_complete(local, reconfig_type);
980 if (local->ops->reconfig_complete)
981 local->ops->reconfig_complete(&local->hw, reconfig_type);
Johannes Berg9214ad72012-11-06 19:18:13 +0100982 trace_drv_return_void(local);
983}
984
Yoni Divinskyde5fad82012-05-30 11:36:39 +0300985static inline void
986drv_set_default_unicast_key(struct ieee80211_local *local,
987 struct ieee80211_sub_if_data *sdata,
988 int key_idx)
989{
Johannes Bergf6837ba82014-04-30 14:19:04 +0200990 if (!check_sdata_in_driver(sdata))
991 return;
Yoni Divinskyde5fad82012-05-30 11:36:39 +0300992
993 WARN_ON_ONCE(key_idx < -1 || key_idx > 3);
994
995 trace_drv_set_default_unicast_key(local, sdata, key_idx);
996 if (local->ops->set_default_unicast_key)
997 local->ops->set_default_unicast_key(&local->hw, &sdata->vif,
998 key_idx);
999 trace_drv_return_void(local);
1000}
1001
Johannes Berga65240c2013-01-14 15:14:34 +01001002#if IS_ENABLED(CONFIG_IPV6)
1003static inline void drv_ipv6_addr_change(struct ieee80211_local *local,
1004 struct ieee80211_sub_if_data *sdata,
1005 struct inet6_dev *idev)
1006{
1007 trace_drv_ipv6_addr_change(local, sdata);
1008 if (local->ops->ipv6_addr_change)
1009 local->ops->ipv6_addr_change(&local->hw, &sdata->vif, idev);
1010 trace_drv_return_void(local);
1011}
1012#endif
1013
Simon Wunderlich73da7d52013-07-11 16:09:06 +02001014static inline void
1015drv_channel_switch_beacon(struct ieee80211_sub_if_data *sdata,
1016 struct cfg80211_chan_def *chandef)
1017{
1018 struct ieee80211_local *local = sdata->local;
1019
1020 if (local->ops->channel_switch_beacon) {
1021 trace_drv_channel_switch_beacon(local, sdata, chandef);
1022 local->ops->channel_switch_beacon(&local->hw, &sdata->vif,
1023 chandef);
1024 }
1025}
1026
Luciano Coelho6d027bc2014-10-08 09:48:37 +03001027static inline int
1028drv_pre_channel_switch(struct ieee80211_sub_if_data *sdata,
1029 struct ieee80211_channel_switch *ch_switch)
1030{
1031 struct ieee80211_local *local = sdata->local;
1032 int ret = 0;
1033
1034 if (!check_sdata_in_driver(sdata))
1035 return -EIO;
1036
1037 trace_drv_pre_channel_switch(local, sdata, ch_switch);
1038 if (local->ops->pre_channel_switch)
1039 ret = local->ops->pre_channel_switch(&local->hw, &sdata->vif,
1040 ch_switch);
1041 trace_drv_return_int(local, ret);
1042 return ret;
1043}
1044
Luciano Coelhof1d65582014-10-08 09:48:38 +03001045static inline int
1046drv_post_channel_switch(struct ieee80211_sub_if_data *sdata)
1047{
1048 struct ieee80211_local *local = sdata->local;
1049 int ret = 0;
1050
1051 if (!check_sdata_in_driver(sdata))
1052 return -EIO;
1053
1054 trace_drv_post_channel_switch(local, sdata);
1055 if (local->ops->post_channel_switch)
1056 ret = local->ops->post_channel_switch(&local->hw, &sdata->vif);
1057 trace_drv_return_int(local, ret);
1058 return ret;
1059}
1060
Sara Sharonb9cc81d2019-02-06 13:17:10 +02001061static inline void
1062drv_abort_channel_switch(struct ieee80211_sub_if_data *sdata)
1063{
1064 struct ieee80211_local *local = sdata->local;
1065
1066 if (!check_sdata_in_driver(sdata))
1067 return;
1068
1069 trace_drv_abort_channel_switch(local, sdata);
1070
1071 if (local->ops->abort_channel_switch)
1072 local->ops->abort_channel_switch(&local->hw, &sdata->vif);
1073}
1074
Sara Sharonfafd2bc2019-02-06 13:17:15 +02001075static inline void
1076drv_channel_switch_rx_beacon(struct ieee80211_sub_if_data *sdata,
1077 struct ieee80211_channel_switch *ch_switch)
1078{
1079 struct ieee80211_local *local = sdata->local;
1080
1081 if (!check_sdata_in_driver(sdata))
1082 return;
1083
1084 trace_drv_channel_switch_rx_beacon(local, sdata, ch_switch);
1085 if (local->ops->channel_switch_rx_beacon)
1086 local->ops->channel_switch_rx_beacon(&local->hw, &sdata->vif,
1087 ch_switch);
1088}
1089
Johannes Berg55fff502013-08-19 18:48:41 +02001090static inline int drv_join_ibss(struct ieee80211_local *local,
1091 struct ieee80211_sub_if_data *sdata)
1092{
1093 int ret = 0;
1094
1095 might_sleep();
Johannes Bergf6837ba82014-04-30 14:19:04 +02001096 if (!check_sdata_in_driver(sdata))
1097 return -EIO;
Johannes Berg55fff502013-08-19 18:48:41 +02001098
1099 trace_drv_join_ibss(local, sdata, &sdata->vif.bss_conf);
1100 if (local->ops->join_ibss)
1101 ret = local->ops->join_ibss(&local->hw, &sdata->vif);
1102 trace_drv_return_int(local, ret);
1103 return ret;
1104}
1105
1106static inline void drv_leave_ibss(struct ieee80211_local *local,
1107 struct ieee80211_sub_if_data *sdata)
1108{
1109 might_sleep();
Johannes Bergf6837ba82014-04-30 14:19:04 +02001110 if (!check_sdata_in_driver(sdata))
1111 return;
Johannes Berg55fff502013-08-19 18:48:41 +02001112
1113 trace_drv_leave_ibss(local, sdata);
1114 if (local->ops->leave_ibss)
1115 local->ops->leave_ibss(&local->hw, &sdata->vif);
1116 trace_drv_return_void(local);
1117}
1118
Antonio Quartullicca674d2014-05-19 21:53:20 +02001119static inline u32 drv_get_expected_throughput(struct ieee80211_local *local,
Maxim Altshul4fdbc67a2016-08-11 13:38:16 +03001120 struct sta_info *sta)
Antonio Quartullicca674d2014-05-19 21:53:20 +02001121{
1122 u32 ret = 0;
1123
Maxim Altshul4fdbc67a2016-08-11 13:38:16 +03001124 trace_drv_get_expected_throughput(&sta->sta);
1125 if (local->ops->get_expected_throughput && sta->uploaded)
1126 ret = local->ops->get_expected_throughput(&local->hw, &sta->sta);
Antonio Quartullicca674d2014-05-19 21:53:20 +02001127 trace_drv_return_u32(local, ret);
1128
1129 return ret;
1130}
1131
Felix Fietkau5b3dc422014-10-26 00:32:53 +02001132static inline int drv_get_txpower(struct ieee80211_local *local,
1133 struct ieee80211_sub_if_data *sdata, int *dbm)
1134{
1135 int ret;
1136
1137 if (!local->ops->get_txpower)
1138 return -EOPNOTSUPP;
1139
1140 ret = local->ops->get_txpower(&local->hw, &sdata->vif, dbm);
1141 trace_drv_get_txpower(local, sdata, *dbm, ret);
1142
1143 return ret;
1144}
1145
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +02001146static inline int
1147drv_tdls_channel_switch(struct ieee80211_local *local,
1148 struct ieee80211_sub_if_data *sdata,
1149 struct ieee80211_sta *sta, u8 oper_class,
1150 struct cfg80211_chan_def *chandef,
1151 struct sk_buff *tmpl_skb, u32 ch_sw_tm_ie)
1152{
1153 int ret;
1154
1155 might_sleep();
1156 if (!check_sdata_in_driver(sdata))
1157 return -EIO;
1158
1159 if (!local->ops->tdls_channel_switch)
1160 return -EOPNOTSUPP;
1161
1162 trace_drv_tdls_channel_switch(local, sdata, sta, oper_class, chandef);
1163 ret = local->ops->tdls_channel_switch(&local->hw, &sdata->vif, sta,
1164 oper_class, chandef, tmpl_skb,
1165 ch_sw_tm_ie);
1166 trace_drv_return_int(local, ret);
1167 return ret;
1168}
1169
1170static inline void
1171drv_tdls_cancel_channel_switch(struct ieee80211_local *local,
1172 struct ieee80211_sub_if_data *sdata,
1173 struct ieee80211_sta *sta)
1174{
1175 might_sleep();
1176 if (!check_sdata_in_driver(sdata))
1177 return;
1178
1179 if (!local->ops->tdls_cancel_channel_switch)
1180 return;
1181
1182 trace_drv_tdls_cancel_channel_switch(local, sdata, sta);
1183 local->ops->tdls_cancel_channel_switch(&local->hw, &sdata->vif, sta);
1184 trace_drv_return_void(local);
1185}
1186
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02001187static inline void
1188drv_tdls_recv_channel_switch(struct ieee80211_local *local,
1189 struct ieee80211_sub_if_data *sdata,
1190 struct ieee80211_tdls_ch_sw_params *params)
1191{
1192 trace_drv_tdls_recv_channel_switch(local, sdata, params);
1193 if (local->ops->tdls_recv_channel_switch)
1194 local->ops->tdls_recv_channel_switch(&local->hw, &sdata->vif,
1195 params);
1196 trace_drv_return_void(local);
1197}
1198
Johannes Berge7881bd52017-12-19 10:11:54 +01001199static inline void drv_wake_tx_queue(struct ieee80211_local *local,
1200 struct txq_info *txq)
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001201{
Johannes Berge7881bd52017-12-19 10:11:54 +01001202 struct ieee80211_sub_if_data *sdata = vif_to_sdata(txq->txq.vif);
1203
Felix Fietkau4856bfd2019-03-01 14:48:37 +01001204 if (local->in_reconfig)
1205 return;
1206
Johannes Berge7881bd52017-12-19 10:11:54 +01001207 if (!check_sdata_in_driver(sdata))
1208 return;
1209
1210 trace_drv_wake_tx_queue(local, sdata, txq);
1211 local->ops->wake_tx_queue(&local->hw, &txq->txq);
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001212}
1213
Toke Høiland-Jørgensen18667602018-12-18 17:02:06 -08001214static inline void schedule_and_wake_txq(struct ieee80211_local *local,
1215 struct txq_info *txqi)
1216{
Toke Høiland-Jørgensen390298e2019-01-22 15:20:16 +01001217 ieee80211_schedule_txq(&local->hw, &txqi->txq);
Toke Høiland-Jørgensen18667602018-12-18 17:02:06 -08001218 drv_wake_tx_queue(local, txqi);
1219}
1220
Sara Sharon9739fe22018-09-05 08:06:11 +03001221static inline int drv_can_aggregate_in_amsdu(struct ieee80211_local *local,
1222 struct sk_buff *head,
1223 struct sk_buff *skb)
1224{
1225 if (!local->ops->can_aggregate_in_amsdu)
1226 return true;
1227
1228 return local->ops->can_aggregate_in_amsdu(&local->hw, head, skb);
1229}
1230
Pradeep Kumar Chitrapubc847972018-10-03 20:19:20 -07001231static inline int
1232drv_get_ftm_responder_stats(struct ieee80211_local *local,
1233 struct ieee80211_sub_if_data *sdata,
1234 struct cfg80211_ftm_responder_stats *ftm_stats)
1235{
1236 u32 ret = -EOPNOTSUPP;
1237
1238 if (local->ops->get_ftm_responder_stats)
1239 ret = local->ops->get_ftm_responder_stats(&local->hw,
1240 &sdata->vif,
1241 ftm_stats);
1242 trace_drv_get_ftm_responder_stats(local, sdata, ftm_stats);
1243
1244 return ret;
1245}
1246
Johannes Bergcee70132018-10-16 11:24:47 +02001247static inline int drv_start_pmsr(struct ieee80211_local *local,
1248 struct ieee80211_sub_if_data *sdata,
1249 struct cfg80211_pmsr_request *request)
1250{
1251 int ret = -EOPNOTSUPP;
1252
1253 might_sleep();
1254 if (!check_sdata_in_driver(sdata))
1255 return -EIO;
1256
1257 trace_drv_start_pmsr(local, sdata);
1258
1259 if (local->ops->start_pmsr)
1260 ret = local->ops->start_pmsr(&local->hw, &sdata->vif, request);
1261 trace_drv_return_int(local, ret);
1262
1263 return ret;
1264}
1265
1266static inline void drv_abort_pmsr(struct ieee80211_local *local,
1267 struct ieee80211_sub_if_data *sdata,
1268 struct cfg80211_pmsr_request *request)
1269{
1270 trace_drv_abort_pmsr(local, sdata);
1271
1272 might_sleep();
1273 if (!check_sdata_in_driver(sdata))
1274 return;
1275
1276 if (local->ops->abort_pmsr)
1277 local->ops->abort_pmsr(&local->hw, &sdata->vif, request);
1278 trace_drv_return_void(local);
1279}
1280
Ayala Beker708d50e2016-09-20 17:31:14 +03001281static inline int drv_start_nan(struct ieee80211_local *local,
1282 struct ieee80211_sub_if_data *sdata,
1283 struct cfg80211_nan_conf *conf)
1284{
1285 int ret;
1286
1287 might_sleep();
1288 check_sdata_in_driver(sdata);
1289
1290 trace_drv_start_nan(local, sdata, conf);
1291 ret = local->ops->start_nan(&local->hw, &sdata->vif, conf);
1292 trace_drv_return_int(local, ret);
1293 return ret;
1294}
1295
1296static inline void drv_stop_nan(struct ieee80211_local *local,
1297 struct ieee80211_sub_if_data *sdata)
1298{
1299 might_sleep();
1300 check_sdata_in_driver(sdata);
1301
1302 trace_drv_stop_nan(local, sdata);
1303 local->ops->stop_nan(&local->hw, &sdata->vif);
1304 trace_drv_return_void(local);
1305}
1306
Ayala Beker5953ff62016-09-20 17:31:19 +03001307static inline int drv_nan_change_conf(struct ieee80211_local *local,
1308 struct ieee80211_sub_if_data *sdata,
1309 struct cfg80211_nan_conf *conf,
1310 u32 changes)
1311{
1312 int ret;
1313
1314 might_sleep();
1315 check_sdata_in_driver(sdata);
1316
1317 if (!local->ops->nan_change_conf)
1318 return -EOPNOTSUPP;
1319
1320 trace_drv_nan_change_conf(local, sdata, conf, changes);
1321 ret = local->ops->nan_change_conf(&local->hw, &sdata->vif, conf,
1322 changes);
1323 trace_drv_return_int(local, ret);
1324
1325 return ret;
1326}
1327
Ayala Beker167e33f2016-09-20 17:31:20 +03001328static inline int drv_add_nan_func(struct ieee80211_local *local,
1329 struct ieee80211_sub_if_data *sdata,
1330 const struct cfg80211_nan_func *nan_func)
1331{
1332 int ret;
1333
1334 might_sleep();
1335 check_sdata_in_driver(sdata);
1336
1337 if (!local->ops->add_nan_func)
1338 return -EOPNOTSUPP;
1339
1340 trace_drv_add_nan_func(local, sdata, nan_func);
1341 ret = local->ops->add_nan_func(&local->hw, &sdata->vif, nan_func);
1342 trace_drv_return_int(local, ret);
1343
1344 return ret;
1345}
1346
1347static inline void drv_del_nan_func(struct ieee80211_local *local,
1348 struct ieee80211_sub_if_data *sdata,
1349 u8 instance_id)
1350{
1351 might_sleep();
1352 check_sdata_in_driver(sdata);
1353
1354 trace_drv_del_nan_func(local, sdata, instance_id);
1355 if (local->ops->del_nan_func)
1356 local->ops->del_nan_func(&local->hw, &sdata->vif, instance_id);
1357 trace_drv_return_void(local);
1358}
1359
Tamizh chelvam370f51d2020-01-20 13:21:27 +05301360static inline int drv_set_tid_config(struct ieee80211_local *local,
1361 struct ieee80211_sub_if_data *sdata,
1362 struct ieee80211_sta *sta,
1363 struct cfg80211_tid_config *tid_conf)
1364{
1365 int ret;
1366
1367 might_sleep();
1368 ret = local->ops->set_tid_config(&local->hw, &sdata->vif, sta,
1369 tid_conf);
1370 trace_drv_return_int(local, ret);
1371
1372 return ret;
1373}
1374
1375static inline int drv_reset_tid_config(struct ieee80211_local *local,
1376 struct ieee80211_sub_if_data *sdata,
Sergey Matyukevich60c2ef02020-04-24 14:29:02 +03001377 struct ieee80211_sta *sta, u8 tids)
Tamizh chelvam370f51d2020-01-20 13:21:27 +05301378{
1379 int ret;
1380
1381 might_sleep();
Sergey Matyukevich60c2ef02020-04-24 14:29:02 +03001382 ret = local->ops->reset_tid_config(&local->hw, &sdata->vif, sta, tids);
Tamizh chelvam370f51d2020-01-20 13:21:27 +05301383 trace_drv_return_int(local, ret);
1384
1385 return ret;
1386}
Felix Fietkau6aea26c2020-09-08 14:36:53 +02001387
1388static inline void drv_update_vif_offload(struct ieee80211_local *local,
1389 struct ieee80211_sub_if_data *sdata)
1390{
1391 might_sleep();
1392 check_sdata_in_driver(sdata);
1393
1394 if (!local->ops->update_vif_offload)
1395 return;
1396
1397 trace_drv_update_vif_offload(local, sdata);
1398 local->ops->update_vif_offload(&local->hw, &sdata->vif);
1399 trace_drv_return_void(local);
1400}
1401
Felix Fietkau1ff4e8f2020-09-08 14:37:01 +02001402static inline void drv_sta_set_4addr(struct ieee80211_local *local,
1403 struct ieee80211_sub_if_data *sdata,
1404 struct ieee80211_sta *sta, bool enabled)
1405{
1406 sdata = get_bss_sdata(sdata);
1407 if (!check_sdata_in_driver(sdata))
1408 return;
1409
1410 trace_drv_sta_set_4addr(local, sdata, sta, enabled);
1411 if (local->ops->sta_set_4addr)
1412 local->ops->sta_set_4addr(&local->hw, &sdata->vif, sta, enabled);
1413 trace_drv_return_void(local);
1414}
1415
Felix Fietkau80a915e2020-12-18 19:47:18 +01001416static inline void drv_sta_set_decap_offload(struct ieee80211_local *local,
1417 struct ieee80211_sub_if_data *sdata,
1418 struct ieee80211_sta *sta,
1419 bool enabled)
1420{
1421 sdata = get_bss_sdata(sdata);
1422 if (!check_sdata_in_driver(sdata))
1423 return;
1424
1425 trace_drv_sta_set_decap_offload(local, sdata, sta, enabled);
1426 if (local->ops->sta_set_decap_offload)
1427 local->ops->sta_set_decap_offload(&local->hw, &sdata->vif, sta,
1428 enabled);
1429 trace_drv_return_void(local);
1430}
1431
Johannes Berg24487982009-04-23 18:52:52 +02001432#endif /* __MAC80211_DRIVER_OPS */