Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 1 | #ifndef __MAC80211_DRIVER_OPS |
| 2 | #define __MAC80211_DRIVER_OPS |
| 3 | |
| 4 | #include <net/mac80211.h> |
| 5 | #include "ieee80211_i.h" |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 6 | #include "driver-trace.h" |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 7 | |
| 8 | static inline int drv_tx(struct ieee80211_local *local, struct sk_buff *skb) |
| 9 | { |
| 10 | return local->ops->tx(&local->hw, skb); |
| 11 | } |
| 12 | |
| 13 | static inline int drv_start(struct ieee80211_local *local) |
| 14 | { |
Johannes Berg | ea77f12 | 2009-08-21 14:44:45 +0200 | [diff] [blame] | 15 | int ret; |
| 16 | |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 17 | might_sleep(); |
| 18 | |
Johannes Berg | ea77f12 | 2009-08-21 14:44:45 +0200 | [diff] [blame] | 19 | local->started = true; |
| 20 | smp_mb(); |
| 21 | ret = local->ops->start(&local->hw); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 22 | trace_drv_start(local, ret); |
| 23 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 24 | } |
| 25 | |
| 26 | static inline void drv_stop(struct ieee80211_local *local) |
| 27 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 28 | might_sleep(); |
| 29 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 30 | local->ops->stop(&local->hw); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 31 | trace_drv_stop(local); |
Johannes Berg | ea77f12 | 2009-08-21 14:44:45 +0200 | [diff] [blame] | 32 | |
| 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 Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | static inline int drv_add_interface(struct ieee80211_local *local, |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 43 | struct ieee80211_vif *vif) |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 44 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 45 | int ret; |
| 46 | |
| 47 | might_sleep(); |
| 48 | |
| 49 | ret = local->ops->add_interface(&local->hw, vif); |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 50 | trace_drv_add_interface(local, vif_to_sdata(vif), ret); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 51 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | static inline void drv_remove_interface(struct ieee80211_local *local, |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 55 | struct ieee80211_vif *vif) |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 56 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 57 | might_sleep(); |
| 58 | |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 59 | local->ops->remove_interface(&local->hw, vif); |
| 60 | trace_drv_remove_interface(local, vif_to_sdata(vif)); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | static inline int drv_config(struct ieee80211_local *local, u32 changed) |
| 64 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 65 | int ret; |
| 66 | |
| 67 | might_sleep(); |
| 68 | |
| 69 | ret = local->ops->config(&local->hw, changed); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 70 | trace_drv_config(local, changed, ret); |
| 71 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | static inline void drv_bss_info_changed(struct ieee80211_local *local, |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame] | 75 | struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 76 | struct ieee80211_bss_conf *info, |
| 77 | u32 changed) |
| 78 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 79 | might_sleep(); |
| 80 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 81 | if (local->ops->bss_info_changed) |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame] | 82 | local->ops->bss_info_changed(&local->hw, &sdata->vif, info, changed); |
| 83 | trace_drv_bss_info_changed(local, sdata, info, changed); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 84 | } |
| 85 | |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 86 | static inline u64 drv_prepare_multicast(struct ieee80211_local *local, |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 87 | int mc_count, |
| 88 | struct dev_addr_list *mc_list) |
| 89 | { |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 90 | 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 | |
| 101 | static 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 Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 108 | local->ops->configure_filter(&local->hw, changed_flags, total_flags, |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 109 | multicast); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 110 | trace_drv_configure_filter(local, changed_flags, total_flags, |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 111 | multicast); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | static inline int drv_set_tim(struct ieee80211_local *local, |
| 115 | struct ieee80211_sta *sta, bool set) |
| 116 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 117 | int ret = 0; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 118 | if (local->ops->set_tim) |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 119 | ret = local->ops->set_tim(&local->hw, sta, set); |
| 120 | trace_drv_set_tim(local, sta, set, ret); |
| 121 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | static inline int drv_set_key(struct ieee80211_local *local, |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame] | 125 | enum set_key_cmd cmd, |
| 126 | struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 127 | struct ieee80211_sta *sta, |
| 128 | struct ieee80211_key_conf *key) |
| 129 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 130 | int ret; |
| 131 | |
| 132 | might_sleep(); |
| 133 | |
| 134 | ret = local->ops->set_key(&local->hw, cmd, &sdata->vif, sta, key); |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame] | 135 | trace_drv_set_key(local, cmd, sdata, sta, key, ret); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 136 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | static inline void drv_update_tkip_key(struct ieee80211_local *local, |
Johannes Berg | b3fbdcf | 2010-01-21 11:40:47 +0100 | [diff] [blame^] | 140 | struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 141 | struct ieee80211_key_conf *conf, |
Johannes Berg | b3fbdcf | 2010-01-21 11:40:47 +0100 | [diff] [blame^] | 142 | struct sta_info *sta, u32 iv32, |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 143 | u16 *phase1key) |
| 144 | { |
Johannes Berg | b3fbdcf | 2010-01-21 11:40:47 +0100 | [diff] [blame^] | 145 | struct ieee80211_sta *ista = NULL; |
| 146 | |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 147 | might_sleep(); |
| 148 | |
Johannes Berg | b3fbdcf | 2010-01-21 11:40:47 +0100 | [diff] [blame^] | 149 | if (sta) |
| 150 | ista = &sta->sta; |
| 151 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 152 | if (local->ops->update_tkip_key) |
Johannes Berg | b3fbdcf | 2010-01-21 11:40:47 +0100 | [diff] [blame^] | 153 | local->ops->update_tkip_key(&local->hw, &sdata->vif, conf, |
| 154 | ista, iv32, phase1key); |
| 155 | trace_drv_update_tkip_key(local, sdata, conf, ista, iv32); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | static inline int drv_hw_scan(struct ieee80211_local *local, |
| 159 | struct cfg80211_scan_request *req) |
| 160 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 161 | int ret; |
| 162 | |
| 163 | might_sleep(); |
| 164 | |
| 165 | ret = local->ops->hw_scan(&local->hw, req); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 166 | trace_drv_hw_scan(local, req, ret); |
| 167 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | static inline void drv_sw_scan_start(struct ieee80211_local *local) |
| 171 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 172 | might_sleep(); |
| 173 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 174 | if (local->ops->sw_scan_start) |
| 175 | local->ops->sw_scan_start(&local->hw); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 176 | trace_drv_sw_scan_start(local); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | static inline void drv_sw_scan_complete(struct ieee80211_local *local) |
| 180 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 181 | might_sleep(); |
| 182 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 183 | if (local->ops->sw_scan_complete) |
| 184 | local->ops->sw_scan_complete(&local->hw); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 185 | trace_drv_sw_scan_complete(local); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | static inline int drv_get_stats(struct ieee80211_local *local, |
| 189 | struct ieee80211_low_level_stats *stats) |
| 190 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 191 | int ret = -EOPNOTSUPP; |
| 192 | |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 193 | might_sleep(); |
| 194 | |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 195 | if (local->ops->get_stats) |
| 196 | ret = local->ops->get_stats(&local->hw, stats); |
| 197 | trace_drv_get_stats(local, stats, ret); |
| 198 | |
| 199 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | static inline void drv_get_tkip_seq(struct ieee80211_local *local, |
| 203 | u8 hw_key_idx, u32 *iv32, u16 *iv16) |
| 204 | { |
| 205 | if (local->ops->get_tkip_seq) |
| 206 | local->ops->get_tkip_seq(&local->hw, hw_key_idx, iv32, iv16); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 207 | trace_drv_get_tkip_seq(local, hw_key_idx, iv32, iv16); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | static inline int drv_set_rts_threshold(struct ieee80211_local *local, |
| 211 | u32 value) |
| 212 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 213 | int ret = 0; |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 214 | |
| 215 | might_sleep(); |
| 216 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 217 | if (local->ops->set_rts_threshold) |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 218 | ret = local->ops->set_rts_threshold(&local->hw, value); |
| 219 | trace_drv_set_rts_threshold(local, value, ret); |
| 220 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 221 | } |
| 222 | |
Lukáš Turek | 310bc67 | 2009-12-21 22:50:48 +0100 | [diff] [blame] | 223 | static inline int drv_set_coverage_class(struct ieee80211_local *local, |
| 224 | u8 value) |
| 225 | { |
| 226 | int ret = 0; |
| 227 | might_sleep(); |
| 228 | |
| 229 | if (local->ops->set_coverage_class) |
| 230 | local->ops->set_coverage_class(&local->hw, value); |
| 231 | else |
| 232 | ret = -EOPNOTSUPP; |
| 233 | |
| 234 | trace_drv_set_coverage_class(local, value, ret); |
| 235 | return ret; |
| 236 | } |
| 237 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 238 | static inline void drv_sta_notify(struct ieee80211_local *local, |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame] | 239 | struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 240 | enum sta_notify_cmd cmd, |
| 241 | struct ieee80211_sta *sta) |
| 242 | { |
| 243 | if (local->ops->sta_notify) |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame] | 244 | local->ops->sta_notify(&local->hw, &sdata->vif, cmd, sta); |
| 245 | trace_drv_sta_notify(local, sdata, cmd, sta); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 246 | } |
| 247 | |
| 248 | static inline int drv_conf_tx(struct ieee80211_local *local, u16 queue, |
| 249 | const struct ieee80211_tx_queue_params *params) |
| 250 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 251 | int ret = -EOPNOTSUPP; |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 252 | |
| 253 | might_sleep(); |
| 254 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 255 | if (local->ops->conf_tx) |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 256 | ret = local->ops->conf_tx(&local->hw, queue, params); |
| 257 | trace_drv_conf_tx(local, queue, params, ret); |
| 258 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 259 | } |
| 260 | |
| 261 | static inline int drv_get_tx_stats(struct ieee80211_local *local, |
| 262 | struct ieee80211_tx_queue_stats *stats) |
| 263 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 264 | int ret = local->ops->get_tx_stats(&local->hw, stats); |
| 265 | trace_drv_get_tx_stats(local, stats, ret); |
| 266 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | static inline u64 drv_get_tsf(struct ieee80211_local *local) |
| 270 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 271 | u64 ret = -1ULL; |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 272 | |
| 273 | might_sleep(); |
| 274 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 275 | if (local->ops->get_tsf) |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 276 | ret = local->ops->get_tsf(&local->hw); |
| 277 | trace_drv_get_tsf(local, ret); |
| 278 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | static inline void drv_set_tsf(struct ieee80211_local *local, u64 tsf) |
| 282 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 283 | might_sleep(); |
| 284 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 285 | if (local->ops->set_tsf) |
| 286 | local->ops->set_tsf(&local->hw, tsf); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 287 | trace_drv_set_tsf(local, tsf); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | static inline void drv_reset_tsf(struct ieee80211_local *local) |
| 291 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 292 | might_sleep(); |
| 293 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 294 | if (local->ops->reset_tsf) |
| 295 | local->ops->reset_tsf(&local->hw); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 296 | trace_drv_reset_tsf(local); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | static inline int drv_tx_last_beacon(struct ieee80211_local *local) |
| 300 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 301 | int ret = 1; |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 302 | |
| 303 | might_sleep(); |
| 304 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 305 | if (local->ops->tx_last_beacon) |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 306 | ret = local->ops->tx_last_beacon(&local->hw); |
| 307 | trace_drv_tx_last_beacon(local, ret); |
| 308 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | static inline int drv_ampdu_action(struct ieee80211_local *local, |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame] | 312 | struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 313 | enum ieee80211_ampdu_mlme_action action, |
| 314 | struct ieee80211_sta *sta, u16 tid, |
| 315 | u16 *ssn) |
| 316 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 317 | int ret = -EOPNOTSUPP; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 318 | if (local->ops->ampdu_action) |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame] | 319 | ret = local->ops->ampdu_action(&local->hw, &sdata->vif, action, |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 320 | sta, tid, ssn); |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame] | 321 | trace_drv_ampdu_action(local, sdata, action, sta, tid, ssn, ret); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 322 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 323 | } |
Johannes Berg | 1f87f7d | 2009-06-02 13:01:41 +0200 | [diff] [blame] | 324 | |
| 325 | |
| 326 | static inline void drv_rfkill_poll(struct ieee80211_local *local) |
| 327 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 328 | might_sleep(); |
| 329 | |
Johannes Berg | 1f87f7d | 2009-06-02 13:01:41 +0200 | [diff] [blame] | 330 | if (local->ops->rfkill_poll) |
| 331 | local->ops->rfkill_poll(&local->hw); |
| 332 | } |
Johannes Berg | a80f7c0 | 2009-12-23 13:15:32 +0100 | [diff] [blame] | 333 | |
| 334 | static inline void drv_flush(struct ieee80211_local *local, bool drop) |
| 335 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 336 | might_sleep(); |
| 337 | |
Johannes Berg | a80f7c0 | 2009-12-23 13:15:32 +0100 | [diff] [blame] | 338 | trace_drv_flush(local, drop); |
| 339 | if (local->ops->flush) |
| 340 | local->ops->flush(&local->hw, drop); |
| 341 | } |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 342 | #endif /* __MAC80211_DRIVER_OPS */ |