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, |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 87 | struct netdev_hw_addr_list *mc_list) |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 88 | { |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 89 | u64 ret = 0; |
| 90 | |
| 91 | if (local->ops->prepare_multicast) |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 92 | ret = local->ops->prepare_multicast(&local->hw, mc_list); |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 93 | |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 94 | trace_drv_prepare_multicast(local, mc_list->count, ret); |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 95 | |
| 96 | return ret; |
| 97 | } |
| 98 | |
| 99 | static inline void drv_configure_filter(struct ieee80211_local *local, |
| 100 | unsigned int changed_flags, |
| 101 | unsigned int *total_flags, |
| 102 | u64 multicast) |
| 103 | { |
| 104 | might_sleep(); |
| 105 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 106 | local->ops->configure_filter(&local->hw, changed_flags, total_flags, |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 107 | multicast); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 108 | trace_drv_configure_filter(local, changed_flags, total_flags, |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 109 | multicast); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 110 | } |
| 111 | |
| 112 | static inline int drv_set_tim(struct ieee80211_local *local, |
| 113 | struct ieee80211_sta *sta, bool set) |
| 114 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 115 | int ret = 0; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 116 | if (local->ops->set_tim) |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 117 | ret = local->ops->set_tim(&local->hw, sta, set); |
| 118 | trace_drv_set_tim(local, sta, set, ret); |
| 119 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | static inline int drv_set_key(struct ieee80211_local *local, |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame] | 123 | enum set_key_cmd cmd, |
| 124 | struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 125 | struct ieee80211_sta *sta, |
| 126 | struct ieee80211_key_conf *key) |
| 127 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 128 | int ret; |
| 129 | |
| 130 | might_sleep(); |
| 131 | |
| 132 | ret = local->ops->set_key(&local->hw, cmd, &sdata->vif, sta, key); |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame] | 133 | trace_drv_set_key(local, cmd, sdata, sta, key, ret); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 134 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | static inline void drv_update_tkip_key(struct ieee80211_local *local, |
Johannes Berg | b3fbdcf | 2010-01-21 11:40:47 +0100 | [diff] [blame] | 138 | struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 139 | struct ieee80211_key_conf *conf, |
Johannes Berg | b3fbdcf | 2010-01-21 11:40:47 +0100 | [diff] [blame] | 140 | struct sta_info *sta, u32 iv32, |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 141 | u16 *phase1key) |
| 142 | { |
Johannes Berg | b3fbdcf | 2010-01-21 11:40:47 +0100 | [diff] [blame] | 143 | struct ieee80211_sta *ista = NULL; |
| 144 | |
Johannes Berg | b3fbdcf | 2010-01-21 11:40:47 +0100 | [diff] [blame] | 145 | if (sta) |
| 146 | ista = &sta->sta; |
| 147 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 148 | if (local->ops->update_tkip_key) |
Johannes Berg | b3fbdcf | 2010-01-21 11:40:47 +0100 | [diff] [blame] | 149 | local->ops->update_tkip_key(&local->hw, &sdata->vif, conf, |
| 150 | ista, iv32, phase1key); |
| 151 | trace_drv_update_tkip_key(local, sdata, conf, ista, iv32); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 152 | } |
| 153 | |
| 154 | static inline int drv_hw_scan(struct ieee80211_local *local, |
Johannes Berg | a060bbf | 2010-04-27 11:59:34 +0200 | [diff] [blame] | 155 | struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 156 | struct cfg80211_scan_request *req) |
| 157 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 158 | int ret; |
| 159 | |
| 160 | might_sleep(); |
| 161 | |
Johannes Berg | a060bbf | 2010-04-27 11:59:34 +0200 | [diff] [blame] | 162 | ret = local->ops->hw_scan(&local->hw, &sdata->vif, req); |
| 163 | trace_drv_hw_scan(local, sdata, req, ret); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 164 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 165 | } |
| 166 | |
| 167 | static inline void drv_sw_scan_start(struct ieee80211_local *local) |
| 168 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 169 | might_sleep(); |
| 170 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 171 | if (local->ops->sw_scan_start) |
| 172 | local->ops->sw_scan_start(&local->hw); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 173 | trace_drv_sw_scan_start(local); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | static inline void drv_sw_scan_complete(struct ieee80211_local *local) |
| 177 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 178 | might_sleep(); |
| 179 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 180 | if (local->ops->sw_scan_complete) |
| 181 | local->ops->sw_scan_complete(&local->hw); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 182 | trace_drv_sw_scan_complete(local); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | static inline int drv_get_stats(struct ieee80211_local *local, |
| 186 | struct ieee80211_low_level_stats *stats) |
| 187 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 188 | int ret = -EOPNOTSUPP; |
| 189 | |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 190 | might_sleep(); |
| 191 | |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 192 | if (local->ops->get_stats) |
| 193 | ret = local->ops->get_stats(&local->hw, stats); |
| 194 | trace_drv_get_stats(local, stats, ret); |
| 195 | |
| 196 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | static inline void drv_get_tkip_seq(struct ieee80211_local *local, |
| 200 | u8 hw_key_idx, u32 *iv32, u16 *iv16) |
| 201 | { |
| 202 | if (local->ops->get_tkip_seq) |
| 203 | local->ops->get_tkip_seq(&local->hw, hw_key_idx, iv32, iv16); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 204 | trace_drv_get_tkip_seq(local, hw_key_idx, iv32, iv16); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | static inline int drv_set_rts_threshold(struct ieee80211_local *local, |
| 208 | u32 value) |
| 209 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 210 | int ret = 0; |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 211 | |
| 212 | might_sleep(); |
| 213 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 214 | if (local->ops->set_rts_threshold) |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 215 | ret = local->ops->set_rts_threshold(&local->hw, value); |
| 216 | trace_drv_set_rts_threshold(local, value, ret); |
| 217 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 218 | } |
| 219 | |
Lukáš Turek | 310bc67 | 2009-12-21 22:50:48 +0100 | [diff] [blame] | 220 | static inline int drv_set_coverage_class(struct ieee80211_local *local, |
| 221 | u8 value) |
| 222 | { |
| 223 | int ret = 0; |
| 224 | might_sleep(); |
| 225 | |
| 226 | if (local->ops->set_coverage_class) |
| 227 | local->ops->set_coverage_class(&local->hw, value); |
| 228 | else |
| 229 | ret = -EOPNOTSUPP; |
| 230 | |
| 231 | trace_drv_set_coverage_class(local, value, ret); |
| 232 | return ret; |
| 233 | } |
| 234 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 235 | static inline void drv_sta_notify(struct ieee80211_local *local, |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame] | 236 | struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 237 | enum sta_notify_cmd cmd, |
| 238 | struct ieee80211_sta *sta) |
| 239 | { |
| 240 | if (local->ops->sta_notify) |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame] | 241 | local->ops->sta_notify(&local->hw, &sdata->vif, cmd, sta); |
| 242 | trace_drv_sta_notify(local, sdata, cmd, sta); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 243 | } |
| 244 | |
Johannes Berg | 34e8950 | 2010-02-03 13:59:58 +0100 | [diff] [blame] | 245 | static inline int drv_sta_add(struct ieee80211_local *local, |
| 246 | struct ieee80211_sub_if_data *sdata, |
| 247 | struct ieee80211_sta *sta) |
| 248 | { |
| 249 | int ret = 0; |
| 250 | |
| 251 | might_sleep(); |
| 252 | |
| 253 | if (local->ops->sta_add) |
| 254 | ret = local->ops->sta_add(&local->hw, &sdata->vif, sta); |
| 255 | else if (local->ops->sta_notify) |
| 256 | local->ops->sta_notify(&local->hw, &sdata->vif, |
| 257 | STA_NOTIFY_ADD, sta); |
| 258 | |
| 259 | trace_drv_sta_add(local, sdata, sta, ret); |
| 260 | |
| 261 | return ret; |
| 262 | } |
| 263 | |
| 264 | static inline void drv_sta_remove(struct ieee80211_local *local, |
| 265 | struct ieee80211_sub_if_data *sdata, |
| 266 | struct ieee80211_sta *sta) |
| 267 | { |
| 268 | might_sleep(); |
| 269 | |
| 270 | if (local->ops->sta_remove) |
| 271 | local->ops->sta_remove(&local->hw, &sdata->vif, sta); |
| 272 | else if (local->ops->sta_notify) |
| 273 | local->ops->sta_notify(&local->hw, &sdata->vif, |
| 274 | STA_NOTIFY_REMOVE, sta); |
| 275 | |
| 276 | trace_drv_sta_remove(local, sdata, sta); |
| 277 | } |
| 278 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 279 | static inline int drv_conf_tx(struct ieee80211_local *local, u16 queue, |
| 280 | const struct ieee80211_tx_queue_params *params) |
| 281 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 282 | int ret = -EOPNOTSUPP; |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 283 | |
| 284 | might_sleep(); |
| 285 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 286 | if (local->ops->conf_tx) |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 287 | ret = local->ops->conf_tx(&local->hw, queue, params); |
| 288 | trace_drv_conf_tx(local, queue, params, ret); |
| 289 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 290 | } |
| 291 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 292 | static inline u64 drv_get_tsf(struct ieee80211_local *local) |
| 293 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 294 | u64 ret = -1ULL; |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 295 | |
| 296 | might_sleep(); |
| 297 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 298 | if (local->ops->get_tsf) |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 299 | ret = local->ops->get_tsf(&local->hw); |
| 300 | trace_drv_get_tsf(local, ret); |
| 301 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | static inline void drv_set_tsf(struct ieee80211_local *local, u64 tsf) |
| 305 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 306 | might_sleep(); |
| 307 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 308 | if (local->ops->set_tsf) |
| 309 | local->ops->set_tsf(&local->hw, tsf); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 310 | trace_drv_set_tsf(local, tsf); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | static inline void drv_reset_tsf(struct ieee80211_local *local) |
| 314 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 315 | might_sleep(); |
| 316 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 317 | if (local->ops->reset_tsf) |
| 318 | local->ops->reset_tsf(&local->hw); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 319 | trace_drv_reset_tsf(local); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 320 | } |
| 321 | |
| 322 | static inline int drv_tx_last_beacon(struct ieee80211_local *local) |
| 323 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 324 | int ret = 1; |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 325 | |
| 326 | might_sleep(); |
| 327 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 328 | if (local->ops->tx_last_beacon) |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 329 | ret = local->ops->tx_last_beacon(&local->hw); |
| 330 | trace_drv_tx_last_beacon(local, ret); |
| 331 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 332 | } |
| 333 | |
| 334 | static inline int drv_ampdu_action(struct ieee80211_local *local, |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame] | 335 | struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 336 | enum ieee80211_ampdu_mlme_action action, |
| 337 | struct ieee80211_sta *sta, u16 tid, |
| 338 | u16 *ssn) |
| 339 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 340 | int ret = -EOPNOTSUPP; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 341 | if (local->ops->ampdu_action) |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame] | 342 | ret = local->ops->ampdu_action(&local->hw, &sdata->vif, action, |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 343 | sta, tid, ssn); |
Johannes Berg | 12375ef | 2009-11-25 20:30:31 +0100 | [diff] [blame] | 344 | trace_drv_ampdu_action(local, sdata, action, sta, tid, ssn, ret); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 345 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 346 | } |
Johannes Berg | 1f87f7d | 2009-06-02 13:01:41 +0200 | [diff] [blame] | 347 | |
Holger Schurig | 1289723 | 2010-04-19 10:23:57 +0200 | [diff] [blame] | 348 | static inline int drv_get_survey(struct ieee80211_local *local, int idx, |
| 349 | struct survey_info *survey) |
| 350 | { |
| 351 | int ret = -EOPNOTSUPP; |
Holger Schurig | 35dd050 | 2010-06-07 16:33:49 +0200 | [diff] [blame] | 352 | if (local->ops->get_survey) |
Holger Schurig | 1289723 | 2010-04-19 10:23:57 +0200 | [diff] [blame] | 353 | ret = local->ops->get_survey(&local->hw, idx, survey); |
| 354 | /* trace_drv_get_survey(local, idx, survey, ret); */ |
| 355 | return ret; |
| 356 | } |
Johannes Berg | 1f87f7d | 2009-06-02 13:01:41 +0200 | [diff] [blame] | 357 | |
| 358 | static inline void drv_rfkill_poll(struct ieee80211_local *local) |
| 359 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 360 | might_sleep(); |
| 361 | |
Johannes Berg | 1f87f7d | 2009-06-02 13:01:41 +0200 | [diff] [blame] | 362 | if (local->ops->rfkill_poll) |
| 363 | local->ops->rfkill_poll(&local->hw); |
| 364 | } |
Johannes Berg | a80f7c0 | 2009-12-23 13:15:32 +0100 | [diff] [blame] | 365 | |
| 366 | static inline void drv_flush(struct ieee80211_local *local, bool drop) |
| 367 | { |
Kalle Valo | e1781ed | 2009-12-23 13:15:47 +0100 | [diff] [blame] | 368 | might_sleep(); |
| 369 | |
Johannes Berg | a80f7c0 | 2009-12-23 13:15:32 +0100 | [diff] [blame] | 370 | trace_drv_flush(local, drop); |
| 371 | if (local->ops->flush) |
| 372 | local->ops->flush(&local->hw, drop); |
| 373 | } |
Johannes Berg | 5ce6e43 | 2010-05-11 16:20:57 +0200 | [diff] [blame] | 374 | |
| 375 | static inline void drv_channel_switch(struct ieee80211_local *local, |
| 376 | struct ieee80211_channel_switch *ch_switch) |
| 377 | { |
| 378 | might_sleep(); |
| 379 | |
| 380 | local->ops->channel_switch(&local->hw, ch_switch); |
| 381 | |
| 382 | trace_drv_channel_switch(local, ch_switch); |
| 383 | } |
| 384 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 385 | #endif /* __MAC80211_DRIVER_OPS */ |