Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 1 | /*- |
| 2 | * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting |
| 3 | * Copyright (c) 2004-2005 Atheros Communications, Inc. |
| 4 | * Copyright (c) 2006 Devicescape Software, Inc. |
| 5 | * Copyright (c) 2007 Jiri Slaby <jirislaby@gmail.com> |
| 6 | * Copyright (c) 2007 Luis R. Rodriguez <mcgrof@winlab.rutgers.edu> |
| 7 | * Copyright (c) 2010 Bruno Randolf <br1@einfach.org> |
| 8 | * |
| 9 | * All rights reserved. |
| 10 | * |
| 11 | * Redistribution and use in source and binary forms, with or without |
| 12 | * modification, are permitted provided that the following conditions |
| 13 | * are met: |
| 14 | * 1. Redistributions of source code must retain the above copyright |
| 15 | * notice, this list of conditions and the following disclaimer, |
| 16 | * without modification. |
| 17 | * 2. Redistributions in binary form must reproduce at minimum a disclaimer |
| 18 | * similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any |
| 19 | * redistribution must be conditioned upon including a substantially |
| 20 | * similar Disclaimer requirement for further binary redistribution. |
| 21 | * 3. Neither the names of the above-listed copyright holders nor the names |
| 22 | * of any contributors may be used to endorse or promote products derived |
| 23 | * from this software without specific prior written permission. |
| 24 | * |
| 25 | * Alternatively, this software may be distributed under the terms of the |
| 26 | * GNU General Public License ("GPL") version 2 as published by the Free |
| 27 | * Software Foundation. |
| 28 | * |
| 29 | * NO WARRANTY |
| 30 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 31 | * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 32 | * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY |
| 33 | * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 34 | * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, |
| 35 | * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 36 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 37 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER |
| 38 | * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 39 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| 40 | * THE POSSIBILITY OF SUCH DAMAGES. |
| 41 | * |
| 42 | */ |
| 43 | |
Joe Perches | 516304b | 2012-03-18 17:30:52 -0700 | [diff] [blame] | 44 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 45 | |
Pavel Roskin | 931be26 | 2011-07-26 22:26:59 -0400 | [diff] [blame] | 46 | #include <net/mac80211.h> |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 47 | #include <asm/unaligned.h> |
| 48 | |
Pavel Roskin | 931be26 | 2011-07-26 22:26:59 -0400 | [diff] [blame] | 49 | #include "ath5k.h" |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 50 | #include "base.h" |
| 51 | #include "reg.h" |
| 52 | |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 53 | /********************\ |
| 54 | * Mac80211 functions * |
| 55 | \********************/ |
| 56 | |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 57 | static void |
Thomas Huehn | 36323f8 | 2012-07-23 21:33:42 +0200 | [diff] [blame^] | 58 | ath5k_tx(struct ieee80211_hw *hw, struct ieee80211_tx_control *control, |
| 59 | struct sk_buff *skb) |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 60 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 61 | struct ath5k_hw *ah = hw->priv; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 62 | u16 qnum = skb_get_queue_mapping(skb); |
| 63 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 64 | if (WARN_ON(qnum >= ah->ah_capabilities.cap_queues.q_tx_num)) { |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 65 | dev_kfree_skb_any(skb); |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 66 | return; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 67 | } |
| 68 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 69 | ath5k_tx_queue(hw, skb, &ah->txqs[qnum]); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | |
| 73 | static int |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 74 | ath5k_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif) |
| 75 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 76 | struct ath5k_hw *ah = hw->priv; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 77 | int ret; |
| 78 | struct ath5k_vif *avf = (void *)vif->drv_priv; |
| 79 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 80 | mutex_lock(&ah->lock); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 81 | |
| 82 | if ((vif->type == NL80211_IFTYPE_AP || |
| 83 | vif->type == NL80211_IFTYPE_ADHOC) |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 84 | && (ah->num_ap_vifs + ah->num_adhoc_vifs) >= ATH_BCBUF) { |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 85 | ret = -ELNRNG; |
| 86 | goto end; |
| 87 | } |
| 88 | |
| 89 | /* Don't allow other interfaces if one ad-hoc is configured. |
| 90 | * TODO: Fix the problems with ad-hoc and multiple other interfaces. |
| 91 | * We would need to operate the HW in ad-hoc mode to allow TSF updates |
| 92 | * for the IBSS, but this breaks with additional AP or STA interfaces |
| 93 | * at the moment. */ |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 94 | if (ah->num_adhoc_vifs || |
| 95 | (ah->nvifs && vif->type == NL80211_IFTYPE_ADHOC)) { |
| 96 | ATH5K_ERR(ah, "Only one single ad-hoc interface is allowed.\n"); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 97 | ret = -ELNRNG; |
| 98 | goto end; |
| 99 | } |
| 100 | |
| 101 | switch (vif->type) { |
| 102 | case NL80211_IFTYPE_AP: |
| 103 | case NL80211_IFTYPE_STATION: |
| 104 | case NL80211_IFTYPE_ADHOC: |
| 105 | case NL80211_IFTYPE_MESH_POINT: |
| 106 | avf->opmode = vif->type; |
| 107 | break; |
| 108 | default: |
| 109 | ret = -EOPNOTSUPP; |
| 110 | goto end; |
| 111 | } |
| 112 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 113 | ah->nvifs++; |
| 114 | ATH5K_DBG(ah, ATH5K_DEBUG_MODE, "add interface mode %d\n", avf->opmode); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 115 | |
| 116 | /* Assign the vap/adhoc to a beacon xmit slot. */ |
| 117 | if ((avf->opmode == NL80211_IFTYPE_AP) || |
| 118 | (avf->opmode == NL80211_IFTYPE_ADHOC) || |
| 119 | (avf->opmode == NL80211_IFTYPE_MESH_POINT)) { |
| 120 | int slot; |
| 121 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 122 | WARN_ON(list_empty(&ah->bcbuf)); |
| 123 | avf->bbuf = list_first_entry(&ah->bcbuf, struct ath5k_buf, |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 124 | list); |
| 125 | list_del(&avf->bbuf->list); |
| 126 | |
| 127 | avf->bslot = 0; |
| 128 | for (slot = 0; slot < ATH_BCBUF; slot++) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 129 | if (!ah->bslot[slot]) { |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 130 | avf->bslot = slot; |
| 131 | break; |
| 132 | } |
| 133 | } |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 134 | BUG_ON(ah->bslot[avf->bslot] != NULL); |
| 135 | ah->bslot[avf->bslot] = vif; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 136 | if (avf->opmode == NL80211_IFTYPE_AP) |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 137 | ah->num_ap_vifs++; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 138 | else if (avf->opmode == NL80211_IFTYPE_ADHOC) |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 139 | ah->num_adhoc_vifs++; |
Chun-Yeow Yeoh | da473b6 | 2012-03-03 09:48:56 +0800 | [diff] [blame] | 140 | else if (avf->opmode == NL80211_IFTYPE_MESH_POINT) |
| 141 | ah->num_mesh_vifs++; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | /* Any MAC address is fine, all others are included through the |
| 145 | * filter. |
| 146 | */ |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 147 | ath5k_hw_set_lladdr(ah, vif->addr); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 148 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 149 | ath5k_update_bssid_mask_and_opmode(ah, vif); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 150 | ret = 0; |
| 151 | end: |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 152 | mutex_unlock(&ah->lock); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 153 | return ret; |
| 154 | } |
| 155 | |
| 156 | |
| 157 | static void |
| 158 | ath5k_remove_interface(struct ieee80211_hw *hw, |
| 159 | struct ieee80211_vif *vif) |
| 160 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 161 | struct ath5k_hw *ah = hw->priv; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 162 | struct ath5k_vif *avf = (void *)vif->drv_priv; |
| 163 | unsigned int i; |
| 164 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 165 | mutex_lock(&ah->lock); |
| 166 | ah->nvifs--; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 167 | |
| 168 | if (avf->bbuf) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 169 | ath5k_txbuf_free_skb(ah, avf->bbuf); |
| 170 | list_add_tail(&avf->bbuf->list, &ah->bcbuf); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 171 | for (i = 0; i < ATH_BCBUF; i++) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 172 | if (ah->bslot[i] == vif) { |
| 173 | ah->bslot[i] = NULL; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 174 | break; |
| 175 | } |
| 176 | } |
| 177 | avf->bbuf = NULL; |
| 178 | } |
| 179 | if (avf->opmode == NL80211_IFTYPE_AP) |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 180 | ah->num_ap_vifs--; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 181 | else if (avf->opmode == NL80211_IFTYPE_ADHOC) |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 182 | ah->num_adhoc_vifs--; |
Chun-Yeow Yeoh | da473b6 | 2012-03-03 09:48:56 +0800 | [diff] [blame] | 183 | else if (avf->opmode == NL80211_IFTYPE_MESH_POINT) |
| 184 | ah->num_mesh_vifs--; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 185 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 186 | ath5k_update_bssid_mask_and_opmode(ah, NULL); |
| 187 | mutex_unlock(&ah->lock); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | |
| 191 | /* |
| 192 | * TODO: Phy disable/diversity etc |
| 193 | */ |
| 194 | static int |
| 195 | ath5k_config(struct ieee80211_hw *hw, u32 changed) |
| 196 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 197 | struct ath5k_hw *ah = hw->priv; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 198 | struct ieee80211_conf *conf = &hw->conf; |
| 199 | int ret = 0; |
Bruno Randolf | 76a9f6f | 2011-01-28 16:52:11 +0900 | [diff] [blame] | 200 | int i; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 201 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 202 | mutex_lock(&ah->lock); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 203 | |
| 204 | if (changed & IEEE80211_CONF_CHANGE_CHANNEL) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 205 | ret = ath5k_chan_set(ah, conf->channel); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 206 | if (ret < 0) |
| 207 | goto unlock; |
| 208 | } |
| 209 | |
| 210 | if ((changed & IEEE80211_CONF_CHANGE_POWER) && |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 211 | (ah->power_level != conf->power_level)) { |
| 212 | ah->power_level = conf->power_level; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 213 | |
| 214 | /* Half dB steps */ |
| 215 | ath5k_hw_set_txpower_limit(ah, (conf->power_level * 2)); |
| 216 | } |
| 217 | |
Bruno Randolf | 76a9f6f | 2011-01-28 16:52:11 +0900 | [diff] [blame] | 218 | if (changed & IEEE80211_CONF_CHANGE_RETRY_LIMITS) { |
| 219 | ah->ah_retry_long = conf->long_frame_max_tx_count; |
| 220 | ah->ah_retry_short = conf->short_frame_max_tx_count; |
| 221 | |
| 222 | for (i = 0; i < ah->ah_capabilities.cap_queues.q_tx_num; i++) |
| 223 | ath5k_hw_set_tx_retry_limits(ah, i); |
| 224 | } |
| 225 | |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 226 | /* TODO: |
| 227 | * 1) Move this on config_interface and handle each case |
| 228 | * separately eg. when we have only one STA vif, use |
| 229 | * AR5K_ANTMODE_SINGLE_AP |
| 230 | * |
| 231 | * 2) Allow the user to change antenna mode eg. when only |
| 232 | * one antenna is present |
| 233 | * |
| 234 | * 3) Allow the user to set default/tx antenna when possible |
| 235 | * |
| 236 | * 4) Default mode should handle 90% of the cases, together |
| 237 | * with fixed a/b and single AP modes we should be able to |
| 238 | * handle 99%. Sectored modes are extreme cases and i still |
| 239 | * haven't found a usage for them. If we decide to support them, |
| 240 | * then we must allow the user to set how many tx antennas we |
| 241 | * have available |
| 242 | */ |
| 243 | ath5k_hw_set_antenna_mode(ah, ah->ah_ant_mode); |
| 244 | |
| 245 | unlock: |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 246 | mutex_unlock(&ah->lock); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 247 | return ret; |
| 248 | } |
| 249 | |
| 250 | |
| 251 | static void |
| 252 | ath5k_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif, |
| 253 | struct ieee80211_bss_conf *bss_conf, u32 changes) |
| 254 | { |
| 255 | struct ath5k_vif *avf = (void *)vif->drv_priv; |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 256 | struct ath5k_hw *ah = hw->priv; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 257 | struct ath_common *common = ath5k_hw_common(ah); |
| 258 | unsigned long flags; |
| 259 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 260 | mutex_lock(&ah->lock); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 261 | |
| 262 | if (changes & BSS_CHANGED_BSSID) { |
| 263 | /* Cache for later use during resets */ |
| 264 | memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN); |
| 265 | common->curaid = 0; |
| 266 | ath5k_hw_set_bssid(ah); |
| 267 | mmiowb(); |
| 268 | } |
| 269 | |
| 270 | if (changes & BSS_CHANGED_BEACON_INT) |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 271 | ah->bintval = bss_conf->beacon_int; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 272 | |
Felix Fietkau | b1ad1b6 | 2011-04-09 23:10:21 +0200 | [diff] [blame] | 273 | if (changes & BSS_CHANGED_ERP_SLOT) { |
| 274 | int slot_time; |
| 275 | |
| 276 | ah->ah_short_slot = bss_conf->use_short_slot; |
| 277 | slot_time = ath5k_hw_get_default_slottime(ah) + |
| 278 | 3 * ah->ah_coverage_class; |
| 279 | ath5k_hw_set_ifs_intervals(ah, slot_time); |
| 280 | } |
| 281 | |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 282 | if (changes & BSS_CHANGED_ASSOC) { |
| 283 | avf->assoc = bss_conf->assoc; |
| 284 | if (bss_conf->assoc) |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 285 | ah->assoc = bss_conf->assoc; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 286 | else |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 287 | ah->assoc = ath5k_any_vif_assoc(ah); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 288 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 289 | if (ah->opmode == NL80211_IFTYPE_STATION) |
| 290 | ath5k_set_beacon_filter(hw, ah->assoc); |
| 291 | ath5k_hw_set_ledstate(ah, ah->assoc ? |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 292 | AR5K_LED_ASSOC : AR5K_LED_INIT); |
| 293 | if (bss_conf->assoc) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 294 | ATH5K_DBG(ah, ATH5K_DEBUG_ANY, |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 295 | "Bss Info ASSOC %d, bssid: %pM\n", |
| 296 | bss_conf->aid, common->curbssid); |
| 297 | common->curaid = bss_conf->aid; |
| 298 | ath5k_hw_set_bssid(ah); |
| 299 | /* Once ANI is available you would start it here */ |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | if (changes & BSS_CHANGED_BEACON) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 304 | spin_lock_irqsave(&ah->block, flags); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 305 | ath5k_beacon_update(hw, vif); |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 306 | spin_unlock_irqrestore(&ah->block, flags); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 307 | } |
| 308 | |
| 309 | if (changes & BSS_CHANGED_BEACON_ENABLED) |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 310 | ah->enable_beacon = bss_conf->enable_beacon; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 311 | |
| 312 | if (changes & (BSS_CHANGED_BEACON | BSS_CHANGED_BEACON_ENABLED | |
| 313 | BSS_CHANGED_BEACON_INT)) |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 314 | ath5k_beacon_config(ah); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 315 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 316 | mutex_unlock(&ah->lock); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | |
| 320 | static u64 |
| 321 | ath5k_prepare_multicast(struct ieee80211_hw *hw, |
| 322 | struct netdev_hw_addr_list *mc_list) |
| 323 | { |
| 324 | u32 mfilt[2], val; |
| 325 | u8 pos; |
| 326 | struct netdev_hw_addr *ha; |
| 327 | |
| 328 | mfilt[0] = 0; |
| 329 | mfilt[1] = 1; |
| 330 | |
| 331 | netdev_hw_addr_list_for_each(ha, mc_list) { |
| 332 | /* calculate XOR of eight 6-bit values */ |
| 333 | val = get_unaligned_le32(ha->addr + 0); |
| 334 | pos = (val >> 18) ^ (val >> 12) ^ (val >> 6) ^ val; |
| 335 | val = get_unaligned_le32(ha->addr + 3); |
| 336 | pos ^= (val >> 18) ^ (val >> 12) ^ (val >> 6) ^ val; |
| 337 | pos &= 0x3f; |
| 338 | mfilt[pos / 32] |= (1 << (pos % 32)); |
| 339 | /* XXX: we might be able to just do this instead, |
| 340 | * but not sure, needs testing, if we do use this we'd |
Pavel Roskin | 6a2a0e7 | 2011-07-09 00:17:51 -0400 | [diff] [blame] | 341 | * need to inform below not to reset the mcast */ |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 342 | /* ath5k_hw_set_mcast_filterindex(ah, |
| 343 | * ha->addr[5]); */ |
| 344 | } |
| 345 | |
| 346 | return ((u64)(mfilt[1]) << 32) | mfilt[0]; |
| 347 | } |
| 348 | |
| 349 | |
| 350 | /* |
| 351 | * o always accept unicast, broadcast, and multicast traffic |
| 352 | * o multicast traffic for all BSSIDs will be enabled if mac80211 |
| 353 | * says it should be |
| 354 | * o maintain current state of phy ofdm or phy cck error reception. |
| 355 | * If the hardware detects any of these type of errors then |
| 356 | * ath5k_hw_get_rx_filter() will pass to us the respective |
| 357 | * hardware filters to be able to receive these type of frames. |
| 358 | * o probe request frames are accepted only when operating in |
| 359 | * hostap, adhoc, or monitor modes |
| 360 | * o enable promiscuous mode according to the interface state |
| 361 | * o accept beacons: |
| 362 | * - when operating in adhoc mode so the 802.11 layer creates |
| 363 | * node table entries for peers, |
| 364 | * - when operating in station mode for collecting rssi data when |
| 365 | * the station is otherwise quiet, or |
| 366 | * - when scanning |
| 367 | */ |
| 368 | static void |
| 369 | ath5k_configure_filter(struct ieee80211_hw *hw, unsigned int changed_flags, |
| 370 | unsigned int *new_flags, u64 multicast) |
| 371 | { |
| 372 | #define SUPPORTED_FIF_FLAGS \ |
| 373 | (FIF_PROMISC_IN_BSS | FIF_ALLMULTI | FIF_FCSFAIL | \ |
| 374 | FIF_PLCPFAIL | FIF_CONTROL | FIF_OTHER_BSS | \ |
| 375 | FIF_BCN_PRBRESP_PROMISC) |
| 376 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 377 | struct ath5k_hw *ah = hw->priv; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 378 | u32 mfilt[2], rfilt; |
Ben Greear | e4b0b32 | 2011-03-03 14:39:05 -0800 | [diff] [blame] | 379 | struct ath5k_vif_iter_data iter_data; /* to count STA interfaces */ |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 380 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 381 | mutex_lock(&ah->lock); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 382 | |
| 383 | mfilt[0] = multicast; |
| 384 | mfilt[1] = multicast >> 32; |
| 385 | |
| 386 | /* Only deal with supported flags */ |
| 387 | changed_flags &= SUPPORTED_FIF_FLAGS; |
| 388 | *new_flags &= SUPPORTED_FIF_FLAGS; |
| 389 | |
| 390 | /* If HW detects any phy or radar errors, leave those filters on. |
| 391 | * Also, always enable Unicast, Broadcasts and Multicast |
| 392 | * XXX: move unicast, bssid broadcasts and multicast to mac80211 */ |
| 393 | rfilt = (ath5k_hw_get_rx_filter(ah) & (AR5K_RX_FILTER_PHYERR)) | |
| 394 | (AR5K_RX_FILTER_UCAST | AR5K_RX_FILTER_BCAST | |
| 395 | AR5K_RX_FILTER_MCAST); |
| 396 | |
| 397 | if (changed_flags & (FIF_PROMISC_IN_BSS | FIF_OTHER_BSS)) { |
| 398 | if (*new_flags & FIF_PROMISC_IN_BSS) |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 399 | __set_bit(ATH_STAT_PROMISC, ah->status); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 400 | else |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 401 | __clear_bit(ATH_STAT_PROMISC, ah->status); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 402 | } |
| 403 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 404 | if (test_bit(ATH_STAT_PROMISC, ah->status)) |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 405 | rfilt |= AR5K_RX_FILTER_PROM; |
| 406 | |
| 407 | /* Note, AR5K_RX_FILTER_MCAST is already enabled */ |
| 408 | if (*new_flags & FIF_ALLMULTI) { |
| 409 | mfilt[0] = ~0; |
| 410 | mfilt[1] = ~0; |
| 411 | } |
| 412 | |
| 413 | /* This is the best we can do */ |
| 414 | if (*new_flags & (FIF_FCSFAIL | FIF_PLCPFAIL)) |
| 415 | rfilt |= AR5K_RX_FILTER_PHYERR; |
| 416 | |
| 417 | /* FIF_BCN_PRBRESP_PROMISC really means to enable beacons |
| 418 | * and probes for any BSSID */ |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 419 | if ((*new_flags & FIF_BCN_PRBRESP_PROMISC) || (ah->nvifs > 1)) |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 420 | rfilt |= AR5K_RX_FILTER_BEACON; |
| 421 | |
| 422 | /* FIF_CONTROL doc says that if FIF_PROMISC_IN_BSS is not |
| 423 | * set we should only pass on control frames for this |
| 424 | * station. This needs testing. I believe right now this |
| 425 | * enables *all* control frames, which is OK.. but |
| 426 | * but we should see if we can improve on granularity */ |
| 427 | if (*new_flags & FIF_CONTROL) |
| 428 | rfilt |= AR5K_RX_FILTER_CONTROL; |
| 429 | |
| 430 | /* Additional settings per mode -- this is per ath5k */ |
| 431 | |
| 432 | /* XXX move these to mac80211, and add a beacon IFF flag to mac80211 */ |
| 433 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 434 | switch (ah->opmode) { |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 435 | case NL80211_IFTYPE_MESH_POINT: |
| 436 | rfilt |= AR5K_RX_FILTER_CONTROL | |
| 437 | AR5K_RX_FILTER_BEACON | |
| 438 | AR5K_RX_FILTER_PROBEREQ | |
| 439 | AR5K_RX_FILTER_PROM; |
| 440 | break; |
| 441 | case NL80211_IFTYPE_AP: |
| 442 | case NL80211_IFTYPE_ADHOC: |
| 443 | rfilt |= AR5K_RX_FILTER_PROBEREQ | |
| 444 | AR5K_RX_FILTER_BEACON; |
| 445 | break; |
| 446 | case NL80211_IFTYPE_STATION: |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 447 | if (ah->assoc) |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 448 | rfilt |= AR5K_RX_FILTER_BEACON; |
| 449 | default: |
| 450 | break; |
| 451 | } |
| 452 | |
Ben Greear | e4b0b32 | 2011-03-03 14:39:05 -0800 | [diff] [blame] | 453 | iter_data.hw_macaddr = NULL; |
| 454 | iter_data.n_stas = 0; |
| 455 | iter_data.need_set_hw_addr = false; |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 456 | ieee80211_iterate_active_interfaces_atomic(ah->hw, ath5k_vif_iter, |
Ben Greear | e4b0b32 | 2011-03-03 14:39:05 -0800 | [diff] [blame] | 457 | &iter_data); |
| 458 | |
| 459 | /* Set up RX Filter */ |
| 460 | if (iter_data.n_stas > 1) { |
| 461 | /* If you have multiple STA interfaces connected to |
| 462 | * different APs, ARPs are not received (most of the time?) |
Pavel Roskin | 6a2a0e7 | 2011-07-09 00:17:51 -0400 | [diff] [blame] | 463 | * Enabling PROMISC appears to fix that problem. |
Ben Greear | e4b0b32 | 2011-03-03 14:39:05 -0800 | [diff] [blame] | 464 | */ |
| 465 | rfilt |= AR5K_RX_FILTER_PROM; |
| 466 | } |
| 467 | |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 468 | /* Set filters */ |
| 469 | ath5k_hw_set_rx_filter(ah, rfilt); |
| 470 | |
| 471 | /* Set multicast bits */ |
| 472 | ath5k_hw_set_mcast_filter(ah, mfilt[0], mfilt[1]); |
| 473 | /* Set the cached hw filter flags, this will later actually |
| 474 | * be set in HW */ |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 475 | ah->filter_flags = rfilt; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 476 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 477 | mutex_unlock(&ah->lock); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 478 | } |
| 479 | |
| 480 | |
| 481 | static int |
| 482 | ath5k_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, |
| 483 | struct ieee80211_vif *vif, struct ieee80211_sta *sta, |
| 484 | struct ieee80211_key_conf *key) |
| 485 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 486 | struct ath5k_hw *ah = hw->priv; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 487 | struct ath_common *common = ath5k_hw_common(ah); |
| 488 | int ret = 0; |
| 489 | |
John W. Linville | 18cb6e3 | 2011-01-05 09:39:59 -0500 | [diff] [blame] | 490 | if (ath5k_modparam_nohwcrypt) |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 491 | return -EOPNOTSUPP; |
| 492 | |
Antonio Quartulli | f997257 | 2012-01-14 11:42:43 +0100 | [diff] [blame] | 493 | if (vif->type == NL80211_IFTYPE_ADHOC && |
| 494 | (key->cipher == WLAN_CIPHER_SUITE_TKIP || |
| 495 | key->cipher == WLAN_CIPHER_SUITE_CCMP) && |
| 496 | !(key->flags & IEEE80211_KEY_FLAG_PAIRWISE)) { |
| 497 | /* don't program group keys when using IBSS_RSN */ |
| 498 | return -EOPNOTSUPP; |
| 499 | } |
| 500 | |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 501 | switch (key->cipher) { |
| 502 | case WLAN_CIPHER_SUITE_WEP40: |
| 503 | case WLAN_CIPHER_SUITE_WEP104: |
| 504 | case WLAN_CIPHER_SUITE_TKIP: |
| 505 | break; |
| 506 | case WLAN_CIPHER_SUITE_CCMP: |
| 507 | if (common->crypt_caps & ATH_CRYPT_CAP_CIPHER_AESCCM) |
| 508 | break; |
| 509 | return -EOPNOTSUPP; |
| 510 | default: |
| 511 | WARN_ON(1); |
| 512 | return -EINVAL; |
| 513 | } |
| 514 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 515 | mutex_lock(&ah->lock); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 516 | |
| 517 | switch (cmd) { |
| 518 | case SET_KEY: |
| 519 | ret = ath_key_config(common, vif, sta, key); |
| 520 | if (ret >= 0) { |
| 521 | key->hw_key_idx = ret; |
| 522 | /* push IV and Michael MIC generation to stack */ |
| 523 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; |
| 524 | if (key->cipher == WLAN_CIPHER_SUITE_TKIP) |
| 525 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC; |
| 526 | if (key->cipher == WLAN_CIPHER_SUITE_CCMP) |
| 527 | key->flags |= IEEE80211_KEY_FLAG_SW_MGMT; |
| 528 | ret = 0; |
| 529 | } |
| 530 | break; |
| 531 | case DISABLE_KEY: |
| 532 | ath_key_delete(common, key); |
| 533 | break; |
| 534 | default: |
| 535 | ret = -EINVAL; |
| 536 | } |
| 537 | |
| 538 | mmiowb(); |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 539 | mutex_unlock(&ah->lock); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 540 | return ret; |
| 541 | } |
| 542 | |
| 543 | |
| 544 | static void |
| 545 | ath5k_sw_scan_start(struct ieee80211_hw *hw) |
| 546 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 547 | struct ath5k_hw *ah = hw->priv; |
| 548 | if (!ah->assoc) |
| 549 | ath5k_hw_set_ledstate(ah, AR5K_LED_SCAN); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 550 | } |
| 551 | |
| 552 | |
| 553 | static void |
| 554 | ath5k_sw_scan_complete(struct ieee80211_hw *hw) |
| 555 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 556 | struct ath5k_hw *ah = hw->priv; |
| 557 | ath5k_hw_set_ledstate(ah, ah->assoc ? |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 558 | AR5K_LED_ASSOC : AR5K_LED_INIT); |
| 559 | } |
| 560 | |
| 561 | |
| 562 | static int |
| 563 | ath5k_get_stats(struct ieee80211_hw *hw, |
| 564 | struct ieee80211_low_level_stats *stats) |
| 565 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 566 | struct ath5k_hw *ah = hw->priv; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 567 | |
| 568 | /* Force update */ |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 569 | ath5k_hw_update_mib_counters(ah); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 570 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 571 | stats->dot11ACKFailureCount = ah->stats.ack_fail; |
| 572 | stats->dot11RTSFailureCount = ah->stats.rts_fail; |
| 573 | stats->dot11RTSSuccessCount = ah->stats.rts_ok; |
| 574 | stats->dot11FCSErrorCount = ah->stats.fcs_error; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 575 | |
| 576 | return 0; |
| 577 | } |
| 578 | |
| 579 | |
| 580 | static int |
Eliad Peller | 8a3a3c8 | 2011-10-02 10:15:52 +0200 | [diff] [blame] | 581 | ath5k_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif, u16 queue, |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 582 | const struct ieee80211_tx_queue_params *params) |
| 583 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 584 | struct ath5k_hw *ah = hw->priv; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 585 | struct ath5k_txq_info qi; |
| 586 | int ret = 0; |
| 587 | |
| 588 | if (queue >= ah->ah_capabilities.cap_queues.q_tx_num) |
| 589 | return 0; |
| 590 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 591 | mutex_lock(&ah->lock); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 592 | |
| 593 | ath5k_hw_get_tx_queueprops(ah, queue, &qi); |
| 594 | |
| 595 | qi.tqi_aifs = params->aifs; |
| 596 | qi.tqi_cw_min = params->cw_min; |
| 597 | qi.tqi_cw_max = params->cw_max; |
Felix Fietkau | 0f245ed | 2012-07-16 19:49:07 +0200 | [diff] [blame] | 598 | qi.tqi_burst_time = params->txop * 32; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 599 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 600 | ATH5K_DBG(ah, ATH5K_DEBUG_ANY, |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 601 | "Configure tx [queue %d], " |
| 602 | "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n", |
| 603 | queue, params->aifs, params->cw_min, |
| 604 | params->cw_max, params->txop); |
| 605 | |
| 606 | if (ath5k_hw_set_tx_queueprops(ah, queue, &qi)) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 607 | ATH5K_ERR(ah, |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 608 | "Unable to update hardware queue %u!\n", queue); |
| 609 | ret = -EIO; |
| 610 | } else |
| 611 | ath5k_hw_reset_tx_queue(ah, queue); |
| 612 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 613 | mutex_unlock(&ah->lock); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 614 | |
| 615 | return ret; |
| 616 | } |
| 617 | |
| 618 | |
| 619 | static u64 |
Eliad Peller | 37a41b4 | 2011-09-21 14:06:11 +0300 | [diff] [blame] | 620 | ath5k_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif) |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 621 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 622 | struct ath5k_hw *ah = hw->priv; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 623 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 624 | return ath5k_hw_get_tsf64(ah); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 625 | } |
| 626 | |
| 627 | |
| 628 | static void |
Eliad Peller | 37a41b4 | 2011-09-21 14:06:11 +0300 | [diff] [blame] | 629 | ath5k_set_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif, u64 tsf) |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 630 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 631 | struct ath5k_hw *ah = hw->priv; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 632 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 633 | ath5k_hw_set_tsf64(ah, tsf); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 634 | } |
| 635 | |
| 636 | |
| 637 | static void |
Eliad Peller | 37a41b4 | 2011-09-21 14:06:11 +0300 | [diff] [blame] | 638 | ath5k_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif) |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 639 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 640 | struct ath5k_hw *ah = hw->priv; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 641 | |
| 642 | /* |
| 643 | * in IBSS mode we need to update the beacon timers too. |
| 644 | * this will also reset the TSF if we call it with 0 |
| 645 | */ |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 646 | if (ah->opmode == NL80211_IFTYPE_ADHOC) |
| 647 | ath5k_beacon_update_timers(ah, 0); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 648 | else |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 649 | ath5k_hw_reset_tsf(ah); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | |
| 653 | static int |
| 654 | ath5k_get_survey(struct ieee80211_hw *hw, int idx, struct survey_info *survey) |
| 655 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 656 | struct ath5k_hw *ah = hw->priv; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 657 | struct ieee80211_conf *conf = &hw->conf; |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 658 | struct ath_common *common = ath5k_hw_common(ah); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 659 | struct ath_cycle_counters *cc = &common->cc_survey; |
| 660 | unsigned int div = common->clockrate * 1000; |
| 661 | |
| 662 | if (idx != 0) |
| 663 | return -ENOENT; |
| 664 | |
| 665 | spin_lock_bh(&common->cc_lock); |
| 666 | ath_hw_cycle_counters_update(common); |
| 667 | if (cc->cycles > 0) { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 668 | ah->survey.channel_time += cc->cycles / div; |
| 669 | ah->survey.channel_time_busy += cc->rx_busy / div; |
| 670 | ah->survey.channel_time_rx += cc->rx_frame / div; |
| 671 | ah->survey.channel_time_tx += cc->tx_frame / div; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 672 | } |
| 673 | memset(cc, 0, sizeof(*cc)); |
| 674 | spin_unlock_bh(&common->cc_lock); |
| 675 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 676 | memcpy(survey, &ah->survey, sizeof(*survey)); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 677 | |
| 678 | survey->channel = conf->channel; |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 679 | survey->noise = ah->ah_noise_floor; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 680 | survey->filled = SURVEY_INFO_NOISE_DBM | |
| 681 | SURVEY_INFO_CHANNEL_TIME | |
| 682 | SURVEY_INFO_CHANNEL_TIME_BUSY | |
| 683 | SURVEY_INFO_CHANNEL_TIME_RX | |
| 684 | SURVEY_INFO_CHANNEL_TIME_TX; |
| 685 | |
| 686 | return 0; |
| 687 | } |
| 688 | |
| 689 | |
| 690 | /** |
| 691 | * ath5k_set_coverage_class - Set IEEE 802.11 coverage class |
| 692 | * |
| 693 | * @hw: struct ieee80211_hw pointer |
| 694 | * @coverage_class: IEEE 802.11 coverage class number |
| 695 | * |
| 696 | * Mac80211 callback. Sets slot time, ACK timeout and CTS timeout for given |
| 697 | * coverage class. The values are persistent, they are restored after device |
| 698 | * reset. |
| 699 | */ |
| 700 | static void |
| 701 | ath5k_set_coverage_class(struct ieee80211_hw *hw, u8 coverage_class) |
| 702 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 703 | struct ath5k_hw *ah = hw->priv; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 704 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 705 | mutex_lock(&ah->lock); |
| 706 | ath5k_hw_set_coverage_class(ah, coverage_class); |
| 707 | mutex_unlock(&ah->lock); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 708 | } |
| 709 | |
| 710 | |
| 711 | static int |
| 712 | ath5k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant) |
| 713 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 714 | struct ath5k_hw *ah = hw->priv; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 715 | |
| 716 | if (tx_ant == 1 && rx_ant == 1) |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 717 | ath5k_hw_set_antenna_mode(ah, AR5K_ANTMODE_FIXED_A); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 718 | else if (tx_ant == 2 && rx_ant == 2) |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 719 | ath5k_hw_set_antenna_mode(ah, AR5K_ANTMODE_FIXED_B); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 720 | else if ((tx_ant & 3) == 3 && (rx_ant & 3) == 3) |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 721 | ath5k_hw_set_antenna_mode(ah, AR5K_ANTMODE_DEFAULT); |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 722 | else |
| 723 | return -EINVAL; |
| 724 | return 0; |
| 725 | } |
| 726 | |
| 727 | |
| 728 | static int |
| 729 | ath5k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant) |
| 730 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 731 | struct ath5k_hw *ah = hw->priv; |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 732 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 733 | switch (ah->ah_ant_mode) { |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 734 | case AR5K_ANTMODE_FIXED_A: |
| 735 | *tx_ant = 1; *rx_ant = 1; break; |
| 736 | case AR5K_ANTMODE_FIXED_B: |
| 737 | *tx_ant = 2; *rx_ant = 2; break; |
| 738 | case AR5K_ANTMODE_DEFAULT: |
| 739 | *tx_ant = 3; *rx_ant = 3; break; |
| 740 | } |
| 741 | return 0; |
| 742 | } |
| 743 | |
| 744 | |
John W. Linville | 81266ba | 2011-03-07 16:32:59 -0500 | [diff] [blame] | 745 | static void ath5k_get_ringparam(struct ieee80211_hw *hw, |
| 746 | u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max) |
| 747 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 748 | struct ath5k_hw *ah = hw->priv; |
John W. Linville | 81266ba | 2011-03-07 16:32:59 -0500 | [diff] [blame] | 749 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 750 | *tx = ah->txqs[AR5K_TX_QUEUE_ID_DATA_MIN].txq_max; |
John W. Linville | 81266ba | 2011-03-07 16:32:59 -0500 | [diff] [blame] | 751 | |
| 752 | *tx_max = ATH5K_TXQ_LEN_MAX; |
| 753 | *rx = *rx_max = ATH_RXBUF; |
| 754 | } |
| 755 | |
| 756 | |
| 757 | static int ath5k_set_ringparam(struct ieee80211_hw *hw, u32 tx, u32 rx) |
| 758 | { |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 759 | struct ath5k_hw *ah = hw->priv; |
John W. Linville | 81266ba | 2011-03-07 16:32:59 -0500 | [diff] [blame] | 760 | u16 qnum; |
| 761 | |
| 762 | /* only support setting tx ring size for now */ |
| 763 | if (rx != ATH_RXBUF) |
| 764 | return -EINVAL; |
| 765 | |
| 766 | /* restrict tx ring size min/max */ |
| 767 | if (!tx || tx > ATH5K_TXQ_LEN_MAX) |
| 768 | return -EINVAL; |
| 769 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 770 | for (qnum = 0; qnum < ARRAY_SIZE(ah->txqs); qnum++) { |
| 771 | if (!ah->txqs[qnum].setup) |
John W. Linville | 81266ba | 2011-03-07 16:32:59 -0500 | [diff] [blame] | 772 | continue; |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 773 | if (ah->txqs[qnum].qnum < AR5K_TX_QUEUE_ID_DATA_MIN || |
| 774 | ah->txqs[qnum].qnum > AR5K_TX_QUEUE_ID_DATA_MAX) |
John W. Linville | 81266ba | 2011-03-07 16:32:59 -0500 | [diff] [blame] | 775 | continue; |
| 776 | |
Pavel Roskin | e0d687b | 2011-07-14 20:21:55 -0400 | [diff] [blame] | 777 | ah->txqs[qnum].txq_max = tx; |
| 778 | if (ah->txqs[qnum].txq_len >= ah->txqs[qnum].txq_max) |
| 779 | ieee80211_stop_queue(hw, ah->txqs[qnum].qnum); |
John W. Linville | 81266ba | 2011-03-07 16:32:59 -0500 | [diff] [blame] | 780 | } |
| 781 | |
| 782 | return 0; |
| 783 | } |
| 784 | |
| 785 | |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 786 | const struct ieee80211_ops ath5k_hw_ops = { |
| 787 | .tx = ath5k_tx, |
| 788 | .start = ath5k_start, |
| 789 | .stop = ath5k_stop, |
| 790 | .add_interface = ath5k_add_interface, |
| 791 | /* .change_interface = not implemented */ |
| 792 | .remove_interface = ath5k_remove_interface, |
| 793 | .config = ath5k_config, |
| 794 | .bss_info_changed = ath5k_bss_info_changed, |
| 795 | .prepare_multicast = ath5k_prepare_multicast, |
| 796 | .configure_filter = ath5k_configure_filter, |
| 797 | /* .set_tim = not implemented */ |
| 798 | .set_key = ath5k_set_key, |
| 799 | /* .update_tkip_key = not implemented */ |
| 800 | /* .hw_scan = not implemented */ |
| 801 | .sw_scan_start = ath5k_sw_scan_start, |
| 802 | .sw_scan_complete = ath5k_sw_scan_complete, |
| 803 | .get_stats = ath5k_get_stats, |
| 804 | /* .get_tkip_seq = not implemented */ |
| 805 | /* .set_frag_threshold = not implemented */ |
| 806 | /* .set_rts_threshold = not implemented */ |
| 807 | /* .sta_add = not implemented */ |
| 808 | /* .sta_remove = not implemented */ |
| 809 | /* .sta_notify = not implemented */ |
| 810 | .conf_tx = ath5k_conf_tx, |
| 811 | .get_tsf = ath5k_get_tsf, |
| 812 | .set_tsf = ath5k_set_tsf, |
| 813 | .reset_tsf = ath5k_reset_tsf, |
| 814 | /* .tx_last_beacon = not implemented */ |
| 815 | /* .ampdu_action = not needed */ |
| 816 | .get_survey = ath5k_get_survey, |
| 817 | .set_coverage_class = ath5k_set_coverage_class, |
| 818 | /* .rfkill_poll = not implemented */ |
| 819 | /* .flush = not implemented */ |
| 820 | /* .channel_switch = not implemented */ |
| 821 | /* .napi_poll = not implemented */ |
| 822 | .set_antenna = ath5k_set_antenna, |
| 823 | .get_antenna = ath5k_get_antenna, |
John W. Linville | 81266ba | 2011-03-07 16:32:59 -0500 | [diff] [blame] | 824 | .set_ringparam = ath5k_set_ringparam, |
| 825 | .get_ringparam = ath5k_get_ringparam, |
Bruno Randolf | cd2c548 | 2010-12-22 19:20:32 +0900 | [diff] [blame] | 826 | }; |