blob: 5662bb5190c3199f8def1194d69d19af1bae81e8 [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,
Johannes Berg24487982009-04-23 18:52:52 +020087 int mc_count,
88 struct dev_addr_list *mc_list)
89{
Johannes Berg3ac64be2009-08-17 16:16:53 +020090 u64 ret = 0;
91
92 if (local->ops->prepare_multicast)
93 ret = local->ops->prepare_multicast(&local->hw, mc_count,
94 mc_list);
95
96 trace_drv_prepare_multicast(local, mc_count, ret);
97
98 return ret;
99}
100
101static inline void drv_configure_filter(struct ieee80211_local *local,
102 unsigned int changed_flags,
103 unsigned int *total_flags,
104 u64 multicast)
105{
106 might_sleep();
107
Johannes Berg24487982009-04-23 18:52:52 +0200108 local->ops->configure_filter(&local->hw, changed_flags, total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +0200109 multicast);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200110 trace_drv_configure_filter(local, changed_flags, total_flags,
Johannes Berg3ac64be2009-08-17 16:16:53 +0200111 multicast);
Johannes Berg24487982009-04-23 18:52:52 +0200112}
113
114static inline int drv_set_tim(struct ieee80211_local *local,
115 struct ieee80211_sta *sta, bool set)
116{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200117 int ret = 0;
Johannes Berg24487982009-04-23 18:52:52 +0200118 if (local->ops->set_tim)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200119 ret = local->ops->set_tim(&local->hw, sta, set);
120 trace_drv_set_tim(local, sta, set, ret);
121 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200122}
123
124static inline int drv_set_key(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100125 enum set_key_cmd cmd,
126 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200127 struct ieee80211_sta *sta,
128 struct ieee80211_key_conf *key)
129{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100130 int ret;
131
132 might_sleep();
133
134 ret = local->ops->set_key(&local->hw, cmd, &sdata->vif, sta, key);
Johannes Berg12375ef2009-11-25 20:30:31 +0100135 trace_drv_set_key(local, cmd, sdata, sta, key, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200136 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200137}
138
139static inline void drv_update_tkip_key(struct ieee80211_local *local,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100140 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200141 struct ieee80211_key_conf *conf,
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100142 struct sta_info *sta, u32 iv32,
Johannes Berg24487982009-04-23 18:52:52 +0200143 u16 *phase1key)
144{
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100145 struct ieee80211_sta *ista = NULL;
146
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100147 if (sta)
148 ista = &sta->sta;
149
Johannes Berg24487982009-04-23 18:52:52 +0200150 if (local->ops->update_tkip_key)
Johannes Bergb3fbdcf2010-01-21 11:40:47 +0100151 local->ops->update_tkip_key(&local->hw, &sdata->vif, conf,
152 ista, iv32, phase1key);
153 trace_drv_update_tkip_key(local, sdata, conf, ista, iv32);
Johannes Berg24487982009-04-23 18:52:52 +0200154}
155
156static inline int drv_hw_scan(struct ieee80211_local *local,
Johannes Berga060bbf2010-04-27 11:59:34 +0200157 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200158 struct cfg80211_scan_request *req)
159{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100160 int ret;
161
162 might_sleep();
163
Johannes Berga060bbf2010-04-27 11:59:34 +0200164 ret = local->ops->hw_scan(&local->hw, &sdata->vif, req);
165 trace_drv_hw_scan(local, sdata, req, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200166 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200167}
168
169static inline void drv_sw_scan_start(struct ieee80211_local *local)
170{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100171 might_sleep();
172
Johannes Berg24487982009-04-23 18:52:52 +0200173 if (local->ops->sw_scan_start)
174 local->ops->sw_scan_start(&local->hw);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200175 trace_drv_sw_scan_start(local);
Johannes Berg24487982009-04-23 18:52:52 +0200176}
177
178static inline void drv_sw_scan_complete(struct ieee80211_local *local)
179{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100180 might_sleep();
181
Johannes Berg24487982009-04-23 18:52:52 +0200182 if (local->ops->sw_scan_complete)
183 local->ops->sw_scan_complete(&local->hw);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200184 trace_drv_sw_scan_complete(local);
Johannes Berg24487982009-04-23 18:52:52 +0200185}
186
187static inline int drv_get_stats(struct ieee80211_local *local,
188 struct ieee80211_low_level_stats *stats)
189{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200190 int ret = -EOPNOTSUPP;
191
Kalle Valoe1781ed2009-12-23 13:15:47 +0100192 might_sleep();
193
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200194 if (local->ops->get_stats)
195 ret = local->ops->get_stats(&local->hw, stats);
196 trace_drv_get_stats(local, stats, ret);
197
198 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200199}
200
201static inline void drv_get_tkip_seq(struct ieee80211_local *local,
202 u8 hw_key_idx, u32 *iv32, u16 *iv16)
203{
204 if (local->ops->get_tkip_seq)
205 local->ops->get_tkip_seq(&local->hw, hw_key_idx, iv32, iv16);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200206 trace_drv_get_tkip_seq(local, hw_key_idx, iv32, iv16);
Johannes Berg24487982009-04-23 18:52:52 +0200207}
208
209static inline int drv_set_rts_threshold(struct ieee80211_local *local,
210 u32 value)
211{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200212 int ret = 0;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100213
214 might_sleep();
215
Johannes Berg24487982009-04-23 18:52:52 +0200216 if (local->ops->set_rts_threshold)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200217 ret = local->ops->set_rts_threshold(&local->hw, value);
218 trace_drv_set_rts_threshold(local, value, ret);
219 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200220}
221
Lukáš Turek310bc672009-12-21 22:50:48 +0100222static inline int drv_set_coverage_class(struct ieee80211_local *local,
223 u8 value)
224{
225 int ret = 0;
226 might_sleep();
227
228 if (local->ops->set_coverage_class)
229 local->ops->set_coverage_class(&local->hw, value);
230 else
231 ret = -EOPNOTSUPP;
232
233 trace_drv_set_coverage_class(local, value, ret);
234 return ret;
235}
236
Johannes Berg24487982009-04-23 18:52:52 +0200237static inline void drv_sta_notify(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100238 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200239 enum sta_notify_cmd cmd,
240 struct ieee80211_sta *sta)
241{
242 if (local->ops->sta_notify)
Johannes Berg12375ef2009-11-25 20:30:31 +0100243 local->ops->sta_notify(&local->hw, &sdata->vif, cmd, sta);
244 trace_drv_sta_notify(local, sdata, cmd, sta);
Johannes Berg24487982009-04-23 18:52:52 +0200245}
246
Johannes Berg34e89502010-02-03 13:59:58 +0100247static inline int drv_sta_add(struct ieee80211_local *local,
248 struct ieee80211_sub_if_data *sdata,
249 struct ieee80211_sta *sta)
250{
251 int ret = 0;
252
253 might_sleep();
254
255 if (local->ops->sta_add)
256 ret = local->ops->sta_add(&local->hw, &sdata->vif, sta);
257 else if (local->ops->sta_notify)
258 local->ops->sta_notify(&local->hw, &sdata->vif,
259 STA_NOTIFY_ADD, sta);
260
261 trace_drv_sta_add(local, sdata, sta, ret);
262
263 return ret;
264}
265
266static inline void drv_sta_remove(struct ieee80211_local *local,
267 struct ieee80211_sub_if_data *sdata,
268 struct ieee80211_sta *sta)
269{
270 might_sleep();
271
272 if (local->ops->sta_remove)
273 local->ops->sta_remove(&local->hw, &sdata->vif, sta);
274 else if (local->ops->sta_notify)
275 local->ops->sta_notify(&local->hw, &sdata->vif,
276 STA_NOTIFY_REMOVE, sta);
277
278 trace_drv_sta_remove(local, sdata, sta);
279}
280
Johannes Berg24487982009-04-23 18:52:52 +0200281static inline int drv_conf_tx(struct ieee80211_local *local, u16 queue,
282 const struct ieee80211_tx_queue_params *params)
283{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200284 int ret = -EOPNOTSUPP;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100285
286 might_sleep();
287
Johannes Berg24487982009-04-23 18:52:52 +0200288 if (local->ops->conf_tx)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200289 ret = local->ops->conf_tx(&local->hw, queue, params);
290 trace_drv_conf_tx(local, queue, params, ret);
291 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200292}
293
Johannes Berg24487982009-04-23 18:52:52 +0200294static inline u64 drv_get_tsf(struct ieee80211_local *local)
295{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200296 u64 ret = -1ULL;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100297
298 might_sleep();
299
Johannes Berg24487982009-04-23 18:52:52 +0200300 if (local->ops->get_tsf)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200301 ret = local->ops->get_tsf(&local->hw);
302 trace_drv_get_tsf(local, ret);
303 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200304}
305
306static inline void drv_set_tsf(struct ieee80211_local *local, u64 tsf)
307{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100308 might_sleep();
309
Johannes Berg24487982009-04-23 18:52:52 +0200310 if (local->ops->set_tsf)
311 local->ops->set_tsf(&local->hw, tsf);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200312 trace_drv_set_tsf(local, tsf);
Johannes Berg24487982009-04-23 18:52:52 +0200313}
314
315static inline void drv_reset_tsf(struct ieee80211_local *local)
316{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100317 might_sleep();
318
Johannes Berg24487982009-04-23 18:52:52 +0200319 if (local->ops->reset_tsf)
320 local->ops->reset_tsf(&local->hw);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200321 trace_drv_reset_tsf(local);
Johannes Berg24487982009-04-23 18:52:52 +0200322}
323
324static inline int drv_tx_last_beacon(struct ieee80211_local *local)
325{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200326 int ret = 1;
Kalle Valoe1781ed2009-12-23 13:15:47 +0100327
328 might_sleep();
329
Johannes Berg24487982009-04-23 18:52:52 +0200330 if (local->ops->tx_last_beacon)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200331 ret = local->ops->tx_last_beacon(&local->hw);
332 trace_drv_tx_last_beacon(local, ret);
333 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200334}
335
336static inline int drv_ampdu_action(struct ieee80211_local *local,
Johannes Berg12375ef2009-11-25 20:30:31 +0100337 struct ieee80211_sub_if_data *sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200338 enum ieee80211_ampdu_mlme_action action,
339 struct ieee80211_sta *sta, u16 tid,
340 u16 *ssn)
341{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200342 int ret = -EOPNOTSUPP;
Johannes Berg24487982009-04-23 18:52:52 +0200343 if (local->ops->ampdu_action)
Johannes Berg12375ef2009-11-25 20:30:31 +0100344 ret = local->ops->ampdu_action(&local->hw, &sdata->vif, action,
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200345 sta, tid, ssn);
Johannes Berg12375ef2009-11-25 20:30:31 +0100346 trace_drv_ampdu_action(local, sdata, action, sta, tid, ssn, ret);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200347 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200348}
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200349
Holger Schurig12897232010-04-19 10:23:57 +0200350static inline int drv_get_survey(struct ieee80211_local *local, int idx,
351 struct survey_info *survey)
352{
353 int ret = -EOPNOTSUPP;
354 if (local->ops->conf_tx)
355 ret = local->ops->get_survey(&local->hw, idx, survey);
356 /* trace_drv_get_survey(local, idx, survey, ret); */
357 return ret;
358}
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200359
360static inline void drv_rfkill_poll(struct ieee80211_local *local)
361{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100362 might_sleep();
363
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200364 if (local->ops->rfkill_poll)
365 local->ops->rfkill_poll(&local->hw);
366}
Johannes Berga80f7c02009-12-23 13:15:32 +0100367
368static inline void drv_flush(struct ieee80211_local *local, bool drop)
369{
Kalle Valoe1781ed2009-12-23 13:15:47 +0100370 might_sleep();
371
Johannes Berga80f7c02009-12-23 13:15:32 +0100372 trace_drv_flush(local, drop);
373 if (local->ops->flush)
374 local->ops->flush(&local->hw, drop);
375}
Johannes Berg5ce6e432010-05-11 16:20:57 +0200376
377static inline void drv_channel_switch(struct ieee80211_local *local,
378 struct ieee80211_channel_switch *ch_switch)
379{
380 might_sleep();
381
382 local->ops->channel_switch(&local->hw, ch_switch);
383
384 trace_drv_channel_switch(local, ch_switch);
385}
386
Johannes Berg24487982009-04-23 18:52:52 +0200387#endif /* __MAC80211_DRIVER_OPS */