blob: a4fcbcc4f458ecbed3e7d2361d9b4744e99ffa9c [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
Juuso Oikarinen2b2c0092010-05-27 15:32:13 +030086struct in_ifaddr;
87static inline int drv_configure_arp_filter(struct ieee80211_local *local,
88 struct ieee80211_vif *vif,
89 struct in_ifaddr *ifa_list)
90{
91 int ret = 0;
92
93 might_sleep();
94
95 if (local->ops->configure_arp_filter)
96 ret = local->ops->configure_arp_filter(&local->hw, vif,
97 ifa_list);
98
99 trace_drv_configure_arp_filter(local, vif_to_sdata(vif), ifa_list, ret);
100 return ret;
101}
102
Johannes Berg3ac64be2009-08-17 16:16:53 +0200103static inline u64 drv_prepare_multicast(struct ieee80211_local *local,
Jiri Pirko22bedad32010-04-01 21:22:57 +0000104 struct netdev_hw_addr_list *mc_list)
Johannes Berg24487982009-04-23 18:52:52 +0200105{
Johannes Berg3ac64be2009-08-17 16:16:53 +0200106 u64 ret = 0;
107
108 if (local->ops->prepare_multicast)
Jiri Pirko22bedad32010-04-01 21:22:57 +0000109 ret = local->ops->prepare_multicast(&local->hw, mc_list);
Johannes Berg3ac64be2009-08-17 16:16:53 +0200110
Jiri Pirko22bedad32010-04-01 21:22:57 +0000111 trace_drv_prepare_multicast(local, mc_list->count, ret);
Johannes Berg3ac64be2009-08-17 16:16:53 +0200112
113 return ret;
114}
115
116static inline void drv_configure_filter(struct ieee80211_local *local,
117 unsigned int changed_flags,
118 unsigned int *total_flags,
119 u64 multicast)
120{
121 might_sleep();
122
Johannes Berg24487982009-04-23 18:52:52 +0200123 local->ops->configure_filter(&local->hw, changed_flags, total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +0200124 multicast);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200125 trace_drv_configure_filter(local, changed_flags, total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +0200126 multicast);
Johannes Berg24487982009-04-23 18:52:52 +0200127}
128
129static inline int drv_set_tim(struct ieee80211_local *local,
130 struct ieee80211_sta *sta, bool set)
131{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200132 int ret = 0;
Johannes Berg24487982009-04-23 18:52:52 +0200133 if (local->ops->set_tim)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200134 ret = local->ops->set_tim(&local->hw, sta, set);
135 trace_drv_set_tim(local, sta, set, ret);
136 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200137}
138
139static inline int drv_set_key(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100140 enum set_key_cmd cmd,
141 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200142 struct ieee80211_sta *sta,
143 struct ieee80211_key_conf *key)
144{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100145 int ret;
146
147 might_sleep();
148
149 ret = local->ops->set_key(&local->hw, cmd, &sdata->vif, sta, key);
Johannes Berg12375ef2009-11-25 20:30:31 +0100150 trace_drv_set_key(local, cmd, sdata, sta, key, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200151 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200152}
153
154static inline void drv_update_tkip_key(struct ieee80211_local *local,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100155 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200156 struct ieee80211_key_conf *conf,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100157 struct sta_info *sta, u32 iv32,
Johannes Berg24487982009-04-23 18:52:52 +0200158 u16 *phase1key)
159{
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100160 struct ieee80211_sta *ista = NULL;
161
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100162 if (sta)
163 ista = &sta->sta;
164
Johannes Berg24487982009-04-23 18:52:52 +0200165 if (local->ops->update_tkip_key)
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100166 local->ops->update_tkip_key(&local->hw, &sdata->vif, conf,
167 ista, iv32, phase1key);
168 trace_drv_update_tkip_key(local, sdata, conf, ista, iv32);
Johannes Berg24487982009-04-23 18:52:52 +0200169}
170
171static inline int drv_hw_scan(struct ieee80211_local *local,
Johannes Berga060bbf2010-04-27 11:59:34 +0200172 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200173 struct cfg80211_scan_request *req)
174{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100175 int ret;
176
177 might_sleep();
178
Johannes Berga060bbf2010-04-27 11:59:34 +0200179 ret = local->ops->hw_scan(&local->hw, &sdata->vif, req);
180 trace_drv_hw_scan(local, sdata, req, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200181 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200182}
183
184static inline void drv_sw_scan_start(struct ieee80211_local *local)
185{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100186 might_sleep();
187
Johannes Berg24487982009-04-23 18:52:52 +0200188 if (local->ops->sw_scan_start)
189 local->ops->sw_scan_start(&local->hw);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200190 trace_drv_sw_scan_start(local);
Johannes Berg24487982009-04-23 18:52:52 +0200191}
192
193static inline void drv_sw_scan_complete(struct ieee80211_local *local)
194{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100195 might_sleep();
196
Johannes Berg24487982009-04-23 18:52:52 +0200197 if (local->ops->sw_scan_complete)
198 local->ops->sw_scan_complete(&local->hw);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200199 trace_drv_sw_scan_complete(local);
Johannes Berg24487982009-04-23 18:52:52 +0200200}
201
202static inline int drv_get_stats(struct ieee80211_local *local,
203 struct ieee80211_low_level_stats *stats)
204{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200205 int ret = -EOPNOTSUPP;
206
Kalle Valoe1781ed2009-12-23 13:15:47 +0100207 might_sleep();
208
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200209 if (local->ops->get_stats)
210 ret = local->ops->get_stats(&local->hw, stats);
211 trace_drv_get_stats(local, stats, ret);
212
213 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200214}
215
216static inline void drv_get_tkip_seq(struct ieee80211_local *local,
217 u8 hw_key_idx, u32 *iv32, u16 *iv16)
218{
219 if (local->ops->get_tkip_seq)
220 local->ops->get_tkip_seq(&local->hw, hw_key_idx, iv32, iv16);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200221 trace_drv_get_tkip_seq(local, hw_key_idx, iv32, iv16);
Johannes Berg24487982009-04-23 18:52:52 +0200222}
223
224static inline int drv_set_rts_threshold(struct ieee80211_local *local,
225 u32 value)
226{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200227 int ret = 0;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100228
229 might_sleep();
230
Johannes Berg24487982009-04-23 18:52:52 +0200231 if (local->ops->set_rts_threshold)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200232 ret = local->ops->set_rts_threshold(&local->hw, value);
233 trace_drv_set_rts_threshold(local, value, ret);
234 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200235}
236
Lukáš Turek310bc672009-12-21 22:50:48 +0100237static inline int drv_set_coverage_class(struct ieee80211_local *local,
238 u8 value)
239{
240 int ret = 0;
241 might_sleep();
242
243 if (local->ops->set_coverage_class)
244 local->ops->set_coverage_class(&local->hw, value);
245 else
246 ret = -EOPNOTSUPP;
247
248 trace_drv_set_coverage_class(local, value, ret);
249 return ret;
250}
251
Johannes Berg24487982009-04-23 18:52:52 +0200252static inline void drv_sta_notify(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100253 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200254 enum sta_notify_cmd cmd,
255 struct ieee80211_sta *sta)
256{
257 if (local->ops->sta_notify)
Johannes Berg12375ef2009-11-25 20:30:31 +0100258 local->ops->sta_notify(&local->hw, &sdata->vif, cmd, sta);
259 trace_drv_sta_notify(local, sdata, cmd, sta);
Johannes Berg24487982009-04-23 18:52:52 +0200260}
261
Johannes Berg34e89502010-02-03 13:59:58 +0100262static inline int drv_sta_add(struct ieee80211_local *local,
263 struct ieee80211_sub_if_data *sdata,
264 struct ieee80211_sta *sta)
265{
266 int ret = 0;
267
268 might_sleep();
269
270 if (local->ops->sta_add)
271 ret = local->ops->sta_add(&local->hw, &sdata->vif, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100272
273 trace_drv_sta_add(local, sdata, sta, ret);
274
275 return ret;
276}
277
278static inline void drv_sta_remove(struct ieee80211_local *local,
279 struct ieee80211_sub_if_data *sdata,
280 struct ieee80211_sta *sta)
281{
282 might_sleep();
283
284 if (local->ops->sta_remove)
285 local->ops->sta_remove(&local->hw, &sdata->vif, sta);
Johannes Berg34e89502010-02-03 13:59:58 +0100286
287 trace_drv_sta_remove(local, sdata, sta);
288}
289
Johannes Berg24487982009-04-23 18:52:52 +0200290static inline int drv_conf_tx(struct ieee80211_local *local, u16 queue,
291 const struct ieee80211_tx_queue_params *params)
292{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200293 int ret = -EOPNOTSUPP;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100294
295 might_sleep();
296
Johannes Berg24487982009-04-23 18:52:52 +0200297 if (local->ops->conf_tx)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200298 ret = local->ops->conf_tx(&local->hw, queue, params);
299 trace_drv_conf_tx(local, queue, params, ret);
300 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200301}
302
Johannes Berg24487982009-04-23 18:52:52 +0200303static inline u64 drv_get_tsf(struct ieee80211_local *local)
304{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200305 u64 ret = -1ULL;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100306
307 might_sleep();
308
Johannes Berg24487982009-04-23 18:52:52 +0200309 if (local->ops->get_tsf)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200310 ret = local->ops->get_tsf(&local->hw);
311 trace_drv_get_tsf(local, ret);
312 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200313}
314
315static inline void drv_set_tsf(struct ieee80211_local *local, u64 tsf)
316{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100317 might_sleep();
318
Johannes Berg24487982009-04-23 18:52:52 +0200319 if (local->ops->set_tsf)
320 local->ops->set_tsf(&local->hw, tsf);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200321 trace_drv_set_tsf(local, tsf);
Johannes Berg24487982009-04-23 18:52:52 +0200322}
323
324static inline void drv_reset_tsf(struct ieee80211_local *local)
325{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100326 might_sleep();
327
Johannes Berg24487982009-04-23 18:52:52 +0200328 if (local->ops->reset_tsf)
329 local->ops->reset_tsf(&local->hw);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200330 trace_drv_reset_tsf(local);
Johannes Berg24487982009-04-23 18:52:52 +0200331}
332
333static inline int drv_tx_last_beacon(struct ieee80211_local *local)
334{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200335 int ret = 1;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100336
337 might_sleep();
338
Johannes Berg24487982009-04-23 18:52:52 +0200339 if (local->ops->tx_last_beacon)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200340 ret = local->ops->tx_last_beacon(&local->hw);
341 trace_drv_tx_last_beacon(local, ret);
342 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200343}
344
345static inline int drv_ampdu_action(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100346 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200347 enum ieee80211_ampdu_mlme_action action,
348 struct ieee80211_sta *sta, u16 tid,
349 u16 *ssn)
350{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200351 int ret = -EOPNOTSUPP;
Johannes Bergcfcdbde2010-06-10 10:21:48 +0200352
353 might_sleep();
354
Johannes Berg24487982009-04-23 18:52:52 +0200355 if (local->ops->ampdu_action)
Johannes Berg12375ef2009-11-25 20:30:31 +0100356 ret = local->ops->ampdu_action(&local->hw, &sdata->vif, action,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200357 sta, tid, ssn);
Johannes Berg85ad1812010-06-10 10:21:49 +0200358
Johannes Berg12375ef2009-11-25 20:30:31 +0100359 trace_drv_ampdu_action(local, sdata, action, sta, tid, ssn, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200360 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200361}
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200362
Holger Schurig12897232010-04-19 10:23:57 +0200363static inline int drv_get_survey(struct ieee80211_local *local, int idx,
364 struct survey_info *survey)
365{
366 int ret = -EOPNOTSUPP;
Holger Schurig35dd0502010-06-07 16:33:49 +0200367 if (local->ops->get_survey)
Holger Schurig12897232010-04-19 10:23:57 +0200368 ret = local->ops->get_survey(&local->hw, idx, survey);
369 /* trace_drv_get_survey(local, idx, survey, ret); */
370 return ret;
371}
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200372
373static inline void drv_rfkill_poll(struct ieee80211_local *local)
374{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100375 might_sleep();
376
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200377 if (local->ops->rfkill_poll)
378 local->ops->rfkill_poll(&local->hw);
379}
Johannes Berga80f7c02009-12-23 13:15:32 +0100380
381static inline void drv_flush(struct ieee80211_local *local, bool drop)
382{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100383 might_sleep();
384
Johannes Berga80f7c02009-12-23 13:15:32 +0100385 trace_drv_flush(local, drop);
386 if (local->ops->flush)
387 local->ops->flush(&local->hw, drop);
388}
Johannes Berg5ce6e432010-05-11 16:20:57 +0200389
390static inline void drv_channel_switch(struct ieee80211_local *local,
391 struct ieee80211_channel_switch *ch_switch)
392{
393 might_sleep();
394
395 local->ops->channel_switch(&local->hw, ch_switch);
396
397 trace_drv_channel_switch(local, ch_switch);
398}
399
Johannes Berg24487982009-04-23 18:52:52 +0200400#endif /* __MAC80211_DRIVER_OPS */