blob: 965d64f685671377a4371b84f0c4fb4706f41087 [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
8static inline int drv_tx(struct ieee80211_local *local, struct sk_buff *skb)
9{
10 return local->ops->tx(&local->hw, skb);
11}
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
44static inline int drv_add_interface(struct ieee80211_local *local,
Johannes Berg1ed32e42009-12-23 13:15:45 +010045 struct ieee80211_vif *vif)
Johannes Berg24487982009-04-23 18:52:52 +020046{
Kalle Valoe1781ed2009-12-23 13:15:47 +010047 int ret;
48
49 might_sleep();
50
Johannes Berg4efc76b2010-06-10 10:56:20 +020051 trace_drv_add_interface(local, vif_to_sdata(vif));
Kalle Valoe1781ed2009-12-23 13:15:47 +010052 ret = local->ops->add_interface(&local->hw, vif);
Johannes Berg4efc76b2010-06-10 10:56:20 +020053 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020054 return ret;
Johannes Berg24487982009-04-23 18:52:52 +020055}
56
57static inline void drv_remove_interface(struct ieee80211_local *local,
Johannes Berg1ed32e42009-12-23 13:15:45 +010058 struct ieee80211_vif *vif)
Johannes Berg24487982009-04-23 18:52:52 +020059{
Kalle Valoe1781ed2009-12-23 13:15:47 +010060 might_sleep();
61
Johannes Berg1ed32e42009-12-23 13:15:45 +010062 trace_drv_remove_interface(local, vif_to_sdata(vif));
Johannes Berg4efc76b2010-06-10 10:56:20 +020063 local->ops->remove_interface(&local->hw, vif);
64 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +020065}
66
67static inline int drv_config(struct ieee80211_local *local, u32 changed)
68{
Kalle Valoe1781ed2009-12-23 13:15:47 +010069 int ret;
70
71 might_sleep();
72
Johannes Berg4efc76b2010-06-10 10:56:20 +020073 trace_drv_config(local, changed);
Kalle Valoe1781ed2009-12-23 13:15:47 +010074 ret = local->ops->config(&local->hw, changed);
Johannes Berg4efc76b2010-06-10 10:56:20 +020075 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020076 return ret;
Johannes Berg24487982009-04-23 18:52:52 +020077}
78
79static inline void drv_bss_info_changed(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +010080 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +020081 struct ieee80211_bss_conf *info,
82 u32 changed)
83{
Kalle Valoe1781ed2009-12-23 13:15:47 +010084 might_sleep();
85
Johannes Berg4efc76b2010-06-10 10:56:20 +020086 trace_drv_bss_info_changed(local, sdata, info, changed);
Johannes Berg24487982009-04-23 18:52:52 +020087 if (local->ops->bss_info_changed)
Johannes Berg12375ef2009-11-25 20:30:31 +010088 local->ops->bss_info_changed(&local->hw, &sdata->vif, info, changed);
Johannes Berg4efc76b2010-06-10 10:56:20 +020089 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +020090}
91
Juuso Oikarinen2b2c0092010-05-27 15:32:13 +030092struct in_ifaddr;
93static inline int drv_configure_arp_filter(struct ieee80211_local *local,
94 struct ieee80211_vif *vif,
95 struct in_ifaddr *ifa_list)
96{
97 int ret = 0;
98
99 might_sleep();
100
Johannes Berg4efc76b2010-06-10 10:56:20 +0200101 trace_drv_configure_arp_filter(local, vif_to_sdata(vif));
Juuso Oikarinen2b2c0092010-05-27 15:32:13 +0300102 if (local->ops->configure_arp_filter)
103 ret = local->ops->configure_arp_filter(&local->hw, vif,
104 ifa_list);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200105 trace_drv_return_int(local, ret);
Juuso Oikarinen2b2c0092010-05-27 15:32:13 +0300106 return ret;
107}
108
Johannes Berg3ac64be2009-08-17 16:16:53 +0200109static inline u64 drv_prepare_multicast(struct ieee80211_local *local,
Jiri Pirko22bedad32010-04-01 21:22:57 +0000110 struct netdev_hw_addr_list *mc_list)
Johannes Berg24487982009-04-23 18:52:52 +0200111{
Johannes Berg3ac64be2009-08-17 16:16:53 +0200112 u64 ret = 0;
113
Johannes Berg4efc76b2010-06-10 10:56:20 +0200114 trace_drv_prepare_multicast(local, mc_list->count);
115
Johannes Berg3ac64be2009-08-17 16:16:53 +0200116 if (local->ops->prepare_multicast)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000117 ret = local->ops->prepare_multicast(&local->hw, mc_list);
Johannes Berg3ac64be2009-08-17 16:16:53 +0200118
Johannes Berg4efc76b2010-06-10 10:56:20 +0200119 trace_drv_return_u64(local, ret);
Johannes Berg3ac64be2009-08-17 16:16:53 +0200120
121 return ret;
122}
123
124static inline void drv_configure_filter(struct ieee80211_local *local,
125 unsigned int changed_flags,
126 unsigned int *total_flags,
127 u64 multicast)
128{
129 might_sleep();
130
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200131 trace_drv_configure_filter(local, changed_flags, total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +0200132 multicast);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200133 local->ops->configure_filter(&local->hw, changed_flags, total_flags,
134 multicast);
135 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200136}
137
138static inline int drv_set_tim(struct ieee80211_local *local,
139 struct ieee80211_sta *sta, bool set)
140{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200141 int ret = 0;
Johannes Berg4efc76b2010-06-10 10:56:20 +0200142 trace_drv_set_tim(local, sta, set);
Johannes Berg24487982009-04-23 18:52:52 +0200143 if (local->ops->set_tim)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200144 ret = local->ops->set_tim(&local->hw, sta, set);
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 int drv_set_key(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100150 enum set_key_cmd cmd,
151 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200152 struct ieee80211_sta *sta,
153 struct ieee80211_key_conf *key)
154{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100155 int ret;
156
157 might_sleep();
158
Johannes Berg4efc76b2010-06-10 10:56:20 +0200159 trace_drv_set_key(local, cmd, sdata, sta, key);
Kalle Valoe1781ed2009-12-23 13:15:47 +0100160 ret = local->ops->set_key(&local->hw, cmd, &sdata->vif, sta, key);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200161 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200162 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200163}
164
165static inline void drv_update_tkip_key(struct ieee80211_local *local,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100166 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200167 struct ieee80211_key_conf *conf,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100168 struct sta_info *sta, u32 iv32,
Johannes Berg24487982009-04-23 18:52:52 +0200169 u16 *phase1key)
170{
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100171 struct ieee80211_sta *ista = NULL;
172
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100173 if (sta)
174 ista = &sta->sta;
175
Johannes Berg4efc76b2010-06-10 10:56:20 +0200176 trace_drv_update_tkip_key(local, sdata, conf, ista, iv32);
Johannes Berg24487982009-04-23 18:52:52 +0200177 if (local->ops->update_tkip_key)
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100178 local->ops->update_tkip_key(&local->hw, &sdata->vif, conf,
179 ista, iv32, phase1key);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200180 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200181}
182
183static inline int drv_hw_scan(struct ieee80211_local *local,
Johannes Berga060bbf2010-04-27 11:59:34 +0200184 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200185 struct cfg80211_scan_request *req)
186{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100187 int ret;
188
189 might_sleep();
190
Johannes Berg4efc76b2010-06-10 10:56:20 +0200191 trace_drv_hw_scan(local, sdata, req);
Johannes Berga060bbf2010-04-27 11:59:34 +0200192 ret = local->ops->hw_scan(&local->hw, &sdata->vif, req);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200193 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200194 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200195}
196
197static inline void drv_sw_scan_start(struct ieee80211_local *local)
198{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100199 might_sleep();
200
Johannes Berg4efc76b2010-06-10 10:56:20 +0200201 trace_drv_sw_scan_start(local);
Johannes Berg24487982009-04-23 18:52:52 +0200202 if (local->ops->sw_scan_start)
203 local->ops->sw_scan_start(&local->hw);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200204 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200205}
206
207static inline void drv_sw_scan_complete(struct ieee80211_local *local)
208{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100209 might_sleep();
210
Johannes Berg4efc76b2010-06-10 10:56:20 +0200211 trace_drv_sw_scan_complete(local);
Johannes Berg24487982009-04-23 18:52:52 +0200212 if (local->ops->sw_scan_complete)
213 local->ops->sw_scan_complete(&local->hw);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200214 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200215}
216
217static inline int drv_get_stats(struct ieee80211_local *local,
218 struct ieee80211_low_level_stats *stats)
219{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200220 int ret = -EOPNOTSUPP;
221
Kalle Valoe1781ed2009-12-23 13:15:47 +0100222 might_sleep();
223
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200224 if (local->ops->get_stats)
225 ret = local->ops->get_stats(&local->hw, stats);
226 trace_drv_get_stats(local, stats, ret);
227
228 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200229}
230
231static inline void drv_get_tkip_seq(struct ieee80211_local *local,
232 u8 hw_key_idx, u32 *iv32, u16 *iv16)
233{
234 if (local->ops->get_tkip_seq)
235 local->ops->get_tkip_seq(&local->hw, hw_key_idx, iv32, iv16);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200236 trace_drv_get_tkip_seq(local, hw_key_idx, iv32, iv16);
Johannes Berg24487982009-04-23 18:52:52 +0200237}
238
239static inline int drv_set_rts_threshold(struct ieee80211_local *local,
240 u32 value)
241{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200242 int ret = 0;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100243
244 might_sleep();
245
Johannes Berg4efc76b2010-06-10 10:56:20 +0200246 trace_drv_set_rts_threshold(local, value);
Johannes Berg24487982009-04-23 18:52:52 +0200247 if (local->ops->set_rts_threshold)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200248 ret = local->ops->set_rts_threshold(&local->hw, value);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200249 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200250 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200251}
252
Lukáš Turek310bc672009-12-21 22:50:48 +0100253static inline int drv_set_coverage_class(struct ieee80211_local *local,
254 u8 value)
255{
256 int ret = 0;
257 might_sleep();
258
Johannes Berg4efc76b2010-06-10 10:56:20 +0200259 trace_drv_set_coverage_class(local, value);
Lukáš Turek310bc672009-12-21 22:50:48 +0100260 if (local->ops->set_coverage_class)
261 local->ops->set_coverage_class(&local->hw, value);
262 else
263 ret = -EOPNOTSUPP;
264
Johannes Berg4efc76b2010-06-10 10:56:20 +0200265 trace_drv_return_int(local, ret);
Lukáš Turek310bc672009-12-21 22:50:48 +0100266 return ret;
267}
268
Johannes Berg24487982009-04-23 18:52:52 +0200269static inline void drv_sta_notify(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100270 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200271 enum sta_notify_cmd cmd,
272 struct ieee80211_sta *sta)
273{
Johannes Berg4efc76b2010-06-10 10:56:20 +0200274 trace_drv_sta_notify(local, sdata, cmd, sta);
Johannes Berg24487982009-04-23 18:52:52 +0200275 if (local->ops->sta_notify)
Johannes Berg12375ef2009-11-25 20:30:31 +0100276 local->ops->sta_notify(&local->hw, &sdata->vif, cmd, sta);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200277 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200278}
279
Johannes Berg34e89502010-02-03 13:59:58 +0100280static inline int drv_sta_add(struct ieee80211_local *local,
281 struct ieee80211_sub_if_data *sdata,
282 struct ieee80211_sta *sta)
283{
284 int ret = 0;
285
286 might_sleep();
287
Johannes Berg4efc76b2010-06-10 10:56:20 +0200288 trace_drv_sta_add(local, sdata, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100289 if (local->ops->sta_add)
290 ret = local->ops->sta_add(&local->hw, &sdata->vif, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100291
Johannes Berg4efc76b2010-06-10 10:56:20 +0200292 trace_drv_return_int(local, ret);
Johannes Berg34e89502010-02-03 13:59:58 +0100293
294 return ret;
295}
296
297static inline void drv_sta_remove(struct ieee80211_local *local,
298 struct ieee80211_sub_if_data *sdata,
299 struct ieee80211_sta *sta)
300{
301 might_sleep();
302
Johannes Berg4efc76b2010-06-10 10:56:20 +0200303 trace_drv_sta_remove(local, sdata, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100304 if (local->ops->sta_remove)
305 local->ops->sta_remove(&local->hw, &sdata->vif, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100306
Johannes Berg4efc76b2010-06-10 10:56:20 +0200307 trace_drv_return_void(local);
Johannes Berg34e89502010-02-03 13:59:58 +0100308}
309
Johannes Berg24487982009-04-23 18:52:52 +0200310static inline int drv_conf_tx(struct ieee80211_local *local, u16 queue,
311 const struct ieee80211_tx_queue_params *params)
312{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200313 int ret = -EOPNOTSUPP;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100314
315 might_sleep();
316
Johannes Berg4efc76b2010-06-10 10:56:20 +0200317 trace_drv_conf_tx(local, queue, params);
Johannes Berg24487982009-04-23 18:52:52 +0200318 if (local->ops->conf_tx)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200319 ret = local->ops->conf_tx(&local->hw, queue, params);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200320 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200321 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200322}
323
Johannes Berg24487982009-04-23 18:52:52 +0200324static inline u64 drv_get_tsf(struct ieee80211_local *local)
325{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200326 u64 ret = -1ULL;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100327
328 might_sleep();
329
Johannes Berg4efc76b2010-06-10 10:56:20 +0200330 trace_drv_get_tsf(local);
Johannes Berg24487982009-04-23 18:52:52 +0200331 if (local->ops->get_tsf)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200332 ret = local->ops->get_tsf(&local->hw);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200333 trace_drv_return_u64(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200334 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200335}
336
337static inline void drv_set_tsf(struct ieee80211_local *local, u64 tsf)
338{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100339 might_sleep();
340
Johannes Berg4efc76b2010-06-10 10:56:20 +0200341 trace_drv_set_tsf(local, tsf);
Johannes Berg24487982009-04-23 18:52:52 +0200342 if (local->ops->set_tsf)
343 local->ops->set_tsf(&local->hw, tsf);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200344 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200345}
346
347static inline void drv_reset_tsf(struct ieee80211_local *local)
348{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100349 might_sleep();
350
Johannes Berg4efc76b2010-06-10 10:56:20 +0200351 trace_drv_reset_tsf(local);
Johannes Berg24487982009-04-23 18:52:52 +0200352 if (local->ops->reset_tsf)
353 local->ops->reset_tsf(&local->hw);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200354 trace_drv_return_void(local);
Johannes Berg24487982009-04-23 18:52:52 +0200355}
356
357static inline int drv_tx_last_beacon(struct ieee80211_local *local)
358{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200359 int ret = 1;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100360
361 might_sleep();
362
Johannes Berg4efc76b2010-06-10 10:56:20 +0200363 trace_drv_tx_last_beacon(local);
Johannes Berg24487982009-04-23 18:52:52 +0200364 if (local->ops->tx_last_beacon)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200365 ret = local->ops->tx_last_beacon(&local->hw);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200366 trace_drv_return_int(local, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200367 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200368}
369
370static inline int drv_ampdu_action(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100371 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200372 enum ieee80211_ampdu_mlme_action action,
373 struct ieee80211_sta *sta, u16 tid,
374 u16 *ssn)
375{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200376 int ret = -EOPNOTSUPP;
Johannes Bergcfcdbde2010-06-10 10:21:48 +0200377
378 might_sleep();
379
Johannes Berg4efc76b2010-06-10 10:56:20 +0200380 trace_drv_ampdu_action(local, sdata, action, sta, tid, ssn);
381
Johannes Berg24487982009-04-23 18:52:52 +0200382 if (local->ops->ampdu_action)
Johannes Berg12375ef2009-11-25 20:30:31 +0100383 ret = local->ops->ampdu_action(&local->hw, &sdata->vif, action,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200384 sta, tid, ssn);
Johannes Berg85ad1812010-06-10 10:21:49 +0200385
Johannes Berg4efc76b2010-06-10 10:56:20 +0200386 trace_drv_return_int(local, ret);
387
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200388 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200389}
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200390
Holger Schurig12897232010-04-19 10:23:57 +0200391static inline int drv_get_survey(struct ieee80211_local *local, int idx,
392 struct survey_info *survey)
393{
394 int ret = -EOPNOTSUPP;
Holger Schurig35dd0502010-06-07 16:33:49 +0200395 if (local->ops->get_survey)
Holger Schurig12897232010-04-19 10:23:57 +0200396 ret = local->ops->get_survey(&local->hw, idx, survey);
397 /* trace_drv_get_survey(local, idx, survey, ret); */
398 return ret;
399}
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200400
401static inline void drv_rfkill_poll(struct ieee80211_local *local)
402{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100403 might_sleep();
404
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200405 if (local->ops->rfkill_poll)
406 local->ops->rfkill_poll(&local->hw);
407}
Johannes Berga80f7c02009-12-23 13:15:32 +0100408
409static inline void drv_flush(struct ieee80211_local *local, bool drop)
410{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100411 might_sleep();
412
Johannes Berga80f7c02009-12-23 13:15:32 +0100413 trace_drv_flush(local, drop);
414 if (local->ops->flush)
415 local->ops->flush(&local->hw, drop);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200416 trace_drv_return_void(local);
Johannes Berga80f7c02009-12-23 13:15:32 +0100417}
Johannes Berg5ce6e432010-05-11 16:20:57 +0200418
419static inline void drv_channel_switch(struct ieee80211_local *local,
420 struct ieee80211_channel_switch *ch_switch)
421{
422 might_sleep();
423
Johannes Berg5ce6e432010-05-11 16:20:57 +0200424 trace_drv_channel_switch(local, ch_switch);
Johannes Berg4efc76b2010-06-10 10:56:20 +0200425 local->ops->channel_switch(&local->hw, ch_switch);
426 trace_drv_return_void(local);
Johannes Berg5ce6e432010-05-11 16:20:57 +0200427}
428
Johannes Berg24487982009-04-23 18:52:52 +0200429#endif /* __MAC80211_DRIVER_OPS */