blob: aa16bd8ef7891a925a3edcc1e86a358f75fefd04 [file] [log] [blame]
Johannes Berg24487982009-04-23 18:52:52 +02001#ifndef __MAC80211_DRIVER_OPS
2#define __MAC80211_DRIVER_OPS
3
4#include <net/mac80211.h>
5#include "ieee80211_i.h"
Johannes Berg0a2b8bb2009-07-07 13:46:22 +02006#include "driver-trace.h"
Johannes Berg24487982009-04-23 18:52:52 +02007
Johannes Berg7bb45682011-02-24 14:42:06 +01008static inline void drv_tx(struct ieee80211_local *local, struct sk_buff *skb)
Johannes Berg24487982009-04-23 18:52:52 +02009{
Johannes Berg7bb45682011-02-24 14:42:06 +010010 local->ops->tx(&local->hw, skb);
Johannes Berg24487982009-04-23 18:52:52 +020011}
12
13static inline int drv_start(struct ieee80211_local *local)
14{
Johannes Bergea77f122009-08-21 14:44:45 +020015 int ret;
16
Kalle Valoe1781ed2009-12-23 13:15:47 +010017 might_sleep();
18
Johannes Berg4efc76b2010-06-10 10:56:20 +020019 trace_drv_start(local);
Johannes Bergea77f122009-08-21 14:44:45 +020020 local->started = true;
21 smp_mb();
22 ret = local->ops->start(&local->hw);
Johannes Berg4efc76b2010-06-10 10:56:20 +020023 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020024 return ret;
Johannes Berg24487982009-04-23 18:52:52 +020025}
26
27static inline void drv_stop(struct ieee80211_local *local)
28{
Kalle Valoe1781ed2009-12-23 13:15:47 +010029 might_sleep();
30
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020031 trace_drv_stop(local);
Johannes Berg4efc76b2010-06-10 10:56:20 +020032 local->ops->stop(&local->hw);
33 trace_drv_return_void(local);
Johannes Bergea77f122009-08-21 14:44:45 +020034
35 /* sync away all work on the tasklet before clearing started */
36 tasklet_disable(&local->tasklet);
37 tasklet_enable(&local->tasklet);
38
39 barrier();
40
41 local->started = false;
Johannes Berg24487982009-04-23 18:52:52 +020042}
43
Johannes Bergeecc4802011-05-04 15:37:29 +020044#ifdef CONFIG_PM
45static inline int drv_suspend(struct ieee80211_local *local,
46 struct cfg80211_wowlan *wowlan)
47{
48 int ret;
49
50 might_sleep();
51
52 trace_drv_suspend(local);
53 ret = local->ops->suspend(&local->hw, wowlan);
54 trace_drv_return_int(local, ret);
55 return ret;
56}
57
58static inline int drv_resume(struct ieee80211_local *local)
59{
60 int ret;
61
62 might_sleep();
63
64 trace_drv_resume(local);
65 ret = local->ops->resume(&local->hw);
66 trace_drv_return_int(local, ret);
67 return ret;
68}
69#endif
70
Johannes Berg24487982009-04-23 18:52:52 +020071static inline int drv_add_interface(struct ieee80211_local *local,
Johannes Berg1ed32e42009-12-23 13:15:45 +010072 struct ieee80211_vif *vif)
Johannes Berg24487982009-04-23 18:52:52 +020073{
Kalle Valoe1781ed2009-12-23 13:15:47 +010074 int ret;
75
76 might_sleep();
77
Johannes Berg4efc76b2010-06-10 10:56:20 +020078 trace_drv_add_interface(local, vif_to_sdata(vif));
Kalle Valoe1781ed2009-12-23 13:15:47 +010079 ret = local->ops->add_interface(&local->hw, vif);
Johannes Berg4efc76b2010-06-10 10:56:20 +020080 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020081 return ret;
Johannes Berg24487982009-04-23 18:52:52 +020082}
83
Johannes Berg34d4bc42010-08-27 12:35:58 +020084static inline int drv_change_interface(struct ieee80211_local *local,
85 struct ieee80211_sub_if_data *sdata,
Johannes Berg2ca27bc2010-09-16 14:58:23 +020086 enum nl80211_iftype type, bool p2p)
Johannes Berg34d4bc42010-08-27 12:35:58 +020087{
88 int ret;
89
90 might_sleep();
91
Johannes Berg2ca27bc2010-09-16 14:58:23 +020092 trace_drv_change_interface(local, sdata, type, p2p);
93 ret = local->ops->change_interface(&local->hw, &sdata->vif, type, p2p);
Johannes Berg34d4bc42010-08-27 12:35:58 +020094 trace_drv_return_int(local, ret);
95 return ret;
96}
97
Johannes Berg24487982009-04-23 18:52:52 +020098static inline void drv_remove_interface(struct ieee80211_local *local,
Johannes Berg1ed32e42009-12-23 13:15:45 +010099 struct ieee80211_vif *vif)
Johannes Berg24487982009-04-23 18:52:52 +0200100{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100101 might_sleep();
102
Johannes Berg1ed32e42009-12-23 13:15:45 +0100103 trace_drv_remove_interface(local, vif_to_sdata(vif));
Johannes Berg4efc76b2010-06-10 10:56:20 +0200104 local->ops->remove_interface(&local->hw, vif);
105 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200106}
107
108static inline int drv_config(struct ieee80211_local *local, u32 changed)
109{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100110 int ret;
111
112 might_sleep();
113
Johannes Berg4efc76b2010-06-10 10:56:20 +0200114 trace_drv_config(local, changed);
Kalle Valoe1781ed2009-12-23 13:15:47 +0100115 ret = local->ops->config(&local->hw, changed);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200116 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200117 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200118}
119
120static inline void drv_bss_info_changed(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100121 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200122 struct ieee80211_bss_conf *info,
123 u32 changed)
124{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100125 might_sleep();
126
Johannes Berg4efc76b2010-06-10 10:56:20 +0200127 trace_drv_bss_info_changed(local, sdata, info, changed);
Johannes Berg24487982009-04-23 18:52:52 +0200128 if (local->ops->bss_info_changed)
Johannes Berg12375ef2009-11-25 20:30:31 +0100129 local->ops->bss_info_changed(&local->hw, &sdata->vif, info, changed);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200130 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200131}
132
Johannes Berg3ac64be2009-08-17 16:16:53 +0200133static inline u64 drv_prepare_multicast(struct ieee80211_local *local,
Jiri Pirko22bedad32010-04-01 21:22:57 +0000134 struct netdev_hw_addr_list *mc_list)
Johannes Berg24487982009-04-23 18:52:52 +0200135{
Johannes Berg3ac64be2009-08-17 16:16:53 +0200136 u64 ret = 0;
137
Johannes Berg4efc76b2010-06-10 10:56:20 +0200138 trace_drv_prepare_multicast(local, mc_list->count);
139
Johannes Berg3ac64be2009-08-17 16:16:53 +0200140 if (local->ops->prepare_multicast)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000141 ret = local->ops->prepare_multicast(&local->hw, mc_list);
Johannes Berg3ac64be2009-08-17 16:16:53 +0200142
Johannes Berg4efc76b2010-06-10 10:56:20 +0200143 trace_drv_return_u64(local, ret);
Johannes Berg3ac64be2009-08-17 16:16:53 +0200144
145 return ret;
146}
147
148static inline void drv_configure_filter(struct ieee80211_local *local,
149 unsigned int changed_flags,
150 unsigned int *total_flags,
151 u64 multicast)
152{
153 might_sleep();
154
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200155 trace_drv_configure_filter(local, changed_flags, total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +0200156 multicast);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200157 local->ops->configure_filter(&local->hw, changed_flags, total_flags,
158 multicast);
159 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200160}
161
162static inline int drv_set_tim(struct ieee80211_local *local,
163 struct ieee80211_sta *sta, bool set)
164{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200165 int ret = 0;
Johannes Berg4efc76b2010-06-10 10:56:20 +0200166 trace_drv_set_tim(local, sta, set);
Johannes Berg24487982009-04-23 18:52:52 +0200167 if (local->ops->set_tim)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200168 ret = local->ops->set_tim(&local->hw, sta, set);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200169 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200170 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200171}
172
173static inline int drv_set_key(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100174 enum set_key_cmd cmd,
175 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200176 struct ieee80211_sta *sta,
177 struct ieee80211_key_conf *key)
178{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100179 int ret;
180
181 might_sleep();
182
Johannes Berg4efc76b2010-06-10 10:56:20 +0200183 trace_drv_set_key(local, cmd, sdata, sta, key);
Kalle Valoe1781ed2009-12-23 13:15:47 +0100184 ret = local->ops->set_key(&local->hw, cmd, &sdata->vif, sta, key);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200185 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200186 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200187}
188
189static inline void drv_update_tkip_key(struct ieee80211_local *local,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100190 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200191 struct ieee80211_key_conf *conf,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100192 struct sta_info *sta, u32 iv32,
Johannes Berg24487982009-04-23 18:52:52 +0200193 u16 *phase1key)
194{
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100195 struct ieee80211_sta *ista = NULL;
196
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100197 if (sta)
198 ista = &sta->sta;
199
Johannes Berg4efc76b2010-06-10 10:56:20 +0200200 trace_drv_update_tkip_key(local, sdata, conf, ista, iv32);
Johannes Berg24487982009-04-23 18:52:52 +0200201 if (local->ops->update_tkip_key)
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100202 local->ops->update_tkip_key(&local->hw, &sdata->vif, conf,
203 ista, iv32, phase1key);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200204 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200205}
206
207static inline int drv_hw_scan(struct ieee80211_local *local,
Johannes Berga060bbf2010-04-27 11:59:34 +0200208 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200209 struct cfg80211_scan_request *req)
210{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100211 int ret;
212
213 might_sleep();
214
Johannes Berg4efc76b2010-06-10 10:56:20 +0200215 trace_drv_hw_scan(local, sdata, req);
Johannes Berga060bbf2010-04-27 11:59:34 +0200216 ret = local->ops->hw_scan(&local->hw, &sdata->vif, req);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200217 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200218 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200219}
220
221static inline void drv_sw_scan_start(struct ieee80211_local *local)
222{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100223 might_sleep();
224
Johannes Berg4efc76b2010-06-10 10:56:20 +0200225 trace_drv_sw_scan_start(local);
Johannes Berg24487982009-04-23 18:52:52 +0200226 if (local->ops->sw_scan_start)
227 local->ops->sw_scan_start(&local->hw);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200228 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200229}
230
231static inline void drv_sw_scan_complete(struct ieee80211_local *local)
232{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100233 might_sleep();
234
Johannes Berg4efc76b2010-06-10 10:56:20 +0200235 trace_drv_sw_scan_complete(local);
Johannes Berg24487982009-04-23 18:52:52 +0200236 if (local->ops->sw_scan_complete)
237 local->ops->sw_scan_complete(&local->hw);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200238 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200239}
240
241static inline int drv_get_stats(struct ieee80211_local *local,
242 struct ieee80211_low_level_stats *stats)
243{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200244 int ret = -EOPNOTSUPP;
245
Kalle Valoe1781ed2009-12-23 13:15:47 +0100246 might_sleep();
247
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200248 if (local->ops->get_stats)
249 ret = local->ops->get_stats(&local->hw, stats);
250 trace_drv_get_stats(local, stats, ret);
251
252 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200253}
254
255static inline void drv_get_tkip_seq(struct ieee80211_local *local,
256 u8 hw_key_idx, u32 *iv32, u16 *iv16)
257{
258 if (local->ops->get_tkip_seq)
259 local->ops->get_tkip_seq(&local->hw, hw_key_idx, iv32, iv16);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200260 trace_drv_get_tkip_seq(local, hw_key_idx, iv32, iv16);
Johannes Berg24487982009-04-23 18:52:52 +0200261}
262
Arik Nemtsovf23a4782010-11-08 11:51:06 +0200263static inline int drv_set_frag_threshold(struct ieee80211_local *local,
264 u32 value)
265{
266 int ret = 0;
267
268 might_sleep();
269
270 trace_drv_set_frag_threshold(local, value);
271 if (local->ops->set_frag_threshold)
272 ret = local->ops->set_frag_threshold(&local->hw, value);
273 trace_drv_return_int(local, ret);
274 return ret;
275}
276
Johannes Berg24487982009-04-23 18:52:52 +0200277static inline int drv_set_rts_threshold(struct ieee80211_local *local,
278 u32 value)
279{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200280 int ret = 0;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100281
282 might_sleep();
283
Johannes Berg4efc76b2010-06-10 10:56:20 +0200284 trace_drv_set_rts_threshold(local, value);
Johannes Berg24487982009-04-23 18:52:52 +0200285 if (local->ops->set_rts_threshold)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200286 ret = local->ops->set_rts_threshold(&local->hw, value);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200287 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200288 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200289}
290
Lukáš Turek310bc672009-12-21 22:50:48 +0100291static inline int drv_set_coverage_class(struct ieee80211_local *local,
292 u8 value)
293{
294 int ret = 0;
295 might_sleep();
296
Johannes Berg4efc76b2010-06-10 10:56:20 +0200297 trace_drv_set_coverage_class(local, value);
Lukáš Turek310bc672009-12-21 22:50:48 +0100298 if (local->ops->set_coverage_class)
299 local->ops->set_coverage_class(&local->hw, value);
300 else
301 ret = -EOPNOTSUPP;
302
Johannes Berg4efc76b2010-06-10 10:56:20 +0200303 trace_drv_return_int(local, ret);
Lukáš Turek310bc672009-12-21 22:50:48 +0100304 return ret;
305}
306
Johannes Berg24487982009-04-23 18:52:52 +0200307static inline void drv_sta_notify(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100308 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200309 enum sta_notify_cmd cmd,
310 struct ieee80211_sta *sta)
311{
Johannes Berg4efc76b2010-06-10 10:56:20 +0200312 trace_drv_sta_notify(local, sdata, cmd, sta);
Johannes Berg24487982009-04-23 18:52:52 +0200313 if (local->ops->sta_notify)
Johannes Berg12375ef2009-11-25 20:30:31 +0100314 local->ops->sta_notify(&local->hw, &sdata->vif, cmd, sta);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200315 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200316}
317
Johannes Berg34e89502010-02-03 13:59:58 +0100318static inline int drv_sta_add(struct ieee80211_local *local,
319 struct ieee80211_sub_if_data *sdata,
320 struct ieee80211_sta *sta)
321{
322 int ret = 0;
323
324 might_sleep();
325
Johannes Berg4efc76b2010-06-10 10:56:20 +0200326 trace_drv_sta_add(local, sdata, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100327 if (local->ops->sta_add)
328 ret = local->ops->sta_add(&local->hw, &sdata->vif, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100329
Johannes Berg4efc76b2010-06-10 10:56:20 +0200330 trace_drv_return_int(local, ret);
Johannes Berg34e89502010-02-03 13:59:58 +0100331
332 return ret;
333}
334
335static inline void drv_sta_remove(struct ieee80211_local *local,
336 struct ieee80211_sub_if_data *sdata,
337 struct ieee80211_sta *sta)
338{
339 might_sleep();
340
Johannes Berg4efc76b2010-06-10 10:56:20 +0200341 trace_drv_sta_remove(local, sdata, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100342 if (local->ops->sta_remove)
343 local->ops->sta_remove(&local->hw, &sdata->vif, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100344
Johannes Berg4efc76b2010-06-10 10:56:20 +0200345 trace_drv_return_void(local);
Johannes Berg34e89502010-02-03 13:59:58 +0100346}
347
Johannes Berg24487982009-04-23 18:52:52 +0200348static inline int drv_conf_tx(struct ieee80211_local *local, u16 queue,
349 const struct ieee80211_tx_queue_params *params)
350{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200351 int ret = -EOPNOTSUPP;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100352
353 might_sleep();
354
Johannes Berg4efc76b2010-06-10 10:56:20 +0200355 trace_drv_conf_tx(local, queue, params);
Johannes Berg24487982009-04-23 18:52:52 +0200356 if (local->ops->conf_tx)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200357 ret = local->ops->conf_tx(&local->hw, queue, params);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200358 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200359 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200360}
361
Johannes Berg24487982009-04-23 18:52:52 +0200362static inline u64 drv_get_tsf(struct ieee80211_local *local)
363{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200364 u64 ret = -1ULL;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100365
366 might_sleep();
367
Johannes Berg4efc76b2010-06-10 10:56:20 +0200368 trace_drv_get_tsf(local);
Johannes Berg24487982009-04-23 18:52:52 +0200369 if (local->ops->get_tsf)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200370 ret = local->ops->get_tsf(&local->hw);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200371 trace_drv_return_u64(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200372 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200373}
374
375static inline void drv_set_tsf(struct ieee80211_local *local, u64 tsf)
376{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100377 might_sleep();
378
Johannes Berg4efc76b2010-06-10 10:56:20 +0200379 trace_drv_set_tsf(local, tsf);
Johannes Berg24487982009-04-23 18:52:52 +0200380 if (local->ops->set_tsf)
381 local->ops->set_tsf(&local->hw, tsf);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200382 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200383}
384
385static inline void drv_reset_tsf(struct ieee80211_local *local)
386{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100387 might_sleep();
388
Johannes Berg4efc76b2010-06-10 10:56:20 +0200389 trace_drv_reset_tsf(local);
Johannes Berg24487982009-04-23 18:52:52 +0200390 if (local->ops->reset_tsf)
391 local->ops->reset_tsf(&local->hw);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200392 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200393}
394
395static inline int drv_tx_last_beacon(struct ieee80211_local *local)
396{
Tim Harvey91f44b02010-12-09 13:15:45 -0800397 int ret = 0; /* default unsuported op for less congestion */
Kalle Valoe1781ed2009-12-23 13:15:47 +0100398
399 might_sleep();
400
Johannes Berg4efc76b2010-06-10 10:56:20 +0200401 trace_drv_tx_last_beacon(local);
Johannes Berg24487982009-04-23 18:52:52 +0200402 if (local->ops->tx_last_beacon)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200403 ret = local->ops->tx_last_beacon(&local->hw);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200404 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200405 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200406}
407
408static inline int drv_ampdu_action(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100409 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200410 enum ieee80211_ampdu_mlme_action action,
411 struct ieee80211_sta *sta, u16 tid,
Johannes Berg0b01f032011-01-18 13:51:05 +0100412 u16 *ssn, u8 buf_size)
Johannes Berg24487982009-04-23 18:52:52 +0200413{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200414 int ret = -EOPNOTSUPP;
Johannes Bergcfcdbde2010-06-10 10:21:48 +0200415
416 might_sleep();
417
Johannes Berg0b01f032011-01-18 13:51:05 +0100418 trace_drv_ampdu_action(local, sdata, action, sta, tid, ssn, buf_size);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200419
Johannes Berg24487982009-04-23 18:52:52 +0200420 if (local->ops->ampdu_action)
Johannes Berg12375ef2009-11-25 20:30:31 +0100421 ret = local->ops->ampdu_action(&local->hw, &sdata->vif, action,
Johannes Berg0b01f032011-01-18 13:51:05 +0100422 sta, tid, ssn, buf_size);
Johannes Berg85ad1812010-06-10 10:21:49 +0200423
Johannes Berg4efc76b2010-06-10 10:56:20 +0200424 trace_drv_return_int(local, ret);
425
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200426 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200427}
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200428
Holger Schurig12897232010-04-19 10:23:57 +0200429static inline int drv_get_survey(struct ieee80211_local *local, int idx,
430 struct survey_info *survey)
431{
432 int ret = -EOPNOTSUPP;
John W. Linvillec466d4e2010-06-29 14:51:23 -0400433
434 trace_drv_get_survey(local, idx, survey);
435
Holger Schurig35dd0502010-06-07 16:33:49 +0200436 if (local->ops->get_survey)
Holger Schurig12897232010-04-19 10:23:57 +0200437 ret = local->ops->get_survey(&local->hw, idx, survey);
John W. Linvillec466d4e2010-06-29 14:51:23 -0400438
439 trace_drv_return_int(local, ret);
440
Holger Schurig12897232010-04-19 10:23:57 +0200441 return ret;
442}
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200443
444static inline void drv_rfkill_poll(struct ieee80211_local *local)
445{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100446 might_sleep();
447
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200448 if (local->ops->rfkill_poll)
449 local->ops->rfkill_poll(&local->hw);
450}
Johannes Berga80f7c02009-12-23 13:15:32 +0100451
452static inline void drv_flush(struct ieee80211_local *local, bool drop)
453{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100454 might_sleep();
455
Johannes Berga80f7c02009-12-23 13:15:32 +0100456 trace_drv_flush(local, drop);
457 if (local->ops->flush)
458 local->ops->flush(&local->hw, drop);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200459 trace_drv_return_void(local);
Johannes Berga80f7c02009-12-23 13:15:32 +0100460}
Johannes Berg5ce6e432010-05-11 16:20:57 +0200461
462static inline void drv_channel_switch(struct ieee80211_local *local,
463 struct ieee80211_channel_switch *ch_switch)
464{
465 might_sleep();
466
Johannes Berg5ce6e432010-05-11 16:20:57 +0200467 trace_drv_channel_switch(local, ch_switch);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200468 local->ops->channel_switch(&local->hw, ch_switch);
469 trace_drv_return_void(local);
Johannes Berg5ce6e432010-05-11 16:20:57 +0200470}
471
Bruno Randolf15d96752010-11-10 12:50:56 +0900472
473static inline int drv_set_antenna(struct ieee80211_local *local,
474 u32 tx_ant, u32 rx_ant)
475{
476 int ret = -EOPNOTSUPP;
477 might_sleep();
478 if (local->ops->set_antenna)
479 ret = local->ops->set_antenna(&local->hw, tx_ant, rx_ant);
480 trace_drv_set_antenna(local, tx_ant, rx_ant, ret);
481 return ret;
482}
483
484static inline int drv_get_antenna(struct ieee80211_local *local,
485 u32 *tx_ant, u32 *rx_ant)
486{
487 int ret = -EOPNOTSUPP;
488 might_sleep();
489 if (local->ops->get_antenna)
490 ret = local->ops->get_antenna(&local->hw, tx_ant, rx_ant);
491 trace_drv_get_antenna(local, *tx_ant, *rx_ant, ret);
492 return ret;
493}
494
Johannes Berg21f83582010-12-18 17:20:47 +0100495static inline int drv_remain_on_channel(struct ieee80211_local *local,
496 struct ieee80211_channel *chan,
497 enum nl80211_channel_type chantype,
498 unsigned int duration)
499{
500 int ret;
501
502 might_sleep();
503
504 trace_drv_remain_on_channel(local, chan, chantype, duration);
505 ret = local->ops->remain_on_channel(&local->hw, chan, chantype,
506 duration);
507 trace_drv_return_int(local, ret);
508
509 return ret;
510}
511
512static inline int drv_cancel_remain_on_channel(struct ieee80211_local *local)
513{
514 int ret;
515
516 might_sleep();
517
518 trace_drv_cancel_remain_on_channel(local);
519 ret = local->ops->cancel_remain_on_channel(&local->hw);
520 trace_drv_return_int(local, ret);
521
522 return ret;
523}
524
Johannes Berg5f16a432011-02-25 15:36:57 +0100525static inline int drv_offchannel_tx(struct ieee80211_local *local,
526 struct sk_buff *skb,
527 struct ieee80211_channel *chan,
528 enum nl80211_channel_type channel_type,
529 unsigned int wait)
530{
531 int ret;
532
533 might_sleep();
534
535 trace_drv_offchannel_tx(local, skb, chan, channel_type, wait);
536 ret = local->ops->offchannel_tx(&local->hw, skb, chan,
537 channel_type, wait);
538 trace_drv_return_int(local, ret);
539
540 return ret;
541}
542
543static inline int drv_offchannel_tx_cancel_wait(struct ieee80211_local *local)
544{
545 int ret;
546
547 might_sleep();
548
549 trace_drv_offchannel_tx_cancel_wait(local);
550 ret = local->ops->offchannel_tx_cancel_wait(&local->hw);
551 trace_drv_return_int(local, ret);
552
553 return ret;
554}
555
John W. Linville38c09152011-03-07 16:19:18 -0500556static inline int drv_set_ringparam(struct ieee80211_local *local,
557 u32 tx, u32 rx)
558{
559 int ret = -ENOTSUPP;
560
561 might_sleep();
562
563 trace_drv_set_ringparam(local, tx, rx);
564 if (local->ops->set_ringparam)
565 ret = local->ops->set_ringparam(&local->hw, tx, rx);
566 trace_drv_return_int(local, ret);
567
568 return ret;
569}
570
571static inline void drv_get_ringparam(struct ieee80211_local *local,
572 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max)
573{
574 might_sleep();
575
576 trace_drv_get_ringparam(local, tx, tx_max, rx, rx_max);
577 if (local->ops->get_ringparam)
578 local->ops->get_ringparam(&local->hw, tx, tx_max, rx, rx_max);
579 trace_drv_return_void(local);
580}
581
Vivek Natarajane8306f92011-04-06 11:41:10 +0530582static inline bool drv_tx_frames_pending(struct ieee80211_local *local)
583{
584 bool ret = false;
585
586 might_sleep();
587
588 trace_drv_tx_frames_pending(local);
589 if (local->ops->tx_frames_pending)
590 ret = local->ops->tx_frames_pending(&local->hw);
591 trace_drv_return_bool(local, ret);
592
593 return ret;
594}
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +0530595
596static inline int drv_set_bitrate_mask(struct ieee80211_local *local,
597 struct ieee80211_sub_if_data *sdata,
598 const struct cfg80211_bitrate_mask *mask)
599{
600 int ret = -EOPNOTSUPP;
601
602 might_sleep();
603
604 trace_drv_set_bitrate_mask(local, sdata, mask);
605 if (local->ops->set_bitrate_mask)
606 ret = local->ops->set_bitrate_mask(&local->hw,
607 &sdata->vif, mask);
608 trace_drv_return_int(local, ret);
609
610 return ret;
611}
612
Johannes Berg24487982009-04-23 18:52:52 +0200613#endif /* __MAC80211_DRIVER_OPS */