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 | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 15 | int ret = local->ops->start(&local->hw); |
| 16 | trace_drv_start(local, ret); |
| 17 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 18 | } |
| 19 | |
| 20 | static inline void drv_stop(struct ieee80211_local *local) |
| 21 | { |
| 22 | local->ops->stop(&local->hw); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 23 | trace_drv_stop(local); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 24 | } |
| 25 | |
| 26 | static inline int drv_add_interface(struct ieee80211_local *local, |
| 27 | struct ieee80211_if_init_conf *conf) |
| 28 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 29 | 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 Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 32 | } |
| 33 | |
| 34 | static 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 Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 38 | trace_drv_remove_interface(local, conf->mac_addr, conf->vif); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | static inline int drv_config(struct ieee80211_local *local, u32 changed) |
| 42 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 43 | int ret = local->ops->config(&local->hw, changed); |
| 44 | trace_drv_config(local, changed, ret); |
| 45 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 46 | } |
| 47 | |
| 48 | static 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 Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 55 | trace_drv_bss_info_changed(local, vif, info, changed); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 56 | } |
| 57 | |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 58 | static inline u64 drv_prepare_multicast(struct ieee80211_local *local, |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 59 | int mc_count, |
| 60 | struct dev_addr_list *mc_list) |
| 61 | { |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 62 | u64 ret = 0; |
| 63 | |
| 64 | if (local->ops->prepare_multicast) |
| 65 | ret = local->ops->prepare_multicast(&local->hw, mc_count, |
| 66 | mc_list); |
| 67 | |
| 68 | trace_drv_prepare_multicast(local, mc_count, ret); |
| 69 | |
| 70 | return ret; |
| 71 | } |
| 72 | |
| 73 | static inline void drv_configure_filter(struct ieee80211_local *local, |
| 74 | unsigned int changed_flags, |
| 75 | unsigned int *total_flags, |
| 76 | u64 multicast) |
| 77 | { |
| 78 | might_sleep(); |
| 79 | |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 80 | local->ops->configure_filter(&local->hw, changed_flags, total_flags, |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 81 | multicast); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 82 | trace_drv_configure_filter(local, changed_flags, total_flags, |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 83 | multicast); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | static inline int drv_set_tim(struct ieee80211_local *local, |
| 87 | struct ieee80211_sta *sta, bool set) |
| 88 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 89 | int ret = 0; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 90 | if (local->ops->set_tim) |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 91 | ret = local->ops->set_tim(&local->hw, sta, set); |
| 92 | trace_drv_set_tim(local, sta, set, ret); |
| 93 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | static inline int drv_set_key(struct ieee80211_local *local, |
| 97 | enum set_key_cmd cmd, struct ieee80211_vif *vif, |
| 98 | struct ieee80211_sta *sta, |
| 99 | struct ieee80211_key_conf *key) |
| 100 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 101 | int ret = local->ops->set_key(&local->hw, cmd, vif, sta, key); |
| 102 | trace_drv_set_key(local, cmd, vif, sta, key, ret); |
| 103 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | static inline void drv_update_tkip_key(struct ieee80211_local *local, |
| 107 | struct ieee80211_key_conf *conf, |
| 108 | const u8 *address, u32 iv32, |
| 109 | u16 *phase1key) |
| 110 | { |
| 111 | if (local->ops->update_tkip_key) |
| 112 | local->ops->update_tkip_key(&local->hw, conf, address, |
| 113 | iv32, phase1key); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 114 | trace_drv_update_tkip_key(local, conf, address, iv32); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | static inline int drv_hw_scan(struct ieee80211_local *local, |
| 118 | struct cfg80211_scan_request *req) |
| 119 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 120 | int ret = local->ops->hw_scan(&local->hw, req); |
| 121 | trace_drv_hw_scan(local, req, ret); |
| 122 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | static inline void drv_sw_scan_start(struct ieee80211_local *local) |
| 126 | { |
| 127 | if (local->ops->sw_scan_start) |
| 128 | local->ops->sw_scan_start(&local->hw); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 129 | trace_drv_sw_scan_start(local); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | static inline void drv_sw_scan_complete(struct ieee80211_local *local) |
| 133 | { |
| 134 | if (local->ops->sw_scan_complete) |
| 135 | local->ops->sw_scan_complete(&local->hw); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 136 | trace_drv_sw_scan_complete(local); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | static inline int drv_get_stats(struct ieee80211_local *local, |
| 140 | struct ieee80211_low_level_stats *stats) |
| 141 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 142 | int ret = -EOPNOTSUPP; |
| 143 | |
| 144 | if (local->ops->get_stats) |
| 145 | ret = local->ops->get_stats(&local->hw, stats); |
| 146 | trace_drv_get_stats(local, stats, ret); |
| 147 | |
| 148 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | static inline void drv_get_tkip_seq(struct ieee80211_local *local, |
| 152 | u8 hw_key_idx, u32 *iv32, u16 *iv16) |
| 153 | { |
| 154 | if (local->ops->get_tkip_seq) |
| 155 | local->ops->get_tkip_seq(&local->hw, hw_key_idx, iv32, iv16); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 156 | trace_drv_get_tkip_seq(local, hw_key_idx, iv32, iv16); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | static inline int drv_set_rts_threshold(struct ieee80211_local *local, |
| 160 | u32 value) |
| 161 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 162 | int ret = 0; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 163 | if (local->ops->set_rts_threshold) |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 164 | ret = local->ops->set_rts_threshold(&local->hw, value); |
| 165 | trace_drv_set_rts_threshold(local, value, ret); |
| 166 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | static inline void drv_sta_notify(struct ieee80211_local *local, |
| 170 | struct ieee80211_vif *vif, |
| 171 | enum sta_notify_cmd cmd, |
| 172 | struct ieee80211_sta *sta) |
| 173 | { |
| 174 | if (local->ops->sta_notify) |
| 175 | local->ops->sta_notify(&local->hw, vif, cmd, sta); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 176 | trace_drv_sta_notify(local, vif, cmd, sta); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | static inline int drv_conf_tx(struct ieee80211_local *local, u16 queue, |
| 180 | const struct ieee80211_tx_queue_params *params) |
| 181 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 182 | int ret = -EOPNOTSUPP; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 183 | if (local->ops->conf_tx) |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 184 | ret = local->ops->conf_tx(&local->hw, queue, params); |
| 185 | trace_drv_conf_tx(local, queue, params, ret); |
| 186 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | static inline int drv_get_tx_stats(struct ieee80211_local *local, |
| 190 | struct ieee80211_tx_queue_stats *stats) |
| 191 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 192 | int ret = local->ops->get_tx_stats(&local->hw, stats); |
| 193 | trace_drv_get_tx_stats(local, stats, ret); |
| 194 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | static inline u64 drv_get_tsf(struct ieee80211_local *local) |
| 198 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 199 | u64 ret = -1ULL; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 200 | if (local->ops->get_tsf) |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 201 | ret = local->ops->get_tsf(&local->hw); |
| 202 | trace_drv_get_tsf(local, ret); |
| 203 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | static inline void drv_set_tsf(struct ieee80211_local *local, u64 tsf) |
| 207 | { |
| 208 | if (local->ops->set_tsf) |
| 209 | local->ops->set_tsf(&local->hw, tsf); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 210 | trace_drv_set_tsf(local, tsf); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | static inline void drv_reset_tsf(struct ieee80211_local *local) |
| 214 | { |
| 215 | if (local->ops->reset_tsf) |
| 216 | local->ops->reset_tsf(&local->hw); |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 217 | trace_drv_reset_tsf(local); |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | static inline int drv_tx_last_beacon(struct ieee80211_local *local) |
| 221 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 222 | int ret = 1; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 223 | if (local->ops->tx_last_beacon) |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 224 | ret = local->ops->tx_last_beacon(&local->hw); |
| 225 | trace_drv_tx_last_beacon(local, ret); |
| 226 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | static inline int drv_ampdu_action(struct ieee80211_local *local, |
| 230 | enum ieee80211_ampdu_mlme_action action, |
| 231 | struct ieee80211_sta *sta, u16 tid, |
| 232 | u16 *ssn) |
| 233 | { |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 234 | int ret = -EOPNOTSUPP; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 235 | if (local->ops->ampdu_action) |
Johannes Berg | 0a2b8bb | 2009-07-07 13:46:22 +0200 | [diff] [blame] | 236 | ret = local->ops->ampdu_action(&local->hw, action, |
| 237 | sta, tid, ssn); |
| 238 | trace_drv_ampdu_action(local, action, sta, tid, ssn, ret); |
| 239 | return ret; |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 240 | } |
Johannes Berg | 1f87f7d | 2009-06-02 13:01:41 +0200 | [diff] [blame] | 241 | |
| 242 | |
| 243 | static inline void drv_rfkill_poll(struct ieee80211_local *local) |
| 244 | { |
| 245 | if (local->ops->rfkill_poll) |
| 246 | local->ops->rfkill_poll(&local->hw); |
| 247 | } |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 248 | #endif /* __MAC80211_DRIVER_OPS */ |