blob: e52cfb855bd9b9dd00c2a79e8b3a9f9f6d46060b [file] [log] [blame]
Sara Sharonf59374e2016-03-02 23:46:14 +02001/*
2* Portions of this file
3* Copyright(c) 2016 Intel Deutschland GmbH
4*/
5
Johannes Berg24487982009-04-23 18:52:52 +02006#ifndef __MAC80211_DRIVER_OPS
7#define __MAC80211_DRIVER_OPS
8
9#include <net/mac80211.h>
10#include "ieee80211_i.h"
Johannes Berg011ad0e2012-06-22 12:55:52 +020011#include "trace.h"
Johannes Berg24487982009-04-23 18:52:52 +020012
Johannes Bergf6837ba2014-04-30 14:19:04 +020013static inline bool check_sdata_in_driver(struct ieee80211_sub_if_data *sdata)
Johannes Berg7b7eab62011-11-03 14:41:13 +010014{
Johannes Bergf6837ba2014-04-30 14:19:04 +020015 return !WARN(!(sdata->flags & IEEE80211_SDATA_IN_DRIVER),
16 "%s: Failed check-sdata-in-driver check, flags: 0x%x\n",
17 sdata->dev ? sdata->dev->name : sdata->name, sdata->flags);
Johannes Berg7b7eab62011-11-03 14:41:13 +010018}
19
Felix Fietkaubc192f82011-11-23 21:09:49 +070020static inline struct ieee80211_sub_if_data *
21get_bss_sdata(struct ieee80211_sub_if_data *sdata)
22{
23 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
24 sdata = container_of(sdata->bss, struct ieee80211_sub_if_data,
25 u.ap);
26
27 return sdata;
28}
29
Thomas Huehn36323f82012-07-23 21:33:42 +020030static inline void drv_tx(struct ieee80211_local *local,
31 struct ieee80211_tx_control *control,
32 struct sk_buff *skb)
Johannes Berg24487982009-04-23 18:52:52 +020033{
Thomas Huehn36323f82012-07-23 21:33:42 +020034 local->ops->tx(&local->hw, control, skb);
Johannes Berg24487982009-04-23 18:52:52 +020035}
36
Sara Sharonf59374e2016-03-02 23:46:14 +020037static inline void drv_sync_rx_queues(struct ieee80211_local *local,
38 struct sta_info *sta)
39{
40 if (local->ops->sync_rx_queues) {
41 trace_drv_sync_rx_queues(local, sta->sdata, &sta->sta);
42 local->ops->sync_rx_queues(&local->hw);
43 trace_drv_return_void(local);
44 }
45}
46
Ben Greeare3521142012-04-23 12:50:31 -070047static inline void drv_get_et_strings(struct ieee80211_sub_if_data *sdata,
48 u32 sset, u8 *data)
49{
50 struct ieee80211_local *local = sdata->local;
51 if (local->ops->get_et_strings) {
52 trace_drv_get_et_strings(local, sset);
53 local->ops->get_et_strings(&local->hw, &sdata->vif, sset, data);
54 trace_drv_return_void(local);
55 }
56}
57
58static inline void drv_get_et_stats(struct ieee80211_sub_if_data *sdata,
59 struct ethtool_stats *stats,
60 u64 *data)
61{
62 struct ieee80211_local *local = sdata->local;
63 if (local->ops->get_et_stats) {
64 trace_drv_get_et_stats(local);
65 local->ops->get_et_stats(&local->hw, &sdata->vif, stats, data);
66 trace_drv_return_void(local);
67 }
68}
69
70static inline int drv_get_et_sset_count(struct ieee80211_sub_if_data *sdata,
71 int sset)
72{
73 struct ieee80211_local *local = sdata->local;
74 int rv = 0;
75 if (local->ops->get_et_sset_count) {
76 trace_drv_get_et_sset_count(local, sset);
77 rv = local->ops->get_et_sset_count(&local->hw, &sdata->vif,
78 sset);
79 trace_drv_return_int(local, rv);
80 }
81 return rv;
82}
83
Eliad Peller968a76c2015-10-25 10:59:36 +020084int drv_start(struct ieee80211_local *local);
85void drv_stop(struct ieee80211_local *local);
Johannes Berg24487982009-04-23 18:52:52 +020086
Johannes Bergeecc4802011-05-04 15:37:29 +020087#ifdef CONFIG_PM
88static inline int drv_suspend(struct ieee80211_local *local,
89 struct cfg80211_wowlan *wowlan)
90{
91 int ret;
92
93 might_sleep();
94
95 trace_drv_suspend(local);
96 ret = local->ops->suspend(&local->hw, wowlan);
97 trace_drv_return_int(local, ret);
98 return ret;
99}
100
101static inline int drv_resume(struct ieee80211_local *local)
102{
103 int ret;
104
105 might_sleep();
106
107 trace_drv_resume(local);
108 ret = local->ops->resume(&local->hw);
109 trace_drv_return_int(local, ret);
110 return ret;
111}
Johannes Berg6d525632012-04-04 15:05:25 +0200112
113static inline void drv_set_wakeup(struct ieee80211_local *local,
114 bool enabled)
115{
116 might_sleep();
117
118 if (!local->ops->set_wakeup)
119 return;
120
121 trace_drv_set_wakeup(local, enabled);
122 local->ops->set_wakeup(&local->hw, enabled);
123 trace_drv_return_void(local);
124}
Johannes Bergeecc4802011-05-04 15:37:29 +0200125#endif
126
Denys Vlasenko9aae2962015-09-18 15:19:38 +0200127int drv_add_interface(struct ieee80211_local *local,
128 struct ieee80211_sub_if_data *sdata);
Kalle Valoe1781ed2009-12-23 13:15:47 +0100129
Denys Vlasenko9aae2962015-09-18 15:19:38 +0200130int drv_change_interface(struct ieee80211_local *local,
131 struct ieee80211_sub_if_data *sdata,
132 enum nl80211_iftype type, bool p2p);
Kalle Valoe1781ed2009-12-23 13:15:47 +0100133
Denys Vlasenko9aae2962015-09-18 15:19:38 +0200134void drv_remove_interface(struct ieee80211_local *local,
135 struct ieee80211_sub_if_data *sdata);
Johannes Berg24487982009-04-23 18:52:52 +0200136
137static inline int drv_config(struct ieee80211_local *local, u32 changed)
138{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100139 int ret;
140
141 might_sleep();
142
Johannes Berg4efc76b2010-06-10 10:56:20 +0200143 trace_drv_config(local, changed);
Kalle Valoe1781ed2009-12-23 13:15:47 +0100144 ret = local->ops->config(&local->hw, changed);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200145 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200146 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200147}
148
149static inline void drv_bss_info_changed(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100150 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200151 struct ieee80211_bss_conf *info,
152 u32 changed)
153{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100154 might_sleep();
155
Johannes Berg5bbe754d2013-02-13 13:50:51 +0100156 if (WARN_ON_ONCE(changed & (BSS_CHANGED_BEACON |
157 BSS_CHANGED_BEACON_ENABLED) &&
158 sdata->vif.type != NL80211_IFTYPE_AP &&
159 sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Rostislav Lisovy239281f2014-11-03 10:33:19 +0100160 sdata->vif.type != NL80211_IFTYPE_MESH_POINT &&
161 sdata->vif.type != NL80211_IFTYPE_OCB))
Johannes Berg5bbe754d2013-02-13 13:50:51 +0100162 return;
163
164 if (WARN_ON_ONCE(sdata->vif.type == NL80211_IFTYPE_P2P_DEVICE ||
Ayala Beker708d50e2016-09-20 17:31:14 +0300165 sdata->vif.type == NL80211_IFTYPE_NAN ||
Aviya Erenfeld42bd20d2016-08-29 23:25:16 +0300166 (sdata->vif.type == NL80211_IFTYPE_MONITOR &&
167 !sdata->vif.mu_mimo_owner)))
Johannes Berg5bbe754d2013-02-13 13:50:51 +0100168 return;
Johannes Bergb8dc1a32012-12-14 14:22:10 +0100169
Johannes Bergf6837ba2014-04-30 14:19:04 +0200170 if (!check_sdata_in_driver(sdata))
171 return;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100172
Johannes Berg4efc76b2010-06-10 10:56:20 +0200173 trace_drv_bss_info_changed(local, sdata, info, changed);
Johannes Berg24487982009-04-23 18:52:52 +0200174 if (local->ops->bss_info_changed)
Johannes Berg12375ef2009-11-25 20:30:31 +0100175 local->ops->bss_info_changed(&local->hw, &sdata->vif, info, changed);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200176 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200177}
178
Johannes Berg3ac64be2009-08-17 16:16:53 +0200179static inline u64 drv_prepare_multicast(struct ieee80211_local *local,
Jiri Pirko22bedad32010-04-01 21:22:57 +0000180 struct netdev_hw_addr_list *mc_list)
Johannes Berg24487982009-04-23 18:52:52 +0200181{
Johannes Berg3ac64be2009-08-17 16:16:53 +0200182 u64 ret = 0;
183
Johannes Berg4efc76b2010-06-10 10:56:20 +0200184 trace_drv_prepare_multicast(local, mc_list->count);
185
Johannes Berg3ac64be2009-08-17 16:16:53 +0200186 if (local->ops->prepare_multicast)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000187 ret = local->ops->prepare_multicast(&local->hw, mc_list);
Johannes Berg3ac64be2009-08-17 16:16:53 +0200188
Johannes Berg4efc76b2010-06-10 10:56:20 +0200189 trace_drv_return_u64(local, ret);
Johannes Berg3ac64be2009-08-17 16:16:53 +0200190
191 return ret;
192}
193
194static inline void drv_configure_filter(struct ieee80211_local *local,
195 unsigned int changed_flags,
196 unsigned int *total_flags,
197 u64 multicast)
198{
199 might_sleep();
200
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200201 trace_drv_configure_filter(local, changed_flags, total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +0200202 multicast);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200203 local->ops->configure_filter(&local->hw, changed_flags, total_flags,
204 multicast);
205 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200206}
207
Andrei Otcheretianski1b09b552015-08-15 22:39:50 +0300208static inline void drv_config_iface_filter(struct ieee80211_local *local,
209 struct ieee80211_sub_if_data *sdata,
210 unsigned int filter_flags,
211 unsigned int changed_flags)
212{
213 might_sleep();
214
215 trace_drv_config_iface_filter(local, sdata, filter_flags,
216 changed_flags);
217 if (local->ops->config_iface_filter)
218 local->ops->config_iface_filter(&local->hw, &sdata->vif,
219 filter_flags,
220 changed_flags);
221 trace_drv_return_void(local);
222}
223
Johannes Berg24487982009-04-23 18:52:52 +0200224static inline int drv_set_tim(struct ieee80211_local *local,
225 struct ieee80211_sta *sta, bool set)
226{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200227 int ret = 0;
Johannes Berg4efc76b2010-06-10 10:56:20 +0200228 trace_drv_set_tim(local, sta, set);
Johannes Berg24487982009-04-23 18:52:52 +0200229 if (local->ops->set_tim)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200230 ret = local->ops->set_tim(&local->hw, sta, set);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200231 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200232 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200233}
234
235static inline int drv_set_key(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100236 enum set_key_cmd cmd,
237 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200238 struct ieee80211_sta *sta,
239 struct ieee80211_key_conf *key)
240{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100241 int ret;
242
243 might_sleep();
244
Johannes Berg077f4932012-01-20 13:55:18 +0100245 sdata = get_bss_sdata(sdata);
Johannes Bergf6837ba2014-04-30 14:19:04 +0200246 if (!check_sdata_in_driver(sdata))
247 return -EIO;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100248
Johannes Berg4efc76b2010-06-10 10:56:20 +0200249 trace_drv_set_key(local, cmd, sdata, sta, key);
Kalle Valoe1781ed2009-12-23 13:15:47 +0100250 ret = local->ops->set_key(&local->hw, cmd, &sdata->vif, sta, key);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200251 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200252 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200253}
254
255static inline void drv_update_tkip_key(struct ieee80211_local *local,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100256 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200257 struct ieee80211_key_conf *conf,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100258 struct sta_info *sta, u32 iv32,
Johannes Berg24487982009-04-23 18:52:52 +0200259 u16 *phase1key)
260{
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100261 struct ieee80211_sta *ista = NULL;
262
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100263 if (sta)
264 ista = &sta->sta;
265
Johannes Berg077f4932012-01-20 13:55:18 +0100266 sdata = get_bss_sdata(sdata);
Johannes Bergf6837ba2014-04-30 14:19:04 +0200267 if (!check_sdata_in_driver(sdata))
268 return;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100269
Johannes Berg4efc76b2010-06-10 10:56:20 +0200270 trace_drv_update_tkip_key(local, sdata, conf, ista, iv32);
Johannes Berg24487982009-04-23 18:52:52 +0200271 if (local->ops->update_tkip_key)
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100272 local->ops->update_tkip_key(&local->hw, &sdata->vif, conf,
273 ista, iv32, phase1key);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200274 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200275}
276
277static inline int drv_hw_scan(struct ieee80211_local *local,
Johannes Berga060bbf2010-04-27 11:59:34 +0200278 struct ieee80211_sub_if_data *sdata,
David Spinadelc56ef672014-02-05 15:21:13 +0200279 struct ieee80211_scan_request *req)
Johannes Berg24487982009-04-23 18:52:52 +0200280{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100281 int ret;
282
283 might_sleep();
284
Johannes Bergf6837ba2014-04-30 14:19:04 +0200285 if (!check_sdata_in_driver(sdata))
286 return -EIO;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100287
Luciano Coelho79f460c2011-05-11 17:09:36 +0300288 trace_drv_hw_scan(local, sdata);
Johannes Berga060bbf2010-04-27 11:59:34 +0200289 ret = local->ops->hw_scan(&local->hw, &sdata->vif, req);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200290 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200291 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200292}
293
Eliad Pellerb8564392011-06-13 12:47:30 +0300294static inline void drv_cancel_hw_scan(struct ieee80211_local *local,
295 struct ieee80211_sub_if_data *sdata)
296{
297 might_sleep();
298
Johannes Bergf6837ba2014-04-30 14:19:04 +0200299 if (!check_sdata_in_driver(sdata))
300 return;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100301
Eliad Pellerb8564392011-06-13 12:47:30 +0300302 trace_drv_cancel_hw_scan(local, sdata);
303 local->ops->cancel_hw_scan(&local->hw, &sdata->vif);
304 trace_drv_return_void(local);
305}
306
Luciano Coelho79f460c2011-05-11 17:09:36 +0300307static inline int
308drv_sched_scan_start(struct ieee80211_local *local,
309 struct ieee80211_sub_if_data *sdata,
310 struct cfg80211_sched_scan_request *req,
David Spinadel633e2712014-02-06 16:15:23 +0200311 struct ieee80211_scan_ies *ies)
Luciano Coelho79f460c2011-05-11 17:09:36 +0300312{
313 int ret;
314
315 might_sleep();
316
Johannes Bergf6837ba2014-04-30 14:19:04 +0200317 if (!check_sdata_in_driver(sdata))
318 return -EIO;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100319
Luciano Coelho79f460c2011-05-11 17:09:36 +0300320 trace_drv_sched_scan_start(local, sdata);
321 ret = local->ops->sched_scan_start(&local->hw, &sdata->vif,
322 req, ies);
323 trace_drv_return_int(local, ret);
324 return ret;
325}
326
Johannes Berg37e33082014-02-17 10:48:17 +0100327static inline int drv_sched_scan_stop(struct ieee80211_local *local,
328 struct ieee80211_sub_if_data *sdata)
Luciano Coelho79f460c2011-05-11 17:09:36 +0300329{
Johannes Berg37e33082014-02-17 10:48:17 +0100330 int ret;
331
Luciano Coelho79f460c2011-05-11 17:09:36 +0300332 might_sleep();
333
Johannes Bergf6837ba2014-04-30 14:19:04 +0200334 if (!check_sdata_in_driver(sdata))
335 return -EIO;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100336
Luciano Coelho79f460c2011-05-11 17:09:36 +0300337 trace_drv_sched_scan_stop(local, sdata);
Johannes Berg37e33082014-02-17 10:48:17 +0100338 ret = local->ops->sched_scan_stop(&local->hw, &sdata->vif);
339 trace_drv_return_int(local, ret);
340
341 return ret;
Luciano Coelho79f460c2011-05-11 17:09:36 +0300342}
343
Johannes Berga344d672014-06-12 22:24:31 +0200344static inline void drv_sw_scan_start(struct ieee80211_local *local,
345 struct ieee80211_sub_if_data *sdata,
346 const u8 *mac_addr)
Johannes Berg24487982009-04-23 18:52:52 +0200347{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100348 might_sleep();
349
Johannes Berga344d672014-06-12 22:24:31 +0200350 trace_drv_sw_scan_start(local, sdata, mac_addr);
Johannes Berg24487982009-04-23 18:52:52 +0200351 if (local->ops->sw_scan_start)
Johannes Berga344d672014-06-12 22:24:31 +0200352 local->ops->sw_scan_start(&local->hw, &sdata->vif, mac_addr);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200353 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200354}
355
Johannes Berga344d672014-06-12 22:24:31 +0200356static inline void drv_sw_scan_complete(struct ieee80211_local *local,
357 struct ieee80211_sub_if_data *sdata)
Johannes Berg24487982009-04-23 18:52:52 +0200358{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100359 might_sleep();
360
Johannes Berga344d672014-06-12 22:24:31 +0200361 trace_drv_sw_scan_complete(local, sdata);
Johannes Berg24487982009-04-23 18:52:52 +0200362 if (local->ops->sw_scan_complete)
Johannes Berga344d672014-06-12 22:24:31 +0200363 local->ops->sw_scan_complete(&local->hw, &sdata->vif);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200364 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200365}
366
367static inline int drv_get_stats(struct ieee80211_local *local,
368 struct ieee80211_low_level_stats *stats)
369{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200370 int ret = -EOPNOTSUPP;
371
Kalle Valoe1781ed2009-12-23 13:15:47 +0100372 might_sleep();
373
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200374 if (local->ops->get_stats)
375 ret = local->ops->get_stats(&local->hw, stats);
376 trace_drv_get_stats(local, stats, ret);
377
378 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200379}
380
Johannes Berg9352c192015-04-20 18:12:41 +0200381static inline void drv_get_key_seq(struct ieee80211_local *local,
382 struct ieee80211_key *key,
383 struct ieee80211_key_seq *seq)
Johannes Berg24487982009-04-23 18:52:52 +0200384{
Johannes Berg9352c192015-04-20 18:12:41 +0200385 if (local->ops->get_key_seq)
386 local->ops->get_key_seq(&local->hw, &key->conf, seq);
387 trace_drv_get_key_seq(local, &key->conf);
Johannes Berg24487982009-04-23 18:52:52 +0200388}
389
Arik Nemtsovf23a4782010-11-08 11:51:06 +0200390static inline int drv_set_frag_threshold(struct ieee80211_local *local,
391 u32 value)
392{
393 int ret = 0;
394
395 might_sleep();
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
Johannes Berg24487982009-04-23 18:52:52 +0200404static inline int drv_set_rts_threshold(struct ieee80211_local *local,
405 u32 value)
406{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200407 int ret = 0;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100408
409 might_sleep();
410
Johannes Berg4efc76b2010-06-10 10:56:20 +0200411 trace_drv_set_rts_threshold(local, value);
Johannes Berg24487982009-04-23 18:52:52 +0200412 if (local->ops->set_rts_threshold)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200413 ret = local->ops->set_rts_threshold(&local->hw, value);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200414 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200415 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200416}
417
Lukáš Turek310bc672009-12-21 22:50:48 +0100418static inline int drv_set_coverage_class(struct ieee80211_local *local,
Lorenzo Bianconia4bcaf52014-09-04 23:57:41 +0200419 s16 value)
Lukáš Turek310bc672009-12-21 22:50:48 +0100420{
421 int ret = 0;
422 might_sleep();
423
Johannes Berg4efc76b2010-06-10 10:56:20 +0200424 trace_drv_set_coverage_class(local, value);
Lukáš Turek310bc672009-12-21 22:50:48 +0100425 if (local->ops->set_coverage_class)
426 local->ops->set_coverage_class(&local->hw, value);
427 else
428 ret = -EOPNOTSUPP;
429
Johannes Berg4efc76b2010-06-10 10:56:20 +0200430 trace_drv_return_int(local, ret);
Lukáš Turek310bc672009-12-21 22:50:48 +0100431 return ret;
432}
433
Johannes Berg24487982009-04-23 18:52:52 +0200434static inline void drv_sta_notify(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100435 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200436 enum sta_notify_cmd cmd,
437 struct ieee80211_sta *sta)
438{
Felix Fietkaubc192f82011-11-23 21:09:49 +0700439 sdata = get_bss_sdata(sdata);
Johannes Bergf6837ba2014-04-30 14:19:04 +0200440 if (!check_sdata_in_driver(sdata))
441 return;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100442
Johannes Berg4efc76b2010-06-10 10:56:20 +0200443 trace_drv_sta_notify(local, sdata, cmd, sta);
Johannes Berg24487982009-04-23 18:52:52 +0200444 if (local->ops->sta_notify)
Johannes Berg12375ef2009-11-25 20:30:31 +0100445 local->ops->sta_notify(&local->hw, &sdata->vif, cmd, sta);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200446 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200447}
448
Johannes Berg34e89502010-02-03 13:59:58 +0100449static inline int drv_sta_add(struct ieee80211_local *local,
450 struct ieee80211_sub_if_data *sdata,
451 struct ieee80211_sta *sta)
452{
453 int ret = 0;
454
455 might_sleep();
456
Felix Fietkaubc192f82011-11-23 21:09:49 +0700457 sdata = get_bss_sdata(sdata);
Johannes Bergf6837ba2014-04-30 14:19:04 +0200458 if (!check_sdata_in_driver(sdata))
459 return -EIO;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100460
Johannes Berg4efc76b2010-06-10 10:56:20 +0200461 trace_drv_sta_add(local, sdata, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100462 if (local->ops->sta_add)
463 ret = local->ops->sta_add(&local->hw, &sdata->vif, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100464
Johannes Berg4efc76b2010-06-10 10:56:20 +0200465 trace_drv_return_int(local, ret);
Johannes Berg34e89502010-02-03 13:59:58 +0100466
467 return ret;
468}
469
470static inline void drv_sta_remove(struct ieee80211_local *local,
471 struct ieee80211_sub_if_data *sdata,
472 struct ieee80211_sta *sta)
473{
474 might_sleep();
475
Felix Fietkaubc192f82011-11-23 21:09:49 +0700476 sdata = get_bss_sdata(sdata);
Johannes Bergf6837ba2014-04-30 14:19:04 +0200477 if (!check_sdata_in_driver(sdata))
478 return;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100479
Johannes Berg4efc76b2010-06-10 10:56:20 +0200480 trace_drv_sta_remove(local, sdata, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100481 if (local->ops->sta_remove)
482 local->ops->sta_remove(&local->hw, &sdata->vif, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100483
Johannes Berg4efc76b2010-06-10 10:56:20 +0200484 trace_drv_return_void(local);
Johannes Berg34e89502010-02-03 13:59:58 +0100485}
486
Sujith Manoharan77d2ece2012-11-20 08:46:02 +0530487#ifdef CONFIG_MAC80211_DEBUGFS
488static inline void drv_sta_add_debugfs(struct ieee80211_local *local,
489 struct ieee80211_sub_if_data *sdata,
490 struct ieee80211_sta *sta,
491 struct dentry *dir)
492{
493 might_sleep();
494
495 sdata = get_bss_sdata(sdata);
Johannes Bergf6837ba2014-04-30 14:19:04 +0200496 if (!check_sdata_in_driver(sdata))
497 return;
Sujith Manoharan77d2ece2012-11-20 08:46:02 +0530498
499 if (local->ops->sta_add_debugfs)
500 local->ops->sta_add_debugfs(&local->hw, &sdata->vif,
501 sta, dir);
502}
Sujith Manoharan77d2ece2012-11-20 08:46:02 +0530503#endif
504
Johannes Berg6a9d1b92013-12-04 22:39:17 +0100505static inline void drv_sta_pre_rcu_remove(struct ieee80211_local *local,
506 struct ieee80211_sub_if_data *sdata,
507 struct sta_info *sta)
508{
509 might_sleep();
510
511 sdata = get_bss_sdata(sdata);
Johannes Bergf6837ba2014-04-30 14:19:04 +0200512 if (!check_sdata_in_driver(sdata))
513 return;
Johannes Berg6a9d1b92013-12-04 22:39:17 +0100514
515 trace_drv_sta_pre_rcu_remove(local, sdata, &sta->sta);
516 if (local->ops->sta_pre_rcu_remove)
517 local->ops->sta_pre_rcu_remove(&local->hw, &sdata->vif,
518 &sta->sta);
519 trace_drv_return_void(local);
520}
521
Denys Vlasenko727da602015-07-15 14:56:05 +0200522__must_check
Johannes Bergf09603a2012-01-20 13:55:21 +0100523int drv_sta_state(struct ieee80211_local *local,
524 struct ieee80211_sub_if_data *sdata,
525 struct sta_info *sta,
526 enum ieee80211_sta_state old_state,
Denys Vlasenko727da602015-07-15 14:56:05 +0200527 enum ieee80211_sta_state new_state);
Johannes Bergf09603a2012-01-20 13:55:21 +0100528
Denys Vlasenko4fbd5722015-09-18 15:19:35 +0200529void drv_sta_rc_update(struct ieee80211_local *local,
530 struct ieee80211_sub_if_data *sdata,
531 struct ieee80211_sta *sta, u32 changed);
Johannes Berg8f727ef2012-03-30 08:43:32 +0200532
Johannes Bergf815e2b2014-11-19 00:10:42 +0100533static inline void drv_sta_rate_tbl_update(struct ieee80211_local *local,
534 struct ieee80211_sub_if_data *sdata,
535 struct ieee80211_sta *sta)
536{
537 sdata = get_bss_sdata(sdata);
538 if (!check_sdata_in_driver(sdata))
539 return;
540
541 trace_drv_sta_rate_tbl_update(local, sdata, sta);
542 if (local->ops->sta_rate_tbl_update)
543 local->ops->sta_rate_tbl_update(&local->hw, &sdata->vif, sta);
544
545 trace_drv_return_void(local);
546}
547
Johannes Berg2b9a7e12014-11-17 11:35:23 +0100548static inline void drv_sta_statistics(struct ieee80211_local *local,
549 struct ieee80211_sub_if_data *sdata,
550 struct ieee80211_sta *sta,
551 struct station_info *sinfo)
552{
553 sdata = get_bss_sdata(sdata);
554 if (!check_sdata_in_driver(sdata))
555 return;
556
557 trace_drv_sta_statistics(local, sdata, sta);
558 if (local->ops->sta_statistics)
559 local->ops->sta_statistics(&local->hw, &sdata->vif, sta, sinfo);
560 trace_drv_return_void(local);
561}
562
Denys Vlasenkob23dcd42015-09-18 15:19:34 +0200563int drv_conf_tx(struct ieee80211_local *local,
564 struct ieee80211_sub_if_data *sdata, u16 ac,
565 const struct ieee80211_tx_queue_params *params);
Johannes Berg24487982009-04-23 18:52:52 +0200566
Denys Vlasenko416eb9f2015-09-23 14:18:36 +0200567u64 drv_get_tsf(struct ieee80211_local *local,
568 struct ieee80211_sub_if_data *sdata);
569void drv_set_tsf(struct ieee80211_local *local,
570 struct ieee80211_sub_if_data *sdata,
571 u64 tsf);
572void drv_reset_tsf(struct ieee80211_local *local,
573 struct ieee80211_sub_if_data *sdata);
Johannes Berg24487982009-04-23 18:52:52 +0200574
575static inline int drv_tx_last_beacon(struct ieee80211_local *local)
576{
Masanari Iida02582e92012-08-22 19:11:26 +0900577 int ret = 0; /* default unsupported op for less congestion */
Kalle Valoe1781ed2009-12-23 13:15:47 +0100578
579 might_sleep();
580
Johannes Berg4efc76b2010-06-10 10:56:20 +0200581 trace_drv_tx_last_beacon(local);
Johannes Berg24487982009-04-23 18:52:52 +0200582 if (local->ops->tx_last_beacon)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200583 ret = local->ops->tx_last_beacon(&local->hw);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200584 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200585 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200586}
587
Denys Vlasenko6db96832015-09-23 14:18:35 +0200588int drv_ampdu_action(struct ieee80211_local *local,
589 struct ieee80211_sub_if_data *sdata,
Sara Sharon50ea05e2015-12-30 16:06:04 +0200590 struct ieee80211_ampdu_params *params);
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200591
Holger Schurig12897232010-04-19 10:23:57 +0200592static inline int drv_get_survey(struct ieee80211_local *local, int idx,
593 struct survey_info *survey)
594{
595 int ret = -EOPNOTSUPP;
John W. Linvillec466d4e2010-06-29 14:51:23 -0400596
597 trace_drv_get_survey(local, idx, survey);
598
Holger Schurig35dd0502010-06-07 16:33:49 +0200599 if (local->ops->get_survey)
Holger Schurig12897232010-04-19 10:23:57 +0200600 ret = local->ops->get_survey(&local->hw, idx, survey);
John W. Linvillec466d4e2010-06-29 14:51:23 -0400601
602 trace_drv_return_int(local, ret);
603
Holger Schurig12897232010-04-19 10:23:57 +0200604 return ret;
605}
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200606
607static inline void drv_rfkill_poll(struct ieee80211_local *local)
608{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100609 might_sleep();
610
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200611 if (local->ops->rfkill_poll)
612 local->ops->rfkill_poll(&local->hw);
613}
Johannes Berga80f7c02009-12-23 13:15:32 +0100614
Johannes Berg39ecc012013-02-13 12:11:00 +0100615static inline void drv_flush(struct ieee80211_local *local,
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +0200616 struct ieee80211_sub_if_data *sdata,
Johannes Berg39ecc012013-02-13 12:11:00 +0100617 u32 queues, bool drop)
Johannes Berga80f7c02009-12-23 13:15:32 +0100618{
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +0200619 struct ieee80211_vif *vif = sdata ? &sdata->vif : NULL;
620
Kalle Valoe1781ed2009-12-23 13:15:47 +0100621 might_sleep();
622
Johannes Bergf6837ba2014-04-30 14:19:04 +0200623 if (sdata && !check_sdata_in_driver(sdata))
624 return;
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +0200625
Johannes Berg39ecc012013-02-13 12:11:00 +0100626 trace_drv_flush(local, queues, drop);
Johannes Berga80f7c02009-12-23 13:15:32 +0100627 if (local->ops->flush)
Emmanuel Grumbach77be2c52014-03-27 11:30:29 +0200628 local->ops->flush(&local->hw, vif, queues, drop);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200629 trace_drv_return_void(local);
Johannes Berga80f7c02009-12-23 13:15:32 +0100630}
Johannes Berg5ce6e432010-05-11 16:20:57 +0200631
632static inline void drv_channel_switch(struct ieee80211_local *local,
Luciano Coelho0f791eb42014-10-08 09:48:40 +0300633 struct ieee80211_sub_if_data *sdata,
634 struct ieee80211_channel_switch *ch_switch)
Johannes Berg5ce6e432010-05-11 16:20:57 +0200635{
636 might_sleep();
637
Luciano Coelho0f791eb42014-10-08 09:48:40 +0300638 trace_drv_channel_switch(local, sdata, ch_switch);
639 local->ops->channel_switch(&local->hw, &sdata->vif, ch_switch);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200640 trace_drv_return_void(local);
Johannes Berg5ce6e432010-05-11 16:20:57 +0200641}
642
Bruno Randolf15d96752010-11-10 12:50:56 +0900643
644static inline int drv_set_antenna(struct ieee80211_local *local,
645 u32 tx_ant, u32 rx_ant)
646{
647 int ret = -EOPNOTSUPP;
648 might_sleep();
649 if (local->ops->set_antenna)
650 ret = local->ops->set_antenna(&local->hw, tx_ant, rx_ant);
651 trace_drv_set_antenna(local, tx_ant, rx_ant, ret);
652 return ret;
653}
654
655static inline int drv_get_antenna(struct ieee80211_local *local,
656 u32 *tx_ant, u32 *rx_ant)
657{
658 int ret = -EOPNOTSUPP;
659 might_sleep();
660 if (local->ops->get_antenna)
661 ret = local->ops->get_antenna(&local->hw, tx_ant, rx_ant);
662 trace_drv_get_antenna(local, *tx_ant, *rx_ant, ret);
663 return ret;
664}
665
Johannes Berg21f83582010-12-18 17:20:47 +0100666static inline int drv_remain_on_channel(struct ieee80211_local *local,
Eliad Peller49884562012-11-19 17:05:09 +0200667 struct ieee80211_sub_if_data *sdata,
Johannes Berg21f83582010-12-18 17:20:47 +0100668 struct ieee80211_channel *chan,
Ilan Peerd339d5c2013-02-12 09:34:13 +0200669 unsigned int duration,
670 enum ieee80211_roc_type type)
Johannes Berg21f83582010-12-18 17:20:47 +0100671{
672 int ret;
673
674 might_sleep();
675
Ilan Peerd339d5c2013-02-12 09:34:13 +0200676 trace_drv_remain_on_channel(local, sdata, chan, duration, type);
Eliad Peller49884562012-11-19 17:05:09 +0200677 ret = local->ops->remain_on_channel(&local->hw, &sdata->vif,
Ilan Peerd339d5c2013-02-12 09:34:13 +0200678 chan, duration, type);
Johannes Berg21f83582010-12-18 17:20:47 +0100679 trace_drv_return_int(local, ret);
680
681 return ret;
682}
683
684static inline int drv_cancel_remain_on_channel(struct ieee80211_local *local)
685{
686 int ret;
687
688 might_sleep();
689
690 trace_drv_cancel_remain_on_channel(local);
691 ret = local->ops->cancel_remain_on_channel(&local->hw);
692 trace_drv_return_int(local, ret);
693
694 return ret;
695}
696
John W. Linville38c09152011-03-07 16:19:18 -0500697static inline int drv_set_ringparam(struct ieee80211_local *local,
698 u32 tx, u32 rx)
699{
700 int ret = -ENOTSUPP;
701
702 might_sleep();
703
704 trace_drv_set_ringparam(local, tx, rx);
705 if (local->ops->set_ringparam)
706 ret = local->ops->set_ringparam(&local->hw, tx, rx);
707 trace_drv_return_int(local, ret);
708
709 return ret;
710}
711
712static inline void drv_get_ringparam(struct ieee80211_local *local,
713 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max)
714{
715 might_sleep();
716
717 trace_drv_get_ringparam(local, tx, tx_max, rx, rx_max);
718 if (local->ops->get_ringparam)
719 local->ops->get_ringparam(&local->hw, tx, tx_max, rx, rx_max);
720 trace_drv_return_void(local);
721}
722
Vivek Natarajane8306f92011-04-06 11:41:10 +0530723static inline bool drv_tx_frames_pending(struct ieee80211_local *local)
724{
725 bool ret = false;
726
727 might_sleep();
728
729 trace_drv_tx_frames_pending(local);
730 if (local->ops->tx_frames_pending)
731 ret = local->ops->tx_frames_pending(&local->hw);
732 trace_drv_return_bool(local, ret);
733
734 return ret;
735}
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +0530736
737static inline int drv_set_bitrate_mask(struct ieee80211_local *local,
738 struct ieee80211_sub_if_data *sdata,
739 const struct cfg80211_bitrate_mask *mask)
740{
741 int ret = -EOPNOTSUPP;
742
743 might_sleep();
744
Johannes Bergf6837ba2014-04-30 14:19:04 +0200745 if (!check_sdata_in_driver(sdata))
746 return -EIO;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100747
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +0530748 trace_drv_set_bitrate_mask(local, sdata, mask);
749 if (local->ops->set_bitrate_mask)
750 ret = local->ops->set_bitrate_mask(&local->hw,
751 &sdata->vif, mask);
752 trace_drv_return_int(local, ret);
753
754 return ret;
755}
756
Johannes Bergc68f4b82011-07-05 16:35:41 +0200757static inline void drv_set_rekey_data(struct ieee80211_local *local,
758 struct ieee80211_sub_if_data *sdata,
759 struct cfg80211_gtk_rekey_data *data)
760{
Johannes Bergf6837ba2014-04-30 14:19:04 +0200761 if (!check_sdata_in_driver(sdata))
762 return;
Johannes Berg7b7eab62011-11-03 14:41:13 +0100763
Johannes Bergc68f4b82011-07-05 16:35:41 +0200764 trace_drv_set_rekey_data(local, sdata, data);
765 if (local->ops->set_rekey_data)
766 local->ops->set_rekey_data(&local->hw, &sdata->vif, data);
767 trace_drv_return_void(local);
768}
769
Emmanuel Grumbacha8182922015-03-16 23:23:34 +0200770static inline void drv_event_callback(struct ieee80211_local *local,
771 struct ieee80211_sub_if_data *sdata,
772 const struct ieee80211_event *event)
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -0700773{
Emmanuel Grumbacha8182922015-03-16 23:23:34 +0200774 trace_drv_event_callback(local, sdata, event);
775 if (local->ops->event_callback)
776 local->ops->event_callback(&local->hw, &sdata->vif, event);
Meenakshi Venkataraman615f7b92011-07-08 08:46:22 -0700777 trace_drv_return_void(local);
778}
Johannes Berg4049e092011-09-29 16:04:32 +0200779
780static inline void
781drv_release_buffered_frames(struct ieee80211_local *local,
782 struct sta_info *sta, u16 tids, int num_frames,
783 enum ieee80211_frame_release_type reason,
784 bool more_data)
785{
786 trace_drv_release_buffered_frames(local, &sta->sta, tids, num_frames,
787 reason, more_data);
788 if (local->ops->release_buffered_frames)
789 local->ops->release_buffered_frames(&local->hw, &sta->sta, tids,
790 num_frames, reason,
791 more_data);
792 trace_drv_return_void(local);
793}
Johannes Berg40b96402011-09-29 16:04:38 +0200794
795static inline void
796drv_allow_buffered_frames(struct ieee80211_local *local,
797 struct sta_info *sta, u16 tids, int num_frames,
798 enum ieee80211_frame_release_type reason,
799 bool more_data)
800{
801 trace_drv_allow_buffered_frames(local, &sta->sta, tids, num_frames,
802 reason, more_data);
803 if (local->ops->allow_buffered_frames)
804 local->ops->allow_buffered_frames(&local->hw, &sta->sta,
805 tids, num_frames, reason,
806 more_data);
807 trace_drv_return_void(local);
808}
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300809
Johannes Berga1845fc2012-06-27 13:18:36 +0200810static inline void drv_mgd_prepare_tx(struct ieee80211_local *local,
811 struct ieee80211_sub_if_data *sdata)
812{
813 might_sleep();
814
Johannes Bergf6837ba2014-04-30 14:19:04 +0200815 if (!check_sdata_in_driver(sdata))
816 return;
Johannes Berga1845fc2012-06-27 13:18:36 +0200817 WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION);
818
819 trace_drv_mgd_prepare_tx(local, sdata);
820 if (local->ops->mgd_prepare_tx)
821 local->ops->mgd_prepare_tx(&local->hw, &sdata->vif);
822 trace_drv_return_void(local);
823}
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200824
Arik Nemtsovee10f2c2014-06-11 17:18:27 +0300825static inline void
826drv_mgd_protect_tdls_discover(struct ieee80211_local *local,
827 struct ieee80211_sub_if_data *sdata)
828{
829 might_sleep();
830
831 if (!check_sdata_in_driver(sdata))
832 return;
833 WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION);
834
835 trace_drv_mgd_protect_tdls_discover(local, sdata);
836 if (local->ops->mgd_protect_tdls_discover)
837 local->ops->mgd_protect_tdls_discover(&local->hw, &sdata->vif);
838 trace_drv_return_void(local);
839}
840
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200841static inline int drv_add_chanctx(struct ieee80211_local *local,
842 struct ieee80211_chanctx *ctx)
843{
844 int ret = -EOPNOTSUPP;
845
Chaitanya T Kdcae9e02015-10-30 23:16:15 +0530846 might_sleep();
847
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200848 trace_drv_add_chanctx(local, ctx);
849 if (local->ops->add_chanctx)
850 ret = local->ops->add_chanctx(&local->hw, &ctx->conf);
851 trace_drv_return_int(local, ret);
Johannes Berg8a61af62012-12-13 17:42:30 +0100852 if (!ret)
853 ctx->driver_present = true;
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200854
855 return ret;
856}
857
858static inline void drv_remove_chanctx(struct ieee80211_local *local,
859 struct ieee80211_chanctx *ctx)
860{
Chaitanya T Kdcae9e02015-10-30 23:16:15 +0530861 might_sleep();
862
Johannes Bergf6837ba2014-04-30 14:19:04 +0200863 if (WARN_ON(!ctx->driver_present))
864 return;
865
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200866 trace_drv_remove_chanctx(local, ctx);
867 if (local->ops->remove_chanctx)
868 local->ops->remove_chanctx(&local->hw, &ctx->conf);
869 trace_drv_return_void(local);
Johannes Berg8a61af62012-12-13 17:42:30 +0100870 ctx->driver_present = false;
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200871}
872
873static inline void drv_change_chanctx(struct ieee80211_local *local,
874 struct ieee80211_chanctx *ctx,
875 u32 changed)
876{
Chaitanya T Kdcae9e02015-10-30 23:16:15 +0530877 might_sleep();
878
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200879 trace_drv_change_chanctx(local, ctx, changed);
Johannes Berg8a61af62012-12-13 17:42:30 +0100880 if (local->ops->change_chanctx) {
881 WARN_ON_ONCE(!ctx->driver_present);
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200882 local->ops->change_chanctx(&local->hw, &ctx->conf, changed);
Johannes Berg8a61af62012-12-13 17:42:30 +0100883 }
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200884 trace_drv_return_void(local);
885}
886
887static inline int drv_assign_vif_chanctx(struct ieee80211_local *local,
888 struct ieee80211_sub_if_data *sdata,
889 struct ieee80211_chanctx *ctx)
890{
891 int ret = 0;
892
Johannes Bergf6837ba2014-04-30 14:19:04 +0200893 if (!check_sdata_in_driver(sdata))
894 return -EIO;
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200895
896 trace_drv_assign_vif_chanctx(local, sdata, ctx);
Johannes Berg8a61af62012-12-13 17:42:30 +0100897 if (local->ops->assign_vif_chanctx) {
898 WARN_ON_ONCE(!ctx->driver_present);
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200899 ret = local->ops->assign_vif_chanctx(&local->hw,
900 &sdata->vif,
901 &ctx->conf);
Johannes Berg8a61af62012-12-13 17:42:30 +0100902 }
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200903 trace_drv_return_int(local, ret);
904
905 return ret;
906}
907
908static inline void drv_unassign_vif_chanctx(struct ieee80211_local *local,
909 struct ieee80211_sub_if_data *sdata,
910 struct ieee80211_chanctx *ctx)
911{
Chaitanya T Kdcae9e02015-10-30 23:16:15 +0530912 might_sleep();
913
Johannes Bergf6837ba2014-04-30 14:19:04 +0200914 if (!check_sdata_in_driver(sdata))
915 return;
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200916
917 trace_drv_unassign_vif_chanctx(local, sdata, ctx);
Johannes Berg8a61af62012-12-13 17:42:30 +0100918 if (local->ops->unassign_vif_chanctx) {
919 WARN_ON_ONCE(!ctx->driver_present);
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200920 local->ops->unassign_vif_chanctx(&local->hw,
921 &sdata->vif,
922 &ctx->conf);
Johannes Berg8a61af62012-12-13 17:42:30 +0100923 }
Michal Kaziorc3645ea2012-06-26 14:37:17 +0200924 trace_drv_return_void(local);
925}
926
Denys Vlasenko42677ed2015-09-23 14:18:34 +0200927int drv_switch_vif_chanctx(struct ieee80211_local *local,
928 struct ieee80211_vif_chanctx_switch *vifs,
929 int n_vifs, enum ieee80211_chanctx_switch_mode mode);
Luciano Coelho1a5f0c12014-05-23 14:33:12 +0300930
Johannes Berg10416382012-10-19 15:44:42 +0200931static inline int drv_start_ap(struct ieee80211_local *local,
932 struct ieee80211_sub_if_data *sdata)
933{
934 int ret = 0;
935
Chaitanya T Kdcae9e02015-10-30 23:16:15 +0530936 might_sleep();
937
Johannes Bergf6837ba2014-04-30 14:19:04 +0200938 if (!check_sdata_in_driver(sdata))
939 return -EIO;
Johannes Berg10416382012-10-19 15:44:42 +0200940
941 trace_drv_start_ap(local, sdata, &sdata->vif.bss_conf);
942 if (local->ops->start_ap)
943 ret = local->ops->start_ap(&local->hw, &sdata->vif);
944 trace_drv_return_int(local, ret);
945 return ret;
946}
947
948static inline void drv_stop_ap(struct ieee80211_local *local,
949 struct ieee80211_sub_if_data *sdata)
950{
Johannes Bergf6837ba2014-04-30 14:19:04 +0200951 if (!check_sdata_in_driver(sdata))
952 return;
Johannes Berg10416382012-10-19 15:44:42 +0200953
954 trace_drv_stop_ap(local, sdata);
955 if (local->ops->stop_ap)
956 local->ops->stop_ap(&local->hw, &sdata->vif);
957 trace_drv_return_void(local);
958}
959
Eliad Pellercf2c92d2014-11-04 11:43:54 +0200960static inline void
961drv_reconfig_complete(struct ieee80211_local *local,
962 enum ieee80211_reconfig_type reconfig_type)
Johannes Berg9214ad72012-11-06 19:18:13 +0100963{
964 might_sleep();
965
Eliad Pellercf2c92d2014-11-04 11:43:54 +0200966 trace_drv_reconfig_complete(local, reconfig_type);
967 if (local->ops->reconfig_complete)
968 local->ops->reconfig_complete(&local->hw, reconfig_type);
Johannes Berg9214ad72012-11-06 19:18:13 +0100969 trace_drv_return_void(local);
970}
971
Yoni Divinskyde5fad82012-05-30 11:36:39 +0300972static inline void
973drv_set_default_unicast_key(struct ieee80211_local *local,
974 struct ieee80211_sub_if_data *sdata,
975 int key_idx)
976{
Johannes Bergf6837ba2014-04-30 14:19:04 +0200977 if (!check_sdata_in_driver(sdata))
978 return;
Yoni Divinskyde5fad82012-05-30 11:36:39 +0300979
980 WARN_ON_ONCE(key_idx < -1 || key_idx > 3);
981
982 trace_drv_set_default_unicast_key(local, sdata, key_idx);
983 if (local->ops->set_default_unicast_key)
984 local->ops->set_default_unicast_key(&local->hw, &sdata->vif,
985 key_idx);
986 trace_drv_return_void(local);
987}
988
Johannes Berga65240c2013-01-14 15:14:34 +0100989#if IS_ENABLED(CONFIG_IPV6)
990static inline void drv_ipv6_addr_change(struct ieee80211_local *local,
991 struct ieee80211_sub_if_data *sdata,
992 struct inet6_dev *idev)
993{
994 trace_drv_ipv6_addr_change(local, sdata);
995 if (local->ops->ipv6_addr_change)
996 local->ops->ipv6_addr_change(&local->hw, &sdata->vif, idev);
997 trace_drv_return_void(local);
998}
999#endif
1000
Simon Wunderlich73da7d52013-07-11 16:09:06 +02001001static inline void
1002drv_channel_switch_beacon(struct ieee80211_sub_if_data *sdata,
1003 struct cfg80211_chan_def *chandef)
1004{
1005 struct ieee80211_local *local = sdata->local;
1006
1007 if (local->ops->channel_switch_beacon) {
1008 trace_drv_channel_switch_beacon(local, sdata, chandef);
1009 local->ops->channel_switch_beacon(&local->hw, &sdata->vif,
1010 chandef);
1011 }
1012}
1013
Luciano Coelho6d027bc2014-10-08 09:48:37 +03001014static inline int
1015drv_pre_channel_switch(struct ieee80211_sub_if_data *sdata,
1016 struct ieee80211_channel_switch *ch_switch)
1017{
1018 struct ieee80211_local *local = sdata->local;
1019 int ret = 0;
1020
1021 if (!check_sdata_in_driver(sdata))
1022 return -EIO;
1023
1024 trace_drv_pre_channel_switch(local, sdata, ch_switch);
1025 if (local->ops->pre_channel_switch)
1026 ret = local->ops->pre_channel_switch(&local->hw, &sdata->vif,
1027 ch_switch);
1028 trace_drv_return_int(local, ret);
1029 return ret;
1030}
1031
Luciano Coelhof1d65582014-10-08 09:48:38 +03001032static inline int
1033drv_post_channel_switch(struct ieee80211_sub_if_data *sdata)
1034{
1035 struct ieee80211_local *local = sdata->local;
1036 int ret = 0;
1037
1038 if (!check_sdata_in_driver(sdata))
1039 return -EIO;
1040
1041 trace_drv_post_channel_switch(local, sdata);
1042 if (local->ops->post_channel_switch)
1043 ret = local->ops->post_channel_switch(&local->hw, &sdata->vif);
1044 trace_drv_return_int(local, ret);
1045 return ret;
1046}
1047
Johannes Berg55fff502013-08-19 18:48:41 +02001048static inline int drv_join_ibss(struct ieee80211_local *local,
1049 struct ieee80211_sub_if_data *sdata)
1050{
1051 int ret = 0;
1052
1053 might_sleep();
Johannes Bergf6837ba2014-04-30 14:19:04 +02001054 if (!check_sdata_in_driver(sdata))
1055 return -EIO;
Johannes Berg55fff502013-08-19 18:48:41 +02001056
1057 trace_drv_join_ibss(local, sdata, &sdata->vif.bss_conf);
1058 if (local->ops->join_ibss)
1059 ret = local->ops->join_ibss(&local->hw, &sdata->vif);
1060 trace_drv_return_int(local, ret);
1061 return ret;
1062}
1063
1064static inline void drv_leave_ibss(struct ieee80211_local *local,
1065 struct ieee80211_sub_if_data *sdata)
1066{
1067 might_sleep();
Johannes Bergf6837ba2014-04-30 14:19:04 +02001068 if (!check_sdata_in_driver(sdata))
1069 return;
Johannes Berg55fff502013-08-19 18:48:41 +02001070
1071 trace_drv_leave_ibss(local, sdata);
1072 if (local->ops->leave_ibss)
1073 local->ops->leave_ibss(&local->hw, &sdata->vif);
1074 trace_drv_return_void(local);
1075}
1076
Antonio Quartullicca674d2014-05-19 21:53:20 +02001077static inline u32 drv_get_expected_throughput(struct ieee80211_local *local,
Maxim Altshul4fdbc67a2016-08-11 13:38:16 +03001078 struct sta_info *sta)
Antonio Quartullicca674d2014-05-19 21:53:20 +02001079{
1080 u32 ret = 0;
1081
Maxim Altshul4fdbc67a2016-08-11 13:38:16 +03001082 trace_drv_get_expected_throughput(&sta->sta);
1083 if (local->ops->get_expected_throughput && sta->uploaded)
1084 ret = local->ops->get_expected_throughput(&local->hw, &sta->sta);
Antonio Quartullicca674d2014-05-19 21:53:20 +02001085 trace_drv_return_u32(local, ret);
1086
1087 return ret;
1088}
1089
Felix Fietkau5b3dc422014-10-26 00:32:53 +02001090static inline int drv_get_txpower(struct ieee80211_local *local,
1091 struct ieee80211_sub_if_data *sdata, int *dbm)
1092{
1093 int ret;
1094
1095 if (!local->ops->get_txpower)
1096 return -EOPNOTSUPP;
1097
1098 ret = local->ops->get_txpower(&local->hw, &sdata->vif, dbm);
1099 trace_drv_get_txpower(local, sdata, *dbm, ret);
1100
1101 return ret;
1102}
1103
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +02001104static inline int
1105drv_tdls_channel_switch(struct ieee80211_local *local,
1106 struct ieee80211_sub_if_data *sdata,
1107 struct ieee80211_sta *sta, u8 oper_class,
1108 struct cfg80211_chan_def *chandef,
1109 struct sk_buff *tmpl_skb, u32 ch_sw_tm_ie)
1110{
1111 int ret;
1112
1113 might_sleep();
1114 if (!check_sdata_in_driver(sdata))
1115 return -EIO;
1116
1117 if (!local->ops->tdls_channel_switch)
1118 return -EOPNOTSUPP;
1119
1120 trace_drv_tdls_channel_switch(local, sdata, sta, oper_class, chandef);
1121 ret = local->ops->tdls_channel_switch(&local->hw, &sdata->vif, sta,
1122 oper_class, chandef, tmpl_skb,
1123 ch_sw_tm_ie);
1124 trace_drv_return_int(local, ret);
1125 return ret;
1126}
1127
1128static inline void
1129drv_tdls_cancel_channel_switch(struct ieee80211_local *local,
1130 struct ieee80211_sub_if_data *sdata,
1131 struct ieee80211_sta *sta)
1132{
1133 might_sleep();
1134 if (!check_sdata_in_driver(sdata))
1135 return;
1136
1137 if (!local->ops->tdls_cancel_channel_switch)
1138 return;
1139
1140 trace_drv_tdls_cancel_channel_switch(local, sdata, sta);
1141 local->ops->tdls_cancel_channel_switch(&local->hw, &sdata->vif, sta);
1142 trace_drv_return_void(local);
1143}
1144
Arik Nemtsov8a4d32f2014-11-09 18:50:20 +02001145static inline void
1146drv_tdls_recv_channel_switch(struct ieee80211_local *local,
1147 struct ieee80211_sub_if_data *sdata,
1148 struct ieee80211_tdls_ch_sw_params *params)
1149{
1150 trace_drv_tdls_recv_channel_switch(local, sdata, params);
1151 if (local->ops->tdls_recv_channel_switch)
1152 local->ops->tdls_recv_channel_switch(&local->hw, &sdata->vif,
1153 params);
1154 trace_drv_return_void(local);
1155}
1156
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001157static inline void drv_wake_tx_queue(struct ieee80211_local *local,
1158 struct txq_info *txq)
1159{
1160 struct ieee80211_sub_if_data *sdata = vif_to_sdata(txq->txq.vif);
1161
1162 if (!check_sdata_in_driver(sdata))
1163 return;
1164
1165 trace_drv_wake_tx_queue(local, sdata, txq);
1166 local->ops->wake_tx_queue(&local->hw, &txq->txq);
1167}
1168
Ayala Beker708d50e2016-09-20 17:31:14 +03001169static inline int drv_start_nan(struct ieee80211_local *local,
1170 struct ieee80211_sub_if_data *sdata,
1171 struct cfg80211_nan_conf *conf)
1172{
1173 int ret;
1174
1175 might_sleep();
1176 check_sdata_in_driver(sdata);
1177
1178 trace_drv_start_nan(local, sdata, conf);
1179 ret = local->ops->start_nan(&local->hw, &sdata->vif, conf);
1180 trace_drv_return_int(local, ret);
1181 return ret;
1182}
1183
1184static inline void drv_stop_nan(struct ieee80211_local *local,
1185 struct ieee80211_sub_if_data *sdata)
1186{
1187 might_sleep();
1188 check_sdata_in_driver(sdata);
1189
1190 trace_drv_stop_nan(local, sdata);
1191 local->ops->stop_nan(&local->hw, &sdata->vif);
1192 trace_drv_return_void(local);
1193}
1194
Johannes Berg24487982009-04-23 18:52:52 +02001195#endif /* __MAC80211_DRIVER_OPS */