1 #ifndef __MAC80211_DRIVER_OPS
2 #define __MAC80211_DRIVER_OPS
4 #include <net/mac80211.h>
5 #include "ieee80211_i.h"
6 #include "driver-trace.h"
8 static inline int drv_tx(struct ieee80211_local
*local
, struct sk_buff
*skb
)
10 return local
->ops
->tx(&local
->hw
, skb
);
13 static inline int drv_start(struct ieee80211_local
*local
)
17 local
->started
= true;
19 ret
= local
->ops
->start(&local
->hw
);
20 trace_drv_start(local
, ret
);
24 static inline void drv_stop(struct ieee80211_local
*local
)
26 local
->ops
->stop(&local
->hw
);
27 trace_drv_stop(local
);
29 /* sync away all work on the tasklet before clearing started */
30 tasklet_disable(&local
->tasklet
);
31 tasklet_enable(&local
->tasklet
);
35 local
->started
= false;
38 static inline int drv_add_interface(struct ieee80211_local
*local
,
39 struct ieee80211_if_init_conf
*conf
)
41 int ret
= local
->ops
->add_interface(&local
->hw
, conf
);
42 trace_drv_add_interface(local
, conf
->mac_addr
, conf
->vif
, ret
);
46 static inline void drv_remove_interface(struct ieee80211_local
*local
,
47 struct ieee80211_if_init_conf
*conf
)
49 local
->ops
->remove_interface(&local
->hw
, conf
);
50 trace_drv_remove_interface(local
, conf
->mac_addr
, conf
->vif
);
53 static inline int drv_config(struct ieee80211_local
*local
, u32 changed
)
55 int ret
= local
->ops
->config(&local
->hw
, changed
);
56 trace_drv_config(local
, changed
, ret
);
60 static inline void drv_bss_info_changed(struct ieee80211_local
*local
,
61 struct ieee80211_vif
*vif
,
62 struct ieee80211_bss_conf
*info
,
65 if (local
->ops
->bss_info_changed
)
66 local
->ops
->bss_info_changed(&local
->hw
, vif
, info
, changed
);
67 trace_drv_bss_info_changed(local
, vif
, info
, changed
);
70 static inline u64
drv_prepare_multicast(struct ieee80211_local
*local
,
72 struct dev_addr_list
*mc_list
)
76 if (local
->ops
->prepare_multicast
)
77 ret
= local
->ops
->prepare_multicast(&local
->hw
, mc_count
,
80 trace_drv_prepare_multicast(local
, mc_count
, ret
);
85 static inline void drv_configure_filter(struct ieee80211_local
*local
,
86 unsigned int changed_flags
,
87 unsigned int *total_flags
,
92 local
->ops
->configure_filter(&local
->hw
, changed_flags
, total_flags
,
94 trace_drv_configure_filter(local
, changed_flags
, total_flags
,
98 static inline int drv_set_tim(struct ieee80211_local
*local
,
99 struct ieee80211_sta
*sta
, bool set
)
102 if (local
->ops
->set_tim
)
103 ret
= local
->ops
->set_tim(&local
->hw
, sta
, set
);
104 trace_drv_set_tim(local
, sta
, set
, ret
);
108 static inline int drv_set_key(struct ieee80211_local
*local
,
109 enum set_key_cmd cmd
, struct ieee80211_vif
*vif
,
110 struct ieee80211_sta
*sta
,
111 struct ieee80211_key_conf
*key
)
113 int ret
= local
->ops
->set_key(&local
->hw
, cmd
, vif
, sta
, key
);
114 trace_drv_set_key(local
, cmd
, vif
, sta
, key
, ret
);
118 static inline void drv_update_tkip_key(struct ieee80211_local
*local
,
119 struct ieee80211_key_conf
*conf
,
120 const u8
*address
, u32 iv32
,
123 if (local
->ops
->update_tkip_key
)
124 local
->ops
->update_tkip_key(&local
->hw
, conf
, address
,
126 trace_drv_update_tkip_key(local
, conf
, address
, iv32
);
129 static inline int drv_hw_scan(struct ieee80211_local
*local
,
130 struct cfg80211_scan_request
*req
)
132 int ret
= local
->ops
->hw_scan(&local
->hw
, req
);
133 trace_drv_hw_scan(local
, req
, ret
);
137 static inline void drv_sw_scan_start(struct ieee80211_local
*local
)
139 if (local
->ops
->sw_scan_start
)
140 local
->ops
->sw_scan_start(&local
->hw
);
141 trace_drv_sw_scan_start(local
);
144 static inline void drv_sw_scan_complete(struct ieee80211_local
*local
)
146 if (local
->ops
->sw_scan_complete
)
147 local
->ops
->sw_scan_complete(&local
->hw
);
148 trace_drv_sw_scan_complete(local
);
151 static inline int drv_get_stats(struct ieee80211_local
*local
,
152 struct ieee80211_low_level_stats
*stats
)
154 int ret
= -EOPNOTSUPP
;
156 if (local
->ops
->get_stats
)
157 ret
= local
->ops
->get_stats(&local
->hw
, stats
);
158 trace_drv_get_stats(local
, stats
, ret
);
163 static inline void drv_get_tkip_seq(struct ieee80211_local
*local
,
164 u8 hw_key_idx
, u32
*iv32
, u16
*iv16
)
166 if (local
->ops
->get_tkip_seq
)
167 local
->ops
->get_tkip_seq(&local
->hw
, hw_key_idx
, iv32
, iv16
);
168 trace_drv_get_tkip_seq(local
, hw_key_idx
, iv32
, iv16
);
171 static inline int drv_set_rts_threshold(struct ieee80211_local
*local
,
175 if (local
->ops
->set_rts_threshold
)
176 ret
= local
->ops
->set_rts_threshold(&local
->hw
, value
);
177 trace_drv_set_rts_threshold(local
, value
, ret
);
181 static inline void drv_sta_notify(struct ieee80211_local
*local
,
182 struct ieee80211_vif
*vif
,
183 enum sta_notify_cmd cmd
,
184 struct ieee80211_sta
*sta
)
186 if (local
->ops
->sta_notify
)
187 local
->ops
->sta_notify(&local
->hw
, vif
, cmd
, sta
);
188 trace_drv_sta_notify(local
, vif
, cmd
, sta
);
191 static inline int drv_conf_tx(struct ieee80211_local
*local
, u16 queue
,
192 const struct ieee80211_tx_queue_params
*params
)
194 int ret
= -EOPNOTSUPP
;
195 if (local
->ops
->conf_tx
)
196 ret
= local
->ops
->conf_tx(&local
->hw
, queue
, params
);
197 trace_drv_conf_tx(local
, queue
, params
, ret
);
201 static inline int drv_get_tx_stats(struct ieee80211_local
*local
,
202 struct ieee80211_tx_queue_stats
*stats
)
204 int ret
= local
->ops
->get_tx_stats(&local
->hw
, stats
);
205 trace_drv_get_tx_stats(local
, stats
, ret
);
209 static inline u64
drv_get_tsf(struct ieee80211_local
*local
)
212 if (local
->ops
->get_tsf
)
213 ret
= local
->ops
->get_tsf(&local
->hw
);
214 trace_drv_get_tsf(local
, ret
);
218 static inline void drv_set_tsf(struct ieee80211_local
*local
, u64 tsf
)
220 if (local
->ops
->set_tsf
)
221 local
->ops
->set_tsf(&local
->hw
, tsf
);
222 trace_drv_set_tsf(local
, tsf
);
225 static inline void drv_reset_tsf(struct ieee80211_local
*local
)
227 if (local
->ops
->reset_tsf
)
228 local
->ops
->reset_tsf(&local
->hw
);
229 trace_drv_reset_tsf(local
);
232 static inline int drv_tx_last_beacon(struct ieee80211_local
*local
)
235 if (local
->ops
->tx_last_beacon
)
236 ret
= local
->ops
->tx_last_beacon(&local
->hw
);
237 trace_drv_tx_last_beacon(local
, ret
);
241 static inline int drv_ampdu_action(struct ieee80211_local
*local
,
242 struct ieee80211_vif
*vif
,
243 enum ieee80211_ampdu_mlme_action action
,
244 struct ieee80211_sta
*sta
, u16 tid
,
247 int ret
= -EOPNOTSUPP
;
248 if (local
->ops
->ampdu_action
)
249 ret
= local
->ops
->ampdu_action(&local
->hw
, vif
, action
,
251 trace_drv_ampdu_action(local
, vif
, action
, sta
, tid
, ssn
, ret
);
256 static inline void drv_rfkill_poll(struct ieee80211_local
*local
)
258 if (local
->ops
->rfkill_poll
)
259 local
->ops
->rfkill_poll(&local
->hw
);
261 #endif /* __MAC80211_DRIVER_OPS */