blob: 9179196da264df16df969ea8c36b9d85187a0336 [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 Bergea77f122009-08-21 14:44:45 +020019 local->started = true;
20 smp_mb();
21 ret = local->ops->start(&local->hw);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020022 trace_drv_start(local, ret);
23 return ret;
Johannes Berg24487982009-04-23 18:52:52 +020024}
25
26static inline void drv_stop(struct ieee80211_local *local)
27{
Kalle Valoe1781ed2009-12-23 13:15:47 +010028 might_sleep();
29
Johannes Berg24487982009-04-23 18:52:52 +020030 local->ops->stop(&local->hw);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020031 trace_drv_stop(local);
Johannes Bergea77f122009-08-21 14:44:45 +020032
33 /* sync away all work on the tasklet before clearing started */
34 tasklet_disable(&local->tasklet);
35 tasklet_enable(&local->tasklet);
36
37 barrier();
38
39 local->started = false;
Johannes Berg24487982009-04-23 18:52:52 +020040}
41
42static inline int drv_add_interface(struct ieee80211_local *local,
Johannes Berg1ed32e42009-12-23 13:15:45 +010043 struct ieee80211_vif *vif)
Johannes Berg24487982009-04-23 18:52:52 +020044{
Kalle Valoe1781ed2009-12-23 13:15:47 +010045 int ret;
46
47 might_sleep();
48
49 ret = local->ops->add_interface(&local->hw, vif);
Johannes Berg1ed32e42009-12-23 13:15:45 +010050 trace_drv_add_interface(local, vif_to_sdata(vif), ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020051 return ret;
Johannes Berg24487982009-04-23 18:52:52 +020052}
53
54static inline void drv_remove_interface(struct ieee80211_local *local,
Johannes Berg1ed32e42009-12-23 13:15:45 +010055 struct ieee80211_vif *vif)
Johannes Berg24487982009-04-23 18:52:52 +020056{
Kalle Valoe1781ed2009-12-23 13:15:47 +010057 might_sleep();
58
Johannes Berg1ed32e42009-12-23 13:15:45 +010059 local->ops->remove_interface(&local->hw, vif);
60 trace_drv_remove_interface(local, vif_to_sdata(vif));
Johannes Berg24487982009-04-23 18:52:52 +020061}
62
63static inline int drv_config(struct ieee80211_local *local, u32 changed)
64{
Kalle Valoe1781ed2009-12-23 13:15:47 +010065 int ret;
66
67 might_sleep();
68
69 ret = local->ops->config(&local->hw, changed);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020070 trace_drv_config(local, changed, ret);
71 return ret;
Johannes Berg24487982009-04-23 18:52:52 +020072}
73
74static inline void drv_bss_info_changed(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +010075 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +020076 struct ieee80211_bss_conf *info,
77 u32 changed)
78{
Kalle Valoe1781ed2009-12-23 13:15:47 +010079 might_sleep();
80
Johannes Berg24487982009-04-23 18:52:52 +020081 if (local->ops->bss_info_changed)
Johannes Berg12375ef2009-11-25 20:30:31 +010082 local->ops->bss_info_changed(&local->hw, &sdata->vif, info, changed);
83 trace_drv_bss_info_changed(local, sdata, info, changed);
Johannes Berg24487982009-04-23 18:52:52 +020084}
85
Johannes Berg3ac64be2009-08-17 16:16:53 +020086static inline u64 drv_prepare_multicast(struct ieee80211_local *local,
Jiri Pirko22bedad2010-04-01 21:22:57 +000087 struct netdev_hw_addr_list *mc_list)
Johannes Berg24487982009-04-23 18:52:52 +020088{
Johannes Berg3ac64be2009-08-17 16:16:53 +020089 u64 ret = 0;
90
91 if (local->ops->prepare_multicast)
Jiri Pirko22bedad2010-04-01 21:22:57 +000092 ret = local->ops->prepare_multicast(&local->hw, mc_list);
Johannes Berg3ac64be2009-08-17 16:16:53 +020093
Jiri Pirko22bedad2010-04-01 21:22:57 +000094 trace_drv_prepare_multicast(local, mc_list->count, ret);
Johannes Berg3ac64be2009-08-17 16:16:53 +020095
96 return ret;
97}
98
99static inline void drv_configure_filter(struct ieee80211_local *local,
100 unsigned int changed_flags,
101 unsigned int *total_flags,
102 u64 multicast)
103{
104 might_sleep();
105
Johannes Berg24487982009-04-23 18:52:52 +0200106 local->ops->configure_filter(&local->hw, changed_flags, total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +0200107 multicast);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200108 trace_drv_configure_filter(local, changed_flags, total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +0200109 multicast);
Johannes Berg24487982009-04-23 18:52:52 +0200110}
111
112static inline int drv_set_tim(struct ieee80211_local *local,
113 struct ieee80211_sta *sta, bool set)
114{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200115 int ret = 0;
Johannes Berg24487982009-04-23 18:52:52 +0200116 if (local->ops->set_tim)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200117 ret = local->ops->set_tim(&local->hw, sta, set);
118 trace_drv_set_tim(local, sta, set, ret);
119 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200120}
121
122static inline int drv_set_key(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100123 enum set_key_cmd cmd,
124 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200125 struct ieee80211_sta *sta,
126 struct ieee80211_key_conf *key)
127{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100128 int ret;
129
130 might_sleep();
131
132 ret = local->ops->set_key(&local->hw, cmd, &sdata->vif, sta, key);
Johannes Berg12375ef2009-11-25 20:30:31 +0100133 trace_drv_set_key(local, cmd, sdata, sta, key, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200134 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200135}
136
137static inline void drv_update_tkip_key(struct ieee80211_local *local,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100138 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200139 struct ieee80211_key_conf *conf,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100140 struct sta_info *sta, u32 iv32,
Johannes Berg24487982009-04-23 18:52:52 +0200141 u16 *phase1key)
142{
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100143 struct ieee80211_sta *ista = NULL;
144
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100145 if (sta)
146 ista = &sta->sta;
147
Johannes Berg24487982009-04-23 18:52:52 +0200148 if (local->ops->update_tkip_key)
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100149 local->ops->update_tkip_key(&local->hw, &sdata->vif, conf,
150 ista, iv32, phase1key);
151 trace_drv_update_tkip_key(local, sdata, conf, ista, iv32);
Johannes Berg24487982009-04-23 18:52:52 +0200152}
153
154static inline int drv_hw_scan(struct ieee80211_local *local,
155 struct cfg80211_scan_request *req)
156{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100157 int ret;
158
159 might_sleep();
160
161 ret = local->ops->hw_scan(&local->hw, req);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200162 trace_drv_hw_scan(local, req, ret);
163 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200164}
165
166static inline void drv_sw_scan_start(struct ieee80211_local *local)
167{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100168 might_sleep();
169
Johannes Berg24487982009-04-23 18:52:52 +0200170 if (local->ops->sw_scan_start)
171 local->ops->sw_scan_start(&local->hw);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200172 trace_drv_sw_scan_start(local);
Johannes Berg24487982009-04-23 18:52:52 +0200173}
174
175static inline void drv_sw_scan_complete(struct ieee80211_local *local)
176{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100177 might_sleep();
178
Johannes Berg24487982009-04-23 18:52:52 +0200179 if (local->ops->sw_scan_complete)
180 local->ops->sw_scan_complete(&local->hw);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200181 trace_drv_sw_scan_complete(local);
Johannes Berg24487982009-04-23 18:52:52 +0200182}
183
184static inline int drv_get_stats(struct ieee80211_local *local,
185 struct ieee80211_low_level_stats *stats)
186{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200187 int ret = -EOPNOTSUPP;
188
Kalle Valoe1781ed2009-12-23 13:15:47 +0100189 might_sleep();
190
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200191 if (local->ops->get_stats)
192 ret = local->ops->get_stats(&local->hw, stats);
193 trace_drv_get_stats(local, stats, ret);
194
195 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200196}
197
198static inline void drv_get_tkip_seq(struct ieee80211_local *local,
199 u8 hw_key_idx, u32 *iv32, u16 *iv16)
200{
201 if (local->ops->get_tkip_seq)
202 local->ops->get_tkip_seq(&local->hw, hw_key_idx, iv32, iv16);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200203 trace_drv_get_tkip_seq(local, hw_key_idx, iv32, iv16);
Johannes Berg24487982009-04-23 18:52:52 +0200204}
205
206static inline int drv_set_rts_threshold(struct ieee80211_local *local,
207 u32 value)
208{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200209 int ret = 0;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100210
211 might_sleep();
212
Johannes Berg24487982009-04-23 18:52:52 +0200213 if (local->ops->set_rts_threshold)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200214 ret = local->ops->set_rts_threshold(&local->hw, value);
215 trace_drv_set_rts_threshold(local, value, ret);
216 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200217}
218
Lukáš Turek310bc672009-12-21 22:50:48 +0100219static inline int drv_set_coverage_class(struct ieee80211_local *local,
220 u8 value)
221{
222 int ret = 0;
223 might_sleep();
224
225 if (local->ops->set_coverage_class)
226 local->ops->set_coverage_class(&local->hw, value);
227 else
228 ret = -EOPNOTSUPP;
229
230 trace_drv_set_coverage_class(local, value, ret);
231 return ret;
232}
233
Johannes Berg24487982009-04-23 18:52:52 +0200234static inline void drv_sta_notify(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100235 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200236 enum sta_notify_cmd cmd,
237 struct ieee80211_sta *sta)
238{
239 if (local->ops->sta_notify)
Johannes Berg12375ef2009-11-25 20:30:31 +0100240 local->ops->sta_notify(&local->hw, &sdata->vif, cmd, sta);
241 trace_drv_sta_notify(local, sdata, cmd, sta);
Johannes Berg24487982009-04-23 18:52:52 +0200242}
243
Johannes Berg34e89502010-02-03 13:59:58 +0100244static inline int drv_sta_add(struct ieee80211_local *local,
245 struct ieee80211_sub_if_data *sdata,
246 struct ieee80211_sta *sta)
247{
248 int ret = 0;
249
250 might_sleep();
251
252 if (local->ops->sta_add)
253 ret = local->ops->sta_add(&local->hw, &sdata->vif, sta);
254 else if (local->ops->sta_notify)
255 local->ops->sta_notify(&local->hw, &sdata->vif,
256 STA_NOTIFY_ADD, sta);
257
258 trace_drv_sta_add(local, sdata, sta, ret);
259
260 return ret;
261}
262
263static inline void drv_sta_remove(struct ieee80211_local *local,
264 struct ieee80211_sub_if_data *sdata,
265 struct ieee80211_sta *sta)
266{
267 might_sleep();
268
269 if (local->ops->sta_remove)
270 local->ops->sta_remove(&local->hw, &sdata->vif, sta);
271 else if (local->ops->sta_notify)
272 local->ops->sta_notify(&local->hw, &sdata->vif,
273 STA_NOTIFY_REMOVE, sta);
274
275 trace_drv_sta_remove(local, sdata, sta);
276}
277
Johannes Berg24487982009-04-23 18:52:52 +0200278static inline int drv_conf_tx(struct ieee80211_local *local, u16 queue,
279 const struct ieee80211_tx_queue_params *params)
280{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200281 int ret = -EOPNOTSUPP;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100282
283 might_sleep();
284
Johannes Berg24487982009-04-23 18:52:52 +0200285 if (local->ops->conf_tx)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200286 ret = local->ops->conf_tx(&local->hw, queue, params);
287 trace_drv_conf_tx(local, queue, params, ret);
288 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200289}
290
Johannes Berg24487982009-04-23 18:52:52 +0200291static inline u64 drv_get_tsf(struct ieee80211_local *local)
292{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200293 u64 ret = -1ULL;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100294
295 might_sleep();
296
Johannes Berg24487982009-04-23 18:52:52 +0200297 if (local->ops->get_tsf)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200298 ret = local->ops->get_tsf(&local->hw);
299 trace_drv_get_tsf(local, ret);
300 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200301}
302
303static inline void drv_set_tsf(struct ieee80211_local *local, u64 tsf)
304{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100305 might_sleep();
306
Johannes Berg24487982009-04-23 18:52:52 +0200307 if (local->ops->set_tsf)
308 local->ops->set_tsf(&local->hw, tsf);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200309 trace_drv_set_tsf(local, tsf);
Johannes Berg24487982009-04-23 18:52:52 +0200310}
311
312static inline void drv_reset_tsf(struct ieee80211_local *local)
313{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100314 might_sleep();
315
Johannes Berg24487982009-04-23 18:52:52 +0200316 if (local->ops->reset_tsf)
317 local->ops->reset_tsf(&local->hw);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200318 trace_drv_reset_tsf(local);
Johannes Berg24487982009-04-23 18:52:52 +0200319}
320
321static inline int drv_tx_last_beacon(struct ieee80211_local *local)
322{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200323 int ret = 1;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100324
325 might_sleep();
326
Johannes Berg24487982009-04-23 18:52:52 +0200327 if (local->ops->tx_last_beacon)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200328 ret = local->ops->tx_last_beacon(&local->hw);
329 trace_drv_tx_last_beacon(local, ret);
330 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200331}
332
333static inline int drv_ampdu_action(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100334 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200335 enum ieee80211_ampdu_mlme_action action,
336 struct ieee80211_sta *sta, u16 tid,
337 u16 *ssn)
338{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200339 int ret = -EOPNOTSUPP;
Johannes Berg24487982009-04-23 18:52:52 +0200340 if (local->ops->ampdu_action)
Johannes Berg12375ef2009-11-25 20:30:31 +0100341 ret = local->ops->ampdu_action(&local->hw, &sdata->vif, action,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200342 sta, tid, ssn);
Johannes Berg12375ef2009-11-25 20:30:31 +0100343 trace_drv_ampdu_action(local, sdata, action, sta, tid, ssn, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200344 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200345}
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200346
347
348static inline void drv_rfkill_poll(struct ieee80211_local *local)
349{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100350 might_sleep();
351
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200352 if (local->ops->rfkill_poll)
353 local->ops->rfkill_poll(&local->hw);
354}
Johannes Berga80f7c02009-12-23 13:15:32 +0100355
356static inline void drv_flush(struct ieee80211_local *local, bool drop)
357{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100358 might_sleep();
359
Johannes Berga80f7c02009-12-23 13:15:32 +0100360 trace_drv_flush(local, drop);
361 if (local->ops->flush)
362 local->ops->flush(&local->hw, drop);
363}
Johannes Berg24487982009-04-23 18:52:52 +0200364#endif /* __MAC80211_DRIVER_OPS */