Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [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 | * |
| 8 | * All rights reserved. |
| 9 | * |
| 10 | * Redistribution and use in source and binary forms, with or without |
| 11 | * modification, are permitted provided that the following conditions |
| 12 | * are met: |
| 13 | * 1. Redistributions of source code must retain the above copyright |
| 14 | * notice, this list of conditions and the following disclaimer, |
| 15 | * without modification. |
| 16 | * 2. Redistributions in binary form must reproduce at minimum a disclaimer |
| 17 | * similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any |
| 18 | * redistribution must be conditioned upon including a substantially |
| 19 | * similar Disclaimer requirement for further binary redistribution. |
| 20 | * 3. Neither the names of the above-listed copyright holders nor the names |
| 21 | * of any contributors may be used to endorse or promote products derived |
| 22 | * from this software without specific prior written permission. |
| 23 | * |
| 24 | * Alternatively, this software may be distributed under the terms of the |
| 25 | * GNU General Public License ("GPL") version 2 as published by the Free |
| 26 | * Software Foundation. |
| 27 | * |
| 28 | * NO WARRANTY |
| 29 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 30 | * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 31 | * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY |
| 32 | * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL |
| 33 | * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, |
| 34 | * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 35 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 36 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER |
| 37 | * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 38 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| 39 | * THE POSSIBILITY OF SUCH DAMAGES. |
| 40 | * |
| 41 | */ |
| 42 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 43 | #include <linux/module.h> |
| 44 | #include <linux/delay.h> |
Jiri Slaby | 274c7c3 | 2008-07-15 17:44:20 +0200 | [diff] [blame] | 45 | #include <linux/hardirq.h> |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 46 | #include <linux/if.h> |
Jiri Slaby | 274c7c3 | 2008-07-15 17:44:20 +0200 | [diff] [blame] | 47 | #include <linux/io.h> |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 48 | #include <linux/netdevice.h> |
| 49 | #include <linux/cache.h> |
| 50 | #include <linux/pci.h> |
Maxim Levitsky | 6ccf15a | 2010-08-13 11:27:28 -0400 | [diff] [blame] | 51 | #include <linux/pci-aspm.h> |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 52 | #include <linux/ethtool.h> |
| 53 | #include <linux/uaccess.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 54 | #include <linux/slab.h> |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 55 | #include <linux/etherdevice.h> |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 56 | |
| 57 | #include <net/ieee80211_radiotap.h> |
| 58 | |
| 59 | #include <asm/unaligned.h> |
| 60 | |
| 61 | #include "base.h" |
| 62 | #include "reg.h" |
| 63 | #include "debug.h" |
Bruno Randolf | 2111ac0 | 2010-04-02 18:44:08 +0900 | [diff] [blame] | 64 | #include "ani.h" |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 65 | #include "../debug.h" |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 66 | |
Bob Copeland | 9ad9a26 | 2008-10-29 08:30:54 -0400 | [diff] [blame] | 67 | static int modparam_nohwcrypt; |
Bob Copeland | 46802a4 | 2009-04-15 07:57:34 -0400 | [diff] [blame] | 68 | module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO); |
Bob Copeland | 9ad9a26 | 2008-10-29 08:30:54 -0400 | [diff] [blame] | 69 | MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption."); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 70 | |
Bob Copeland | 42639fc | 2009-03-30 08:05:29 -0400 | [diff] [blame] | 71 | static int modparam_all_channels; |
Bob Copeland | 46802a4 | 2009-04-15 07:57:34 -0400 | [diff] [blame] | 72 | module_param_named(all_channels, modparam_all_channels, bool, S_IRUGO); |
Bob Copeland | 42639fc | 2009-03-30 08:05:29 -0400 | [diff] [blame] | 73 | MODULE_PARM_DESC(all_channels, "Expose all channels the device can use."); |
| 74 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 75 | /* Module info */ |
| 76 | MODULE_AUTHOR("Jiri Slaby"); |
| 77 | MODULE_AUTHOR("Nick Kossifidis"); |
| 78 | MODULE_DESCRIPTION("Support for 5xxx series of Atheros 802.11 wireless LAN cards."); |
| 79 | MODULE_SUPPORTED_DEVICE("Atheros 5xxx WLAN cards"); |
| 80 | MODULE_LICENSE("Dual BSD/GPL"); |
Nick Kossifidis | 0d5f031 | 2008-09-29 01:27:27 +0300 | [diff] [blame] | 81 | MODULE_VERSION("0.6.0 (EXPERIMENTAL)"); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 82 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 83 | static int ath5k_reset(struct ath5k_softc *sc, struct ieee80211_channel *chan); |
| 84 | static int ath5k_beacon_update(struct ieee80211_hw *hw, |
| 85 | struct ieee80211_vif *vif); |
| 86 | static void ath5k_beacon_update_timers(struct ath5k_softc *sc, u64 bc_tsf); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 87 | |
| 88 | /* Known PCI ids */ |
Alexey Dobriyan | a3aa188 | 2010-01-07 11:58:11 +0000 | [diff] [blame] | 89 | static DEFINE_PCI_DEVICE_TABLE(ath5k_pci_id_table) = { |
Pavel Roskin | 97a81f5 | 2009-08-26 22:30:09 -0400 | [diff] [blame] | 90 | { PCI_VDEVICE(ATHEROS, 0x0207) }, /* 5210 early */ |
| 91 | { PCI_VDEVICE(ATHEROS, 0x0007) }, /* 5210 */ |
| 92 | { PCI_VDEVICE(ATHEROS, 0x0011) }, /* 5311 - this is on AHB bus !*/ |
| 93 | { PCI_VDEVICE(ATHEROS, 0x0012) }, /* 5211 */ |
| 94 | { PCI_VDEVICE(ATHEROS, 0x0013) }, /* 5212 */ |
| 95 | { PCI_VDEVICE(3COM_2, 0x0013) }, /* 3com 5212 */ |
| 96 | { PCI_VDEVICE(3COM, 0x0013) }, /* 3com 3CRDAG675 5212 */ |
| 97 | { PCI_VDEVICE(ATHEROS, 0x1014) }, /* IBM minipci 5212 */ |
| 98 | { PCI_VDEVICE(ATHEROS, 0x0014) }, /* 5212 combatible */ |
| 99 | { PCI_VDEVICE(ATHEROS, 0x0015) }, /* 5212 combatible */ |
| 100 | { PCI_VDEVICE(ATHEROS, 0x0016) }, /* 5212 combatible */ |
| 101 | { PCI_VDEVICE(ATHEROS, 0x0017) }, /* 5212 combatible */ |
| 102 | { PCI_VDEVICE(ATHEROS, 0x0018) }, /* 5212 combatible */ |
| 103 | { PCI_VDEVICE(ATHEROS, 0x0019) }, /* 5212 combatible */ |
| 104 | { PCI_VDEVICE(ATHEROS, 0x001a) }, /* 2413 Griffin-lite */ |
| 105 | { PCI_VDEVICE(ATHEROS, 0x001b) }, /* 5413 Eagle */ |
| 106 | { PCI_VDEVICE(ATHEROS, 0x001c) }, /* PCI-E cards */ |
| 107 | { PCI_VDEVICE(ATHEROS, 0x001d) }, /* 2417 Nala */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 108 | { 0 } |
| 109 | }; |
| 110 | MODULE_DEVICE_TABLE(pci, ath5k_pci_id_table); |
| 111 | |
| 112 | /* Known SREVs */ |
Jiri Slaby | 2c91108c | 2009-03-07 10:26:41 +0100 | [diff] [blame] | 113 | static const struct ath5k_srev_name srev_names[] = { |
Nick Kossifidis | 1bef016 | 2008-09-29 02:09:09 +0300 | [diff] [blame] | 114 | { "5210", AR5K_VERSION_MAC, AR5K_SREV_AR5210 }, |
| 115 | { "5311", AR5K_VERSION_MAC, AR5K_SREV_AR5311 }, |
| 116 | { "5311A", AR5K_VERSION_MAC, AR5K_SREV_AR5311A }, |
| 117 | { "5311B", AR5K_VERSION_MAC, AR5K_SREV_AR5311B }, |
| 118 | { "5211", AR5K_VERSION_MAC, AR5K_SREV_AR5211 }, |
| 119 | { "5212", AR5K_VERSION_MAC, AR5K_SREV_AR5212 }, |
| 120 | { "5213", AR5K_VERSION_MAC, AR5K_SREV_AR5213 }, |
| 121 | { "5213A", AR5K_VERSION_MAC, AR5K_SREV_AR5213A }, |
| 122 | { "2413", AR5K_VERSION_MAC, AR5K_SREV_AR2413 }, |
| 123 | { "2414", AR5K_VERSION_MAC, AR5K_SREV_AR2414 }, |
| 124 | { "5424", AR5K_VERSION_MAC, AR5K_SREV_AR5424 }, |
| 125 | { "5413", AR5K_VERSION_MAC, AR5K_SREV_AR5413 }, |
| 126 | { "5414", AR5K_VERSION_MAC, AR5K_SREV_AR5414 }, |
| 127 | { "2415", AR5K_VERSION_MAC, AR5K_SREV_AR2415 }, |
| 128 | { "5416", AR5K_VERSION_MAC, AR5K_SREV_AR5416 }, |
| 129 | { "5418", AR5K_VERSION_MAC, AR5K_SREV_AR5418 }, |
| 130 | { "2425", AR5K_VERSION_MAC, AR5K_SREV_AR2425 }, |
| 131 | { "2417", AR5K_VERSION_MAC, AR5K_SREV_AR2417 }, |
| 132 | { "xxxxx", AR5K_VERSION_MAC, AR5K_SREV_UNKNOWN }, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 133 | { "5110", AR5K_VERSION_RAD, AR5K_SREV_RAD_5110 }, |
| 134 | { "5111", AR5K_VERSION_RAD, AR5K_SREV_RAD_5111 }, |
Nick Kossifidis | 1bef016 | 2008-09-29 02:09:09 +0300 | [diff] [blame] | 135 | { "5111A", AR5K_VERSION_RAD, AR5K_SREV_RAD_5111A }, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 136 | { "2111", AR5K_VERSION_RAD, AR5K_SREV_RAD_2111 }, |
| 137 | { "5112", AR5K_VERSION_RAD, AR5K_SREV_RAD_5112 }, |
| 138 | { "5112A", AR5K_VERSION_RAD, AR5K_SREV_RAD_5112A }, |
Nick Kossifidis | 1bef016 | 2008-09-29 02:09:09 +0300 | [diff] [blame] | 139 | { "5112B", AR5K_VERSION_RAD, AR5K_SREV_RAD_5112B }, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 140 | { "2112", AR5K_VERSION_RAD, AR5K_SREV_RAD_2112 }, |
| 141 | { "2112A", AR5K_VERSION_RAD, AR5K_SREV_RAD_2112A }, |
Nick Kossifidis | 1bef016 | 2008-09-29 02:09:09 +0300 | [diff] [blame] | 142 | { "2112B", AR5K_VERSION_RAD, AR5K_SREV_RAD_2112B }, |
| 143 | { "2413", AR5K_VERSION_RAD, AR5K_SREV_RAD_2413 }, |
| 144 | { "5413", AR5K_VERSION_RAD, AR5K_SREV_RAD_5413 }, |
| 145 | { "2316", AR5K_VERSION_RAD, AR5K_SREV_RAD_2316 }, |
| 146 | { "2317", AR5K_VERSION_RAD, AR5K_SREV_RAD_2317 }, |
| 147 | { "5424", AR5K_VERSION_RAD, AR5K_SREV_RAD_5424 }, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 148 | { "5133", AR5K_VERSION_RAD, AR5K_SREV_RAD_5133 }, |
| 149 | { "xxxxx", AR5K_VERSION_RAD, AR5K_SREV_UNKNOWN }, |
| 150 | }; |
| 151 | |
Jiri Slaby | 2c91108c | 2009-03-07 10:26:41 +0100 | [diff] [blame] | 152 | static const struct ieee80211_rate ath5k_rates[] = { |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 153 | { .bitrate = 10, |
| 154 | .hw_value = ATH5K_RATE_CODE_1M, }, |
| 155 | { .bitrate = 20, |
| 156 | .hw_value = ATH5K_RATE_CODE_2M, |
| 157 | .hw_value_short = ATH5K_RATE_CODE_2M | AR5K_SET_SHORT_PREAMBLE, |
| 158 | .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 159 | { .bitrate = 55, |
| 160 | .hw_value = ATH5K_RATE_CODE_5_5M, |
| 161 | .hw_value_short = ATH5K_RATE_CODE_5_5M | AR5K_SET_SHORT_PREAMBLE, |
| 162 | .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 163 | { .bitrate = 110, |
| 164 | .hw_value = ATH5K_RATE_CODE_11M, |
| 165 | .hw_value_short = ATH5K_RATE_CODE_11M | AR5K_SET_SHORT_PREAMBLE, |
| 166 | .flags = IEEE80211_RATE_SHORT_PREAMBLE }, |
| 167 | { .bitrate = 60, |
| 168 | .hw_value = ATH5K_RATE_CODE_6M, |
| 169 | .flags = 0 }, |
| 170 | { .bitrate = 90, |
| 171 | .hw_value = ATH5K_RATE_CODE_9M, |
| 172 | .flags = 0 }, |
| 173 | { .bitrate = 120, |
| 174 | .hw_value = ATH5K_RATE_CODE_12M, |
| 175 | .flags = 0 }, |
| 176 | { .bitrate = 180, |
| 177 | .hw_value = ATH5K_RATE_CODE_18M, |
| 178 | .flags = 0 }, |
| 179 | { .bitrate = 240, |
| 180 | .hw_value = ATH5K_RATE_CODE_24M, |
| 181 | .flags = 0 }, |
| 182 | { .bitrate = 360, |
| 183 | .hw_value = ATH5K_RATE_CODE_36M, |
| 184 | .flags = 0 }, |
| 185 | { .bitrate = 480, |
| 186 | .hw_value = ATH5K_RATE_CODE_48M, |
| 187 | .flags = 0 }, |
| 188 | { .bitrate = 540, |
| 189 | .hw_value = ATH5K_RATE_CODE_54M, |
| 190 | .flags = 0 }, |
| 191 | /* XR missing */ |
| 192 | }; |
| 193 | |
Bruno Randolf | 9e4e43f | 2010-06-16 19:11:17 +0900 | [diff] [blame] | 194 | static inline void ath5k_txbuf_free_skb(struct ath5k_softc *sc, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 195 | struct ath5k_buf *bf) |
| 196 | { |
| 197 | BUG_ON(!bf); |
| 198 | if (!bf->skb) |
| 199 | return; |
| 200 | pci_unmap_single(sc->pdev, bf->skbaddr, bf->skb->len, |
| 201 | PCI_DMA_TODEVICE); |
Jiri Slaby | 0048297 | 2008-08-18 21:45:27 +0200 | [diff] [blame] | 202 | dev_kfree_skb_any(bf->skb); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 203 | bf->skb = NULL; |
Bruno Randolf | 39d63f2 | 2010-06-16 19:11:41 +0900 | [diff] [blame] | 204 | bf->skbaddr = 0; |
| 205 | bf->desc->ds_data = 0; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 206 | } |
| 207 | |
Bruno Randolf | 9e4e43f | 2010-06-16 19:11:17 +0900 | [diff] [blame] | 208 | static inline void ath5k_rxbuf_free_skb(struct ath5k_softc *sc, |
Felix Fietkau | a6c8d37 | 2009-01-30 01:36:48 +0100 | [diff] [blame] | 209 | struct ath5k_buf *bf) |
| 210 | { |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 211 | struct ath5k_hw *ah = sc->ah; |
| 212 | struct ath_common *common = ath5k_hw_common(ah); |
| 213 | |
Felix Fietkau | a6c8d37 | 2009-01-30 01:36:48 +0100 | [diff] [blame] | 214 | BUG_ON(!bf); |
| 215 | if (!bf->skb) |
| 216 | return; |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 217 | pci_unmap_single(sc->pdev, bf->skbaddr, common->rx_bufsize, |
Felix Fietkau | a6c8d37 | 2009-01-30 01:36:48 +0100 | [diff] [blame] | 218 | PCI_DMA_FROMDEVICE); |
| 219 | dev_kfree_skb_any(bf->skb); |
| 220 | bf->skb = NULL; |
Bruno Randolf | 39d63f2 | 2010-06-16 19:11:41 +0900 | [diff] [blame] | 221 | bf->skbaddr = 0; |
| 222 | bf->desc->ds_data = 0; |
Felix Fietkau | a6c8d37 | 2009-01-30 01:36:48 +0100 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 226 | static inline u64 ath5k_extend_tsf(struct ath5k_hw *ah, u32 rstamp) |
| 227 | { |
| 228 | u64 tsf = ath5k_hw_get_tsf64(ah); |
| 229 | |
| 230 | if ((tsf & 0x7fff) < rstamp) |
| 231 | tsf -= 0x8000; |
| 232 | |
| 233 | return (tsf & ~0x7fff) | rstamp; |
| 234 | } |
| 235 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 236 | static const char * |
| 237 | ath5k_chip_name(enum ath5k_srev_type type, u_int16_t val) |
| 238 | { |
| 239 | const char *name = "xxxxx"; |
| 240 | unsigned int i; |
| 241 | |
| 242 | for (i = 0; i < ARRAY_SIZE(srev_names); i++) { |
| 243 | if (srev_names[i].sr_type != type) |
| 244 | continue; |
Nick Kossifidis | 75d0edb | 2008-09-29 01:24:44 +0300 | [diff] [blame] | 245 | |
| 246 | if ((val & 0xf0) == srev_names[i].sr_val) |
| 247 | name = srev_names[i].sr_name; |
| 248 | |
| 249 | if ((val & 0xff) == srev_names[i].sr_val) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 250 | name = srev_names[i].sr_name; |
| 251 | break; |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | return name; |
| 256 | } |
Luis R. Rodriguez | e5aa847 | 2009-09-10 16:55:11 -0700 | [diff] [blame] | 257 | static unsigned int ath5k_ioread32(void *hw_priv, u32 reg_offset) |
| 258 | { |
| 259 | struct ath5k_hw *ah = (struct ath5k_hw *) hw_priv; |
| 260 | return ath5k_hw_reg_read(ah, reg_offset); |
| 261 | } |
| 262 | |
| 263 | static void ath5k_iowrite32(void *hw_priv, u32 val, u32 reg_offset) |
| 264 | { |
| 265 | struct ath5k_hw *ah = (struct ath5k_hw *) hw_priv; |
| 266 | ath5k_hw_reg_write(ah, val, reg_offset); |
| 267 | } |
| 268 | |
| 269 | static const struct ath_ops ath5k_common_ops = { |
| 270 | .read = ath5k_ioread32, |
| 271 | .write = ath5k_iowrite32, |
| 272 | }; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 273 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 274 | /***********************\ |
| 275 | * Driver Initialization * |
| 276 | \***********************/ |
| 277 | |
Bob Copeland | f769c36 | 2009-03-30 22:30:31 -0400 | [diff] [blame] | 278 | static int ath5k_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request) |
| 279 | { |
| 280 | struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy); |
| 281 | struct ath5k_softc *sc = hw->priv; |
Luis R. Rodriguez | db71971 | 2009-09-10 11:20:57 -0700 | [diff] [blame] | 282 | struct ath_regulatory *regulatory = ath5k_hw_regulatory(sc->ah); |
Bob Copeland | f769c36 | 2009-03-30 22:30:31 -0400 | [diff] [blame] | 283 | |
Luis R. Rodriguez | 608b88c | 2009-08-17 18:07:23 -0700 | [diff] [blame] | 284 | return ath_reg_notifier_apply(wiphy, request, regulatory); |
Bob Copeland | f769c36 | 2009-03-30 22:30:31 -0400 | [diff] [blame] | 285 | } |
| 286 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 287 | /********************\ |
| 288 | * Channel/mode setup * |
| 289 | \********************/ |
| 290 | |
| 291 | /* |
| 292 | * Convert IEEE channel number to MHz frequency. |
| 293 | */ |
| 294 | static inline short |
| 295 | ath5k_ieee2mhz(short chan) |
| 296 | { |
| 297 | if (chan <= 14 || chan >= 27) |
| 298 | return ieee80211chan2mhz(chan); |
| 299 | else |
| 300 | return 2212 + chan * 20; |
| 301 | } |
| 302 | |
Bob Copeland | 42639fc | 2009-03-30 08:05:29 -0400 | [diff] [blame] | 303 | /* |
| 304 | * Returns true for the channel numbers used without all_channels modparam. |
| 305 | */ |
| 306 | static bool ath5k_is_standard_channel(short chan) |
| 307 | { |
| 308 | return ((chan <= 14) || |
| 309 | /* UNII 1,2 */ |
| 310 | ((chan & 3) == 0 && chan >= 36 && chan <= 64) || |
| 311 | /* midband */ |
| 312 | ((chan & 3) == 0 && chan >= 100 && chan <= 140) || |
| 313 | /* UNII-3 */ |
| 314 | ((chan & 3) == 1 && chan >= 149 && chan <= 165)); |
| 315 | } |
| 316 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 317 | static unsigned int |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 318 | ath5k_copy_channels(struct ath5k_hw *ah, |
| 319 | struct ieee80211_channel *channels, |
| 320 | unsigned int mode, |
| 321 | unsigned int max) |
| 322 | { |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 323 | unsigned int i, count, size, chfreq, freq, ch; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 324 | |
| 325 | if (!test_bit(mode, ah->ah_modes)) |
| 326 | return 0; |
| 327 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 328 | switch (mode) { |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 329 | case AR5K_MODE_11A: |
| 330 | case AR5K_MODE_11A_TURBO: |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 331 | /* 1..220, but 2GHz frequencies are filtered by check_channel */ |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 332 | size = 220 ; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 333 | chfreq = CHANNEL_5GHZ; |
| 334 | break; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 335 | case AR5K_MODE_11B: |
| 336 | case AR5K_MODE_11G: |
| 337 | case AR5K_MODE_11G_TURBO: |
| 338 | size = 26; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 339 | chfreq = CHANNEL_2GHZ; |
| 340 | break; |
| 341 | default: |
| 342 | ATH5K_WARN(ah->ah_sc, "bad mode, not copying channels\n"); |
| 343 | return 0; |
| 344 | } |
| 345 | |
| 346 | for (i = 0, count = 0; i < size && max > 0; i++) { |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 347 | ch = i + 1 ; |
| 348 | freq = ath5k_ieee2mhz(ch); |
| 349 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 350 | /* Check if channel is supported by the chipset */ |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 351 | if (!ath5k_channel_ok(ah, freq, chfreq)) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 352 | continue; |
| 353 | |
Bob Copeland | 42639fc | 2009-03-30 08:05:29 -0400 | [diff] [blame] | 354 | if (!modparam_all_channels && !ath5k_is_standard_channel(ch)) |
| 355 | continue; |
| 356 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 357 | /* Write channel info and increment counter */ |
| 358 | channels[count].center_freq = freq; |
Luis R. Rodriguez | a3f4b91 | 2008-02-03 21:52:10 -0500 | [diff] [blame] | 359 | channels[count].band = (chfreq == CHANNEL_2GHZ) ? |
| 360 | IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ; |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 361 | switch (mode) { |
| 362 | case AR5K_MODE_11A: |
| 363 | case AR5K_MODE_11G: |
| 364 | channels[count].hw_value = chfreq | CHANNEL_OFDM; |
| 365 | break; |
| 366 | case AR5K_MODE_11A_TURBO: |
| 367 | case AR5K_MODE_11G_TURBO: |
| 368 | channels[count].hw_value = chfreq | |
| 369 | CHANNEL_OFDM | CHANNEL_TURBO; |
| 370 | break; |
| 371 | case AR5K_MODE_11B: |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 372 | channels[count].hw_value = CHANNEL_B; |
| 373 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 374 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 375 | count++; |
| 376 | max--; |
| 377 | } |
| 378 | |
| 379 | return count; |
| 380 | } |
| 381 | |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 382 | static void |
| 383 | ath5k_setup_rate_idx(struct ath5k_softc *sc, struct ieee80211_supported_band *b) |
| 384 | { |
| 385 | u8 i; |
| 386 | |
| 387 | for (i = 0; i < AR5K_MAX_RATES; i++) |
| 388 | sc->rate_idx[b->band][i] = -1; |
| 389 | |
| 390 | for (i = 0; i < b->n_bitrates; i++) { |
| 391 | sc->rate_idx[b->band][b->bitrates[i].hw_value] = i; |
| 392 | if (b->bitrates[i].hw_value_short) |
| 393 | sc->rate_idx[b->band][b->bitrates[i].hw_value_short] = i; |
| 394 | } |
| 395 | } |
| 396 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 397 | static int |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 398 | ath5k_setup_bands(struct ieee80211_hw *hw) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 399 | { |
| 400 | struct ath5k_softc *sc = hw->priv; |
| 401 | struct ath5k_hw *ah = sc->ah; |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 402 | struct ieee80211_supported_band *sband; |
| 403 | int max_c, count_c = 0; |
| 404 | int i; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 405 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 406 | BUILD_BUG_ON(ARRAY_SIZE(sc->sbands) < IEEE80211_NUM_BANDS); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 407 | max_c = ARRAY_SIZE(sc->channels); |
| 408 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 409 | /* 2GHz band */ |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 410 | sband = &sc->sbands[IEEE80211_BAND_2GHZ]; |
| 411 | sband->band = IEEE80211_BAND_2GHZ; |
| 412 | sband->bitrates = &sc->rates[IEEE80211_BAND_2GHZ][0]; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 413 | |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 414 | if (test_bit(AR5K_MODE_11G, sc->ah->ah_capabilities.cap_mode)) { |
| 415 | /* G mode */ |
| 416 | memcpy(sband->bitrates, &ath5k_rates[0], |
| 417 | sizeof(struct ieee80211_rate) * 12); |
| 418 | sband->n_bitrates = 12; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 419 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 420 | sband->channels = sc->channels; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 421 | sband->n_channels = ath5k_copy_channels(ah, sband->channels, |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 422 | AR5K_MODE_11G, max_c); |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 423 | |
| 424 | hw->wiphy->bands[IEEE80211_BAND_2GHZ] = sband; |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 425 | count_c = sband->n_channels; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 426 | max_c -= count_c; |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 427 | } else if (test_bit(AR5K_MODE_11B, sc->ah->ah_capabilities.cap_mode)) { |
| 428 | /* B mode */ |
| 429 | memcpy(sband->bitrates, &ath5k_rates[0], |
| 430 | sizeof(struct ieee80211_rate) * 4); |
| 431 | sband->n_bitrates = 4; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 432 | |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 433 | /* 5211 only supports B rates and uses 4bit rate codes |
| 434 | * (e.g normally we have 0x1B for 1M, but on 5211 we have 0x0B) |
| 435 | * fix them up here: |
| 436 | */ |
| 437 | if (ah->ah_version == AR5K_AR5211) { |
| 438 | for (i = 0; i < 4; i++) { |
| 439 | sband->bitrates[i].hw_value = |
| 440 | sband->bitrates[i].hw_value & 0xF; |
| 441 | sband->bitrates[i].hw_value_short = |
| 442 | sband->bitrates[i].hw_value_short & 0xF; |
| 443 | } |
| 444 | } |
| 445 | |
| 446 | sband->channels = sc->channels; |
| 447 | sband->n_channels = ath5k_copy_channels(ah, sband->channels, |
| 448 | AR5K_MODE_11B, max_c); |
| 449 | |
| 450 | hw->wiphy->bands[IEEE80211_BAND_2GHZ] = sband; |
| 451 | count_c = sband->n_channels; |
| 452 | max_c -= count_c; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 453 | } |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 454 | ath5k_setup_rate_idx(sc, sband); |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 455 | |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 456 | /* 5GHz band, A mode */ |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 457 | if (test_bit(AR5K_MODE_11A, sc->ah->ah_capabilities.cap_mode)) { |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 458 | sband = &sc->sbands[IEEE80211_BAND_5GHZ]; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 459 | sband->band = IEEE80211_BAND_5GHZ; |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 460 | sband->bitrates = &sc->rates[IEEE80211_BAND_5GHZ][0]; |
| 461 | |
| 462 | memcpy(sband->bitrates, &ath5k_rates[4], |
| 463 | sizeof(struct ieee80211_rate) * 8); |
| 464 | sband->n_bitrates = 8; |
| 465 | |
| 466 | sband->channels = &sc->channels[count_c]; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 467 | sband->n_channels = ath5k_copy_channels(ah, sband->channels, |
| 468 | AR5K_MODE_11A, max_c); |
| 469 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 470 | hw->wiphy->bands[IEEE80211_BAND_5GHZ] = sband; |
| 471 | } |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 472 | ath5k_setup_rate_idx(sc, sband); |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 473 | |
Luis R. Rodriguez | b446197 | 2008-02-04 10:03:54 -0500 | [diff] [blame] | 474 | ath5k_debug_dump_bands(sc); |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 475 | |
| 476 | return 0; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 477 | } |
| 478 | |
| 479 | /* |
Joerg Albert | e30eb4a | 2009-08-05 01:52:07 +0200 | [diff] [blame] | 480 | * Set/change channels. We always reset the chip. |
| 481 | * To accomplish this we must first cleanup any pending DMA, |
| 482 | * then restart stuff after a la ath5k_init. |
Bob Copeland | be00937 | 2009-01-22 08:44:16 -0500 | [diff] [blame] | 483 | * |
| 484 | * Called with sc->lock. |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 485 | */ |
| 486 | static int |
| 487 | ath5k_chan_set(struct ath5k_softc *sc, struct ieee80211_channel *chan) |
| 488 | { |
Bruno Randolf | 8d67a03 | 2010-06-16 19:11:12 +0900 | [diff] [blame] | 489 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, |
| 490 | "channel set, resetting (%u -> %u MHz)\n", |
| 491 | sc->curchan->center_freq, chan->center_freq); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 492 | |
Joerg Albert | e30eb4a | 2009-08-05 01:52:07 +0200 | [diff] [blame] | 493 | /* |
| 494 | * To switch channels clear any pending DMA operations; |
| 495 | * wait long enough for the RX fifo to drain, reset the |
| 496 | * hardware at the new frequency, and then re-enable |
| 497 | * the relevant bits of the h/w. |
| 498 | */ |
| 499 | return ath5k_reset(sc, chan); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 500 | } |
| 501 | |
| 502 | static void |
| 503 | ath5k_setcurmode(struct ath5k_softc *sc, unsigned int mode) |
| 504 | { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 505 | sc->curmode = mode; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 506 | |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 507 | if (mode == AR5K_MODE_11A) { |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 508 | sc->curband = &sc->sbands[IEEE80211_BAND_5GHZ]; |
| 509 | } else { |
| 510 | sc->curband = &sc->sbands[IEEE80211_BAND_2GHZ]; |
| 511 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 512 | } |
| 513 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 514 | struct ath_vif_iter_data { |
| 515 | const u8 *hw_macaddr; |
| 516 | u8 mask[ETH_ALEN]; |
| 517 | u8 active_mac[ETH_ALEN]; /* first active MAC */ |
| 518 | bool need_set_hw_addr; |
| 519 | bool found_active; |
| 520 | bool any_assoc; |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 521 | enum nl80211_iftype opmode; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 522 | }; |
| 523 | |
| 524 | static void ath_vif_iter(void *data, u8 *mac, struct ieee80211_vif *vif) |
| 525 | { |
| 526 | struct ath_vif_iter_data *iter_data = data; |
| 527 | int i; |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 528 | struct ath5k_vif *avf = (void *)vif->drv_priv; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 529 | |
| 530 | if (iter_data->hw_macaddr) |
| 531 | for (i = 0; i < ETH_ALEN; i++) |
| 532 | iter_data->mask[i] &= |
| 533 | ~(iter_data->hw_macaddr[i] ^ mac[i]); |
| 534 | |
| 535 | if (!iter_data->found_active) { |
| 536 | iter_data->found_active = true; |
| 537 | memcpy(iter_data->active_mac, mac, ETH_ALEN); |
| 538 | } |
| 539 | |
| 540 | if (iter_data->need_set_hw_addr && iter_data->hw_macaddr) |
| 541 | if (compare_ether_addr(iter_data->hw_macaddr, mac) == 0) |
| 542 | iter_data->need_set_hw_addr = false; |
| 543 | |
| 544 | if (!iter_data->any_assoc) { |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 545 | if (avf->assoc) |
| 546 | iter_data->any_assoc = true; |
| 547 | } |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 548 | |
| 549 | /* Calculate combined mode - when APs are active, operate in AP mode. |
| 550 | * Otherwise use the mode of the new interface. This can currently |
| 551 | * only deal with combinations of APs and STAs. Only one ad-hoc |
| 552 | * interfaces is allowed above. |
| 553 | */ |
| 554 | if (avf->opmode == NL80211_IFTYPE_AP) |
| 555 | iter_data->opmode = NL80211_IFTYPE_AP; |
| 556 | else |
| 557 | if (iter_data->opmode == NL80211_IFTYPE_UNSPECIFIED) |
| 558 | iter_data->opmode = avf->opmode; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 559 | } |
| 560 | |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 561 | static void ath_do_set_opmode(struct ath5k_softc *sc) |
| 562 | { |
| 563 | struct ath5k_hw *ah = sc->ah; |
| 564 | ath5k_hw_set_opmode(ah, sc->opmode); |
| 565 | ATH5K_DBG(sc, ATH5K_DEBUG_MODE, "mode setup opmode %d (%s)\n", |
Joe Perches | 908ebfb | 2010-10-12 11:07:44 -0700 | [diff] [blame] | 566 | sc->opmode, ath_opmode_to_string(sc->opmode)); |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 567 | } |
| 568 | |
| 569 | void ath5k_update_bssid_mask_and_opmode(struct ath5k_softc *sc, |
| 570 | struct ieee80211_vif *vif) |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 571 | { |
| 572 | struct ath_common *common = ath5k_hw_common(sc->ah); |
| 573 | struct ath_vif_iter_data iter_data; |
| 574 | |
| 575 | /* |
| 576 | * Use the hardware MAC address as reference, the hardware uses it |
| 577 | * together with the BSSID mask when matching addresses. |
| 578 | */ |
| 579 | iter_data.hw_macaddr = common->macaddr; |
| 580 | memset(&iter_data.mask, 0xff, ETH_ALEN); |
| 581 | iter_data.found_active = false; |
| 582 | iter_data.need_set_hw_addr = true; |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 583 | iter_data.opmode = NL80211_IFTYPE_UNSPECIFIED; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 584 | |
| 585 | if (vif) |
| 586 | ath_vif_iter(&iter_data, vif->addr, vif); |
| 587 | |
| 588 | /* Get list of all active MAC addresses */ |
| 589 | ieee80211_iterate_active_interfaces_atomic(sc->hw, ath_vif_iter, |
| 590 | &iter_data); |
| 591 | memcpy(sc->bssidmask, iter_data.mask, ETH_ALEN); |
| 592 | |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 593 | sc->opmode = iter_data.opmode; |
| 594 | if (sc->opmode == NL80211_IFTYPE_UNSPECIFIED) |
| 595 | /* Nothing active, default to station mode */ |
| 596 | sc->opmode = NL80211_IFTYPE_STATION; |
| 597 | |
| 598 | ath_do_set_opmode(sc); |
| 599 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 600 | if (iter_data.need_set_hw_addr && iter_data.found_active) |
| 601 | ath5k_hw_set_lladdr(sc->ah, iter_data.active_mac); |
| 602 | |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 603 | if (ath5k_hw_hasbssidmask(sc->ah)) |
| 604 | ath5k_hw_set_bssid_mask(sc->ah, sc->bssidmask); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 605 | } |
| 606 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 607 | static void |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 608 | ath5k_mode_setup(struct ath5k_softc *sc, struct ieee80211_vif *vif) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 609 | { |
| 610 | struct ath5k_hw *ah = sc->ah; |
| 611 | u32 rfilt; |
| 612 | |
| 613 | /* configure rx filter */ |
| 614 | rfilt = sc->filter_flags; |
| 615 | ath5k_hw_set_rx_filter(ah, rfilt); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 616 | ATH5K_DBG(sc, ATH5K_DEBUG_MODE, "RX filter 0x%x\n", rfilt); |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 617 | |
| 618 | ath5k_update_bssid_mask_and_opmode(sc, vif); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 619 | } |
| 620 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 621 | static inline int |
Bruno Randolf | 63266a6 | 2008-07-30 17:12:58 +0200 | [diff] [blame] | 622 | ath5k_hw_to_driver_rix(struct ath5k_softc *sc, int hw_rix) |
| 623 | { |
Bob Copeland | b726604 | 2009-03-02 21:55:18 -0500 | [diff] [blame] | 624 | int rix; |
| 625 | |
| 626 | /* return base rate on errors */ |
| 627 | if (WARN(hw_rix < 0 || hw_rix >= AR5K_MAX_RATES, |
| 628 | "hw_rix out of bounds: %x\n", hw_rix)) |
| 629 | return 0; |
| 630 | |
| 631 | rix = sc->rate_idx[sc->curband->band][hw_rix]; |
| 632 | if (WARN(rix < 0, "invalid hw_rix: %x\n", hw_rix)) |
| 633 | rix = 0; |
| 634 | |
| 635 | return rix; |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 636 | } |
| 637 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 638 | /***************\ |
| 639 | * Buffers setup * |
| 640 | \***************/ |
| 641 | |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 642 | static |
| 643 | struct sk_buff *ath5k_rx_skb_alloc(struct ath5k_softc *sc, dma_addr_t *skb_addr) |
| 644 | { |
Luis R. Rodriguez | db71971 | 2009-09-10 11:20:57 -0700 | [diff] [blame] | 645 | struct ath_common *common = ath5k_hw_common(sc->ah); |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 646 | struct sk_buff *skb; |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 647 | |
| 648 | /* |
| 649 | * Allocate buffer with headroom_needed space for the |
| 650 | * fake physical layer header at the start. |
| 651 | */ |
Luis R. Rodriguez | db71971 | 2009-09-10 11:20:57 -0700 | [diff] [blame] | 652 | skb = ath_rxbuf_alloc(common, |
Luis R. Rodriguez | dd84978 | 2009-11-04 09:44:50 -0800 | [diff] [blame] | 653 | common->rx_bufsize, |
Luis R. Rodriguez | aeb63cf | 2009-08-12 09:57:00 -0700 | [diff] [blame] | 654 | GFP_ATOMIC); |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 655 | |
| 656 | if (!skb) { |
| 657 | ATH5K_ERR(sc, "can't alloc skbuff of size %u\n", |
Luis R. Rodriguez | dd84978 | 2009-11-04 09:44:50 -0800 | [diff] [blame] | 658 | common->rx_bufsize); |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 659 | return NULL; |
| 660 | } |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 661 | |
| 662 | *skb_addr = pci_map_single(sc->pdev, |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 663 | skb->data, common->rx_bufsize, |
| 664 | PCI_DMA_FROMDEVICE); |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 665 | if (unlikely(pci_dma_mapping_error(sc->pdev, *skb_addr))) { |
| 666 | ATH5K_ERR(sc, "%s: DMA mapping failed\n", __func__); |
| 667 | dev_kfree_skb(skb); |
| 668 | return NULL; |
| 669 | } |
| 670 | return skb; |
| 671 | } |
| 672 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 673 | static int |
| 674 | ath5k_rxbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf) |
| 675 | { |
| 676 | struct ath5k_hw *ah = sc->ah; |
| 677 | struct sk_buff *skb = bf->skb; |
| 678 | struct ath5k_desc *ds; |
Bruno Randolf | b5eae9f | 2010-05-19 10:18:16 +0900 | [diff] [blame] | 679 | int ret; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 680 | |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 681 | if (!skb) { |
| 682 | skb = ath5k_rx_skb_alloc(sc, &bf->skbaddr); |
| 683 | if (!skb) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 684 | return -ENOMEM; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 685 | bf->skb = skb; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 686 | } |
| 687 | |
| 688 | /* |
| 689 | * Setup descriptors. For receive we always terminate |
| 690 | * the descriptor list with a self-linked entry so we'll |
| 691 | * not get overrun under high load (as can happen with a |
| 692 | * 5212 when ANI processing enables PHY error frames). |
| 693 | * |
Bruno Randolf | beade63 | 2010-06-16 19:11:25 +0900 | [diff] [blame] | 694 | * To ensure the last descriptor is self-linked we create |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 695 | * each descriptor as self-linked and add it to the end. As |
| 696 | * each additional descriptor is added the previous self-linked |
Bruno Randolf | beade63 | 2010-06-16 19:11:25 +0900 | [diff] [blame] | 697 | * entry is "fixed" naturally. This should be safe even |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 698 | * if DMA is happening. When processing RX interrupts we |
| 699 | * never remove/process the last, self-linked, entry on the |
Bruno Randolf | beade63 | 2010-06-16 19:11:25 +0900 | [diff] [blame] | 700 | * descriptor list. This ensures the hardware always has |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 701 | * someplace to write a new frame. |
| 702 | */ |
| 703 | ds = bf->desc; |
| 704 | ds->ds_link = bf->daddr; /* link to self */ |
| 705 | ds->ds_data = bf->skbaddr; |
Bruno Randolf | a666819 | 2010-06-16 19:12:01 +0900 | [diff] [blame] | 706 | ret = ath5k_hw_setup_rx_desc(ah, ds, ah->common.rx_bufsize, 0); |
Bruno Randolf | 0452d4a | 2010-06-16 19:11:35 +0900 | [diff] [blame] | 707 | if (ret) { |
| 708 | ATH5K_ERR(sc, "%s: could not setup RX desc\n", __func__); |
Bruno Randolf | b5eae9f | 2010-05-19 10:18:16 +0900 | [diff] [blame] | 709 | return ret; |
Bruno Randolf | 0452d4a | 2010-06-16 19:11:35 +0900 | [diff] [blame] | 710 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 711 | |
| 712 | if (sc->rxlink != NULL) |
| 713 | *sc->rxlink = bf->daddr; |
| 714 | sc->rxlink = &ds->ds_link; |
| 715 | return 0; |
| 716 | } |
| 717 | |
Bob Copeland | 2ac2927 | 2010-02-09 13:06:54 -0500 | [diff] [blame] | 718 | static enum ath5k_pkt_type get_hw_packet_type(struct sk_buff *skb) |
| 719 | { |
| 720 | struct ieee80211_hdr *hdr; |
| 721 | enum ath5k_pkt_type htype; |
| 722 | __le16 fc; |
| 723 | |
| 724 | hdr = (struct ieee80211_hdr *)skb->data; |
| 725 | fc = hdr->frame_control; |
| 726 | |
| 727 | if (ieee80211_is_beacon(fc)) |
| 728 | htype = AR5K_PKT_TYPE_BEACON; |
| 729 | else if (ieee80211_is_probe_resp(fc)) |
| 730 | htype = AR5K_PKT_TYPE_PROBE_RESP; |
| 731 | else if (ieee80211_is_atim(fc)) |
| 732 | htype = AR5K_PKT_TYPE_ATIM; |
| 733 | else if (ieee80211_is_pspoll(fc)) |
| 734 | htype = AR5K_PKT_TYPE_PSPOLL; |
| 735 | else |
| 736 | htype = AR5K_PKT_TYPE_NORMAL; |
| 737 | |
| 738 | return htype; |
| 739 | } |
| 740 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 741 | static int |
Bob Copeland | cec8db2 | 2009-07-04 12:59:51 -0400 | [diff] [blame] | 742 | ath5k_txbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf, |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 743 | struct ath5k_txq *txq, int padsize) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 744 | { |
| 745 | struct ath5k_hw *ah = sc->ah; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 746 | struct ath5k_desc *ds = bf->desc; |
| 747 | struct sk_buff *skb = bf->skb; |
Johannes Berg | a888d52 | 2008-05-26 16:43:39 +0200 | [diff] [blame] | 748 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 749 | unsigned int pktlen, flags, keyidx = AR5K_TXKEYIX_INVALID; |
Felix Fietkau | 2f7fe87 | 2008-10-05 18:05:48 +0200 | [diff] [blame] | 750 | struct ieee80211_rate *rate; |
| 751 | unsigned int mrr_rate[3], mrr_tries[3]; |
| 752 | int i, ret; |
Bob Copeland | 8902ff4 | 2009-01-22 08:44:20 -0500 | [diff] [blame] | 753 | u16 hw_rate; |
Bob Copeland | 07c1e85 | 2009-01-22 08:44:21 -0500 | [diff] [blame] | 754 | u16 cts_rate = 0; |
| 755 | u16 duration = 0; |
Bob Copeland | 8902ff4 | 2009-01-22 08:44:20 -0500 | [diff] [blame] | 756 | u8 rc_flags; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 757 | |
| 758 | flags = AR5K_TXDESC_INTREQ | AR5K_TXDESC_CLRDMASK; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 759 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 760 | /* XXX endianness */ |
| 761 | bf->skbaddr = pci_map_single(sc->pdev, skb->data, skb->len, |
| 762 | PCI_DMA_TODEVICE); |
| 763 | |
Bob Copeland | 8902ff4 | 2009-01-22 08:44:20 -0500 | [diff] [blame] | 764 | rate = ieee80211_get_tx_rate(sc->hw, info); |
John W. Linville | d8e1ba7 | 2010-08-24 15:27:34 -0400 | [diff] [blame] | 765 | if (!rate) { |
| 766 | ret = -EINVAL; |
| 767 | goto err_unmap; |
| 768 | } |
Bob Copeland | 8902ff4 | 2009-01-22 08:44:20 -0500 | [diff] [blame] | 769 | |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 770 | if (info->flags & IEEE80211_TX_CTL_NO_ACK) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 771 | flags |= AR5K_TXDESC_NOACK; |
| 772 | |
Bob Copeland | 8902ff4 | 2009-01-22 08:44:20 -0500 | [diff] [blame] | 773 | rc_flags = info->control.rates[0].flags; |
| 774 | hw_rate = (rc_flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE) ? |
| 775 | rate->hw_value_short : rate->hw_value; |
| 776 | |
Bruno Randolf | 281c56d | 2008-02-05 18:44:55 +0900 | [diff] [blame] | 777 | pktlen = skb->len; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 778 | |
Nick Kossifidis | 8f655dd | 2009-03-15 22:20:35 +0200 | [diff] [blame] | 779 | /* FIXME: If we are in g mode and rate is a CCK rate |
| 780 | * subtract ah->ah_txpower.txp_cck_ofdm_pwr_delta |
| 781 | * from tx power (value is in dB units already) */ |
Bob Copeland | 362695e | 2009-02-15 12:06:12 -0500 | [diff] [blame] | 782 | if (info->control.hw_key) { |
| 783 | keyidx = info->control.hw_key->hw_key_idx; |
| 784 | pktlen += info->control.hw_key->icv_len; |
| 785 | } |
Bob Copeland | 07c1e85 | 2009-01-22 08:44:21 -0500 | [diff] [blame] | 786 | if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) { |
| 787 | flags |= AR5K_TXDESC_RTSENA; |
| 788 | cts_rate = ieee80211_get_rts_cts_rate(sc->hw, info)->hw_value; |
| 789 | duration = le16_to_cpu(ieee80211_rts_duration(sc->hw, |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 790 | info->control.vif, pktlen, info)); |
Bob Copeland | 07c1e85 | 2009-01-22 08:44:21 -0500 | [diff] [blame] | 791 | } |
| 792 | if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) { |
| 793 | flags |= AR5K_TXDESC_CTSENA; |
| 794 | cts_rate = ieee80211_get_rts_cts_rate(sc->hw, info)->hw_value; |
| 795 | duration = le16_to_cpu(ieee80211_ctstoself_duration(sc->hw, |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 796 | info->control.vif, pktlen, info)); |
Bob Copeland | 07c1e85 | 2009-01-22 08:44:21 -0500 | [diff] [blame] | 797 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 798 | ret = ah->ah_setup_tx_desc(ah, ds, pktlen, |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 799 | ieee80211_get_hdrlen_from_skb(skb), padsize, |
Bob Copeland | 2ac2927 | 2010-02-09 13:06:54 -0500 | [diff] [blame] | 800 | get_hw_packet_type(skb), |
Johannes Berg | 2e92e6f | 2008-05-15 12:55:27 +0200 | [diff] [blame] | 801 | (sc->power_level * 2), |
Bob Copeland | 8902ff4 | 2009-01-22 08:44:20 -0500 | [diff] [blame] | 802 | hw_rate, |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 803 | info->control.rates[0].count, keyidx, ah->ah_tx_ant, flags, |
Bob Copeland | 07c1e85 | 2009-01-22 08:44:21 -0500 | [diff] [blame] | 804 | cts_rate, duration); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 805 | if (ret) |
| 806 | goto err_unmap; |
| 807 | |
Felix Fietkau | 2f7fe87 | 2008-10-05 18:05:48 +0200 | [diff] [blame] | 808 | memset(mrr_rate, 0, sizeof(mrr_rate)); |
| 809 | memset(mrr_tries, 0, sizeof(mrr_tries)); |
| 810 | for (i = 0; i < 3; i++) { |
| 811 | rate = ieee80211_get_alt_retry_rate(sc->hw, info, i); |
| 812 | if (!rate) |
| 813 | break; |
| 814 | |
| 815 | mrr_rate[i] = rate->hw_value; |
Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 816 | mrr_tries[i] = info->control.rates[i + 1].count; |
Felix Fietkau | 2f7fe87 | 2008-10-05 18:05:48 +0200 | [diff] [blame] | 817 | } |
| 818 | |
Bruno Randolf | a666819 | 2010-06-16 19:12:01 +0900 | [diff] [blame] | 819 | ath5k_hw_setup_mrr_tx_desc(ah, ds, |
Felix Fietkau | 2f7fe87 | 2008-10-05 18:05:48 +0200 | [diff] [blame] | 820 | mrr_rate[0], mrr_tries[0], |
| 821 | mrr_rate[1], mrr_tries[1], |
| 822 | mrr_rate[2], mrr_tries[2]); |
| 823 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 824 | ds->ds_link = 0; |
| 825 | ds->ds_data = bf->skbaddr; |
| 826 | |
| 827 | spin_lock_bh(&txq->lock); |
| 828 | list_add_tail(&bf->list, &txq->q); |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 829 | txq->txq_len++; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 830 | if (txq->link == NULL) /* is this first packet? */ |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 831 | ath5k_hw_set_txdp(ah, txq->qnum, bf->daddr); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 832 | else /* no, so only link it */ |
| 833 | *txq->link = bf->daddr; |
| 834 | |
| 835 | txq->link = &ds->ds_link; |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 836 | ath5k_hw_start_tx_dma(ah, txq->qnum); |
Jiri Slaby | 274c7c3 | 2008-07-15 17:44:20 +0200 | [diff] [blame] | 837 | mmiowb(); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 838 | spin_unlock_bh(&txq->lock); |
| 839 | |
| 840 | return 0; |
| 841 | err_unmap: |
| 842 | pci_unmap_single(sc->pdev, bf->skbaddr, skb->len, PCI_DMA_TODEVICE); |
| 843 | return ret; |
| 844 | } |
| 845 | |
| 846 | /*******************\ |
| 847 | * Descriptors setup * |
| 848 | \*******************/ |
| 849 | |
| 850 | static int |
| 851 | ath5k_desc_alloc(struct ath5k_softc *sc, struct pci_dev *pdev) |
| 852 | { |
| 853 | struct ath5k_desc *ds; |
| 854 | struct ath5k_buf *bf; |
| 855 | dma_addr_t da; |
| 856 | unsigned int i; |
| 857 | int ret; |
| 858 | |
| 859 | /* allocate descriptors */ |
| 860 | sc->desc_len = sizeof(struct ath5k_desc) * |
| 861 | (ATH_TXBUF + ATH_RXBUF + ATH_BCBUF + 1); |
| 862 | sc->desc = pci_alloc_consistent(pdev, sc->desc_len, &sc->desc_daddr); |
| 863 | if (sc->desc == NULL) { |
| 864 | ATH5K_ERR(sc, "can't allocate descriptors\n"); |
| 865 | ret = -ENOMEM; |
| 866 | goto err; |
| 867 | } |
| 868 | ds = sc->desc; |
| 869 | da = sc->desc_daddr; |
| 870 | ATH5K_DBG(sc, ATH5K_DEBUG_ANY, "DMA map: %p (%zu) -> %llx\n", |
| 871 | ds, sc->desc_len, (unsigned long long)sc->desc_daddr); |
| 872 | |
| 873 | bf = kcalloc(1 + ATH_TXBUF + ATH_RXBUF + ATH_BCBUF, |
| 874 | sizeof(struct ath5k_buf), GFP_KERNEL); |
| 875 | if (bf == NULL) { |
| 876 | ATH5K_ERR(sc, "can't allocate bufptr\n"); |
| 877 | ret = -ENOMEM; |
| 878 | goto err_free; |
| 879 | } |
| 880 | sc->bufptr = bf; |
| 881 | |
| 882 | INIT_LIST_HEAD(&sc->rxbuf); |
| 883 | for (i = 0; i < ATH_RXBUF; i++, bf++, ds++, da += sizeof(*ds)) { |
| 884 | bf->desc = ds; |
| 885 | bf->daddr = da; |
| 886 | list_add_tail(&bf->list, &sc->rxbuf); |
| 887 | } |
| 888 | |
| 889 | INIT_LIST_HEAD(&sc->txbuf); |
| 890 | sc->txbuf_len = ATH_TXBUF; |
| 891 | for (i = 0; i < ATH_TXBUF; i++, bf++, ds++, |
| 892 | da += sizeof(*ds)) { |
| 893 | bf->desc = ds; |
| 894 | bf->daddr = da; |
| 895 | list_add_tail(&bf->list, &sc->txbuf); |
| 896 | } |
| 897 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 898 | /* beacon buffers */ |
| 899 | INIT_LIST_HEAD(&sc->bcbuf); |
| 900 | for (i = 0; i < ATH_BCBUF; i++, bf++, ds++, da += sizeof(*ds)) { |
| 901 | bf->desc = ds; |
| 902 | bf->daddr = da; |
| 903 | list_add_tail(&bf->list, &sc->bcbuf); |
| 904 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 905 | |
| 906 | return 0; |
| 907 | err_free: |
| 908 | pci_free_consistent(pdev, sc->desc_len, sc->desc, sc->desc_daddr); |
| 909 | err: |
| 910 | sc->desc = NULL; |
| 911 | return ret; |
| 912 | } |
| 913 | |
| 914 | static void |
| 915 | ath5k_desc_free(struct ath5k_softc *sc, struct pci_dev *pdev) |
| 916 | { |
| 917 | struct ath5k_buf *bf; |
| 918 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 919 | list_for_each_entry(bf, &sc->txbuf, list) |
Bruno Randolf | 9e4e43f | 2010-06-16 19:11:17 +0900 | [diff] [blame] | 920 | ath5k_txbuf_free_skb(sc, bf); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 921 | list_for_each_entry(bf, &sc->rxbuf, list) |
Bruno Randolf | 9e4e43f | 2010-06-16 19:11:17 +0900 | [diff] [blame] | 922 | ath5k_rxbuf_free_skb(sc, bf); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 923 | list_for_each_entry(bf, &sc->bcbuf, list) |
| 924 | ath5k_txbuf_free_skb(sc, bf); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 925 | |
| 926 | /* Free memory associated with all descriptors */ |
| 927 | pci_free_consistent(pdev, sc->desc_len, sc->desc, sc->desc_daddr); |
Bruno Randolf | 39d63f2 | 2010-06-16 19:11:41 +0900 | [diff] [blame] | 928 | sc->desc = NULL; |
| 929 | sc->desc_daddr = 0; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 930 | |
| 931 | kfree(sc->bufptr); |
| 932 | sc->bufptr = NULL; |
| 933 | } |
| 934 | |
| 935 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 936 | /**************\ |
| 937 | * Queues setup * |
| 938 | \**************/ |
| 939 | |
| 940 | static struct ath5k_txq * |
| 941 | ath5k_txq_setup(struct ath5k_softc *sc, |
| 942 | int qtype, int subtype) |
| 943 | { |
| 944 | struct ath5k_hw *ah = sc->ah; |
| 945 | struct ath5k_txq *txq; |
| 946 | struct ath5k_txq_info qi = { |
| 947 | .tqi_subtype = subtype, |
Bruno Randolf | de8af45 | 2010-09-17 11:37:12 +0900 | [diff] [blame] | 948 | /* XXX: default values not correct for B and XR channels, |
| 949 | * but who cares? */ |
| 950 | .tqi_aifs = AR5K_TUNE_AIFS, |
| 951 | .tqi_cw_min = AR5K_TUNE_CWMIN, |
| 952 | .tqi_cw_max = AR5K_TUNE_CWMAX |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 953 | }; |
| 954 | int qnum; |
| 955 | |
| 956 | /* |
| 957 | * Enable interrupts only for EOL and DESC conditions. |
| 958 | * We mark tx descriptors to receive a DESC interrupt |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 959 | * when a tx queue gets deep; otherwise we wait for the |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 960 | * EOL to reap descriptors. Note that this is done to |
| 961 | * reduce interrupt load and this only defers reaping |
| 962 | * descriptors, never transmitting frames. Aside from |
| 963 | * reducing interrupts this also permits more concurrency. |
| 964 | * The only potential downside is if the tx queue backs |
| 965 | * up in which case the top half of the kernel may backup |
| 966 | * due to a lack of tx descriptors. |
| 967 | */ |
| 968 | qi.tqi_flags = AR5K_TXQ_FLAG_TXEOLINT_ENABLE | |
| 969 | AR5K_TXQ_FLAG_TXDESCINT_ENABLE; |
| 970 | qnum = ath5k_hw_setup_tx_queue(ah, qtype, &qi); |
| 971 | if (qnum < 0) { |
| 972 | /* |
| 973 | * NB: don't print a message, this happens |
| 974 | * normally on parts with too few tx queues |
| 975 | */ |
| 976 | return ERR_PTR(qnum); |
| 977 | } |
| 978 | if (qnum >= ARRAY_SIZE(sc->txqs)) { |
| 979 | ATH5K_ERR(sc, "hw qnum %u out of range, max %tu!\n", |
| 980 | qnum, ARRAY_SIZE(sc->txqs)); |
| 981 | ath5k_hw_release_tx_queue(ah, qnum); |
| 982 | return ERR_PTR(-EINVAL); |
| 983 | } |
| 984 | txq = &sc->txqs[qnum]; |
| 985 | if (!txq->setup) { |
| 986 | txq->qnum = qnum; |
| 987 | txq->link = NULL; |
| 988 | INIT_LIST_HEAD(&txq->q); |
| 989 | spin_lock_init(&txq->lock); |
| 990 | txq->setup = true; |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 991 | txq->txq_len = 0; |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 992 | txq->txq_poll_mark = false; |
Bruno Randolf | 923e5b3 | 2010-09-17 11:37:02 +0900 | [diff] [blame] | 993 | txq->txq_stuck = 0; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 994 | } |
| 995 | return &sc->txqs[qnum]; |
| 996 | } |
| 997 | |
| 998 | static int |
| 999 | ath5k_beaconq_setup(struct ath5k_hw *ah) |
| 1000 | { |
| 1001 | struct ath5k_txq_info qi = { |
Bruno Randolf | de8af45 | 2010-09-17 11:37:12 +0900 | [diff] [blame] | 1002 | /* XXX: default values not correct for B and XR channels, |
| 1003 | * but who cares? */ |
| 1004 | .tqi_aifs = AR5K_TUNE_AIFS, |
| 1005 | .tqi_cw_min = AR5K_TUNE_CWMIN, |
| 1006 | .tqi_cw_max = AR5K_TUNE_CWMAX, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1007 | /* NB: for dynamic turbo, don't enable any other interrupts */ |
| 1008 | .tqi_flags = AR5K_TXQ_FLAG_TXDESCINT_ENABLE |
| 1009 | }; |
| 1010 | |
| 1011 | return ath5k_hw_setup_tx_queue(ah, AR5K_TX_QUEUE_BEACON, &qi); |
| 1012 | } |
| 1013 | |
| 1014 | static int |
| 1015 | ath5k_beaconq_config(struct ath5k_softc *sc) |
| 1016 | { |
| 1017 | struct ath5k_hw *ah = sc->ah; |
| 1018 | struct ath5k_txq_info qi; |
| 1019 | int ret; |
| 1020 | |
| 1021 | ret = ath5k_hw_get_tx_queueprops(ah, sc->bhalq, &qi); |
| 1022 | if (ret) |
Bob Copeland | a951ae2 | 2010-01-20 23:51:04 -0500 | [diff] [blame] | 1023 | goto err; |
| 1024 | |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1025 | if (sc->opmode == NL80211_IFTYPE_AP || |
| 1026 | sc->opmode == NL80211_IFTYPE_MESH_POINT) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1027 | /* |
| 1028 | * Always burst out beacon and CAB traffic |
| 1029 | * (aifs = cwmin = cwmax = 0) |
| 1030 | */ |
| 1031 | qi.tqi_aifs = 0; |
| 1032 | qi.tqi_cw_min = 0; |
| 1033 | qi.tqi_cw_max = 0; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1034 | } else if (sc->opmode == NL80211_IFTYPE_ADHOC) { |
Bruno Randolf | 6d91e1d | 2008-01-19 18:18:41 +0900 | [diff] [blame] | 1035 | /* |
| 1036 | * Adhoc mode; backoff between 0 and (2 * cw_min). |
| 1037 | */ |
| 1038 | qi.tqi_aifs = 0; |
| 1039 | qi.tqi_cw_min = 0; |
Bruno Randolf | de8af45 | 2010-09-17 11:37:12 +0900 | [diff] [blame] | 1040 | qi.tqi_cw_max = 2 * AR5K_TUNE_CWMIN; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1041 | } |
| 1042 | |
Bruno Randolf | 6d91e1d | 2008-01-19 18:18:41 +0900 | [diff] [blame] | 1043 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, |
| 1044 | "beacon queueprops tqi_aifs:%d tqi_cw_min:%d tqi_cw_max:%d\n", |
| 1045 | qi.tqi_aifs, qi.tqi_cw_min, qi.tqi_cw_max); |
| 1046 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1047 | ret = ath5k_hw_set_tx_queueprops(ah, sc->bhalq, &qi); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1048 | if (ret) { |
| 1049 | ATH5K_ERR(sc, "%s: unable to update parameters for beacon " |
| 1050 | "hardware queue!\n", __func__); |
Bob Copeland | a951ae2 | 2010-01-20 23:51:04 -0500 | [diff] [blame] | 1051 | goto err; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1052 | } |
Bob Copeland | a951ae2 | 2010-01-20 23:51:04 -0500 | [diff] [blame] | 1053 | ret = ath5k_hw_reset_tx_queue(ah, sc->bhalq); /* push to h/w */ |
| 1054 | if (ret) |
| 1055 | goto err; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1056 | |
Bob Copeland | a951ae2 | 2010-01-20 23:51:04 -0500 | [diff] [blame] | 1057 | /* reconfigure cabq with ready time to 80% of beacon_interval */ |
| 1058 | ret = ath5k_hw_get_tx_queueprops(ah, AR5K_TX_QUEUE_ID_CAB, &qi); |
| 1059 | if (ret) |
| 1060 | goto err; |
| 1061 | |
| 1062 | qi.tqi_ready_time = (sc->bintval * 80) / 100; |
| 1063 | ret = ath5k_hw_set_tx_queueprops(ah, AR5K_TX_QUEUE_ID_CAB, &qi); |
| 1064 | if (ret) |
| 1065 | goto err; |
| 1066 | |
| 1067 | ret = ath5k_hw_reset_tx_queue(ah, AR5K_TX_QUEUE_ID_CAB); |
| 1068 | err: |
| 1069 | return ret; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1070 | } |
| 1071 | |
| 1072 | static void |
| 1073 | ath5k_txq_drainq(struct ath5k_softc *sc, struct ath5k_txq *txq) |
| 1074 | { |
| 1075 | struct ath5k_buf *bf, *bf0; |
| 1076 | |
| 1077 | /* |
| 1078 | * NB: this assumes output has been stopped and |
| 1079 | * we do not need to block ath5k_tx_tasklet |
| 1080 | */ |
| 1081 | spin_lock_bh(&txq->lock); |
| 1082 | list_for_each_entry_safe(bf, bf0, &txq->q, list) { |
Bruno Randolf | b47f407 | 2008-03-05 18:35:45 +0900 | [diff] [blame] | 1083 | ath5k_debug_printtxbuf(sc, bf); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1084 | |
Bruno Randolf | 9e4e43f | 2010-06-16 19:11:17 +0900 | [diff] [blame] | 1085 | ath5k_txbuf_free_skb(sc, bf); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1086 | |
| 1087 | spin_lock_bh(&sc->txbuflock); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1088 | list_move_tail(&bf->list, &sc->txbuf); |
| 1089 | sc->txbuf_len++; |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 1090 | txq->txq_len--; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1091 | spin_unlock_bh(&sc->txbuflock); |
| 1092 | } |
| 1093 | txq->link = NULL; |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 1094 | txq->txq_poll_mark = false; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1095 | spin_unlock_bh(&txq->lock); |
| 1096 | } |
| 1097 | |
| 1098 | /* |
| 1099 | * Drain the transmit queues and reclaim resources. |
| 1100 | */ |
| 1101 | static void |
| 1102 | ath5k_txq_cleanup(struct ath5k_softc *sc) |
| 1103 | { |
| 1104 | struct ath5k_hw *ah = sc->ah; |
| 1105 | unsigned int i; |
| 1106 | |
| 1107 | /* XXX return value */ |
| 1108 | if (likely(!test_bit(ATH_STAT_INVALID, sc->status))) { |
| 1109 | /* don't touch the hardware if marked invalid */ |
| 1110 | ath5k_hw_stop_tx_dma(ah, sc->bhalq); |
| 1111 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "beacon queue %x\n", |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1112 | ath5k_hw_get_txdp(ah, sc->bhalq)); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1113 | for (i = 0; i < ARRAY_SIZE(sc->txqs); i++) |
| 1114 | if (sc->txqs[i].setup) { |
| 1115 | ath5k_hw_stop_tx_dma(ah, sc->txqs[i].qnum); |
| 1116 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "txq [%u] %x, " |
| 1117 | "link %p\n", |
| 1118 | sc->txqs[i].qnum, |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1119 | ath5k_hw_get_txdp(ah, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1120 | sc->txqs[i].qnum), |
| 1121 | sc->txqs[i].link); |
| 1122 | } |
| 1123 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1124 | |
| 1125 | for (i = 0; i < ARRAY_SIZE(sc->txqs); i++) |
| 1126 | if (sc->txqs[i].setup) |
| 1127 | ath5k_txq_drainq(sc, &sc->txqs[i]); |
| 1128 | } |
| 1129 | |
| 1130 | static void |
| 1131 | ath5k_txq_release(struct ath5k_softc *sc) |
| 1132 | { |
| 1133 | struct ath5k_txq *txq = sc->txqs; |
| 1134 | unsigned int i; |
| 1135 | |
| 1136 | for (i = 0; i < ARRAY_SIZE(sc->txqs); i++, txq++) |
| 1137 | if (txq->setup) { |
| 1138 | ath5k_hw_release_tx_queue(sc->ah, txq->qnum); |
| 1139 | txq->setup = false; |
| 1140 | } |
| 1141 | } |
| 1142 | |
| 1143 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1144 | /*************\ |
| 1145 | * RX Handling * |
| 1146 | \*************/ |
| 1147 | |
| 1148 | /* |
| 1149 | * Enable the receive h/w following a reset. |
| 1150 | */ |
| 1151 | static int |
| 1152 | ath5k_rx_start(struct ath5k_softc *sc) |
| 1153 | { |
| 1154 | struct ath5k_hw *ah = sc->ah; |
Luis R. Rodriguez | db71971 | 2009-09-10 11:20:57 -0700 | [diff] [blame] | 1155 | struct ath_common *common = ath5k_hw_common(ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1156 | struct ath5k_buf *bf; |
| 1157 | int ret; |
| 1158 | |
Nick Kossifidis | b612798 | 2010-08-15 13:03:11 -0400 | [diff] [blame] | 1159 | common->rx_bufsize = roundup(IEEE80211_MAX_FRAME_LEN, common->cachelsz); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1160 | |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 1161 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "cachelsz %u rx_bufsize %u\n", |
| 1162 | common->cachelsz, common->rx_bufsize); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1163 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1164 | spin_lock_bh(&sc->rxbuflock); |
Bob Copeland | 2692504 | 2009-04-15 07:57:36 -0400 | [diff] [blame] | 1165 | sc->rxlink = NULL; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1166 | list_for_each_entry(bf, &sc->rxbuf, list) { |
| 1167 | ret = ath5k_rxbuf_setup(sc, bf); |
| 1168 | if (ret != 0) { |
| 1169 | spin_unlock_bh(&sc->rxbuflock); |
| 1170 | goto err; |
| 1171 | } |
| 1172 | } |
| 1173 | bf = list_first_entry(&sc->rxbuf, struct ath5k_buf, list); |
Bob Copeland | 2692504 | 2009-04-15 07:57:36 -0400 | [diff] [blame] | 1174 | ath5k_hw_set_rxdp(ah, bf->daddr); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1175 | spin_unlock_bh(&sc->rxbuflock); |
| 1176 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1177 | ath5k_hw_start_rx_dma(ah); /* enable recv descriptors */ |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1178 | ath5k_mode_setup(sc, NULL); /* set filters, etc. */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1179 | ath5k_hw_start_rx_pcu(ah); /* re-enable PCU/DMA engine */ |
| 1180 | |
| 1181 | return 0; |
| 1182 | err: |
| 1183 | return ret; |
| 1184 | } |
| 1185 | |
| 1186 | /* |
| 1187 | * Disable the receive h/w in preparation for a reset. |
| 1188 | */ |
| 1189 | static void |
| 1190 | ath5k_rx_stop(struct ath5k_softc *sc) |
| 1191 | { |
| 1192 | struct ath5k_hw *ah = sc->ah; |
| 1193 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1194 | ath5k_hw_stop_rx_pcu(ah); /* disable PCU */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1195 | ath5k_hw_set_rx_filter(ah, 0); /* clear recv filter */ |
| 1196 | ath5k_hw_stop_rx_dma(ah); /* disable DMA engine */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1197 | |
| 1198 | ath5k_debug_printrxbuffs(sc, ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1199 | } |
| 1200 | |
| 1201 | static unsigned int |
Bruno Randolf | 8a89f06 | 2010-06-16 19:11:51 +0900 | [diff] [blame] | 1202 | ath5k_rx_decrypted(struct ath5k_softc *sc, struct sk_buff *skb, |
| 1203 | struct ath5k_rx_status *rs) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1204 | { |
Luis R. Rodriguez | dc1e001 | 2009-11-04 17:47:31 -0800 | [diff] [blame] | 1205 | struct ath5k_hw *ah = sc->ah; |
| 1206 | struct ath_common *common = ath5k_hw_common(ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1207 | struct ieee80211_hdr *hdr = (void *)skb->data; |
Harvey Harrison | 798ee98 | 2008-07-15 18:44:02 -0700 | [diff] [blame] | 1208 | unsigned int keyix, hlen; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1209 | |
Bruno Randolf | b47f407 | 2008-03-05 18:35:45 +0900 | [diff] [blame] | 1210 | if (!(rs->rs_status & AR5K_RXERR_DECRYPT) && |
| 1211 | rs->rs_keyix != AR5K_RXKEYIX_INVALID) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1212 | return RX_FLAG_DECRYPTED; |
| 1213 | |
| 1214 | /* Apparently when a default key is used to decrypt the packet |
| 1215 | the hw does not set the index used to decrypt. In such cases |
| 1216 | get the index from the packet. */ |
Harvey Harrison | 798ee98 | 2008-07-15 18:44:02 -0700 | [diff] [blame] | 1217 | hlen = ieee80211_hdrlen(hdr->frame_control); |
Harvey Harrison | 24b56e7 | 2008-06-14 23:33:38 -0700 | [diff] [blame] | 1218 | if (ieee80211_has_protected(hdr->frame_control) && |
| 1219 | !(rs->rs_status & AR5K_RXERR_DECRYPT) && |
| 1220 | skb->len >= hlen + 4) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1221 | keyix = skb->data[hlen + 3] >> 6; |
| 1222 | |
Luis R. Rodriguez | dc1e001 | 2009-11-04 17:47:31 -0800 | [diff] [blame] | 1223 | if (test_bit(keyix, common->keymap)) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1224 | return RX_FLAG_DECRYPTED; |
| 1225 | } |
| 1226 | |
| 1227 | return 0; |
| 1228 | } |
| 1229 | |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1230 | |
| 1231 | static void |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1232 | ath5k_check_ibss_tsf(struct ath5k_softc *sc, struct sk_buff *skb, |
| 1233 | struct ieee80211_rx_status *rxs) |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1234 | { |
Luis R. Rodriguez | 954fece | 2009-09-10 10:51:33 -0700 | [diff] [blame] | 1235 | struct ath_common *common = ath5k_hw_common(sc->ah); |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1236 | u64 tsf, bc_tstamp; |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1237 | u32 hw_tu; |
| 1238 | struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data; |
| 1239 | |
Harvey Harrison | 24b56e7 | 2008-06-14 23:33:38 -0700 | [diff] [blame] | 1240 | if (ieee80211_is_beacon(mgmt->frame_control) && |
Pavel Roskin | 38c07b4 | 2008-02-26 17:59:14 -0500 | [diff] [blame] | 1241 | le16_to_cpu(mgmt->u.beacon.capab_info) & WLAN_CAPABILITY_IBSS && |
Luis R. Rodriguez | 954fece | 2009-09-10 10:51:33 -0700 | [diff] [blame] | 1242 | memcmp(mgmt->bssid, common->curbssid, ETH_ALEN) == 0) { |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1243 | /* |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1244 | * Received an IBSS beacon with the same BSSID. Hardware *must* |
| 1245 | * have updated the local TSF. We have to work around various |
| 1246 | * hardware bugs, though... |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1247 | */ |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1248 | tsf = ath5k_hw_get_tsf64(sc->ah); |
| 1249 | bc_tstamp = le64_to_cpu(mgmt->u.beacon.timestamp); |
| 1250 | hw_tu = TSF_TO_TU(tsf); |
| 1251 | |
| 1252 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
| 1253 | "beacon %llx mactime %llx (diff %lld) tsf now %llx\n", |
John W. Linville | 06501d2 | 2008-04-01 17:38:47 -0400 | [diff] [blame] | 1254 | (unsigned long long)bc_tstamp, |
| 1255 | (unsigned long long)rxs->mactime, |
| 1256 | (unsigned long long)(rxs->mactime - bc_tstamp), |
| 1257 | (unsigned long long)tsf); |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1258 | |
| 1259 | /* |
| 1260 | * Sometimes the HW will give us a wrong tstamp in the rx |
| 1261 | * status, causing the timestamp extension to go wrong. |
| 1262 | * (This seems to happen especially with beacon frames bigger |
| 1263 | * than 78 byte (incl. FCS)) |
| 1264 | * But we know that the receive timestamp must be later than the |
| 1265 | * timestamp of the beacon since HW must have synced to that. |
| 1266 | * |
| 1267 | * NOTE: here we assume mactime to be after the frame was |
| 1268 | * received, not like mac80211 which defines it at the start. |
| 1269 | */ |
| 1270 | if (bc_tstamp > rxs->mactime) { |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1271 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1272 | "fixing mactime from %llx to %llx\n", |
John W. Linville | 06501d2 | 2008-04-01 17:38:47 -0400 | [diff] [blame] | 1273 | (unsigned long long)rxs->mactime, |
| 1274 | (unsigned long long)tsf); |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1275 | rxs->mactime = tsf; |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1276 | } |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1277 | |
| 1278 | /* |
| 1279 | * Local TSF might have moved higher than our beacon timers, |
| 1280 | * in that case we have to update them to continue sending |
| 1281 | * beacons. This also takes care of synchronizing beacon sending |
| 1282 | * times with other stations. |
| 1283 | */ |
| 1284 | if (hw_tu >= sc->nexttbtt) |
| 1285 | ath5k_beacon_update_timers(sc, bc_tstamp); |
Bruno Randolf | 7f89612 | 2010-09-27 12:22:21 +0900 | [diff] [blame] | 1286 | |
| 1287 | /* Check if the beacon timers are still correct, because a TSF |
| 1288 | * update might have created a window between them - for a |
| 1289 | * longer description see the comment of this function: */ |
| 1290 | if (!ath5k_hw_check_beacon_timers(sc->ah, sc->bintval)) { |
| 1291 | ath5k_beacon_update_timers(sc, bc_tstamp); |
| 1292 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
| 1293 | "fixed beacon timers after beacon receive\n"); |
| 1294 | } |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 1295 | } |
| 1296 | } |
| 1297 | |
Bruno Randolf | b4ea449 | 2010-03-25 14:49:25 +0900 | [diff] [blame] | 1298 | static void |
| 1299 | ath5k_update_beacon_rssi(struct ath5k_softc *sc, struct sk_buff *skb, int rssi) |
| 1300 | { |
| 1301 | struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data; |
| 1302 | struct ath5k_hw *ah = sc->ah; |
| 1303 | struct ath_common *common = ath5k_hw_common(ah); |
| 1304 | |
| 1305 | /* only beacons from our BSSID */ |
| 1306 | if (!ieee80211_is_beacon(mgmt->frame_control) || |
| 1307 | memcmp(mgmt->bssid, common->curbssid, ETH_ALEN) != 0) |
| 1308 | return; |
| 1309 | |
| 1310 | ah->ah_beacon_rssi_avg = ath5k_moving_average(ah->ah_beacon_rssi_avg, |
| 1311 | rssi); |
| 1312 | |
| 1313 | /* in IBSS mode we should keep RSSI statistics per neighbour */ |
| 1314 | /* le16_to_cpu(mgmt->u.beacon.capab_info) & WLAN_CAPABILITY_IBSS */ |
| 1315 | } |
| 1316 | |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1317 | /* |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 1318 | * Compute padding position. skb must contain an IEEE 802.11 frame |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1319 | */ |
| 1320 | static int ath5k_common_padpos(struct sk_buff *skb) |
| 1321 | { |
| 1322 | struct ieee80211_hdr * hdr = (struct ieee80211_hdr *)skb->data; |
| 1323 | __le16 frame_control = hdr->frame_control; |
| 1324 | int padpos = 24; |
| 1325 | |
| 1326 | if (ieee80211_has_a4(frame_control)) { |
| 1327 | padpos += ETH_ALEN; |
| 1328 | } |
| 1329 | if (ieee80211_is_data_qos(frame_control)) { |
| 1330 | padpos += IEEE80211_QOS_CTL_LEN; |
| 1331 | } |
| 1332 | |
| 1333 | return padpos; |
| 1334 | } |
| 1335 | |
| 1336 | /* |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 1337 | * This function expects an 802.11 frame and returns the number of |
| 1338 | * bytes added, or -1 if we don't have enough header room. |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1339 | */ |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1340 | static int ath5k_add_padding(struct sk_buff *skb) |
| 1341 | { |
| 1342 | int padpos = ath5k_common_padpos(skb); |
| 1343 | int padsize = padpos & 3; |
| 1344 | |
| 1345 | if (padsize && skb->len>padpos) { |
| 1346 | |
| 1347 | if (skb_headroom(skb) < padsize) |
| 1348 | return -1; |
| 1349 | |
| 1350 | skb_push(skb, padsize); |
| 1351 | memmove(skb->data, skb->data+padsize, padpos); |
| 1352 | return padsize; |
| 1353 | } |
| 1354 | |
| 1355 | return 0; |
| 1356 | } |
| 1357 | |
| 1358 | /* |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 1359 | * The MAC header is padded to have 32-bit boundary if the |
| 1360 | * packet payload is non-zero. The general calculation for |
| 1361 | * padsize would take into account odd header lengths: |
| 1362 | * padsize = 4 - (hdrlen & 3); however, since only |
| 1363 | * even-length headers are used, padding can only be 0 or 2 |
| 1364 | * bytes and we can optimize this a bit. We must not try to |
| 1365 | * remove padding from short control frames that do not have a |
| 1366 | * payload. |
| 1367 | * |
| 1368 | * This function expects an 802.11 frame and returns the number of |
| 1369 | * bytes removed. |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1370 | */ |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1371 | static int ath5k_remove_padding(struct sk_buff *skb) |
| 1372 | { |
| 1373 | int padpos = ath5k_common_padpos(skb); |
| 1374 | int padsize = padpos & 3; |
| 1375 | |
| 1376 | if (padsize && skb->len>=padpos+padsize) { |
| 1377 | memmove(skb->data + padsize, skb->data, padpos); |
| 1378 | skb_pull(skb, padsize); |
| 1379 | return padsize; |
| 1380 | } |
| 1381 | |
| 1382 | return 0; |
| 1383 | } |
| 1384 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1385 | static void |
Bruno Randolf | 8a89f06 | 2010-06-16 19:11:51 +0900 | [diff] [blame] | 1386 | ath5k_receive_frame(struct ath5k_softc *sc, struct sk_buff *skb, |
| 1387 | struct ath5k_rx_status *rs) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1388 | { |
Bob Copeland | 1c5256b | 2009-08-24 23:00:32 -0400 | [diff] [blame] | 1389 | struct ieee80211_rx_status *rxs; |
Bruno Randolf | 8a89f06 | 2010-06-16 19:11:51 +0900 | [diff] [blame] | 1390 | |
Bruno Randolf | 8a89f06 | 2010-06-16 19:11:51 +0900 | [diff] [blame] | 1391 | ath5k_remove_padding(skb); |
| 1392 | |
| 1393 | rxs = IEEE80211_SKB_RXCB(skb); |
| 1394 | |
| 1395 | rxs->flag = 0; |
| 1396 | if (unlikely(rs->rs_status & AR5K_RXERR_MIC)) |
| 1397 | rxs->flag |= RX_FLAG_MMIC_ERROR; |
| 1398 | |
| 1399 | /* |
| 1400 | * always extend the mac timestamp, since this information is |
| 1401 | * also needed for proper IBSS merging. |
| 1402 | * |
| 1403 | * XXX: it might be too late to do it here, since rs_tstamp is |
| 1404 | * 15bit only. that means TSF extension has to be done within |
| 1405 | * 32768usec (about 32ms). it might be necessary to move this to |
| 1406 | * the interrupt handler, like it is done in madwifi. |
| 1407 | * |
| 1408 | * Unfortunately we don't know when the hardware takes the rx |
| 1409 | * timestamp (beginning of phy frame, data frame, end of rx?). |
| 1410 | * The only thing we know is that it is hardware specific... |
| 1411 | * On AR5213 it seems the rx timestamp is at the end of the |
| 1412 | * frame, but i'm not sure. |
| 1413 | * |
| 1414 | * NOTE: mac80211 defines mactime at the beginning of the first |
| 1415 | * data symbol. Since we don't have any time references it's |
| 1416 | * impossible to comply to that. This affects IBSS merge only |
| 1417 | * right now, so it's not too bad... |
| 1418 | */ |
| 1419 | rxs->mactime = ath5k_extend_tsf(sc->ah, rs->rs_tstamp); |
| 1420 | rxs->flag |= RX_FLAG_TSFT; |
| 1421 | |
| 1422 | rxs->freq = sc->curchan->center_freq; |
| 1423 | rxs->band = sc->curband->band; |
| 1424 | |
| 1425 | rxs->signal = sc->ah->ah_noise_floor + rs->rs_rssi; |
| 1426 | |
| 1427 | rxs->antenna = rs->rs_antenna; |
| 1428 | |
| 1429 | if (rs->rs_antenna > 0 && rs->rs_antenna < 5) |
| 1430 | sc->stats.antenna_rx[rs->rs_antenna]++; |
| 1431 | else |
| 1432 | sc->stats.antenna_rx[0]++; /* invalid */ |
| 1433 | |
| 1434 | rxs->rate_idx = ath5k_hw_to_driver_rix(sc, rs->rs_rate); |
| 1435 | rxs->flag |= ath5k_rx_decrypted(sc, skb, rs); |
| 1436 | |
| 1437 | if (rxs->rate_idx >= 0 && rs->rs_rate == |
| 1438 | sc->curband->bitrates[rxs->rate_idx].hw_value_short) |
| 1439 | rxs->flag |= RX_FLAG_SHORTPRE; |
| 1440 | |
| 1441 | ath5k_debug_dump_skb(sc, skb, "RX ", 0); |
| 1442 | |
| 1443 | ath5k_update_beacon_rssi(sc, skb, rs->rs_rssi); |
| 1444 | |
| 1445 | /* check beacons in IBSS mode */ |
| 1446 | if (sc->opmode == NL80211_IFTYPE_ADHOC) |
| 1447 | ath5k_check_ibss_tsf(sc, skb, rxs); |
| 1448 | |
| 1449 | ieee80211_rx(sc->hw, skb); |
| 1450 | } |
| 1451 | |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1452 | /** ath5k_frame_receive_ok() - Do we want to receive this frame or not? |
| 1453 | * |
| 1454 | * Check if we want to further process this frame or not. Also update |
| 1455 | * statistics. Return true if we want this frame, false if not. |
| 1456 | */ |
| 1457 | static bool |
| 1458 | ath5k_receive_frame_ok(struct ath5k_softc *sc, struct ath5k_rx_status *rs) |
| 1459 | { |
| 1460 | sc->stats.rx_all_count++; |
Ben Greear | b72acdd | 2010-10-01 10:54:04 -0700 | [diff] [blame] | 1461 | sc->stats.rx_bytes_count += rs->rs_datalen; |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1462 | |
| 1463 | if (unlikely(rs->rs_status)) { |
| 1464 | if (rs->rs_status & AR5K_RXERR_CRC) |
| 1465 | sc->stats.rxerr_crc++; |
| 1466 | if (rs->rs_status & AR5K_RXERR_FIFO) |
| 1467 | sc->stats.rxerr_fifo++; |
| 1468 | if (rs->rs_status & AR5K_RXERR_PHY) { |
| 1469 | sc->stats.rxerr_phy++; |
| 1470 | if (rs->rs_phyerr > 0 && rs->rs_phyerr < 32) |
| 1471 | sc->stats.rxerr_phy_code[rs->rs_phyerr]++; |
| 1472 | return false; |
| 1473 | } |
| 1474 | if (rs->rs_status & AR5K_RXERR_DECRYPT) { |
| 1475 | /* |
| 1476 | * Decrypt error. If the error occurred |
| 1477 | * because there was no hardware key, then |
| 1478 | * let the frame through so the upper layers |
| 1479 | * can process it. This is necessary for 5210 |
| 1480 | * parts which have no way to setup a ``clear'' |
| 1481 | * key cache entry. |
| 1482 | * |
| 1483 | * XXX do key cache faulting |
| 1484 | */ |
| 1485 | sc->stats.rxerr_decrypt++; |
| 1486 | if (rs->rs_keyix == AR5K_RXKEYIX_INVALID && |
| 1487 | !(rs->rs_status & AR5K_RXERR_CRC)) |
| 1488 | return true; |
| 1489 | } |
| 1490 | if (rs->rs_status & AR5K_RXERR_MIC) { |
| 1491 | sc->stats.rxerr_mic++; |
| 1492 | return true; |
| 1493 | } |
| 1494 | |
Bob Copeland | 23538c2 | 2010-08-15 13:03:13 -0400 | [diff] [blame] | 1495 | /* reject any frames with non-crypto errors */ |
| 1496 | if (rs->rs_status & ~(AR5K_RXERR_DECRYPT)) |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1497 | return false; |
| 1498 | } |
| 1499 | |
| 1500 | if (unlikely(rs->rs_more)) { |
| 1501 | sc->stats.rxerr_jumbo++; |
| 1502 | return false; |
| 1503 | } |
| 1504 | return true; |
| 1505 | } |
| 1506 | |
Bruno Randolf | 8a89f06 | 2010-06-16 19:11:51 +0900 | [diff] [blame] | 1507 | static void |
| 1508 | ath5k_tasklet_rx(unsigned long data) |
| 1509 | { |
Bruno Randolf | b47f407 | 2008-03-05 18:35:45 +0900 | [diff] [blame] | 1510 | struct ath5k_rx_status rs = {}; |
Bob Copeland | b6ea035 | 2009-01-10 14:42:54 -0500 | [diff] [blame] | 1511 | struct sk_buff *skb, *next_skb; |
| 1512 | dma_addr_t next_skb_addr; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1513 | struct ath5k_softc *sc = (void *)data; |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 1514 | struct ath5k_hw *ah = sc->ah; |
| 1515 | struct ath_common *common = ath5k_hw_common(ah); |
Bob Copeland | c57ca81 | 2009-04-15 07:57:35 -0400 | [diff] [blame] | 1516 | struct ath5k_buf *bf; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1517 | struct ath5k_desc *ds; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1518 | int ret; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1519 | |
| 1520 | spin_lock(&sc->rxbuflock); |
Jiri Slaby | 3a0f2c8 | 2008-07-15 17:44:18 +0200 | [diff] [blame] | 1521 | if (list_empty(&sc->rxbuf)) { |
| 1522 | ATH5K_WARN(sc, "empty rx buf pool\n"); |
| 1523 | goto unlock; |
| 1524 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1525 | do { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1526 | bf = list_first_entry(&sc->rxbuf, struct ath5k_buf, list); |
| 1527 | BUG_ON(bf->skb == NULL); |
| 1528 | skb = bf->skb; |
| 1529 | ds = bf->desc; |
| 1530 | |
Bob Copeland | c57ca81 | 2009-04-15 07:57:35 -0400 | [diff] [blame] | 1531 | /* bail if HW is still using self-linked descriptor */ |
| 1532 | if (ath5k_hw_get_rxdp(sc->ah) == bf->daddr) |
| 1533 | break; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1534 | |
Bruno Randolf | b47f407 | 2008-03-05 18:35:45 +0900 | [diff] [blame] | 1535 | ret = sc->ah->ah_proc_rx_desc(sc->ah, ds, &rs); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1536 | if (unlikely(ret == -EINPROGRESS)) |
| 1537 | break; |
| 1538 | else if (unlikely(ret)) { |
| 1539 | ATH5K_ERR(sc, "error in processing rx descriptor\n"); |
Bruno Randolf | 7644395 | 2010-03-09 16:56:00 +0900 | [diff] [blame] | 1540 | sc->stats.rxerr_proc++; |
Bruno Randolf | b16062f | 2010-06-16 19:11:46 +0900 | [diff] [blame] | 1541 | break; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1542 | } |
| 1543 | |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1544 | if (ath5k_receive_frame_ok(sc, &rs)) { |
| 1545 | next_skb = ath5k_rx_skb_alloc(sc, &next_skb_addr); |
Bruno Randolf | 7644395 | 2010-03-09 16:56:00 +0900 | [diff] [blame] | 1546 | |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1547 | /* |
| 1548 | * If we can't replace bf->skb with a new skb under |
| 1549 | * memory pressure, just skip this packet |
| 1550 | */ |
| 1551 | if (!next_skb) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1552 | goto next; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1553 | |
Bruno Randolf | 02a78b4 | 2010-06-16 19:11:56 +0900 | [diff] [blame] | 1554 | pci_unmap_single(sc->pdev, bf->skbaddr, |
| 1555 | common->rx_bufsize, |
| 1556 | PCI_DMA_FROMDEVICE); |
| 1557 | |
| 1558 | skb_put(skb, rs.rs_datalen); |
| 1559 | |
| 1560 | ath5k_receive_frame(sc, skb, &rs); |
| 1561 | |
| 1562 | bf->skb = next_skb; |
| 1563 | bf->skbaddr = next_skb_addr; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1564 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1565 | next: |
| 1566 | list_move_tail(&bf->list, &sc->rxbuf); |
| 1567 | } while (ath5k_rxbuf_setup(sc, bf) == 0); |
Jiri Slaby | 3a0f2c8 | 2008-07-15 17:44:18 +0200 | [diff] [blame] | 1568 | unlock: |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1569 | spin_unlock(&sc->rxbuflock); |
| 1570 | } |
| 1571 | |
| 1572 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1573 | /*************\ |
| 1574 | * TX Handling * |
| 1575 | \*************/ |
| 1576 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1577 | static int ath5k_tx_queue(struct ieee80211_hw *hw, struct sk_buff *skb, |
| 1578 | struct ath5k_txq *txq) |
| 1579 | { |
| 1580 | struct ath5k_softc *sc = hw->priv; |
| 1581 | struct ath5k_buf *bf; |
| 1582 | unsigned long flags; |
| 1583 | int padsize; |
| 1584 | |
| 1585 | ath5k_debug_dump_skb(sc, skb, "TX ", 1); |
| 1586 | |
| 1587 | /* |
| 1588 | * The hardware expects the header padded to 4 byte boundaries. |
| 1589 | * If this is not the case, we add the padding after the header. |
| 1590 | */ |
| 1591 | padsize = ath5k_add_padding(skb); |
| 1592 | if (padsize < 0) { |
| 1593 | ATH5K_ERR(sc, "tx hdrlen not %%4: not enough" |
| 1594 | " headroom to pad"); |
| 1595 | goto drop_packet; |
| 1596 | } |
| 1597 | |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 1598 | if (txq->txq_len >= ATH5K_TXQ_LEN_MAX) |
| 1599 | ieee80211_stop_queue(hw, txq->qnum); |
| 1600 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1601 | spin_lock_irqsave(&sc->txbuflock, flags); |
| 1602 | if (list_empty(&sc->txbuf)) { |
| 1603 | ATH5K_ERR(sc, "no further txbuf available, dropping packet\n"); |
| 1604 | spin_unlock_irqrestore(&sc->txbuflock, flags); |
Bruno Randolf | 651d937 | 2010-09-17 11:36:46 +0900 | [diff] [blame] | 1605 | ieee80211_stop_queues(hw); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1606 | goto drop_packet; |
| 1607 | } |
| 1608 | bf = list_first_entry(&sc->txbuf, struct ath5k_buf, list); |
| 1609 | list_del(&bf->list); |
| 1610 | sc->txbuf_len--; |
| 1611 | if (list_empty(&sc->txbuf)) |
| 1612 | ieee80211_stop_queues(hw); |
| 1613 | spin_unlock_irqrestore(&sc->txbuflock, flags); |
| 1614 | |
| 1615 | bf->skb = skb; |
| 1616 | |
| 1617 | if (ath5k_txbuf_setup(sc, bf, txq, padsize)) { |
| 1618 | bf->skb = NULL; |
| 1619 | spin_lock_irqsave(&sc->txbuflock, flags); |
| 1620 | list_add_tail(&bf->list, &sc->txbuf); |
| 1621 | sc->txbuf_len++; |
| 1622 | spin_unlock_irqrestore(&sc->txbuflock, flags); |
| 1623 | goto drop_packet; |
| 1624 | } |
| 1625 | return NETDEV_TX_OK; |
| 1626 | |
| 1627 | drop_packet: |
| 1628 | dev_kfree_skb_any(skb); |
| 1629 | return NETDEV_TX_OK; |
| 1630 | } |
| 1631 | |
Bruno Randolf | 1440401 | 2010-09-17 11:36:51 +0900 | [diff] [blame] | 1632 | static void |
| 1633 | ath5k_tx_frame_completed(struct ath5k_softc *sc, struct sk_buff *skb, |
| 1634 | struct ath5k_tx_status *ts) |
| 1635 | { |
| 1636 | struct ieee80211_tx_info *info; |
| 1637 | int i; |
| 1638 | |
| 1639 | sc->stats.tx_all_count++; |
Ben Greear | b72acdd | 2010-10-01 10:54:04 -0700 | [diff] [blame] | 1640 | sc->stats.tx_bytes_count += skb->len; |
Bruno Randolf | 1440401 | 2010-09-17 11:36:51 +0900 | [diff] [blame] | 1641 | info = IEEE80211_SKB_CB(skb); |
| 1642 | |
| 1643 | ieee80211_tx_info_clear_status(info); |
| 1644 | for (i = 0; i < 4; i++) { |
| 1645 | struct ieee80211_tx_rate *r = |
| 1646 | &info->status.rates[i]; |
| 1647 | |
| 1648 | if (ts->ts_rate[i]) { |
| 1649 | r->idx = ath5k_hw_to_driver_rix(sc, ts->ts_rate[i]); |
| 1650 | r->count = ts->ts_retry[i]; |
| 1651 | } else { |
| 1652 | r->idx = -1; |
| 1653 | r->count = 0; |
| 1654 | } |
| 1655 | } |
| 1656 | |
| 1657 | /* count the successful attempt as well */ |
| 1658 | info->status.rates[ts->ts_final_idx].count++; |
| 1659 | |
| 1660 | if (unlikely(ts->ts_status)) { |
| 1661 | sc->stats.ack_fail++; |
| 1662 | if (ts->ts_status & AR5K_TXERR_FILT) { |
| 1663 | info->flags |= IEEE80211_TX_STAT_TX_FILTERED; |
| 1664 | sc->stats.txerr_filt++; |
| 1665 | } |
| 1666 | if (ts->ts_status & AR5K_TXERR_XRETRY) |
| 1667 | sc->stats.txerr_retry++; |
| 1668 | if (ts->ts_status & AR5K_TXERR_FIFO) |
| 1669 | sc->stats.txerr_fifo++; |
| 1670 | } else { |
| 1671 | info->flags |= IEEE80211_TX_STAT_ACK; |
| 1672 | info->status.ack_signal = ts->ts_rssi; |
| 1673 | } |
| 1674 | |
| 1675 | /* |
| 1676 | * Remove MAC header padding before giving the frame |
| 1677 | * back to mac80211. |
| 1678 | */ |
| 1679 | ath5k_remove_padding(skb); |
| 1680 | |
| 1681 | if (ts->ts_antenna > 0 && ts->ts_antenna < 5) |
| 1682 | sc->stats.antenna_tx[ts->ts_antenna]++; |
| 1683 | else |
| 1684 | sc->stats.antenna_tx[0]++; /* invalid */ |
| 1685 | |
| 1686 | ieee80211_tx_status(sc->hw, skb); |
| 1687 | } |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1688 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1689 | static void |
| 1690 | ath5k_tx_processq(struct ath5k_softc *sc, struct ath5k_txq *txq) |
| 1691 | { |
Bruno Randolf | b47f407 | 2008-03-05 18:35:45 +0900 | [diff] [blame] | 1692 | struct ath5k_tx_status ts = {}; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1693 | struct ath5k_buf *bf, *bf0; |
| 1694 | struct ath5k_desc *ds; |
| 1695 | struct sk_buff *skb; |
Bruno Randolf | 1440401 | 2010-09-17 11:36:51 +0900 | [diff] [blame] | 1696 | int ret; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1697 | |
| 1698 | spin_lock(&txq->lock); |
| 1699 | list_for_each_entry_safe(bf, bf0, &txq->q, list) { |
Bruno Randolf | 2341329 | 2010-09-17 11:37:07 +0900 | [diff] [blame] | 1700 | |
| 1701 | txq->txq_poll_mark = false; |
| 1702 | |
| 1703 | /* skb might already have been processed last time. */ |
| 1704 | if (bf->skb != NULL) { |
| 1705 | ds = bf->desc; |
| 1706 | |
| 1707 | ret = sc->ah->ah_proc_tx_desc(sc->ah, ds, &ts); |
| 1708 | if (unlikely(ret == -EINPROGRESS)) |
| 1709 | break; |
| 1710 | else if (unlikely(ret)) { |
| 1711 | ATH5K_ERR(sc, |
| 1712 | "error %d while processing " |
| 1713 | "queue %u\n", ret, txq->qnum); |
| 1714 | break; |
| 1715 | } |
| 1716 | |
| 1717 | skb = bf->skb; |
| 1718 | bf->skb = NULL; |
| 1719 | pci_unmap_single(sc->pdev, bf->skbaddr, skb->len, |
| 1720 | PCI_DMA_TODEVICE); |
| 1721 | ath5k_tx_frame_completed(sc, skb, &ts); |
| 1722 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1723 | |
Bob Copeland | a05988b | 2010-04-07 23:55:58 -0400 | [diff] [blame] | 1724 | /* |
| 1725 | * It's possible that the hardware can say the buffer is |
| 1726 | * completed when it hasn't yet loaded the ds_link from |
Bruno Randolf | 2341329 | 2010-09-17 11:37:07 +0900 | [diff] [blame] | 1727 | * host memory and moved on. |
| 1728 | * Always keep the last descriptor to avoid HW races... |
Bob Copeland | a05988b | 2010-04-07 23:55:58 -0400 | [diff] [blame] | 1729 | */ |
Bruno Randolf | 2341329 | 2010-09-17 11:37:07 +0900 | [diff] [blame] | 1730 | if (ath5k_hw_get_txdp(sc->ah, txq->qnum) != bf->daddr) { |
| 1731 | spin_lock(&sc->txbuflock); |
| 1732 | list_move_tail(&bf->list, &sc->txbuf); |
| 1733 | sc->txbuf_len++; |
| 1734 | txq->txq_len--; |
| 1735 | spin_unlock(&sc->txbuflock); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1736 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1737 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1738 | spin_unlock(&txq->lock); |
Bruno Randolf | 4198a8d | 2010-10-05 13:27:17 +0900 | [diff] [blame] | 1739 | if (txq->txq_len < ATH5K_TXQ_LEN_LOW && txq->qnum < 4) |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 1740 | ieee80211_wake_queue(sc->hw, txq->qnum); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1741 | } |
| 1742 | |
| 1743 | static void |
| 1744 | ath5k_tasklet_tx(unsigned long data) |
| 1745 | { |
Bob Copeland | 8784d2e | 2009-07-29 17:32:28 -0400 | [diff] [blame] | 1746 | int i; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1747 | struct ath5k_softc *sc = (void *)data; |
| 1748 | |
Bob Copeland | 8784d2e | 2009-07-29 17:32:28 -0400 | [diff] [blame] | 1749 | for (i=0; i < AR5K_NUM_TX_QUEUES; i++) |
| 1750 | if (sc->txqs[i].setup && (sc->ah->ah_txq_isr & BIT(i))) |
| 1751 | ath5k_tx_processq(sc, &sc->txqs[i]); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1752 | } |
| 1753 | |
| 1754 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1755 | /*****************\ |
| 1756 | * Beacon handling * |
| 1757 | \*****************/ |
| 1758 | |
| 1759 | /* |
| 1760 | * Setup the beacon frame for transmit. |
| 1761 | */ |
| 1762 | static int |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1763 | ath5k_beacon_setup(struct ath5k_softc *sc, struct ath5k_buf *bf) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1764 | { |
| 1765 | struct sk_buff *skb = bf->skb; |
Johannes Berg | a888d52 | 2008-05-26 16:43:39 +0200 | [diff] [blame] | 1766 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1767 | struct ath5k_hw *ah = sc->ah; |
| 1768 | struct ath5k_desc *ds; |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 1769 | int ret = 0; |
| 1770 | u8 antenna; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1771 | u32 flags; |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1772 | const int padsize = 0; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1773 | |
| 1774 | bf->skbaddr = pci_map_single(sc->pdev, skb->data, skb->len, |
| 1775 | PCI_DMA_TODEVICE); |
| 1776 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, "skb %p [data %p len %u] " |
| 1777 | "skbaddr %llx\n", skb, skb->data, skb->len, |
| 1778 | (unsigned long long)bf->skbaddr); |
FUJITA Tomonori | 8d8bb39 | 2008-07-25 19:44:49 -0700 | [diff] [blame] | 1779 | if (pci_dma_mapping_error(sc->pdev, bf->skbaddr)) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1780 | ATH5K_ERR(sc, "beacon DMA mapping failed\n"); |
| 1781 | return -EIO; |
| 1782 | } |
| 1783 | |
| 1784 | ds = bf->desc; |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 1785 | antenna = ah->ah_tx_ant; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1786 | |
| 1787 | flags = AR5K_TXDESC_NOACK; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1788 | if (sc->opmode == NL80211_IFTYPE_ADHOC && ath5k_hw_hasveol(ah)) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1789 | ds->ds_link = bf->daddr; /* self-linked */ |
| 1790 | flags |= AR5K_TXDESC_VEOL; |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 1791 | } else |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1792 | ds->ds_link = 0; |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 1793 | |
| 1794 | /* |
| 1795 | * If we use multiple antennas on AP and use |
| 1796 | * the Sectored AP scenario, switch antenna every |
| 1797 | * 4 beacons to make sure everybody hears our AP. |
| 1798 | * When a client tries to associate, hw will keep |
| 1799 | * track of the tx antenna to be used for this client |
| 1800 | * automaticaly, based on ACKed packets. |
| 1801 | * |
| 1802 | * Note: AP still listens and transmits RTS on the |
| 1803 | * default antenna which is supposed to be an omni. |
| 1804 | * |
| 1805 | * Note2: On sectored scenarios it's possible to have |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 1806 | * multiple antennas (1 omni -- the default -- and 14 |
| 1807 | * sectors), so if we choose to actually support this |
| 1808 | * mode, we need to allow the user to set how many antennas |
| 1809 | * we have and tweak the code below to send beacons |
| 1810 | * on all of them. |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 1811 | */ |
| 1812 | if (ah->ah_ant_mode == AR5K_ANTMODE_SECTOR_AP) |
| 1813 | antenna = sc->bsent & 4 ? 2 : 1; |
| 1814 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1815 | |
Nick Kossifidis | 8f655dd | 2009-03-15 22:20:35 +0200 | [diff] [blame] | 1816 | /* FIXME: If we are in g mode and rate is a CCK rate |
| 1817 | * subtract ah->ah_txpower.txp_cck_ofdm_pwr_delta |
| 1818 | * from tx power (value is in dB units already) */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1819 | ds->ds_data = bf->skbaddr; |
Bruno Randolf | 281c56d | 2008-02-05 18:44:55 +0900 | [diff] [blame] | 1820 | ret = ah->ah_setup_tx_desc(ah, ds, skb->len, |
Benoit Papillault | 8127fbd | 2010-02-27 23:05:26 +0100 | [diff] [blame] | 1821 | ieee80211_get_hdrlen_from_skb(skb), padsize, |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 1822 | AR5K_PKT_TYPE_BEACON, (sc->power_level * 2), |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 1823 | ieee80211_get_tx_rate(sc->hw, info)->hw_value, |
Johannes Berg | 2e92e6f | 2008-05-15 12:55:27 +0200 | [diff] [blame] | 1824 | 1, AR5K_TXKEYIX_INVALID, |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 1825 | antenna, flags, 0, 0); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1826 | if (ret) |
| 1827 | goto err_unmap; |
| 1828 | |
| 1829 | return 0; |
| 1830 | err_unmap: |
| 1831 | pci_unmap_single(sc->pdev, bf->skbaddr, skb->len, PCI_DMA_TODEVICE); |
| 1832 | return ret; |
| 1833 | } |
| 1834 | |
| 1835 | /* |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1836 | * Updates the beacon that is sent by ath5k_beacon_send. For adhoc, |
| 1837 | * this is called only once at config_bss time, for AP we do it every |
| 1838 | * SWBA interrupt so that the TIM will reflect buffered frames. |
| 1839 | * |
| 1840 | * Called with the beacon lock. |
| 1841 | */ |
| 1842 | static int |
| 1843 | ath5k_beacon_update(struct ieee80211_hw *hw, struct ieee80211_vif *vif) |
| 1844 | { |
| 1845 | int ret; |
| 1846 | struct ath5k_softc *sc = hw->priv; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1847 | struct ath5k_vif *avf = (void *)vif->drv_priv; |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1848 | struct sk_buff *skb; |
| 1849 | |
| 1850 | if (WARN_ON(!vif)) { |
| 1851 | ret = -EINVAL; |
| 1852 | goto out; |
| 1853 | } |
| 1854 | |
| 1855 | skb = ieee80211_beacon_get(hw, vif); |
| 1856 | |
| 1857 | if (!skb) { |
| 1858 | ret = -ENOMEM; |
| 1859 | goto out; |
| 1860 | } |
| 1861 | |
| 1862 | ath5k_debug_dump_skb(sc, skb, "BC ", 1); |
| 1863 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1864 | ath5k_txbuf_free_skb(sc, avf->bbuf); |
| 1865 | avf->bbuf->skb = skb; |
| 1866 | ret = ath5k_beacon_setup(sc, avf->bbuf); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1867 | if (ret) |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1868 | avf->bbuf->skb = NULL; |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 1869 | out: |
| 1870 | return ret; |
| 1871 | } |
| 1872 | |
| 1873 | /* |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1874 | * Transmit a beacon frame at SWBA. Dynamic updates to the |
| 1875 | * frame contents are done as needed and the slot time is |
| 1876 | * also adjusted based on current state. |
| 1877 | * |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 1878 | * This is called from software irq context (beacontq tasklets) |
| 1879 | * or user context from ath5k_beacon_config. |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1880 | */ |
| 1881 | static void |
| 1882 | ath5k_beacon_send(struct ath5k_softc *sc) |
| 1883 | { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1884 | struct ath5k_hw *ah = sc->ah; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1885 | struct ieee80211_vif *vif; |
| 1886 | struct ath5k_vif *avf; |
| 1887 | struct ath5k_buf *bf; |
Bob Copeland | cec8db2 | 2009-07-04 12:59:51 -0400 | [diff] [blame] | 1888 | struct sk_buff *skb; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1889 | |
Bruno Randolf | be9b725 | 2008-01-23 10:27:51 +0900 | [diff] [blame] | 1890 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, "in beacon_send\n"); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1891 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1892 | /* |
| 1893 | * Check if the previous beacon has gone out. If |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 1894 | * not, don't don't try to post another: skip this |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1895 | * period and wait for the next. Missed beacons |
| 1896 | * indicate a problem and should not occur. If we |
| 1897 | * miss too many consecutive beacons reset the device. |
| 1898 | */ |
| 1899 | if (unlikely(ath5k_hw_num_tx_pending(ah, sc->bhalq) != 0)) { |
| 1900 | sc->bmisscount++; |
Bruno Randolf | be9b725 | 2008-01-23 10:27:51 +0900 | [diff] [blame] | 1901 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1902 | "missed %u consecutive beacons\n", sc->bmisscount); |
Nick Kossifidis | 428cbd4 | 2009-04-30 15:55:47 -0400 | [diff] [blame] | 1903 | if (sc->bmisscount > 10) { /* NB: 10 is a guess */ |
Bruno Randolf | be9b725 | 2008-01-23 10:27:51 +0900 | [diff] [blame] | 1904 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1905 | "stuck beacon time (%u missed)\n", |
| 1906 | sc->bmisscount); |
Bruno Randolf | 8d67a03 | 2010-06-16 19:11:12 +0900 | [diff] [blame] | 1907 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, |
| 1908 | "stuck beacon, resetting\n"); |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 1909 | ieee80211_queue_work(sc->hw, &sc->reset_work); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1910 | } |
| 1911 | return; |
| 1912 | } |
| 1913 | if (unlikely(sc->bmisscount != 0)) { |
Bruno Randolf | be9b725 | 2008-01-23 10:27:51 +0900 | [diff] [blame] | 1914 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1915 | "resume beacon xmit after %u misses\n", |
| 1916 | sc->bmisscount); |
| 1917 | sc->bmisscount = 0; |
| 1918 | } |
| 1919 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1920 | if (sc->opmode == NL80211_IFTYPE_AP && sc->num_ap_vifs > 1) { |
| 1921 | u64 tsf = ath5k_hw_get_tsf64(ah); |
| 1922 | u32 tsftu = TSF_TO_TU(tsf); |
| 1923 | int slot = ((tsftu % sc->bintval) * ATH_BCBUF) / sc->bintval; |
| 1924 | vif = sc->bslot[(slot + 1) % ATH_BCBUF]; |
| 1925 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, |
| 1926 | "tsf %llx tsftu %x intval %u slot %u vif %p\n", |
| 1927 | (unsigned long long)tsf, tsftu, sc->bintval, slot, vif); |
| 1928 | } else /* only one interface */ |
| 1929 | vif = sc->bslot[0]; |
| 1930 | |
| 1931 | if (!vif) |
| 1932 | return; |
| 1933 | |
| 1934 | avf = (void *)vif->drv_priv; |
| 1935 | bf = avf->bbuf; |
| 1936 | if (unlikely(bf->skb == NULL || sc->opmode == NL80211_IFTYPE_STATION || |
| 1937 | sc->opmode == NL80211_IFTYPE_MONITOR)) { |
| 1938 | ATH5K_WARN(sc, "bf=%p bf_skb=%p\n", bf, bf ? bf->skb : NULL); |
| 1939 | return; |
| 1940 | } |
| 1941 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1942 | /* |
| 1943 | * Stop any current dma and put the new frame on the queue. |
| 1944 | * This should never fail since we check above that no frames |
| 1945 | * are still pending on the queue. |
| 1946 | */ |
| 1947 | if (unlikely(ath5k_hw_stop_tx_dma(ah, sc->bhalq))) { |
Nick Kossifidis | 428cbd4 | 2009-04-30 15:55:47 -0400 | [diff] [blame] | 1948 | ATH5K_WARN(sc, "beacon queue %u didn't start/stop ?\n", sc->bhalq); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1949 | /* NB: hw still stops DMA, so proceed */ |
| 1950 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1951 | |
Bob Copeland | 1071db8 | 2009-05-18 10:59:52 -0400 | [diff] [blame] | 1952 | /* refresh the beacon for AP mode */ |
| 1953 | if (sc->opmode == NL80211_IFTYPE_AP) |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1954 | ath5k_beacon_update(sc->hw, vif); |
Bob Copeland | 1071db8 | 2009-05-18 10:59:52 -0400 | [diff] [blame] | 1955 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 1956 | ath5k_hw_set_txdp(ah, sc->bhalq, bf->daddr); |
| 1957 | ath5k_hw_start_tx_dma(ah, sc->bhalq); |
Bruno Randolf | be9b725 | 2008-01-23 10:27:51 +0900 | [diff] [blame] | 1958 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, "TXDP[%u] = %llx (%p)\n", |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1959 | sc->bhalq, (unsigned long long)bf->daddr, bf->desc); |
| 1960 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1961 | skb = ieee80211_get_buffered_bc(sc->hw, vif); |
Bob Copeland | cec8db2 | 2009-07-04 12:59:51 -0400 | [diff] [blame] | 1962 | while (skb) { |
| 1963 | ath5k_tx_queue(sc->hw, skb, sc->cabq); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1964 | skb = ieee80211_get_buffered_bc(sc->hw, vif); |
Bob Copeland | cec8db2 | 2009-07-04 12:59:51 -0400 | [diff] [blame] | 1965 | } |
| 1966 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1967 | sc->bsent++; |
| 1968 | } |
| 1969 | |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 1970 | /** |
| 1971 | * ath5k_beacon_update_timers - update beacon timers |
| 1972 | * |
| 1973 | * @sc: struct ath5k_softc pointer we are operating on |
| 1974 | * @bc_tsf: the timestamp of the beacon. 0 to reset the TSF. -1 to perform a |
| 1975 | * beacon timer update based on the current HW TSF. |
| 1976 | * |
| 1977 | * Calculate the next target beacon transmit time (TBTT) based on the timestamp |
| 1978 | * of a received beacon or the current local hardware TSF and write it to the |
| 1979 | * beacon timer registers. |
| 1980 | * |
| 1981 | * This is called in a variety of situations, e.g. when a beacon is received, |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 1982 | * when a TSF update has been detected, but also when an new IBSS is created or |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 1983 | * when we otherwise know we have to update the timers, but we keep it in this |
| 1984 | * function to have it all together in one place. |
| 1985 | */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1986 | static void |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 1987 | ath5k_beacon_update_timers(struct ath5k_softc *sc, u64 bc_tsf) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1988 | { |
| 1989 | struct ath5k_hw *ah = sc->ah; |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 1990 | u32 nexttbtt, intval, hw_tu, bc_tu; |
| 1991 | u64 hw_tsf; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 1992 | |
| 1993 | intval = sc->bintval & AR5K_BEACON_PERIOD; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 1994 | if (sc->opmode == NL80211_IFTYPE_AP && sc->num_ap_vifs > 1) { |
| 1995 | intval /= ATH_BCBUF; /* staggered multi-bss beacons */ |
| 1996 | if (intval < 15) |
| 1997 | ATH5K_WARN(sc, "intval %u is too low, min 15\n", |
| 1998 | intval); |
| 1999 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2000 | if (WARN_ON(!intval)) |
| 2001 | return; |
| 2002 | |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 2003 | /* beacon TSF converted to TU */ |
| 2004 | bc_tu = TSF_TO_TU(bc_tsf); |
| 2005 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2006 | /* current TSF converted to TU */ |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 2007 | hw_tsf = ath5k_hw_get_tsf64(ah); |
| 2008 | hw_tu = TSF_TO_TU(hw_tsf); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2009 | |
Bruno Randolf | 11f21df | 2010-09-27 12:22:26 +0900 | [diff] [blame] | 2010 | #define FUDGE AR5K_TUNE_SW_BEACON_RESP + 3 |
| 2011 | /* We use FUDGE to make sure the next TBTT is ahead of the current TU. |
| 2012 | * Since we later substract AR5K_TUNE_SW_BEACON_RESP (10) in the timer |
| 2013 | * configuration we need to make sure it is bigger than that. */ |
| 2014 | |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 2015 | if (bc_tsf == -1) { |
| 2016 | /* |
| 2017 | * no beacons received, called internally. |
| 2018 | * just need to refresh timers based on HW TSF. |
| 2019 | */ |
| 2020 | nexttbtt = roundup(hw_tu + FUDGE, intval); |
| 2021 | } else if (bc_tsf == 0) { |
| 2022 | /* |
| 2023 | * no beacon received, probably called by ath5k_reset_tsf(). |
| 2024 | * reset TSF to start with 0. |
| 2025 | */ |
| 2026 | nexttbtt = intval; |
| 2027 | intval |= AR5K_BEACON_RESET_TSF; |
| 2028 | } else if (bc_tsf > hw_tsf) { |
| 2029 | /* |
| 2030 | * beacon received, SW merge happend but HW TSF not yet updated. |
| 2031 | * not possible to reconfigure timers yet, but next time we |
| 2032 | * receive a beacon with the same BSSID, the hardware will |
| 2033 | * automatically update the TSF and then we need to reconfigure |
| 2034 | * the timers. |
| 2035 | */ |
| 2036 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
| 2037 | "need to wait for HW TSF sync\n"); |
| 2038 | return; |
| 2039 | } else { |
| 2040 | /* |
| 2041 | * most important case for beacon synchronization between STA. |
| 2042 | * |
| 2043 | * beacon received and HW TSF has been already updated by HW. |
| 2044 | * update next TBTT based on the TSF of the beacon, but make |
| 2045 | * sure it is ahead of our local TSF timer. |
| 2046 | */ |
| 2047 | nexttbtt = bc_tu + roundup(hw_tu + FUDGE - bc_tu, intval); |
| 2048 | } |
| 2049 | #undef FUDGE |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2050 | |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 2051 | sc->nexttbtt = nexttbtt; |
| 2052 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2053 | intval |= AR5K_BEACON_ENA; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2054 | ath5k_hw_init_beacon(ah, nexttbtt, intval); |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 2055 | |
| 2056 | /* |
| 2057 | * debugging output last in order to preserve the time critical aspect |
| 2058 | * of this function |
| 2059 | */ |
| 2060 | if (bc_tsf == -1) |
| 2061 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
| 2062 | "reconfigured timers based on HW TSF\n"); |
| 2063 | else if (bc_tsf == 0) |
| 2064 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
| 2065 | "reset HW TSF and timers\n"); |
| 2066 | else |
| 2067 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
| 2068 | "updated timers based on beacon TSF\n"); |
| 2069 | |
| 2070 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, |
David Miller | 04f93a8 | 2008-02-15 16:08:59 -0800 | [diff] [blame] | 2071 | "bc_tsf %llx hw_tsf %llx bc_tu %u hw_tu %u nexttbtt %u\n", |
| 2072 | (unsigned long long) bc_tsf, |
| 2073 | (unsigned long long) hw_tsf, bc_tu, hw_tu, nexttbtt); |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 2074 | ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, "intval %u %s %s\n", |
| 2075 | intval & AR5K_BEACON_PERIOD, |
| 2076 | intval & AR5K_BEACON_ENA ? "AR5K_BEACON_ENA" : "", |
| 2077 | intval & AR5K_BEACON_RESET_TSF ? "AR5K_BEACON_RESET_TSF" : ""); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2078 | } |
| 2079 | |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 2080 | /** |
| 2081 | * ath5k_beacon_config - Configure the beacon queues and interrupts |
| 2082 | * |
| 2083 | * @sc: struct ath5k_softc pointer we are operating on |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2084 | * |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 2085 | * In IBSS mode we use a self-linked tx descriptor if possible. We enable SWBA |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 2086 | * interrupts to detect TSF updates only. |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2087 | */ |
| 2088 | static void |
| 2089 | ath5k_beacon_config(struct ath5k_softc *sc) |
| 2090 | { |
| 2091 | struct ath5k_hw *ah = sc->ah; |
Bob Copeland | b5f0395 | 2009-02-15 12:06:10 -0500 | [diff] [blame] | 2092 | unsigned long flags; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2093 | |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 2094 | spin_lock_irqsave(&sc->block, flags); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2095 | sc->bmisscount = 0; |
Jiri Slaby | dc1968e | 2008-07-23 13:17:34 +0200 | [diff] [blame] | 2096 | sc->imask &= ~(AR5K_INT_BMISS | AR5K_INT_SWBA); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2097 | |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 2098 | if (sc->enable_beacon) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2099 | /* |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 2100 | * In IBSS mode we use a self-linked tx descriptor and let the |
| 2101 | * hardware send the beacons automatically. We have to load it |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2102 | * only once here. |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 2103 | * We use the SWBA interrupt only to keep track of the beacon |
Bruno Randolf | 6ba81c2 | 2008-03-05 18:36:26 +0900 | [diff] [blame] | 2104 | * timers in order to detect automatic TSF updates. |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2105 | */ |
| 2106 | ath5k_beaconq_config(sc); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2107 | |
Bruno Randolf | 036cd1e | 2008-01-19 18:18:21 +0900 | [diff] [blame] | 2108 | sc->imask |= AR5K_INT_SWBA; |
| 2109 | |
Jiri Slaby | da966bc | 2008-10-12 22:54:10 +0200 | [diff] [blame] | 2110 | if (sc->opmode == NL80211_IFTYPE_ADHOC) { |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 2111 | if (ath5k_hw_hasveol(ah)) |
Jiri Slaby | da966bc | 2008-10-12 22:54:10 +0200 | [diff] [blame] | 2112 | ath5k_beacon_send(sc); |
Jiri Slaby | da966bc | 2008-10-12 22:54:10 +0200 | [diff] [blame] | 2113 | } else |
| 2114 | ath5k_beacon_update_timers(sc, -1); |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 2115 | } else { |
| 2116 | ath5k_hw_stop_tx_dma(sc->ah, sc->bhalq); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2117 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2118 | |
Nick Kossifidis | c6e387a | 2008-08-29 22:45:39 +0300 | [diff] [blame] | 2119 | ath5k_hw_set_imr(ah, sc->imask); |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 2120 | mmiowb(); |
| 2121 | spin_unlock_irqrestore(&sc->block, flags); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2122 | } |
| 2123 | |
Nick Kossifidis | 428cbd4 | 2009-04-30 15:55:47 -0400 | [diff] [blame] | 2124 | static void ath5k_tasklet_beacon(unsigned long data) |
| 2125 | { |
| 2126 | struct ath5k_softc *sc = (struct ath5k_softc *) data; |
| 2127 | |
| 2128 | /* |
| 2129 | * Software beacon alert--time to send a beacon. |
| 2130 | * |
| 2131 | * In IBSS mode we use this interrupt just to |
| 2132 | * keep track of the next TBTT (target beacon |
| 2133 | * transmission time) in order to detect wether |
| 2134 | * automatic TSF updates happened. |
| 2135 | */ |
| 2136 | if (sc->opmode == NL80211_IFTYPE_ADHOC) { |
| 2137 | /* XXX: only if VEOL suppported */ |
| 2138 | u64 tsf = ath5k_hw_get_tsf64(sc->ah); |
| 2139 | sc->nexttbtt += sc->bintval; |
| 2140 | ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, |
| 2141 | "SWBA nexttbtt: %x hw_tu: %x " |
| 2142 | "TSF: %llx\n", |
| 2143 | sc->nexttbtt, |
| 2144 | TSF_TO_TU(tsf), |
| 2145 | (unsigned long long) tsf); |
| 2146 | } else { |
| 2147 | spin_lock(&sc->block); |
| 2148 | ath5k_beacon_send(sc); |
| 2149 | spin_unlock(&sc->block); |
| 2150 | } |
| 2151 | } |
| 2152 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2153 | |
| 2154 | /********************\ |
| 2155 | * Interrupt handling * |
| 2156 | \********************/ |
| 2157 | |
Bruno Randolf | 6a8a3f6 | 2010-03-25 14:49:19 +0900 | [diff] [blame] | 2158 | static void |
| 2159 | ath5k_intr_calibration_poll(struct ath5k_hw *ah) |
| 2160 | { |
Bruno Randolf | 2111ac0 | 2010-04-02 18:44:08 +0900 | [diff] [blame] | 2161 | if (time_is_before_eq_jiffies(ah->ah_cal_next_ani) && |
| 2162 | !(ah->ah_cal_mask & AR5K_CALIBRATION_FULL)) { |
| 2163 | /* run ANI only when full calibration is not active */ |
| 2164 | ah->ah_cal_next_ani = jiffies + |
| 2165 | msecs_to_jiffies(ATH5K_TUNE_CALIBRATION_INTERVAL_ANI); |
| 2166 | tasklet_schedule(&ah->ah_sc->ani_tasklet); |
| 2167 | |
| 2168 | } else if (time_is_before_eq_jiffies(ah->ah_cal_next_full)) { |
Bruno Randolf | 6a8a3f6 | 2010-03-25 14:49:19 +0900 | [diff] [blame] | 2169 | ah->ah_cal_next_full = jiffies + |
| 2170 | msecs_to_jiffies(ATH5K_TUNE_CALIBRATION_INTERVAL_FULL); |
| 2171 | tasklet_schedule(&ah->ah_sc->calib); |
| 2172 | } |
| 2173 | /* we could use SWI to generate enough interrupts to meet our |
| 2174 | * calibration interval requirements, if necessary: |
| 2175 | * AR5K_REG_ENABLE_BITS(ah, AR5K_CR, AR5K_CR_SWI); */ |
| 2176 | } |
| 2177 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2178 | static irqreturn_t |
| 2179 | ath5k_intr(int irq, void *dev_id) |
| 2180 | { |
| 2181 | struct ath5k_softc *sc = dev_id; |
| 2182 | struct ath5k_hw *ah = sc->ah; |
| 2183 | enum ath5k_int status; |
| 2184 | unsigned int counter = 1000; |
| 2185 | |
| 2186 | if (unlikely(test_bit(ATH_STAT_INVALID, sc->status) || |
| 2187 | !ath5k_hw_is_intr_pending(ah))) |
| 2188 | return IRQ_NONE; |
| 2189 | |
| 2190 | do { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2191 | ath5k_hw_get_isr(ah, &status); /* NB: clears IRQ too */ |
| 2192 | ATH5K_DBG(sc, ATH5K_DEBUG_INTR, "status 0x%x/0x%x\n", |
| 2193 | status, sc->imask); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2194 | if (unlikely(status & AR5K_INT_FATAL)) { |
| 2195 | /* |
| 2196 | * Fatal errors are unrecoverable. |
| 2197 | * Typically these are caused by DMA errors. |
| 2198 | */ |
Bruno Randolf | 8d67a03 | 2010-06-16 19:11:12 +0900 | [diff] [blame] | 2199 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, |
| 2200 | "fatal int, resetting\n"); |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 2201 | ieee80211_queue_work(sc->hw, &sc->reset_work); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2202 | } else if (unlikely(status & AR5K_INT_RXORN)) { |
Bruno Randolf | 87d77c4 | 2010-04-12 16:38:52 +0900 | [diff] [blame] | 2203 | /* |
| 2204 | * Receive buffers are full. Either the bus is busy or |
| 2205 | * the CPU is not fast enough to process all received |
| 2206 | * frames. |
| 2207 | * Older chipsets need a reset to come out of this |
| 2208 | * condition, but we treat it as RX for newer chips. |
| 2209 | * We don't know exactly which versions need a reset - |
| 2210 | * this guess is copied from the HAL. |
| 2211 | */ |
| 2212 | sc->stats.rxorn_intr++; |
Bruno Randolf | 8d67a03 | 2010-06-16 19:11:12 +0900 | [diff] [blame] | 2213 | if (ah->ah_mac_srev < AR5K_SREV_AR5212) { |
| 2214 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, |
| 2215 | "rx overrun, resetting\n"); |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 2216 | ieee80211_queue_work(sc->hw, &sc->reset_work); |
Bruno Randolf | 8d67a03 | 2010-06-16 19:11:12 +0900 | [diff] [blame] | 2217 | } |
Bruno Randolf | 87d77c4 | 2010-04-12 16:38:52 +0900 | [diff] [blame] | 2218 | else |
| 2219 | tasklet_schedule(&sc->rxtq); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2220 | } else { |
| 2221 | if (status & AR5K_INT_SWBA) { |
Bob Copeland | 56d2ac7 | 2009-04-15 07:57:33 -0400 | [diff] [blame] | 2222 | tasklet_hi_schedule(&sc->beacontq); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2223 | } |
| 2224 | if (status & AR5K_INT_RXEOL) { |
| 2225 | /* |
| 2226 | * NB: the hardware should re-read the link when |
| 2227 | * RXE bit is written, but it doesn't work at |
| 2228 | * least on older hardware revs. |
| 2229 | */ |
Bruno Randolf | b3f194e | 2010-07-14 10:53:29 +0900 | [diff] [blame] | 2230 | sc->stats.rxeol_intr++; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2231 | } |
| 2232 | if (status & AR5K_INT_TXURN) { |
| 2233 | /* bump tx trigger level */ |
| 2234 | ath5k_hw_update_tx_triglevel(ah, true); |
| 2235 | } |
Nick Kossifidis | 4c674c6 | 2008-10-26 20:40:25 +0200 | [diff] [blame] | 2236 | if (status & (AR5K_INT_RXOK | AR5K_INT_RXERR)) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2237 | tasklet_schedule(&sc->rxtq); |
Nick Kossifidis | 4c674c6 | 2008-10-26 20:40:25 +0200 | [diff] [blame] | 2238 | if (status & (AR5K_INT_TXOK | AR5K_INT_TXDESC |
| 2239 | | AR5K_INT_TXERR | AR5K_INT_TXEOL)) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2240 | tasklet_schedule(&sc->txtq); |
| 2241 | if (status & AR5K_INT_BMISS) { |
Nick Kossifidis | 1e3e6e8 | 2009-02-09 06:15:42 +0200 | [diff] [blame] | 2242 | /* TODO */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2243 | } |
| 2244 | if (status & AR5K_INT_MIB) { |
Bruno Randolf | 2111ac0 | 2010-04-02 18:44:08 +0900 | [diff] [blame] | 2245 | sc->stats.mib_intr++; |
Bruno Randolf | 495391d | 2010-03-25 14:49:36 +0900 | [diff] [blame] | 2246 | ath5k_hw_update_mib_counters(ah); |
Bruno Randolf | 2111ac0 | 2010-04-02 18:44:08 +0900 | [diff] [blame] | 2247 | ath5k_ani_mib_intr(ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2248 | } |
Tobias Doerffel | e6a3b61 | 2009-06-09 17:33:27 +0200 | [diff] [blame] | 2249 | if (status & AR5K_INT_GPIO) |
Tobias Doerffel | e6a3b61 | 2009-06-09 17:33:27 +0200 | [diff] [blame] | 2250 | tasklet_schedule(&sc->rf_kill.toggleq); |
Bob Copeland | a6ae071 | 2009-06-09 23:43:11 -0400 | [diff] [blame] | 2251 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2252 | } |
Bob Copeland | 2516baa | 2009-04-27 22:18:10 -0400 | [diff] [blame] | 2253 | } while (ath5k_hw_is_intr_pending(ah) && --counter > 0); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2254 | |
| 2255 | if (unlikely(!counter)) |
| 2256 | ATH5K_WARN(sc, "too many interrupts, giving up for now\n"); |
| 2257 | |
Bruno Randolf | 6a8a3f6 | 2010-03-25 14:49:19 +0900 | [diff] [blame] | 2258 | ath5k_intr_calibration_poll(ah); |
Nick Kossifidis | 6e22066 | 2009-08-10 03:31:31 +0300 | [diff] [blame] | 2259 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2260 | return IRQ_HANDLED; |
| 2261 | } |
| 2262 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2263 | /* |
| 2264 | * Periodically recalibrate the PHY to account |
| 2265 | * for temperature/environment changes. |
| 2266 | */ |
| 2267 | static void |
Nick Kossifidis | 6e22066 | 2009-08-10 03:31:31 +0300 | [diff] [blame] | 2268 | ath5k_tasklet_calibrate(unsigned long data) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2269 | { |
| 2270 | struct ath5k_softc *sc = (void *)data; |
| 2271 | struct ath5k_hw *ah = sc->ah; |
| 2272 | |
Nick Kossifidis | 6e22066 | 2009-08-10 03:31:31 +0300 | [diff] [blame] | 2273 | /* Only full calibration for now */ |
Bruno Randolf | e65e1d7 | 2010-03-25 14:49:09 +0900 | [diff] [blame] | 2274 | ah->ah_cal_mask |= AR5K_CALIBRATION_FULL; |
Nick Kossifidis | 6e22066 | 2009-08-10 03:31:31 +0300 | [diff] [blame] | 2275 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2276 | ATH5K_DBG(sc, ATH5K_DEBUG_CALIBRATE, "channel %u/%x\n", |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 2277 | ieee80211_frequency_to_channel(sc->curchan->center_freq), |
| 2278 | sc->curchan->hw_value); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2279 | |
Nick Kossifidis | 6f3b414 | 2009-02-09 06:03:41 +0200 | [diff] [blame] | 2280 | if (ath5k_hw_gainf_calibrate(ah) == AR5K_RFGAIN_NEED_CHANGE) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2281 | /* |
| 2282 | * Rfgain is out of bounds, reset the chip |
| 2283 | * to load new gain values. |
| 2284 | */ |
| 2285 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "calibration, resetting\n"); |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 2286 | ieee80211_queue_work(sc->hw, &sc->reset_work); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2287 | } |
| 2288 | if (ath5k_hw_phy_calibrate(ah, sc->curchan)) |
| 2289 | ATH5K_ERR(sc, "calibration of channel %u failed\n", |
Luis R. Rodriguez | 400ec45 | 2008-02-03 21:51:49 -0500 | [diff] [blame] | 2290 | ieee80211_frequency_to_channel( |
| 2291 | sc->curchan->center_freq)); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2292 | |
Bruno Randolf | 0e8e02d | 2010-05-19 10:31:05 +0900 | [diff] [blame] | 2293 | /* Noise floor calibration interrupts rx/tx path while I/Q calibration |
Bruno Randolf | 651d937 | 2010-09-17 11:36:46 +0900 | [diff] [blame] | 2294 | * doesn't. |
| 2295 | * TODO: We should stop TX here, so that it doesn't interfere. |
| 2296 | * Note that stopping the queues is not enough to stop TX! */ |
Bruno Randolf | afe8628 | 2010-05-19 10:31:10 +0900 | [diff] [blame] | 2297 | if (time_is_before_eq_jiffies(ah->ah_cal_next_nf)) { |
| 2298 | ah->ah_cal_next_nf = jiffies + |
| 2299 | msecs_to_jiffies(ATH5K_TUNE_CALIBRATION_INTERVAL_NF); |
Bruno Randolf | afe8628 | 2010-05-19 10:31:10 +0900 | [diff] [blame] | 2300 | ath5k_hw_update_noise_floor(ah); |
Bruno Randolf | afe8628 | 2010-05-19 10:31:10 +0900 | [diff] [blame] | 2301 | } |
Nick Kossifidis | 6e22066 | 2009-08-10 03:31:31 +0300 | [diff] [blame] | 2302 | |
Bruno Randolf | e65e1d7 | 2010-03-25 14:49:09 +0900 | [diff] [blame] | 2303 | ah->ah_cal_mask &= ~AR5K_CALIBRATION_FULL; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2304 | } |
| 2305 | |
| 2306 | |
Bruno Randolf | 2111ac0 | 2010-04-02 18:44:08 +0900 | [diff] [blame] | 2307 | static void |
| 2308 | ath5k_tasklet_ani(unsigned long data) |
| 2309 | { |
| 2310 | struct ath5k_softc *sc = (void *)data; |
| 2311 | struct ath5k_hw *ah = sc->ah; |
| 2312 | |
| 2313 | ah->ah_cal_mask |= AR5K_CALIBRATION_ANI; |
| 2314 | ath5k_ani_calibration(ah); |
| 2315 | ah->ah_cal_mask &= ~AR5K_CALIBRATION_ANI; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2316 | } |
| 2317 | |
| 2318 | |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2319 | static void |
| 2320 | ath5k_tx_complete_poll_work(struct work_struct *work) |
| 2321 | { |
| 2322 | struct ath5k_softc *sc = container_of(work, struct ath5k_softc, |
| 2323 | tx_complete_work.work); |
| 2324 | struct ath5k_txq *txq; |
| 2325 | int i; |
| 2326 | bool needreset = false; |
| 2327 | |
| 2328 | for (i = 0; i < ARRAY_SIZE(sc->txqs); i++) { |
| 2329 | if (sc->txqs[i].setup) { |
| 2330 | txq = &sc->txqs[i]; |
| 2331 | spin_lock_bh(&txq->lock); |
Bruno Randolf | 2341329 | 2010-09-17 11:37:07 +0900 | [diff] [blame] | 2332 | if (txq->txq_len > 1) { |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2333 | if (txq->txq_poll_mark) { |
| 2334 | ATH5K_DBG(sc, ATH5K_DEBUG_XMIT, |
| 2335 | "TX queue stuck %d\n", |
| 2336 | txq->qnum); |
| 2337 | needreset = true; |
Bruno Randolf | 923e5b3 | 2010-09-17 11:37:02 +0900 | [diff] [blame] | 2338 | txq->txq_stuck++; |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2339 | spin_unlock_bh(&txq->lock); |
| 2340 | break; |
| 2341 | } else { |
| 2342 | txq->txq_poll_mark = true; |
| 2343 | } |
| 2344 | } |
| 2345 | spin_unlock_bh(&txq->lock); |
| 2346 | } |
| 2347 | } |
| 2348 | |
| 2349 | if (needreset) { |
| 2350 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, |
| 2351 | "TX queues stuck, resetting\n"); |
| 2352 | ath5k_reset(sc, sc->curchan); |
| 2353 | } |
| 2354 | |
| 2355 | ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, |
| 2356 | msecs_to_jiffies(ATH5K_TX_COMPLETE_POLL_INT)); |
| 2357 | } |
| 2358 | |
| 2359 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2360 | /*************************\ |
| 2361 | * Initialization routines * |
| 2362 | \*************************/ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2363 | |
| 2364 | static int |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2365 | ath5k_stop_locked(struct ath5k_softc *sc) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2366 | { |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2367 | struct ath5k_hw *ah = sc->ah; |
Bob Copeland | cec8db2 | 2009-07-04 12:59:51 -0400 | [diff] [blame] | 2368 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2369 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "invalid %u\n", |
| 2370 | test_bit(ATH_STAT_INVALID, sc->status)); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2371 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2372 | /* |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2373 | * Shutdown the hardware and driver: |
| 2374 | * stop output from above |
| 2375 | * disable interrupts |
| 2376 | * turn off timers |
| 2377 | * turn off the radio |
| 2378 | * clear transmit machinery |
| 2379 | * clear receive machinery |
| 2380 | * drain and release tx queues |
| 2381 | * reclaim beacon resources |
| 2382 | * power down hardware |
| 2383 | * |
| 2384 | * Note that some of this work is not possible if the |
| 2385 | * hardware is gone (invalid). |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2386 | */ |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2387 | ieee80211_stop_queues(sc->hw); |
| 2388 | |
| 2389 | if (!test_bit(ATH_STAT_INVALID, sc->status)) { |
| 2390 | ath5k_led_off(sc); |
| 2391 | ath5k_hw_set_imr(ah, 0); |
| 2392 | synchronize_irq(sc->pdev->irq); |
| 2393 | } |
| 2394 | ath5k_txq_cleanup(sc); |
| 2395 | if (!test_bit(ATH_STAT_INVALID, sc->status)) { |
| 2396 | ath5k_rx_stop(sc); |
| 2397 | ath5k_hw_phy_disable(ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2398 | } |
| 2399 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2400 | return 0; |
| 2401 | } |
| 2402 | |
| 2403 | static int |
| 2404 | ath5k_init(struct ath5k_softc *sc) |
| 2405 | { |
| 2406 | struct ath5k_hw *ah = sc->ah; |
| 2407 | struct ath_common *common = ath5k_hw_common(ah); |
| 2408 | int ret, i; |
| 2409 | |
| 2410 | mutex_lock(&sc->lock); |
| 2411 | |
| 2412 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "mode %d\n", sc->opmode); |
| 2413 | |
| 2414 | /* |
| 2415 | * Stop anything previously setup. This is safe |
| 2416 | * no matter this is the first time through or not. |
| 2417 | */ |
| 2418 | ath5k_stop_locked(sc); |
| 2419 | |
| 2420 | /* |
| 2421 | * The basic interface to setting the hardware in a good |
| 2422 | * state is ``reset''. On return the hardware is known to |
| 2423 | * be powered up and with interrupts disabled. This must |
| 2424 | * be followed by initialization of the appropriate bits |
| 2425 | * and then setup of the interrupt mask. |
| 2426 | */ |
| 2427 | sc->curchan = sc->hw->conf.channel; |
| 2428 | sc->curband = &sc->sbands[sc->curchan->band]; |
| 2429 | sc->imask = AR5K_INT_RXOK | AR5K_INT_RXERR | AR5K_INT_RXEOL | |
| 2430 | AR5K_INT_RXORN | AR5K_INT_TXDESC | AR5K_INT_TXEOL | |
| 2431 | AR5K_INT_FATAL | AR5K_INT_GLOBAL | AR5K_INT_MIB; |
| 2432 | |
| 2433 | ret = ath5k_reset(sc, NULL); |
| 2434 | if (ret) |
| 2435 | goto done; |
| 2436 | |
| 2437 | ath5k_rfkill_hw_start(ah); |
| 2438 | |
| 2439 | /* |
| 2440 | * Reset the key cache since some parts do not reset the |
| 2441 | * contents on initial power up or resume from suspend. |
| 2442 | */ |
| 2443 | for (i = 0; i < common->keymax; i++) |
| 2444 | ath_hw_keyreset(common, (u16) i); |
| 2445 | |
| 2446 | ath5k_hw_set_ack_bitrate_high(ah, true); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2447 | |
| 2448 | for (i = 0; i < ARRAY_SIZE(sc->bslot); i++) |
| 2449 | sc->bslot[i] = NULL; |
| 2450 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2451 | ret = 0; |
| 2452 | done: |
| 2453 | mmiowb(); |
| 2454 | mutex_unlock(&sc->lock); |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2455 | |
| 2456 | ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, |
| 2457 | msecs_to_jiffies(ATH5K_TX_COMPLETE_POLL_INT)); |
| 2458 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2459 | return ret; |
| 2460 | } |
| 2461 | |
| 2462 | static void stop_tasklets(struct ath5k_softc *sc) |
| 2463 | { |
| 2464 | tasklet_kill(&sc->rxtq); |
| 2465 | tasklet_kill(&sc->txtq); |
| 2466 | tasklet_kill(&sc->calib); |
| 2467 | tasklet_kill(&sc->beacontq); |
| 2468 | tasklet_kill(&sc->ani_tasklet); |
| 2469 | } |
| 2470 | |
| 2471 | /* |
| 2472 | * Stop the device, grabbing the top-level lock to protect |
| 2473 | * against concurrent entry through ath5k_init (which can happen |
| 2474 | * if another thread does a system call and the thread doing the |
| 2475 | * stop is preempted). |
| 2476 | */ |
| 2477 | static int |
| 2478 | ath5k_stop_hw(struct ath5k_softc *sc) |
| 2479 | { |
| 2480 | int ret; |
| 2481 | |
| 2482 | mutex_lock(&sc->lock); |
| 2483 | ret = ath5k_stop_locked(sc); |
| 2484 | if (ret == 0 && !test_bit(ATH_STAT_INVALID, sc->status)) { |
| 2485 | /* |
| 2486 | * Don't set the card in full sleep mode! |
| 2487 | * |
| 2488 | * a) When the device is in this state it must be carefully |
| 2489 | * woken up or references to registers in the PCI clock |
| 2490 | * domain may freeze the bus (and system). This varies |
| 2491 | * by chip and is mostly an issue with newer parts |
| 2492 | * (madwifi sources mentioned srev >= 0x78) that go to |
| 2493 | * sleep more quickly. |
| 2494 | * |
| 2495 | * b) On older chips full sleep results a weird behaviour |
| 2496 | * during wakeup. I tested various cards with srev < 0x78 |
| 2497 | * and they don't wake up after module reload, a second |
| 2498 | * module reload is needed to bring the card up again. |
| 2499 | * |
| 2500 | * Until we figure out what's going on don't enable |
| 2501 | * full chip reset on any chip (this is what Legacy HAL |
| 2502 | * and Sam's HAL do anyway). Instead Perform a full reset |
| 2503 | * on the device (same as initial state after attach) and |
| 2504 | * leave it idle (keep MAC/BB on warm reset) */ |
| 2505 | ret = ath5k_hw_on_hold(sc->ah); |
| 2506 | |
| 2507 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, |
| 2508 | "putting device to sleep\n"); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2509 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2510 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2511 | mmiowb(); |
| 2512 | mutex_unlock(&sc->lock); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2513 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2514 | stop_tasklets(sc); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2515 | |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2516 | cancel_delayed_work_sync(&sc->tx_complete_work); |
| 2517 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2518 | ath5k_rfkill_hw_stop(sc->ah); |
| 2519 | |
| 2520 | return ret; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2521 | } |
| 2522 | |
Bob Copeland | 209d889 | 2009-05-07 08:09:08 -0400 | [diff] [blame] | 2523 | /* |
| 2524 | * Reset the hardware. If chan is not NULL, then also pause rx/tx |
| 2525 | * and change to the given channel. |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 2526 | * |
| 2527 | * This should be called with sc->lock. |
Bob Copeland | 209d889 | 2009-05-07 08:09:08 -0400 | [diff] [blame] | 2528 | */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2529 | static int |
Bob Copeland | 209d889 | 2009-05-07 08:09:08 -0400 | [diff] [blame] | 2530 | ath5k_reset(struct ath5k_softc *sc, struct ieee80211_channel *chan) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2531 | { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2532 | struct ath5k_hw *ah = sc->ah; |
| 2533 | int ret; |
| 2534 | |
| 2535 | ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "resetting\n"); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2536 | |
Bob Copeland | 450464d | 2010-07-13 11:32:41 -0400 | [diff] [blame] | 2537 | ath5k_hw_set_imr(ah, 0); |
| 2538 | synchronize_irq(sc->pdev->irq); |
| 2539 | stop_tasklets(sc); |
| 2540 | |
Bob Copeland | 209d889 | 2009-05-07 08:09:08 -0400 | [diff] [blame] | 2541 | if (chan) { |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2542 | ath5k_txq_cleanup(sc); |
| 2543 | ath5k_rx_stop(sc); |
Bob Copeland | 209d889 | 2009-05-07 08:09:08 -0400 | [diff] [blame] | 2544 | |
| 2545 | sc->curchan = chan; |
| 2546 | sc->curband = &sc->sbands[chan->band]; |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2547 | } |
Bob Copeland | 3355443 | 2009-07-04 21:03:13 -0400 | [diff] [blame] | 2548 | ret = ath5k_hw_reset(ah, sc->opmode, sc->curchan, chan != NULL); |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2549 | if (ret) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2550 | ATH5K_ERR(sc, "can't reset hardware (%d)\n", ret); |
| 2551 | goto err; |
| 2552 | } |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2553 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2554 | ret = ath5k_rx_start(sc); |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2555 | if (ret) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2556 | ATH5K_ERR(sc, "can't start recv logic\n"); |
| 2557 | goto err; |
| 2558 | } |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2559 | |
Bruno Randolf | 2111ac0 | 2010-04-02 18:44:08 +0900 | [diff] [blame] | 2560 | ath5k_ani_init(ah, ah->ah_sc->ani_state.ani_mode); |
| 2561 | |
Bruno Randolf | ac55952 | 2010-05-19 10:30:55 +0900 | [diff] [blame] | 2562 | ah->ah_cal_next_full = jiffies; |
| 2563 | ah->ah_cal_next_ani = jiffies; |
Bruno Randolf | afe8628 | 2010-05-19 10:31:10 +0900 | [diff] [blame] | 2564 | ah->ah_cal_next_nf = jiffies; |
| 2565 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2566 | /* |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2567 | * Change channels and update the h/w rate map if we're switching; |
| 2568 | * e.g. 11a to 11b/g. |
| 2569 | * |
| 2570 | * We may be doing a reset in response to an ioctl that changes the |
| 2571 | * channel so update any state that might change as a result. |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2572 | * |
| 2573 | * XXX needed? |
| 2574 | */ |
| 2575 | /* ath5k_chan_change(sc, c); */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2576 | |
Jiri Slaby | d7dc100 | 2008-07-23 13:17:35 +0200 | [diff] [blame] | 2577 | ath5k_beacon_config(sc); |
| 2578 | /* intrs are enabled by ath5k_beacon_config */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2579 | |
Bruno Randolf | 397f385 | 2010-05-19 10:30:49 +0900 | [diff] [blame] | 2580 | ieee80211_wake_queues(sc->hw); |
| 2581 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2582 | return 0; |
| 2583 | err: |
| 2584 | return ret; |
| 2585 | } |
| 2586 | |
Bob Copeland | 5faaff7 | 2010-07-13 11:32:40 -0400 | [diff] [blame] | 2587 | static void ath5k_reset_work(struct work_struct *work) |
| 2588 | { |
| 2589 | struct ath5k_softc *sc = container_of(work, struct ath5k_softc, |
| 2590 | reset_work); |
| 2591 | |
| 2592 | mutex_lock(&sc->lock); |
| 2593 | ath5k_reset(sc, sc->curchan); |
| 2594 | mutex_unlock(&sc->lock); |
| 2595 | } |
| 2596 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2597 | static int |
| 2598 | ath5k_attach(struct pci_dev *pdev, struct ieee80211_hw *hw) |
| 2599 | { |
| 2600 | struct ath5k_softc *sc = hw->priv; |
| 2601 | struct ath5k_hw *ah = sc->ah; |
| 2602 | struct ath_regulatory *regulatory = ath5k_hw_regulatory(ah); |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 2603 | struct ath5k_txq *txq; |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2604 | u8 mac[ETH_ALEN] = {}; |
| 2605 | int ret; |
| 2606 | |
| 2607 | ATH5K_DBG(sc, ATH5K_DEBUG_ANY, "devid 0x%x\n", pdev->device); |
| 2608 | |
| 2609 | /* |
| 2610 | * Check if the MAC has multi-rate retry support. |
| 2611 | * We do this by trying to setup a fake extended |
| 2612 | * descriptor. MACs that don't have support will |
| 2613 | * return false w/o doing anything. MACs that do |
| 2614 | * support it will return true w/o doing anything. |
| 2615 | */ |
| 2616 | ret = ath5k_hw_setup_mrr_tx_desc(ah, NULL, 0, 0, 0, 0, 0, 0); |
| 2617 | |
| 2618 | if (ret < 0) |
| 2619 | goto err; |
| 2620 | if (ret > 0) |
| 2621 | __set_bit(ATH_STAT_MRRETRY, sc->status); |
| 2622 | |
| 2623 | /* |
| 2624 | * Collect the channel list. The 802.11 layer |
| 2625 | * is resposible for filtering this list based |
| 2626 | * on settings like the phy mode and regulatory |
| 2627 | * domain restrictions. |
| 2628 | */ |
| 2629 | ret = ath5k_setup_bands(hw); |
| 2630 | if (ret) { |
| 2631 | ATH5K_ERR(sc, "can't get channels\n"); |
| 2632 | goto err; |
| 2633 | } |
| 2634 | |
| 2635 | /* NB: setup here so ath5k_rate_update is happy */ |
| 2636 | if (test_bit(AR5K_MODE_11A, ah->ah_modes)) |
| 2637 | ath5k_setcurmode(sc, AR5K_MODE_11A); |
| 2638 | else |
| 2639 | ath5k_setcurmode(sc, AR5K_MODE_11B); |
| 2640 | |
| 2641 | /* |
| 2642 | * Allocate tx+rx descriptors and populate the lists. |
| 2643 | */ |
| 2644 | ret = ath5k_desc_alloc(sc, pdev); |
| 2645 | if (ret) { |
| 2646 | ATH5K_ERR(sc, "can't allocate descriptors\n"); |
| 2647 | goto err; |
| 2648 | } |
| 2649 | |
| 2650 | /* |
| 2651 | * Allocate hardware transmit queues: one queue for |
| 2652 | * beacon frames and one data queue for each QoS |
| 2653 | * priority. Note that hw functions handle resetting |
| 2654 | * these queues at the needed time. |
| 2655 | */ |
| 2656 | ret = ath5k_beaconq_setup(ah); |
| 2657 | if (ret < 0) { |
| 2658 | ATH5K_ERR(sc, "can't setup a beacon xmit queue\n"); |
| 2659 | goto err_desc; |
| 2660 | } |
| 2661 | sc->bhalq = ret; |
| 2662 | sc->cabq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_CAB, 0); |
| 2663 | if (IS_ERR(sc->cabq)) { |
| 2664 | ATH5K_ERR(sc, "can't setup cab queue\n"); |
| 2665 | ret = PTR_ERR(sc->cabq); |
| 2666 | goto err_bhal; |
| 2667 | } |
| 2668 | |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 2669 | /* This order matches mac80211's queue priority, so we can |
| 2670 | * directly use the mac80211 queue number without any mapping */ |
| 2671 | txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_VO); |
| 2672 | if (IS_ERR(txq)) { |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2673 | ATH5K_ERR(sc, "can't setup xmit queue\n"); |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 2674 | ret = PTR_ERR(txq); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2675 | goto err_queues; |
| 2676 | } |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 2677 | txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_VI); |
| 2678 | if (IS_ERR(txq)) { |
| 2679 | ATH5K_ERR(sc, "can't setup xmit queue\n"); |
| 2680 | ret = PTR_ERR(txq); |
| 2681 | goto err_queues; |
| 2682 | } |
| 2683 | txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_BE); |
| 2684 | if (IS_ERR(txq)) { |
| 2685 | ATH5K_ERR(sc, "can't setup xmit queue\n"); |
| 2686 | ret = PTR_ERR(txq); |
| 2687 | goto err_queues; |
| 2688 | } |
| 2689 | txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_BK); |
| 2690 | if (IS_ERR(txq)) { |
| 2691 | ATH5K_ERR(sc, "can't setup xmit queue\n"); |
| 2692 | ret = PTR_ERR(txq); |
| 2693 | goto err_queues; |
| 2694 | } |
| 2695 | hw->queues = 4; |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2696 | |
| 2697 | tasklet_init(&sc->rxtq, ath5k_tasklet_rx, (unsigned long)sc); |
| 2698 | tasklet_init(&sc->txtq, ath5k_tasklet_tx, (unsigned long)sc); |
| 2699 | tasklet_init(&sc->calib, ath5k_tasklet_calibrate, (unsigned long)sc); |
| 2700 | tasklet_init(&sc->beacontq, ath5k_tasklet_beacon, (unsigned long)sc); |
| 2701 | tasklet_init(&sc->ani_tasklet, ath5k_tasklet_ani, (unsigned long)sc); |
| 2702 | |
| 2703 | INIT_WORK(&sc->reset_work, ath5k_reset_work); |
Bruno Randolf | 4edd761 | 2010-09-17 11:36:56 +0900 | [diff] [blame] | 2704 | INIT_DELAYED_WORK(&sc->tx_complete_work, ath5k_tx_complete_poll_work); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2705 | |
| 2706 | ret = ath5k_eeprom_read_mac(ah, mac); |
| 2707 | if (ret) { |
| 2708 | ATH5K_ERR(sc, "unable to read address from EEPROM: 0x%04x\n", |
| 2709 | sc->pdev->device); |
| 2710 | goto err_queues; |
| 2711 | } |
| 2712 | |
| 2713 | SET_IEEE80211_PERM_ADDR(hw, mac); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2714 | memcpy(&sc->lladdr, mac, ETH_ALEN); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2715 | /* All MAC address bits matter for ACKs */ |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 2716 | ath5k_update_bssid_mask_and_opmode(sc, NULL); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2717 | |
| 2718 | regulatory->current_rd = ah->ah_capabilities.cap_eeprom.ee_regdomain; |
| 2719 | ret = ath_regd_init(regulatory, hw->wiphy, ath5k_reg_notifier); |
| 2720 | if (ret) { |
| 2721 | ATH5K_ERR(sc, "can't initialize regulatory system\n"); |
| 2722 | goto err_queues; |
| 2723 | } |
| 2724 | |
| 2725 | ret = ieee80211_register_hw(hw); |
| 2726 | if (ret) { |
| 2727 | ATH5K_ERR(sc, "can't register ieee80211 hw\n"); |
| 2728 | goto err_queues; |
| 2729 | } |
| 2730 | |
| 2731 | if (!ath_is_world_regd(regulatory)) |
| 2732 | regulatory_hint(hw->wiphy, regulatory->alpha2); |
| 2733 | |
| 2734 | ath5k_init_leds(sc); |
| 2735 | |
| 2736 | ath5k_sysfs_register(sc); |
| 2737 | |
| 2738 | return 0; |
| 2739 | err_queues: |
| 2740 | ath5k_txq_release(sc); |
| 2741 | err_bhal: |
| 2742 | ath5k_hw_release_tx_queue(ah, sc->bhalq); |
| 2743 | err_desc: |
| 2744 | ath5k_desc_free(sc, pdev); |
| 2745 | err: |
| 2746 | return ret; |
| 2747 | } |
| 2748 | |
| 2749 | static void |
| 2750 | ath5k_detach(struct pci_dev *pdev, struct ieee80211_hw *hw) |
| 2751 | { |
| 2752 | struct ath5k_softc *sc = hw->priv; |
| 2753 | |
| 2754 | /* |
| 2755 | * NB: the order of these is important: |
| 2756 | * o call the 802.11 layer before detaching ath5k_hw to |
| 2757 | * ensure callbacks into the driver to delete global |
| 2758 | * key cache entries can be handled |
| 2759 | * o reclaim the tx queue data structures after calling |
| 2760 | * the 802.11 layer as we'll get called back to reclaim |
| 2761 | * node state and potentially want to use them |
| 2762 | * o to cleanup the tx queues the hal is called, so detach |
| 2763 | * it last |
| 2764 | * XXX: ??? detach ath5k_hw ??? |
| 2765 | * Other than that, it's straightforward... |
| 2766 | */ |
| 2767 | ieee80211_unregister_hw(hw); |
| 2768 | ath5k_desc_free(sc, pdev); |
| 2769 | ath5k_txq_release(sc); |
| 2770 | ath5k_hw_release_tx_queue(sc->ah, sc->bhalq); |
| 2771 | ath5k_unregister_leds(sc); |
| 2772 | |
| 2773 | ath5k_sysfs_unregister(sc); |
| 2774 | /* |
| 2775 | * NB: can't reclaim these until after ieee80211_ifdetach |
| 2776 | * returns because we'll get called back to reclaim node |
| 2777 | * state and potentially want to use them. |
| 2778 | */ |
| 2779 | } |
| 2780 | |
| 2781 | /********************\ |
| 2782 | * Mac80211 functions * |
| 2783 | \********************/ |
| 2784 | |
| 2785 | static int |
| 2786 | ath5k_tx(struct ieee80211_hw *hw, struct sk_buff *skb) |
| 2787 | { |
| 2788 | struct ath5k_softc *sc = hw->priv; |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 2789 | u16 qnum = skb_get_queue_mapping(skb); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2790 | |
Bruno Randolf | 925e0b0 | 2010-09-17 11:36:35 +0900 | [diff] [blame] | 2791 | if (WARN_ON(qnum >= sc->ah->ah_capabilities.cap_queues.q_tx_num)) { |
| 2792 | dev_kfree_skb_any(skb); |
| 2793 | return 0; |
| 2794 | } |
| 2795 | |
| 2796 | return ath5k_tx_queue(hw, skb, &sc->txqs[qnum]); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 2797 | } |
| 2798 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2799 | static int ath5k_start(struct ieee80211_hw *hw) |
| 2800 | { |
Bob Copeland | bb2beca | 2009-01-19 11:20:54 -0500 | [diff] [blame] | 2801 | return ath5k_init(hw->priv); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2802 | } |
| 2803 | |
| 2804 | static void ath5k_stop(struct ieee80211_hw *hw) |
| 2805 | { |
Bob Copeland | bb2beca | 2009-01-19 11:20:54 -0500 | [diff] [blame] | 2806 | ath5k_stop_hw(hw->priv); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2807 | } |
| 2808 | |
| 2809 | static int ath5k_add_interface(struct ieee80211_hw *hw, |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 2810 | struct ieee80211_vif *vif) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2811 | { |
| 2812 | struct ath5k_softc *sc = hw->priv; |
| 2813 | int ret; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2814 | struct ath5k_vif *avf = (void *)vif->drv_priv; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2815 | |
| 2816 | mutex_lock(&sc->lock); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2817 | |
| 2818 | if ((vif->type == NL80211_IFTYPE_AP || |
| 2819 | vif->type == NL80211_IFTYPE_ADHOC) |
| 2820 | && (sc->num_ap_vifs + sc->num_adhoc_vifs) >= ATH_BCBUF) { |
| 2821 | ret = -ELNRNG; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2822 | goto end; |
| 2823 | } |
| 2824 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2825 | /* Don't allow other interfaces if one ad-hoc is configured. |
| 2826 | * TODO: Fix the problems with ad-hoc and multiple other interfaces. |
| 2827 | * We would need to operate the HW in ad-hoc mode to allow TSF updates |
| 2828 | * for the IBSS, but this breaks with additional AP or STA interfaces |
| 2829 | * at the moment. */ |
| 2830 | if (sc->num_adhoc_vifs || |
| 2831 | (sc->nvifs && vif->type == NL80211_IFTYPE_ADHOC)) { |
| 2832 | ATH5K_ERR(sc, "Only one single ad-hoc interface is allowed.\n"); |
| 2833 | ret = -ELNRNG; |
| 2834 | goto end; |
| 2835 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2836 | |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 2837 | switch (vif->type) { |
Jiri Slaby | da966bc | 2008-10-12 22:54:10 +0200 | [diff] [blame] | 2838 | case NL80211_IFTYPE_AP: |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 2839 | case NL80211_IFTYPE_STATION: |
| 2840 | case NL80211_IFTYPE_ADHOC: |
Andrey Yurovsky | b706e65 | 2008-10-13 18:23:07 -0700 | [diff] [blame] | 2841 | case NL80211_IFTYPE_MESH_POINT: |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2842 | avf->opmode = vif->type; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2843 | break; |
| 2844 | default: |
| 2845 | ret = -EOPNOTSUPP; |
| 2846 | goto end; |
| 2847 | } |
Jiri Slaby | 67d2e2d | 2008-08-18 21:45:28 +0200 | [diff] [blame] | 2848 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2849 | sc->nvifs++; |
| 2850 | ATH5K_DBG(sc, ATH5K_DEBUG_MODE, "add interface mode %d\n", avf->opmode); |
Bruno Randolf | ccfe555 | 2010-03-09 16:55:38 +0900 | [diff] [blame] | 2851 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2852 | /* Assign the vap/adhoc to a beacon xmit slot. */ |
| 2853 | if ((avf->opmode == NL80211_IFTYPE_AP) || |
| 2854 | (avf->opmode == NL80211_IFTYPE_ADHOC)) { |
| 2855 | int slot; |
| 2856 | |
| 2857 | WARN_ON(list_empty(&sc->bcbuf)); |
| 2858 | avf->bbuf = list_first_entry(&sc->bcbuf, struct ath5k_buf, |
| 2859 | list); |
| 2860 | list_del(&avf->bbuf->list); |
| 2861 | |
| 2862 | avf->bslot = 0; |
| 2863 | for (slot = 0; slot < ATH_BCBUF; slot++) { |
| 2864 | if (!sc->bslot[slot]) { |
| 2865 | avf->bslot = slot; |
| 2866 | break; |
| 2867 | } |
| 2868 | } |
| 2869 | BUG_ON(sc->bslot[avf->bslot] != NULL); |
| 2870 | sc->bslot[avf->bslot] = vif; |
| 2871 | if (avf->opmode == NL80211_IFTYPE_AP) |
| 2872 | sc->num_ap_vifs++; |
| 2873 | else |
| 2874 | sc->num_adhoc_vifs++; |
| 2875 | } |
| 2876 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2877 | /* Any MAC address is fine, all others are included through the |
| 2878 | * filter. |
| 2879 | */ |
| 2880 | memcpy(&sc->lladdr, vif->addr, ETH_ALEN); |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 2881 | ath5k_hw_set_lladdr(sc->ah, vif->addr); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2882 | |
| 2883 | memcpy(&avf->lladdr, vif->addr, ETH_ALEN); |
| 2884 | |
| 2885 | ath5k_mode_setup(sc, vif); |
Jiri Slaby | 67d2e2d | 2008-08-18 21:45:28 +0200 | [diff] [blame] | 2886 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2887 | ret = 0; |
| 2888 | end: |
| 2889 | mutex_unlock(&sc->lock); |
| 2890 | return ret; |
| 2891 | } |
| 2892 | |
| 2893 | static void |
| 2894 | ath5k_remove_interface(struct ieee80211_hw *hw, |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 2895 | struct ieee80211_vif *vif) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2896 | { |
| 2897 | struct ath5k_softc *sc = hw->priv; |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2898 | struct ath5k_vif *avf = (void *)vif->drv_priv; |
| 2899 | unsigned int i; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2900 | |
| 2901 | mutex_lock(&sc->lock); |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2902 | sc->nvifs--; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2903 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 2904 | if (avf->bbuf) { |
| 2905 | ath5k_txbuf_free_skb(sc, avf->bbuf); |
| 2906 | list_add_tail(&avf->bbuf->list, &sc->bcbuf); |
| 2907 | for (i = 0; i < ATH_BCBUF; i++) { |
| 2908 | if (sc->bslot[i] == vif) { |
| 2909 | sc->bslot[i] = NULL; |
| 2910 | break; |
| 2911 | } |
| 2912 | } |
| 2913 | avf->bbuf = NULL; |
| 2914 | } |
| 2915 | if (avf->opmode == NL80211_IFTYPE_AP) |
| 2916 | sc->num_ap_vifs--; |
| 2917 | else if (avf->opmode == NL80211_IFTYPE_ADHOC) |
| 2918 | sc->num_adhoc_vifs--; |
| 2919 | |
Ben Greear | 62c58fb | 2010-10-08 12:01:15 -0700 | [diff] [blame] | 2920 | ath5k_update_bssid_mask_and_opmode(sc, NULL); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2921 | mutex_unlock(&sc->lock); |
| 2922 | } |
| 2923 | |
Luis R. Rodriguez | d8ee398 | 2008-02-03 21:51:04 -0500 | [diff] [blame] | 2924 | /* |
| 2925 | * TODO: Phy disable/diversity etc |
| 2926 | */ |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2927 | static int |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 2928 | ath5k_config(struct ieee80211_hw *hw, u32 changed) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2929 | { |
| 2930 | struct ath5k_softc *sc = hw->priv; |
Nick Kossifidis | a082381 | 2009-04-30 15:55:44 -0400 | [diff] [blame] | 2931 | struct ath5k_hw *ah = sc->ah; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 2932 | struct ieee80211_conf *conf = &hw->conf; |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 2933 | int ret = 0; |
Bob Copeland | be00937 | 2009-01-22 08:44:16 -0500 | [diff] [blame] | 2934 | |
| 2935 | mutex_lock(&sc->lock); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2936 | |
Joerg Albert | e30eb4a | 2009-08-05 01:52:07 +0200 | [diff] [blame] | 2937 | if (changed & IEEE80211_CONF_CHANGE_CHANNEL) { |
| 2938 | ret = ath5k_chan_set(sc, conf->channel); |
| 2939 | if (ret < 0) |
| 2940 | goto unlock; |
| 2941 | } |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 2942 | |
Nick Kossifidis | a082381 | 2009-04-30 15:55:44 -0400 | [diff] [blame] | 2943 | if ((changed & IEEE80211_CONF_CHANGE_POWER) && |
| 2944 | (sc->power_level != conf->power_level)) { |
| 2945 | sc->power_level = conf->power_level; |
| 2946 | |
| 2947 | /* Half dB steps */ |
| 2948 | ath5k_hw_set_txpower_limit(ah, (conf->power_level * 2)); |
| 2949 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2950 | |
Nick Kossifidis | 2bed03e | 2009-04-30 15:55:49 -0400 | [diff] [blame] | 2951 | /* TODO: |
| 2952 | * 1) Move this on config_interface and handle each case |
| 2953 | * separately eg. when we have only one STA vif, use |
| 2954 | * AR5K_ANTMODE_SINGLE_AP |
| 2955 | * |
| 2956 | * 2) Allow the user to change antenna mode eg. when only |
| 2957 | * one antenna is present |
| 2958 | * |
| 2959 | * 3) Allow the user to set default/tx antenna when possible |
| 2960 | * |
| 2961 | * 4) Default mode should handle 90% of the cases, together |
| 2962 | * with fixed a/b and single AP modes we should be able to |
| 2963 | * handle 99%. Sectored modes are extreme cases and i still |
| 2964 | * haven't found a usage for them. If we decide to support them, |
| 2965 | * then we must allow the user to set how many tx antennas we |
| 2966 | * have available |
| 2967 | */ |
Bruno Randolf | caec911 | 2010-03-09 16:55:28 +0900 | [diff] [blame] | 2968 | ath5k_hw_set_antenna_mode(ah, ah->ah_ant_mode); |
Bob Copeland | be00937 | 2009-01-22 08:44:16 -0500 | [diff] [blame] | 2969 | |
John W. Linville | 55aa4e0 | 2009-05-25 21:28:47 +0200 | [diff] [blame] | 2970 | unlock: |
Bob Copeland | be00937 | 2009-01-22 08:44:16 -0500 | [diff] [blame] | 2971 | mutex_unlock(&sc->lock); |
John W. Linville | 55aa4e0 | 2009-05-25 21:28:47 +0200 | [diff] [blame] | 2972 | return ret; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 2973 | } |
| 2974 | |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 2975 | static u64 ath5k_prepare_multicast(struct ieee80211_hw *hw, |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 2976 | struct netdev_hw_addr_list *mc_list) |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 2977 | { |
| 2978 | u32 mfilt[2], val; |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 2979 | u8 pos; |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 2980 | struct netdev_hw_addr *ha; |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 2981 | |
| 2982 | mfilt[0] = 0; |
| 2983 | mfilt[1] = 1; |
| 2984 | |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 2985 | netdev_hw_addr_list_for_each(ha, mc_list) { |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 2986 | /* calculate XOR of eight 6-bit values */ |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 2987 | val = get_unaligned_le32(ha->addr + 0); |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 2988 | pos = (val >> 18) ^ (val >> 12) ^ (val >> 6) ^ val; |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 2989 | val = get_unaligned_le32(ha->addr + 3); |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 2990 | pos ^= (val >> 18) ^ (val >> 12) ^ (val >> 6) ^ val; |
| 2991 | pos &= 0x3f; |
| 2992 | mfilt[pos / 32] |= (1 << (pos % 32)); |
| 2993 | /* XXX: we might be able to just do this instead, |
| 2994 | * but not sure, needs testing, if we do use this we'd |
| 2995 | * neet to inform below to not reset the mcast */ |
| 2996 | /* ath5k_hw_set_mcast_filterindex(ah, |
Jiri Pirko | 22bedad | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 2997 | * ha->addr[5]); */ |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 2998 | } |
| 2999 | |
| 3000 | return ((u64)(mfilt[1]) << 32) | mfilt[0]; |
| 3001 | } |
| 3002 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 3003 | static bool ath_any_vif_assoc(struct ath5k_softc *sc) |
| 3004 | { |
| 3005 | struct ath_vif_iter_data iter_data; |
| 3006 | iter_data.hw_macaddr = NULL; |
| 3007 | iter_data.any_assoc = false; |
| 3008 | iter_data.need_set_hw_addr = false; |
| 3009 | iter_data.found_active = true; |
| 3010 | |
| 3011 | ieee80211_iterate_active_interfaces_atomic(sc->hw, ath_vif_iter, |
| 3012 | &iter_data); |
| 3013 | return iter_data.any_assoc; |
| 3014 | } |
| 3015 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3016 | #define SUPPORTED_FIF_FLAGS \ |
| 3017 | FIF_PROMISC_IN_BSS | FIF_ALLMULTI | FIF_FCSFAIL | \ |
| 3018 | FIF_PLCPFAIL | FIF_CONTROL | FIF_OTHER_BSS | \ |
| 3019 | FIF_BCN_PRBRESP_PROMISC |
| 3020 | /* |
| 3021 | * o always accept unicast, broadcast, and multicast traffic |
| 3022 | * o multicast traffic for all BSSIDs will be enabled if mac80211 |
| 3023 | * says it should be |
| 3024 | * o maintain current state of phy ofdm or phy cck error reception. |
| 3025 | * If the hardware detects any of these type of errors then |
| 3026 | * ath5k_hw_get_rx_filter() will pass to us the respective |
| 3027 | * hardware filters to be able to receive these type of frames. |
| 3028 | * o probe request frames are accepted only when operating in |
| 3029 | * hostap, adhoc, or monitor modes |
| 3030 | * o enable promiscuous mode according to the interface state |
| 3031 | * o accept beacons: |
| 3032 | * - when operating in adhoc mode so the 802.11 layer creates |
| 3033 | * node table entries for peers, |
| 3034 | * - when operating in station mode for collecting rssi data when |
| 3035 | * the station is otherwise quiet, or |
| 3036 | * - when scanning |
| 3037 | */ |
| 3038 | static void ath5k_configure_filter(struct ieee80211_hw *hw, |
| 3039 | unsigned int changed_flags, |
| 3040 | unsigned int *new_flags, |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 3041 | u64 multicast) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3042 | { |
| 3043 | struct ath5k_softc *sc = hw->priv; |
| 3044 | struct ath5k_hw *ah = sc->ah; |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 3045 | u32 mfilt[2], rfilt; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3046 | |
Bob Copeland | 56d1de0 | 2009-08-24 23:00:30 -0400 | [diff] [blame] | 3047 | mutex_lock(&sc->lock); |
| 3048 | |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 3049 | mfilt[0] = multicast; |
| 3050 | mfilt[1] = multicast >> 32; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3051 | |
| 3052 | /* Only deal with supported flags */ |
| 3053 | changed_flags &= SUPPORTED_FIF_FLAGS; |
| 3054 | *new_flags &= SUPPORTED_FIF_FLAGS; |
| 3055 | |
| 3056 | /* If HW detects any phy or radar errors, leave those filters on. |
| 3057 | * Also, always enable Unicast, Broadcasts and Multicast |
| 3058 | * XXX: move unicast, bssid broadcasts and multicast to mac80211 */ |
| 3059 | rfilt = (ath5k_hw_get_rx_filter(ah) & (AR5K_RX_FILTER_PHYERR)) | |
| 3060 | (AR5K_RX_FILTER_UCAST | AR5K_RX_FILTER_BCAST | |
| 3061 | AR5K_RX_FILTER_MCAST); |
| 3062 | |
| 3063 | if (changed_flags & (FIF_PROMISC_IN_BSS | FIF_OTHER_BSS)) { |
| 3064 | if (*new_flags & FIF_PROMISC_IN_BSS) { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3065 | __set_bit(ATH_STAT_PROMISC, sc->status); |
John Daiker | 0bbac08 | 2008-10-17 12:16:00 -0700 | [diff] [blame] | 3066 | } else { |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3067 | __clear_bit(ATH_STAT_PROMISC, sc->status); |
John Daiker | 0bbac08 | 2008-10-17 12:16:00 -0700 | [diff] [blame] | 3068 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3069 | } |
| 3070 | |
Bob Copeland | 6b5dccc | 2010-06-04 08:14:14 -0400 | [diff] [blame] | 3071 | if (test_bit(ATH_STAT_PROMISC, sc->status)) |
| 3072 | rfilt |= AR5K_RX_FILTER_PROM; |
| 3073 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3074 | /* Note, AR5K_RX_FILTER_MCAST is already enabled */ |
| 3075 | if (*new_flags & FIF_ALLMULTI) { |
| 3076 | mfilt[0] = ~0; |
| 3077 | mfilt[1] = ~0; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3078 | } |
| 3079 | |
| 3080 | /* This is the best we can do */ |
| 3081 | if (*new_flags & (FIF_FCSFAIL | FIF_PLCPFAIL)) |
| 3082 | rfilt |= AR5K_RX_FILTER_PHYERR; |
| 3083 | |
| 3084 | /* FIF_BCN_PRBRESP_PROMISC really means to enable beacons |
Bob Copeland | 30bf416 | 2010-08-15 13:03:15 -0400 | [diff] [blame] | 3085 | * and probes for any BSSID */ |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 3086 | if ((*new_flags & FIF_BCN_PRBRESP_PROMISC) || (sc->nvifs > 1)) |
Bob Copeland | 30bf416 | 2010-08-15 13:03:15 -0400 | [diff] [blame] | 3087 | rfilt |= AR5K_RX_FILTER_BEACON; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3088 | |
| 3089 | /* FIF_CONTROL doc says that if FIF_PROMISC_IN_BSS is not |
| 3090 | * set we should only pass on control frames for this |
| 3091 | * station. This needs testing. I believe right now this |
| 3092 | * enables *all* control frames, which is OK.. but |
| 3093 | * but we should see if we can improve on granularity */ |
| 3094 | if (*new_flags & FIF_CONTROL) |
| 3095 | rfilt |= AR5K_RX_FILTER_CONTROL; |
| 3096 | |
| 3097 | /* Additional settings per mode -- this is per ath5k */ |
| 3098 | |
| 3099 | /* XXX move these to mac80211, and add a beacon IFF flag to mac80211 */ |
| 3100 | |
Bob Copeland | 56d1de0 | 2009-08-24 23:00:30 -0400 | [diff] [blame] | 3101 | switch (sc->opmode) { |
| 3102 | case NL80211_IFTYPE_MESH_POINT: |
Bob Copeland | 56d1de0 | 2009-08-24 23:00:30 -0400 | [diff] [blame] | 3103 | rfilt |= AR5K_RX_FILTER_CONTROL | |
| 3104 | AR5K_RX_FILTER_BEACON | |
| 3105 | AR5K_RX_FILTER_PROBEREQ | |
| 3106 | AR5K_RX_FILTER_PROM; |
| 3107 | break; |
| 3108 | case NL80211_IFTYPE_AP: |
| 3109 | case NL80211_IFTYPE_ADHOC: |
| 3110 | rfilt |= AR5K_RX_FILTER_PROBEREQ | |
| 3111 | AR5K_RX_FILTER_BEACON; |
| 3112 | break; |
| 3113 | case NL80211_IFTYPE_STATION: |
| 3114 | if (sc->assoc) |
| 3115 | rfilt |= AR5K_RX_FILTER_BEACON; |
| 3116 | default: |
| 3117 | break; |
| 3118 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3119 | |
| 3120 | /* Set filters */ |
John Daiker | 0bbac08 | 2008-10-17 12:16:00 -0700 | [diff] [blame] | 3121 | ath5k_hw_set_rx_filter(ah, rfilt); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3122 | |
| 3123 | /* Set multicast bits */ |
| 3124 | ath5k_hw_set_mcast_filter(ah, mfilt[0], mfilt[1]); |
Bob Copeland | a180a13 | 2010-08-15 13:03:12 -0400 | [diff] [blame] | 3125 | /* Set the cached hw filter flags, this will later actually |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3126 | * be set in HW */ |
| 3127 | sc->filter_flags = rfilt; |
Bob Copeland | 56d1de0 | 2009-08-24 23:00:30 -0400 | [diff] [blame] | 3128 | |
| 3129 | mutex_unlock(&sc->lock); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3130 | } |
| 3131 | |
| 3132 | static int |
| 3133 | ath5k_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, |
Johannes Berg | dc822b5 | 2008-12-29 12:55:09 +0100 | [diff] [blame] | 3134 | struct ieee80211_vif *vif, struct ieee80211_sta *sta, |
| 3135 | struct ieee80211_key_conf *key) |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3136 | { |
| 3137 | struct ath5k_softc *sc = hw->priv; |
Luis R. Rodriguez | dc1e001 | 2009-11-04 17:47:31 -0800 | [diff] [blame] | 3138 | struct ath5k_hw *ah = sc->ah; |
| 3139 | struct ath_common *common = ath5k_hw_common(ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3140 | int ret = 0; |
| 3141 | |
Bob Copeland | 9ad9a26 | 2008-10-29 08:30:54 -0400 | [diff] [blame] | 3142 | if (modparam_nohwcrypt) |
| 3143 | return -EOPNOTSUPP; |
| 3144 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 3145 | switch (key->cipher) { |
| 3146 | case WLAN_CIPHER_SUITE_WEP40: |
| 3147 | case WLAN_CIPHER_SUITE_WEP104: |
| 3148 | case WLAN_CIPHER_SUITE_TKIP: |
Bob Copeland | 3f64b43 | 2008-10-29 23:19:14 -0400 | [diff] [blame] | 3149 | break; |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 3150 | case WLAN_CIPHER_SUITE_CCMP: |
Bruno Randolf | 781f313 | 2010-09-08 16:04:59 +0900 | [diff] [blame] | 3151 | if (common->crypt_caps & ATH_CRYPT_CAP_CIPHER_AESCCM) |
Bob Copeland | 1c81874 | 2009-08-24 23:00:33 -0400 | [diff] [blame] | 3152 | break; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3153 | return -EOPNOTSUPP; |
| 3154 | default: |
| 3155 | WARN_ON(1); |
| 3156 | return -EINVAL; |
| 3157 | } |
| 3158 | |
| 3159 | mutex_lock(&sc->lock); |
| 3160 | |
| 3161 | switch (cmd) { |
| 3162 | case SET_KEY: |
Bruno Randolf | e0f8c2a | 2010-09-08 16:04:43 +0900 | [diff] [blame] | 3163 | ret = ath_key_config(common, vif, sta, key); |
| 3164 | if (ret >= 0) { |
| 3165 | key->hw_key_idx = ret; |
| 3166 | /* push IV and Michael MIC generation to stack */ |
| 3167 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV; |
| 3168 | if (key->cipher == WLAN_CIPHER_SUITE_TKIP) |
| 3169 | key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC; |
| 3170 | if (key->cipher == WLAN_CIPHER_SUITE_CCMP) |
| 3171 | key->flags |= IEEE80211_KEY_FLAG_SW_MGMT; |
| 3172 | ret = 0; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3173 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3174 | break; |
| 3175 | case DISABLE_KEY: |
Bruno Randolf | e0f8c2a | 2010-09-08 16:04:43 +0900 | [diff] [blame] | 3176 | ath_key_delete(common, key); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3177 | break; |
| 3178 | default: |
| 3179 | ret = -EINVAL; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3180 | } |
| 3181 | |
Jiri Slaby | 274c7c3 | 2008-07-15 17:44:20 +0200 | [diff] [blame] | 3182 | mmiowb(); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3183 | mutex_unlock(&sc->lock); |
| 3184 | return ret; |
| 3185 | } |
| 3186 | |
| 3187 | static int |
| 3188 | ath5k_get_stats(struct ieee80211_hw *hw, |
| 3189 | struct ieee80211_low_level_stats *stats) |
| 3190 | { |
| 3191 | struct ath5k_softc *sc = hw->priv; |
Nick Kossifidis | 194828a | 2008-04-16 18:49:02 +0300 | [diff] [blame] | 3192 | |
| 3193 | /* Force update */ |
Bruno Randolf | 495391d | 2010-03-25 14:49:36 +0900 | [diff] [blame] | 3194 | ath5k_hw_update_mib_counters(sc->ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3195 | |
Bruno Randolf | 495391d | 2010-03-25 14:49:36 +0900 | [diff] [blame] | 3196 | stats->dot11ACKFailureCount = sc->stats.ack_fail; |
| 3197 | stats->dot11RTSFailureCount = sc->stats.rts_fail; |
| 3198 | stats->dot11RTSSuccessCount = sc->stats.rts_ok; |
| 3199 | stats->dot11FCSErrorCount = sc->stats.fcs_error; |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3200 | |
| 3201 | return 0; |
| 3202 | } |
| 3203 | |
Holger Schurig | 55ee82b | 2010-04-19 10:24:22 +0200 | [diff] [blame] | 3204 | static int ath5k_get_survey(struct ieee80211_hw *hw, int idx, |
| 3205 | struct survey_info *survey) |
| 3206 | { |
| 3207 | struct ath5k_softc *sc = hw->priv; |
| 3208 | struct ieee80211_conf *conf = &hw->conf; |
Bruno Randolf | edb40a2 | 2010-10-19 16:56:54 +0900 | [diff] [blame^] | 3209 | struct ath_common *common = ath5k_hw_common(sc->ah); |
| 3210 | struct ath_cycle_counters *cc = &common->cc_survey; |
| 3211 | unsigned int div = common->clockrate * 1000; |
Holger Schurig | 55ee82b | 2010-04-19 10:24:22 +0200 | [diff] [blame] | 3212 | |
Bruno Randolf | edb40a2 | 2010-10-19 16:56:54 +0900 | [diff] [blame^] | 3213 | if (idx != 0) |
Holger Schurig | 55ee82b | 2010-04-19 10:24:22 +0200 | [diff] [blame] | 3214 | return -ENOENT; |
| 3215 | |
| 3216 | survey->channel = conf->channel; |
| 3217 | survey->filled = SURVEY_INFO_NOISE_DBM; |
| 3218 | survey->noise = sc->ah->ah_noise_floor; |
| 3219 | |
Bruno Randolf | edb40a2 | 2010-10-19 16:56:54 +0900 | [diff] [blame^] | 3220 | spin_lock_bh(&common->cc_lock); |
| 3221 | ath_hw_cycle_counters_update(common); |
| 3222 | if (cc->cycles > 0) { |
| 3223 | survey->filled |= SURVEY_INFO_CHANNEL_TIME | |
| 3224 | SURVEY_INFO_CHANNEL_TIME_BUSY | |
| 3225 | SURVEY_INFO_CHANNEL_TIME_RX | |
| 3226 | SURVEY_INFO_CHANNEL_TIME_TX; |
| 3227 | survey->channel_time += cc->cycles / div; |
| 3228 | survey->channel_time_busy += cc->rx_busy / div; |
| 3229 | survey->channel_time_rx += cc->rx_frame / div; |
| 3230 | survey->channel_time_tx += cc->tx_frame / div; |
| 3231 | } |
| 3232 | memset(cc, 0, sizeof(*cc)); |
| 3233 | spin_unlock_bh(&common->cc_lock); |
| 3234 | |
Holger Schurig | 55ee82b | 2010-04-19 10:24:22 +0200 | [diff] [blame] | 3235 | return 0; |
| 3236 | } |
| 3237 | |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3238 | static u64 |
| 3239 | ath5k_get_tsf(struct ieee80211_hw *hw) |
| 3240 | { |
| 3241 | struct ath5k_softc *sc = hw->priv; |
| 3242 | |
| 3243 | return ath5k_hw_get_tsf64(sc->ah); |
| 3244 | } |
| 3245 | |
| 3246 | static void |
Alina Friedrichsen | 3b5d665 | 2009-01-24 07:09:59 +0100 | [diff] [blame] | 3247 | ath5k_set_tsf(struct ieee80211_hw *hw, u64 tsf) |
| 3248 | { |
| 3249 | struct ath5k_softc *sc = hw->priv; |
| 3250 | |
| 3251 | ath5k_hw_set_tsf64(sc->ah, tsf); |
| 3252 | } |
| 3253 | |
| 3254 | static void |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3255 | ath5k_reset_tsf(struct ieee80211_hw *hw) |
| 3256 | { |
| 3257 | struct ath5k_softc *sc = hw->priv; |
| 3258 | |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 3259 | /* |
| 3260 | * in IBSS mode we need to update the beacon timers too. |
| 3261 | * this will also reset the TSF if we call it with 0 |
| 3262 | */ |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 3263 | if (sc->opmode == NL80211_IFTYPE_ADHOC) |
Bruno Randolf | 9804b98 | 2008-01-19 18:17:59 +0900 | [diff] [blame] | 3264 | ath5k_beacon_update_timers(sc, 0); |
| 3265 | else |
| 3266 | ath5k_hw_reset_tsf(sc->ah); |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3267 | } |
| 3268 | |
Martin Xu | 02969b3 | 2008-11-24 10:49:27 +0800 | [diff] [blame] | 3269 | static void |
| 3270 | set_beacon_filter(struct ieee80211_hw *hw, bool enable) |
| 3271 | { |
| 3272 | struct ath5k_softc *sc = hw->priv; |
| 3273 | struct ath5k_hw *ah = sc->ah; |
| 3274 | u32 rfilt; |
| 3275 | rfilt = ath5k_hw_get_rx_filter(ah); |
| 3276 | if (enable) |
| 3277 | rfilt |= AR5K_RX_FILTER_BEACON; |
| 3278 | else |
| 3279 | rfilt &= ~AR5K_RX_FILTER_BEACON; |
| 3280 | ath5k_hw_set_rx_filter(ah, rfilt); |
| 3281 | sc->filter_flags = rfilt; |
| 3282 | } |
Jiri Slaby | fa1c114 | 2007-08-12 17:33:16 +0200 | [diff] [blame] | 3283 | |
Martin Xu | 02969b3 | 2008-11-24 10:49:27 +0800 | [diff] [blame] | 3284 | static void ath5k_bss_info_changed(struct ieee80211_hw *hw, |
| 3285 | struct ieee80211_vif *vif, |
| 3286 | struct ieee80211_bss_conf *bss_conf, |
| 3287 | u32 changes) |
| 3288 | { |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 3289 | struct ath5k_vif *avf = (void *)vif->drv_priv; |
Martin Xu | 02969b3 | 2008-11-24 10:49:27 +0800 | [diff] [blame] | 3290 | struct ath5k_softc *sc = hw->priv; |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 3291 | struct ath5k_hw *ah = sc->ah; |
Luis R. Rodriguez | 954fece | 2009-09-10 10:51:33 -0700 | [diff] [blame] | 3292 | struct ath_common *common = ath5k_hw_common(ah); |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 3293 | unsigned long flags; |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 3294 | |
| 3295 | mutex_lock(&sc->lock); |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 3296 | |
| 3297 | if (changes & BSS_CHANGED_BSSID) { |
| 3298 | /* Cache for later use during resets */ |
Luis R. Rodriguez | 954fece | 2009-09-10 10:51:33 -0700 | [diff] [blame] | 3299 | memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN); |
Luis R. Rodriguez | 8ce54c5 | 2009-10-06 20:44:34 -0400 | [diff] [blame] | 3300 | common->curaid = 0; |
Nick Kossifidis | 418de6d | 2010-08-15 13:03:10 -0400 | [diff] [blame] | 3301 | ath5k_hw_set_bssid(ah); |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 3302 | mmiowb(); |
| 3303 | } |
Johannes Berg | 57c4d7b | 2009-04-23 16:10:04 +0200 | [diff] [blame] | 3304 | |
| 3305 | if (changes & BSS_CHANGED_BEACON_INT) |
| 3306 | sc->bintval = bss_conf->beacon_int; |
| 3307 | |
Martin Xu | 02969b3 | 2008-11-24 10:49:27 +0800 | [diff] [blame] | 3308 | if (changes & BSS_CHANGED_ASSOC) { |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 3309 | avf->assoc = bss_conf->assoc; |
| 3310 | if (bss_conf->assoc) |
| 3311 | sc->assoc = bss_conf->assoc; |
| 3312 | else |
| 3313 | sc->assoc = ath_any_vif_assoc(sc); |
| 3314 | |
Martin Xu | 02969b3 | 2008-11-24 10:49:27 +0800 | [diff] [blame] | 3315 | if (sc->opmode == NL80211_IFTYPE_STATION) |
| 3316 | set_beacon_filter(hw, sc->assoc); |
Bob Copeland | f0f3d38 | 2009-06-10 22:22:21 -0400 | [diff] [blame] | 3317 | ath5k_hw_set_ledstate(sc->ah, sc->assoc ? |
| 3318 | AR5K_LED_ASSOC : AR5K_LED_INIT); |
Luis R. Rodriguez | 8ce54c5 | 2009-10-06 20:44:34 -0400 | [diff] [blame] | 3319 | if (bss_conf->assoc) { |
| 3320 | ATH5K_DBG(sc, ATH5K_DEBUG_ANY, |
| 3321 | "Bss Info ASSOC %d, bssid: %pM\n", |
| 3322 | bss_conf->aid, common->curbssid); |
| 3323 | common->curaid = bss_conf->aid; |
Nick Kossifidis | 418de6d | 2010-08-15 13:03:10 -0400 | [diff] [blame] | 3324 | ath5k_hw_set_bssid(ah); |
Luis R. Rodriguez | 8ce54c5 | 2009-10-06 20:44:34 -0400 | [diff] [blame] | 3325 | /* Once ANI is available you would start it here */ |
| 3326 | } |
Martin Xu | 02969b3 | 2008-11-24 10:49:27 +0800 | [diff] [blame] | 3327 | } |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 3328 | |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 3329 | if (changes & BSS_CHANGED_BEACON) { |
| 3330 | spin_lock_irqsave(&sc->block, flags); |
| 3331 | ath5k_beacon_update(hw, vif); |
| 3332 | spin_unlock_irqrestore(&sc->block, flags); |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 3333 | } |
| 3334 | |
Bob Copeland | 2180049 | 2009-07-04 12:59:52 -0400 | [diff] [blame] | 3335 | if (changes & BSS_CHANGED_BEACON_ENABLED) |
| 3336 | sc->enable_beacon = bss_conf->enable_beacon; |
| 3337 | |
| 3338 | if (changes & (BSS_CHANGED_BEACON | BSS_CHANGED_BEACON_ENABLED | |
| 3339 | BSS_CHANGED_BEACON_INT)) |
| 3340 | ath5k_beacon_config(sc); |
| 3341 | |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 3342 | mutex_unlock(&sc->lock); |
Martin Xu | 02969b3 | 2008-11-24 10:49:27 +0800 | [diff] [blame] | 3343 | } |
Bob Copeland | f0f3d38 | 2009-06-10 22:22:21 -0400 | [diff] [blame] | 3344 | |
| 3345 | static void ath5k_sw_scan_start(struct ieee80211_hw *hw) |
| 3346 | { |
| 3347 | struct ath5k_softc *sc = hw->priv; |
| 3348 | if (!sc->assoc) |
| 3349 | ath5k_hw_set_ledstate(sc->ah, AR5K_LED_SCAN); |
| 3350 | } |
| 3351 | |
| 3352 | static void ath5k_sw_scan_complete(struct ieee80211_hw *hw) |
| 3353 | { |
| 3354 | struct ath5k_softc *sc = hw->priv; |
| 3355 | ath5k_hw_set_ledstate(sc->ah, sc->assoc ? |
| 3356 | AR5K_LED_ASSOC : AR5K_LED_INIT); |
| 3357 | } |
Lukáš Turek | 6e08d22 | 2009-12-21 22:50:51 +0100 | [diff] [blame] | 3358 | |
| 3359 | /** |
| 3360 | * ath5k_set_coverage_class - Set IEEE 802.11 coverage class |
| 3361 | * |
| 3362 | * @hw: struct ieee80211_hw pointer |
| 3363 | * @coverage_class: IEEE 802.11 coverage class number |
| 3364 | * |
| 3365 | * Mac80211 callback. Sets slot time, ACK timeout and CTS timeout for given |
| 3366 | * coverage class. The values are persistent, they are restored after device |
| 3367 | * reset. |
| 3368 | */ |
| 3369 | static void ath5k_set_coverage_class(struct ieee80211_hw *hw, u8 coverage_class) |
| 3370 | { |
| 3371 | struct ath5k_softc *sc = hw->priv; |
| 3372 | |
| 3373 | mutex_lock(&sc->lock); |
| 3374 | ath5k_hw_set_coverage_class(sc->ah, coverage_class); |
| 3375 | mutex_unlock(&sc->lock); |
| 3376 | } |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 3377 | |
Bruno Randolf | e0b1cc5 | 2010-09-17 11:37:18 +0900 | [diff] [blame] | 3378 | static int ath5k_conf_tx(struct ieee80211_hw *hw, u16 queue, |
| 3379 | const struct ieee80211_tx_queue_params *params) |
| 3380 | { |
| 3381 | struct ath5k_softc *sc = hw->priv; |
| 3382 | struct ath5k_hw *ah = sc->ah; |
| 3383 | struct ath5k_txq_info qi; |
| 3384 | int ret = 0; |
| 3385 | |
| 3386 | if (queue >= ah->ah_capabilities.cap_queues.q_tx_num) |
| 3387 | return 0; |
| 3388 | |
| 3389 | mutex_lock(&sc->lock); |
| 3390 | |
| 3391 | ath5k_hw_get_tx_queueprops(ah, queue, &qi); |
| 3392 | |
| 3393 | qi.tqi_aifs = params->aifs; |
| 3394 | qi.tqi_cw_min = params->cw_min; |
| 3395 | qi.tqi_cw_max = params->cw_max; |
| 3396 | qi.tqi_burst_time = params->txop; |
| 3397 | |
| 3398 | ATH5K_DBG(sc, ATH5K_DEBUG_ANY, |
| 3399 | "Configure tx [queue %d], " |
| 3400 | "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n", |
| 3401 | queue, params->aifs, params->cw_min, |
| 3402 | params->cw_max, params->txop); |
| 3403 | |
| 3404 | if (ath5k_hw_set_tx_queueprops(ah, queue, &qi)) { |
| 3405 | ATH5K_ERR(sc, |
| 3406 | "Unable to update hardware queue %u!\n", queue); |
| 3407 | ret = -EIO; |
| 3408 | } else |
| 3409 | ath5k_hw_reset_tx_queue(ah, queue); |
| 3410 | |
| 3411 | mutex_unlock(&sc->lock); |
| 3412 | |
| 3413 | return ret; |
| 3414 | } |
| 3415 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 3416 | static const struct ieee80211_ops ath5k_hw_ops = { |
| 3417 | .tx = ath5k_tx, |
| 3418 | .start = ath5k_start, |
| 3419 | .stop = ath5k_stop, |
| 3420 | .add_interface = ath5k_add_interface, |
| 3421 | .remove_interface = ath5k_remove_interface, |
| 3422 | .config = ath5k_config, |
| 3423 | .prepare_multicast = ath5k_prepare_multicast, |
| 3424 | .configure_filter = ath5k_configure_filter, |
| 3425 | .set_key = ath5k_set_key, |
| 3426 | .get_stats = ath5k_get_stats, |
| 3427 | .get_survey = ath5k_get_survey, |
Bruno Randolf | e0b1cc5 | 2010-09-17 11:37:18 +0900 | [diff] [blame] | 3428 | .conf_tx = ath5k_conf_tx, |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 3429 | .get_tsf = ath5k_get_tsf, |
| 3430 | .set_tsf = ath5k_set_tsf, |
| 3431 | .reset_tsf = ath5k_reset_tsf, |
| 3432 | .bss_info_changed = ath5k_bss_info_changed, |
| 3433 | .sw_scan_start = ath5k_sw_scan_start, |
| 3434 | .sw_scan_complete = ath5k_sw_scan_complete, |
| 3435 | .set_coverage_class = ath5k_set_coverage_class, |
| 3436 | }; |
| 3437 | |
| 3438 | /********************\ |
| 3439 | * PCI Initialization * |
| 3440 | \********************/ |
| 3441 | |
| 3442 | static int __devinit |
| 3443 | ath5k_pci_probe(struct pci_dev *pdev, |
| 3444 | const struct pci_device_id *id) |
| 3445 | { |
| 3446 | void __iomem *mem; |
| 3447 | struct ath5k_softc *sc; |
| 3448 | struct ath_common *common; |
| 3449 | struct ieee80211_hw *hw; |
| 3450 | int ret; |
| 3451 | u8 csz; |
| 3452 | |
| 3453 | /* |
| 3454 | * L0s needs to be disabled on all ath5k cards. |
| 3455 | * |
| 3456 | * For distributions shipping with CONFIG_PCIEASPM (this will be enabled |
| 3457 | * by default in the future in 2.6.36) this will also mean both L1 and |
| 3458 | * L0s will be disabled when a pre 1.1 PCIe device is detected. We do |
| 3459 | * know L1 works correctly even for all ath5k pre 1.1 PCIe devices |
| 3460 | * though but cannot currently undue the effect of a blacklist, for |
| 3461 | * details you can read pcie_aspm_sanity_check() and see how it adjusts |
| 3462 | * the device link capability. |
| 3463 | * |
| 3464 | * It may be possible in the future to implement some PCI API to allow |
| 3465 | * drivers to override blacklists for pre 1.1 PCIe but for now it is |
| 3466 | * best to accept that both L0s and L1 will be disabled completely for |
| 3467 | * distributions shipping with CONFIG_PCIEASPM rather than having this |
| 3468 | * issue present. Motivation for adding this new API will be to help |
| 3469 | * with power consumption for some of these devices. |
| 3470 | */ |
| 3471 | pci_disable_link_state(pdev, PCIE_LINK_STATE_L0S); |
| 3472 | |
| 3473 | ret = pci_enable_device(pdev); |
| 3474 | if (ret) { |
| 3475 | dev_err(&pdev->dev, "can't enable device\n"); |
| 3476 | goto err; |
| 3477 | } |
| 3478 | |
| 3479 | /* XXX 32-bit addressing only */ |
| 3480 | ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
| 3481 | if (ret) { |
| 3482 | dev_err(&pdev->dev, "32-bit DMA not available\n"); |
| 3483 | goto err_dis; |
| 3484 | } |
| 3485 | |
| 3486 | /* |
| 3487 | * Cache line size is used to size and align various |
| 3488 | * structures used to communicate with the hardware. |
| 3489 | */ |
| 3490 | pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &csz); |
| 3491 | if (csz == 0) { |
| 3492 | /* |
| 3493 | * Linux 2.4.18 (at least) writes the cache line size |
| 3494 | * register as a 16-bit wide register which is wrong. |
| 3495 | * We must have this setup properly for rx buffer |
| 3496 | * DMA to work so force a reasonable value here if it |
| 3497 | * comes up zero. |
| 3498 | */ |
| 3499 | csz = L1_CACHE_BYTES >> 2; |
| 3500 | pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, csz); |
| 3501 | } |
| 3502 | /* |
| 3503 | * The default setting of latency timer yields poor results, |
| 3504 | * set it to the value used by other systems. It may be worth |
| 3505 | * tweaking this setting more. |
| 3506 | */ |
| 3507 | pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0xa8); |
| 3508 | |
| 3509 | /* Enable bus mastering */ |
| 3510 | pci_set_master(pdev); |
| 3511 | |
| 3512 | /* |
| 3513 | * Disable the RETRY_TIMEOUT register (0x41) to keep |
| 3514 | * PCI Tx retries from interfering with C3 CPU state. |
| 3515 | */ |
| 3516 | pci_write_config_byte(pdev, 0x41, 0); |
| 3517 | |
| 3518 | ret = pci_request_region(pdev, 0, "ath5k"); |
| 3519 | if (ret) { |
| 3520 | dev_err(&pdev->dev, "cannot reserve PCI memory region\n"); |
| 3521 | goto err_dis; |
| 3522 | } |
| 3523 | |
| 3524 | mem = pci_iomap(pdev, 0, 0); |
| 3525 | if (!mem) { |
| 3526 | dev_err(&pdev->dev, "cannot remap PCI memory region\n") ; |
| 3527 | ret = -EIO; |
| 3528 | goto err_reg; |
| 3529 | } |
| 3530 | |
| 3531 | /* |
| 3532 | * Allocate hw (mac80211 main struct) |
| 3533 | * and hw->priv (driver private data) |
| 3534 | */ |
| 3535 | hw = ieee80211_alloc_hw(sizeof(*sc), &ath5k_hw_ops); |
| 3536 | if (hw == NULL) { |
| 3537 | dev_err(&pdev->dev, "cannot allocate ieee80211_hw\n"); |
| 3538 | ret = -ENOMEM; |
| 3539 | goto err_map; |
| 3540 | } |
| 3541 | |
| 3542 | dev_info(&pdev->dev, "registered as '%s'\n", wiphy_name(hw->wiphy)); |
| 3543 | |
| 3544 | /* Initialize driver private data */ |
| 3545 | SET_IEEE80211_DEV(hw, &pdev->dev); |
| 3546 | hw->flags = IEEE80211_HW_RX_INCLUDES_FCS | |
| 3547 | IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING | |
| 3548 | IEEE80211_HW_SIGNAL_DBM; |
| 3549 | |
| 3550 | hw->wiphy->interface_modes = |
| 3551 | BIT(NL80211_IFTYPE_AP) | |
| 3552 | BIT(NL80211_IFTYPE_STATION) | |
| 3553 | BIT(NL80211_IFTYPE_ADHOC) | |
| 3554 | BIT(NL80211_IFTYPE_MESH_POINT); |
| 3555 | |
| 3556 | hw->extra_tx_headroom = 2; |
| 3557 | hw->channel_change_time = 5000; |
| 3558 | sc = hw->priv; |
| 3559 | sc->hw = hw; |
| 3560 | sc->pdev = pdev; |
| 3561 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 3562 | /* |
| 3563 | * Mark the device as detached to avoid processing |
| 3564 | * interrupts until setup is complete. |
| 3565 | */ |
| 3566 | __set_bit(ATH_STAT_INVALID, sc->status); |
| 3567 | |
| 3568 | sc->iobase = mem; /* So we can unmap it on detach */ |
| 3569 | sc->opmode = NL80211_IFTYPE_STATION; |
| 3570 | sc->bintval = 1000; |
| 3571 | mutex_init(&sc->lock); |
| 3572 | spin_lock_init(&sc->rxbuflock); |
| 3573 | spin_lock_init(&sc->txbuflock); |
| 3574 | spin_lock_init(&sc->block); |
| 3575 | |
| 3576 | /* Set private data */ |
| 3577 | pci_set_drvdata(pdev, sc); |
| 3578 | |
| 3579 | /* Setup interrupt handler */ |
| 3580 | ret = request_irq(pdev->irq, ath5k_intr, IRQF_SHARED, "ath", sc); |
| 3581 | if (ret) { |
| 3582 | ATH5K_ERR(sc, "request_irq failed\n"); |
| 3583 | goto err_free; |
| 3584 | } |
| 3585 | |
| 3586 | /* If we passed the test, malloc an ath5k_hw struct */ |
| 3587 | sc->ah = kzalloc(sizeof(struct ath5k_hw), GFP_KERNEL); |
| 3588 | if (!sc->ah) { |
| 3589 | ret = -ENOMEM; |
| 3590 | ATH5K_ERR(sc, "out of memory\n"); |
| 3591 | goto err_irq; |
| 3592 | } |
| 3593 | |
| 3594 | sc->ah->ah_sc = sc; |
| 3595 | sc->ah->ah_iobase = sc->iobase; |
| 3596 | common = ath5k_hw_common(sc->ah); |
| 3597 | common->ops = &ath5k_common_ops; |
| 3598 | common->ah = sc->ah; |
| 3599 | common->hw = hw; |
| 3600 | common->cachelsz = csz << 2; /* convert to bytes */ |
Ben Greear | 9192f71 | 2010-10-15 15:51:32 -0700 | [diff] [blame] | 3601 | spin_lock_init(&common->cc_lock); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 3602 | |
| 3603 | /* Initialize device */ |
| 3604 | ret = ath5k_hw_attach(sc); |
| 3605 | if (ret) { |
| 3606 | goto err_free_ah; |
| 3607 | } |
| 3608 | |
| 3609 | /* set up multi-rate retry capabilities */ |
| 3610 | if (sc->ah->ah_version == AR5K_AR5212) { |
| 3611 | hw->max_rates = 4; |
| 3612 | hw->max_rate_tries = 11; |
| 3613 | } |
| 3614 | |
Ben Greear | b1ae1ed | 2010-09-30 12:22:58 -0700 | [diff] [blame] | 3615 | hw->vif_data_size = sizeof(struct ath5k_vif); |
| 3616 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 3617 | /* Finish private driver data initialization */ |
| 3618 | ret = ath5k_attach(pdev, hw); |
| 3619 | if (ret) |
| 3620 | goto err_ah; |
| 3621 | |
| 3622 | ATH5K_INFO(sc, "Atheros AR%s chip found (MAC: 0x%x, PHY: 0x%x)\n", |
| 3623 | ath5k_chip_name(AR5K_VERSION_MAC, sc->ah->ah_mac_srev), |
| 3624 | sc->ah->ah_mac_srev, |
| 3625 | sc->ah->ah_phy_revision); |
| 3626 | |
| 3627 | if (!sc->ah->ah_single_chip) { |
| 3628 | /* Single chip radio (!RF5111) */ |
| 3629 | if (sc->ah->ah_radio_5ghz_revision && |
| 3630 | !sc->ah->ah_radio_2ghz_revision) { |
| 3631 | /* No 5GHz support -> report 2GHz radio */ |
| 3632 | if (!test_bit(AR5K_MODE_11A, |
| 3633 | sc->ah->ah_capabilities.cap_mode)) { |
| 3634 | ATH5K_INFO(sc, "RF%s 2GHz radio found (0x%x)\n", |
| 3635 | ath5k_chip_name(AR5K_VERSION_RAD, |
| 3636 | sc->ah->ah_radio_5ghz_revision), |
| 3637 | sc->ah->ah_radio_5ghz_revision); |
| 3638 | /* No 2GHz support (5110 and some |
| 3639 | * 5Ghz only cards) -> report 5Ghz radio */ |
| 3640 | } else if (!test_bit(AR5K_MODE_11B, |
| 3641 | sc->ah->ah_capabilities.cap_mode)) { |
| 3642 | ATH5K_INFO(sc, "RF%s 5GHz radio found (0x%x)\n", |
| 3643 | ath5k_chip_name(AR5K_VERSION_RAD, |
| 3644 | sc->ah->ah_radio_5ghz_revision), |
| 3645 | sc->ah->ah_radio_5ghz_revision); |
| 3646 | /* Multiband radio */ |
| 3647 | } else { |
| 3648 | ATH5K_INFO(sc, "RF%s multiband radio found" |
| 3649 | " (0x%x)\n", |
| 3650 | ath5k_chip_name(AR5K_VERSION_RAD, |
| 3651 | sc->ah->ah_radio_5ghz_revision), |
| 3652 | sc->ah->ah_radio_5ghz_revision); |
| 3653 | } |
| 3654 | } |
| 3655 | /* Multi chip radio (RF5111 - RF2111) -> |
| 3656 | * report both 2GHz/5GHz radios */ |
| 3657 | else if (sc->ah->ah_radio_5ghz_revision && |
| 3658 | sc->ah->ah_radio_2ghz_revision){ |
| 3659 | ATH5K_INFO(sc, "RF%s 5GHz radio found (0x%x)\n", |
| 3660 | ath5k_chip_name(AR5K_VERSION_RAD, |
| 3661 | sc->ah->ah_radio_5ghz_revision), |
| 3662 | sc->ah->ah_radio_5ghz_revision); |
| 3663 | ATH5K_INFO(sc, "RF%s 2GHz radio found (0x%x)\n", |
| 3664 | ath5k_chip_name(AR5K_VERSION_RAD, |
| 3665 | sc->ah->ah_radio_2ghz_revision), |
| 3666 | sc->ah->ah_radio_2ghz_revision); |
| 3667 | } |
| 3668 | } |
| 3669 | |
Ben Greear | d84a35d | 2010-10-12 10:55:38 -0700 | [diff] [blame] | 3670 | ath5k_debug_init_device(sc); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 3671 | |
| 3672 | /* ready to process interrupts */ |
| 3673 | __clear_bit(ATH_STAT_INVALID, sc->status); |
| 3674 | |
| 3675 | return 0; |
| 3676 | err_ah: |
| 3677 | ath5k_hw_detach(sc->ah); |
| 3678 | err_free_ah: |
| 3679 | kfree(sc->ah); |
| 3680 | err_irq: |
| 3681 | free_irq(pdev->irq, sc); |
| 3682 | err_free: |
| 3683 | ieee80211_free_hw(hw); |
| 3684 | err_map: |
| 3685 | pci_iounmap(pdev, mem); |
| 3686 | err_reg: |
| 3687 | pci_release_region(pdev, 0); |
| 3688 | err_dis: |
| 3689 | pci_disable_device(pdev); |
| 3690 | err: |
| 3691 | return ret; |
| 3692 | } |
| 3693 | |
| 3694 | static void __devexit |
| 3695 | ath5k_pci_remove(struct pci_dev *pdev) |
| 3696 | { |
| 3697 | struct ath5k_softc *sc = pci_get_drvdata(pdev); |
| 3698 | |
| 3699 | ath5k_debug_finish_device(sc); |
| 3700 | ath5k_detach(pdev, sc->hw); |
| 3701 | ath5k_hw_detach(sc->ah); |
| 3702 | kfree(sc->ah); |
| 3703 | free_irq(pdev->irq, sc); |
| 3704 | pci_iounmap(pdev, sc->iobase); |
| 3705 | pci_release_region(pdev, 0); |
| 3706 | pci_disable_device(pdev); |
| 3707 | ieee80211_free_hw(sc->hw); |
| 3708 | } |
| 3709 | |
| 3710 | #ifdef CONFIG_PM_SLEEP |
| 3711 | static int ath5k_pci_suspend(struct device *dev) |
| 3712 | { |
| 3713 | struct ath5k_softc *sc = pci_get_drvdata(to_pci_dev(dev)); |
| 3714 | |
| 3715 | ath5k_led_off(sc); |
| 3716 | return 0; |
| 3717 | } |
| 3718 | |
| 3719 | static int ath5k_pci_resume(struct device *dev) |
| 3720 | { |
| 3721 | struct pci_dev *pdev = to_pci_dev(dev); |
| 3722 | struct ath5k_softc *sc = pci_get_drvdata(pdev); |
| 3723 | |
| 3724 | /* |
| 3725 | * Suspend/Resume resets the PCI configuration space, so we have to |
| 3726 | * re-disable the RETRY_TIMEOUT register (0x41) to keep |
| 3727 | * PCI Tx retries from interfering with C3 CPU state |
| 3728 | */ |
| 3729 | pci_write_config_byte(pdev, 0x41, 0); |
| 3730 | |
| 3731 | ath5k_led_enable(sc); |
| 3732 | return 0; |
| 3733 | } |
| 3734 | |
| 3735 | static SIMPLE_DEV_PM_OPS(ath5k_pm_ops, ath5k_pci_suspend, ath5k_pci_resume); |
| 3736 | #define ATH5K_PM_OPS (&ath5k_pm_ops) |
| 3737 | #else |
| 3738 | #define ATH5K_PM_OPS NULL |
| 3739 | #endif /* CONFIG_PM_SLEEP */ |
| 3740 | |
| 3741 | static struct pci_driver ath5k_pci_driver = { |
| 3742 | .name = KBUILD_MODNAME, |
| 3743 | .id_table = ath5k_pci_id_table, |
| 3744 | .probe = ath5k_pci_probe, |
| 3745 | .remove = __devexit_p(ath5k_pci_remove), |
| 3746 | .driver.pm = ATH5K_PM_OPS, |
| 3747 | }; |
| 3748 | |
| 3749 | /* |
| 3750 | * Module init/exit functions |
| 3751 | */ |
| 3752 | static int __init |
| 3753 | init_ath5k_pci(void) |
| 3754 | { |
| 3755 | int ret; |
| 3756 | |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 3757 | ret = pci_register_driver(&ath5k_pci_driver); |
| 3758 | if (ret) { |
| 3759 | printk(KERN_ERR "ath5k_pci: can't register pci driver\n"); |
| 3760 | return ret; |
| 3761 | } |
| 3762 | |
| 3763 | return 0; |
| 3764 | } |
| 3765 | |
| 3766 | static void __exit |
| 3767 | exit_ath5k_pci(void) |
| 3768 | { |
| 3769 | pci_unregister_driver(&ath5k_pci_driver); |
Bob Copeland | 8a63fac | 2010-09-17 12:45:07 +0900 | [diff] [blame] | 3770 | } |
| 3771 | |
| 3772 | module_init(init_ath5k_pci); |
| 3773 | module_exit(exit_ath5k_pci); |