blob: 4100c361a99d7bf0a46407d942d198f9bc4327c3 [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 Berg0a2b8bb2009-07-07 13:46:22 +020015 int ret = local->ops->start(&local->hw);
16 trace_drv_start(local, ret);
17 return ret;
Johannes Berg24487982009-04-23 18:52:52 +020018}
19
20static inline void drv_stop(struct ieee80211_local *local)
21{
22 local->ops->stop(&local->hw);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020023 trace_drv_stop(local);
Johannes Berg24487982009-04-23 18:52:52 +020024}
25
26static inline int drv_add_interface(struct ieee80211_local *local,
27 struct ieee80211_if_init_conf *conf)
28{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020029 int ret = local->ops->add_interface(&local->hw, conf);
30 trace_drv_add_interface(local, conf->mac_addr, conf->vif, ret);
31 return ret;
Johannes Berg24487982009-04-23 18:52:52 +020032}
33
34static inline void drv_remove_interface(struct ieee80211_local *local,
35 struct ieee80211_if_init_conf *conf)
36{
37 local->ops->remove_interface(&local->hw, conf);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020038 trace_drv_remove_interface(local, conf->mac_addr, conf->vif);
Johannes Berg24487982009-04-23 18:52:52 +020039}
40
41static inline int drv_config(struct ieee80211_local *local, u32 changed)
42{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020043 int ret = local->ops->config(&local->hw, changed);
44 trace_drv_config(local, changed, ret);
45 return ret;
Johannes Berg24487982009-04-23 18:52:52 +020046}
47
48static inline void drv_bss_info_changed(struct ieee80211_local *local,
49 struct ieee80211_vif *vif,
50 struct ieee80211_bss_conf *info,
51 u32 changed)
52{
53 if (local->ops->bss_info_changed)
54 local->ops->bss_info_changed(&local->hw, vif, info, changed);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020055 trace_drv_bss_info_changed(local, vif, info, changed);
Johannes Berg24487982009-04-23 18:52:52 +020056}
57
58static inline void drv_configure_filter(struct ieee80211_local *local,
59 unsigned int changed_flags,
60 unsigned int *total_flags,
61 int mc_count,
62 struct dev_addr_list *mc_list)
63{
64 local->ops->configure_filter(&local->hw, changed_flags, total_flags,
65 mc_count, mc_list);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020066 trace_drv_configure_filter(local, changed_flags, total_flags,
67 mc_count);
Johannes Berg24487982009-04-23 18:52:52 +020068}
69
70static inline int drv_set_tim(struct ieee80211_local *local,
71 struct ieee80211_sta *sta, bool set)
72{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020073 int ret = 0;
Johannes Berg24487982009-04-23 18:52:52 +020074 if (local->ops->set_tim)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020075 ret = local->ops->set_tim(&local->hw, sta, set);
76 trace_drv_set_tim(local, sta, set, ret);
77 return ret;
Johannes Berg24487982009-04-23 18:52:52 +020078}
79
80static inline int drv_set_key(struct ieee80211_local *local,
81 enum set_key_cmd cmd, struct ieee80211_vif *vif,
82 struct ieee80211_sta *sta,
83 struct ieee80211_key_conf *key)
84{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020085 int ret = local->ops->set_key(&local->hw, cmd, vif, sta, key);
86 trace_drv_set_key(local, cmd, vif, sta, key, ret);
87 return ret;
Johannes Berg24487982009-04-23 18:52:52 +020088}
89
90static inline void drv_update_tkip_key(struct ieee80211_local *local,
91 struct ieee80211_key_conf *conf,
92 const u8 *address, u32 iv32,
93 u16 *phase1key)
94{
95 if (local->ops->update_tkip_key)
96 local->ops->update_tkip_key(&local->hw, conf, address,
97 iv32, phase1key);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +020098 trace_drv_update_tkip_key(local, conf, address, iv32);
Johannes Berg24487982009-04-23 18:52:52 +020099}
100
101static inline int drv_hw_scan(struct ieee80211_local *local,
102 struct cfg80211_scan_request *req)
103{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200104 int ret = local->ops->hw_scan(&local->hw, req);
105 trace_drv_hw_scan(local, req, ret);
106 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200107}
108
109static inline void drv_sw_scan_start(struct ieee80211_local *local)
110{
111 if (local->ops->sw_scan_start)
112 local->ops->sw_scan_start(&local->hw);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200113 trace_drv_sw_scan_start(local);
Johannes Berg24487982009-04-23 18:52:52 +0200114}
115
116static inline void drv_sw_scan_complete(struct ieee80211_local *local)
117{
118 if (local->ops->sw_scan_complete)
119 local->ops->sw_scan_complete(&local->hw);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200120 trace_drv_sw_scan_complete(local);
Johannes Berg24487982009-04-23 18:52:52 +0200121}
122
123static inline int drv_get_stats(struct ieee80211_local *local,
124 struct ieee80211_low_level_stats *stats)
125{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200126 int ret = -EOPNOTSUPP;
127
128 if (local->ops->get_stats)
129 ret = local->ops->get_stats(&local->hw, stats);
130 trace_drv_get_stats(local, stats, ret);
131
132 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200133}
134
135static inline void drv_get_tkip_seq(struct ieee80211_local *local,
136 u8 hw_key_idx, u32 *iv32, u16 *iv16)
137{
138 if (local->ops->get_tkip_seq)
139 local->ops->get_tkip_seq(&local->hw, hw_key_idx, iv32, iv16);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200140 trace_drv_get_tkip_seq(local, hw_key_idx, iv32, iv16);
Johannes Berg24487982009-04-23 18:52:52 +0200141}
142
143static inline int drv_set_rts_threshold(struct ieee80211_local *local,
144 u32 value)
145{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200146 int ret = 0;
Johannes Berg24487982009-04-23 18:52:52 +0200147 if (local->ops->set_rts_threshold)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200148 ret = local->ops->set_rts_threshold(&local->hw, value);
149 trace_drv_set_rts_threshold(local, value, ret);
150 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200151}
152
153static inline void drv_sta_notify(struct ieee80211_local *local,
154 struct ieee80211_vif *vif,
155 enum sta_notify_cmd cmd,
156 struct ieee80211_sta *sta)
157{
158 if (local->ops->sta_notify)
159 local->ops->sta_notify(&local->hw, vif, cmd, sta);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200160 trace_drv_sta_notify(local, vif, cmd, sta);
Johannes Berg24487982009-04-23 18:52:52 +0200161}
162
163static inline int drv_conf_tx(struct ieee80211_local *local, u16 queue,
164 const struct ieee80211_tx_queue_params *params)
165{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200166 int ret = -EOPNOTSUPP;
Johannes Berg24487982009-04-23 18:52:52 +0200167 if (local->ops->conf_tx)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200168 ret = local->ops->conf_tx(&local->hw, queue, params);
169 trace_drv_conf_tx(local, queue, params, ret);
170 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200171}
172
173static inline int drv_get_tx_stats(struct ieee80211_local *local,
174 struct ieee80211_tx_queue_stats *stats)
175{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200176 int ret = local->ops->get_tx_stats(&local->hw, stats);
177 trace_drv_get_tx_stats(local, stats, ret);
178 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200179}
180
181static inline u64 drv_get_tsf(struct ieee80211_local *local)
182{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200183 u64 ret = -1ULL;
Johannes Berg24487982009-04-23 18:52:52 +0200184 if (local->ops->get_tsf)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200185 ret = local->ops->get_tsf(&local->hw);
186 trace_drv_get_tsf(local, ret);
187 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200188}
189
190static inline void drv_set_tsf(struct ieee80211_local *local, u64 tsf)
191{
192 if (local->ops->set_tsf)
193 local->ops->set_tsf(&local->hw, tsf);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200194 trace_drv_set_tsf(local, tsf);
Johannes Berg24487982009-04-23 18:52:52 +0200195}
196
197static inline void drv_reset_tsf(struct ieee80211_local *local)
198{
199 if (local->ops->reset_tsf)
200 local->ops->reset_tsf(&local->hw);
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200201 trace_drv_reset_tsf(local);
Johannes Berg24487982009-04-23 18:52:52 +0200202}
203
204static inline int drv_tx_last_beacon(struct ieee80211_local *local)
205{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200206 int ret = 1;
Johannes Berg24487982009-04-23 18:52:52 +0200207 if (local->ops->tx_last_beacon)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200208 ret = local->ops->tx_last_beacon(&local->hw);
209 trace_drv_tx_last_beacon(local, ret);
210 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200211}
212
213static inline int drv_ampdu_action(struct ieee80211_local *local,
214 enum ieee80211_ampdu_mlme_action action,
215 struct ieee80211_sta *sta, u16 tid,
216 u16 *ssn)
217{
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200218 int ret = -EOPNOTSUPP;
Johannes Berg24487982009-04-23 18:52:52 +0200219 if (local->ops->ampdu_action)
Johannes Berg0a2b8bb2009-07-07 13:46:22 +0200220 ret = local->ops->ampdu_action(&local->hw, action,
221 sta, tid, ssn);
222 trace_drv_ampdu_action(local, action, sta, tid, ssn, ret);
223 return ret;
Johannes Berg24487982009-04-23 18:52:52 +0200224}
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200225
226
227static inline void drv_rfkill_poll(struct ieee80211_local *local)
228{
229 if (local->ops->rfkill_poll)
230 local->ops->rfkill_poll(&local->hw);
231}
Johannes Berg24487982009-04-23 18:52:52 +0200232#endif /* __MAC80211_DRIVER_OPS */