Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1 | /* |
Sujith Manoharan | 5b68138 | 2011-05-17 13:36:18 +0530 | [diff] [blame] | 2 | * Copyright (c) 2008-2011 Atheros Communications Inc. |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 3 | * |
| 4 | * Permission to use, copy, modify, and/or distribute this software for any |
| 5 | * purpose with or without fee is hereby granted, provided that the above |
| 6 | * copyright notice and this permission notice appear in all copies. |
| 7 | * |
| 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 15 | */ |
| 16 | |
Joe Perches | 516304b | 2012-03-18 17:30:52 -0700 | [diff] [blame] | 17 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 18 | |
Alexey Dobriyan | b7f080c | 2011-06-16 11:01:34 +0000 | [diff] [blame] | 19 | #include <linux/dma-mapping.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 20 | #include <linux/slab.h> |
Felix Fietkau | 6fb1b1e | 2011-03-19 13:55:39 +0100 | [diff] [blame] | 21 | #include <linux/ath9k_platform.h> |
Paul Gortmaker | 9d9779e | 2011-07-03 15:21:01 -0400 | [diff] [blame] | 22 | #include <linux/module.h> |
Simon Wunderlich | e93d083 | 2013-01-08 14:48:58 +0100 | [diff] [blame^] | 23 | #include <linux/relay.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 24 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 25 | #include "ath9k.h" |
| 26 | |
Gabor Juhos | ab5c4f7 | 2012-12-10 15:30:28 +0100 | [diff] [blame] | 27 | struct ath9k_eeprom_ctx { |
| 28 | struct completion complete; |
| 29 | struct ath_hw *ah; |
| 30 | }; |
| 31 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 32 | static char *dev_info = "ath9k"; |
| 33 | |
| 34 | MODULE_AUTHOR("Atheros Communications"); |
| 35 | MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards."); |
| 36 | MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards"); |
| 37 | MODULE_LICENSE("Dual BSD/GPL"); |
| 38 | |
| 39 | static unsigned int ath9k_debug = ATH_DBG_DEFAULT; |
| 40 | module_param_named(debug, ath9k_debug, uint, 0); |
| 41 | MODULE_PARM_DESC(debug, "Debugging mask"); |
| 42 | |
John W. Linville | 3e6109c | 2011-01-05 09:39:17 -0500 | [diff] [blame] | 43 | int ath9k_modparam_nohwcrypt; |
| 44 | module_param_named(nohwcrypt, ath9k_modparam_nohwcrypt, int, 0444); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 45 | MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption"); |
| 46 | |
Vivek Natarajan | 93dbbcc | 2010-08-25 19:34:52 +0530 | [diff] [blame] | 47 | int led_blink; |
Vivek Natarajan | 9a75c2f | 2010-06-22 11:52:37 +0530 | [diff] [blame] | 48 | module_param_named(blink, led_blink, int, 0444); |
| 49 | MODULE_PARM_DESC(blink, "Enable LED blink on activity"); |
| 50 | |
Vasanthakumar Thiagarajan | 8f5dcb1 | 2010-11-26 06:10:06 -0800 | [diff] [blame] | 51 | static int ath9k_btcoex_enable; |
| 52 | module_param_named(btcoex_enable, ath9k_btcoex_enable, int, 0444); |
| 53 | MODULE_PARM_DESC(btcoex_enable, "Enable wifi-BT coexistence"); |
| 54 | |
Sujith Manoharan | e09f2dc | 2012-09-16 08:06:56 +0530 | [diff] [blame] | 55 | static int ath9k_enable_diversity; |
| 56 | module_param_named(enable_diversity, ath9k_enable_diversity, int, 0444); |
| 57 | MODULE_PARM_DESC(enable_diversity, "Enable Antenna diversity for AR9565"); |
| 58 | |
Rajkumar Manoharan | d584747 | 2010-12-20 14:39:51 +0530 | [diff] [blame] | 59 | bool is_ath9k_unloaded; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 60 | /* We use the hw_value as an index into our private channel structure */ |
| 61 | |
| 62 | #define CHAN2G(_freq, _idx) { \ |
Mohammed Shafi Shajakhan | b1c1d00 | 2010-12-17 20:44:36 +0530 | [diff] [blame] | 63 | .band = IEEE80211_BAND_2GHZ, \ |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 64 | .center_freq = (_freq), \ |
| 65 | .hw_value = (_idx), \ |
| 66 | .max_power = 20, \ |
| 67 | } |
| 68 | |
| 69 | #define CHAN5G(_freq, _idx) { \ |
| 70 | .band = IEEE80211_BAND_5GHZ, \ |
| 71 | .center_freq = (_freq), \ |
| 72 | .hw_value = (_idx), \ |
| 73 | .max_power = 20, \ |
| 74 | } |
| 75 | |
| 76 | /* Some 2 GHz radios are actually tunable on 2312-2732 |
| 77 | * on 5 MHz steps, we support the channels which we know |
| 78 | * we have calibration data for all cards though to make |
| 79 | * this static */ |
Felix Fietkau | f209f52 | 2010-10-01 01:06:53 +0200 | [diff] [blame] | 80 | static const struct ieee80211_channel ath9k_2ghz_chantable[] = { |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 81 | CHAN2G(2412, 0), /* Channel 1 */ |
| 82 | CHAN2G(2417, 1), /* Channel 2 */ |
| 83 | CHAN2G(2422, 2), /* Channel 3 */ |
| 84 | CHAN2G(2427, 3), /* Channel 4 */ |
| 85 | CHAN2G(2432, 4), /* Channel 5 */ |
| 86 | CHAN2G(2437, 5), /* Channel 6 */ |
| 87 | CHAN2G(2442, 6), /* Channel 7 */ |
| 88 | CHAN2G(2447, 7), /* Channel 8 */ |
| 89 | CHAN2G(2452, 8), /* Channel 9 */ |
| 90 | CHAN2G(2457, 9), /* Channel 10 */ |
| 91 | CHAN2G(2462, 10), /* Channel 11 */ |
| 92 | CHAN2G(2467, 11), /* Channel 12 */ |
| 93 | CHAN2G(2472, 12), /* Channel 13 */ |
| 94 | CHAN2G(2484, 13), /* Channel 14 */ |
| 95 | }; |
| 96 | |
| 97 | /* Some 5 GHz radios are actually tunable on XXXX-YYYY |
| 98 | * on 5 MHz steps, we support the channels which we know |
| 99 | * we have calibration data for all cards though to make |
| 100 | * this static */ |
Felix Fietkau | f209f52 | 2010-10-01 01:06:53 +0200 | [diff] [blame] | 101 | static const struct ieee80211_channel ath9k_5ghz_chantable[] = { |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 102 | /* _We_ call this UNII 1 */ |
| 103 | CHAN5G(5180, 14), /* Channel 36 */ |
| 104 | CHAN5G(5200, 15), /* Channel 40 */ |
| 105 | CHAN5G(5220, 16), /* Channel 44 */ |
| 106 | CHAN5G(5240, 17), /* Channel 48 */ |
| 107 | /* _We_ call this UNII 2 */ |
| 108 | CHAN5G(5260, 18), /* Channel 52 */ |
| 109 | CHAN5G(5280, 19), /* Channel 56 */ |
| 110 | CHAN5G(5300, 20), /* Channel 60 */ |
| 111 | CHAN5G(5320, 21), /* Channel 64 */ |
| 112 | /* _We_ call this "Middle band" */ |
| 113 | CHAN5G(5500, 22), /* Channel 100 */ |
| 114 | CHAN5G(5520, 23), /* Channel 104 */ |
| 115 | CHAN5G(5540, 24), /* Channel 108 */ |
| 116 | CHAN5G(5560, 25), /* Channel 112 */ |
| 117 | CHAN5G(5580, 26), /* Channel 116 */ |
| 118 | CHAN5G(5600, 27), /* Channel 120 */ |
| 119 | CHAN5G(5620, 28), /* Channel 124 */ |
| 120 | CHAN5G(5640, 29), /* Channel 128 */ |
| 121 | CHAN5G(5660, 30), /* Channel 132 */ |
| 122 | CHAN5G(5680, 31), /* Channel 136 */ |
| 123 | CHAN5G(5700, 32), /* Channel 140 */ |
| 124 | /* _We_ call this UNII 3 */ |
| 125 | CHAN5G(5745, 33), /* Channel 149 */ |
| 126 | CHAN5G(5765, 34), /* Channel 153 */ |
| 127 | CHAN5G(5785, 35), /* Channel 157 */ |
| 128 | CHAN5G(5805, 36), /* Channel 161 */ |
| 129 | CHAN5G(5825, 37), /* Channel 165 */ |
| 130 | }; |
| 131 | |
| 132 | /* Atheros hardware rate code addition for short premble */ |
| 133 | #define SHPCHECK(__hw_rate, __flags) \ |
| 134 | ((__flags & IEEE80211_RATE_SHORT_PREAMBLE) ? (__hw_rate | 0x04 ) : 0) |
| 135 | |
| 136 | #define RATE(_bitrate, _hw_rate, _flags) { \ |
| 137 | .bitrate = (_bitrate), \ |
| 138 | .flags = (_flags), \ |
| 139 | .hw_value = (_hw_rate), \ |
| 140 | .hw_value_short = (SHPCHECK(_hw_rate, _flags)) \ |
| 141 | } |
| 142 | |
| 143 | static struct ieee80211_rate ath9k_legacy_rates[] = { |
| 144 | RATE(10, 0x1b, 0), |
| 145 | RATE(20, 0x1a, IEEE80211_RATE_SHORT_PREAMBLE), |
| 146 | RATE(55, 0x19, IEEE80211_RATE_SHORT_PREAMBLE), |
| 147 | RATE(110, 0x18, IEEE80211_RATE_SHORT_PREAMBLE), |
| 148 | RATE(60, 0x0b, 0), |
| 149 | RATE(90, 0x0f, 0), |
| 150 | RATE(120, 0x0a, 0), |
| 151 | RATE(180, 0x0e, 0), |
| 152 | RATE(240, 0x09, 0), |
| 153 | RATE(360, 0x0d, 0), |
| 154 | RATE(480, 0x08, 0), |
| 155 | RATE(540, 0x0c, 0), |
| 156 | }; |
| 157 | |
Felix Fietkau | 0cf55c2 | 2011-02-27 22:26:40 +0100 | [diff] [blame] | 158 | #ifdef CONFIG_MAC80211_LEDS |
| 159 | static const struct ieee80211_tpt_blink ath9k_tpt_blink[] = { |
| 160 | { .throughput = 0 * 1024, .blink_time = 334 }, |
| 161 | { .throughput = 1 * 1024, .blink_time = 260 }, |
| 162 | { .throughput = 5 * 1024, .blink_time = 220 }, |
| 163 | { .throughput = 10 * 1024, .blink_time = 190 }, |
| 164 | { .throughput = 20 * 1024, .blink_time = 170 }, |
| 165 | { .throughput = 50 * 1024, .blink_time = 150 }, |
| 166 | { .throughput = 70 * 1024, .blink_time = 130 }, |
| 167 | { .throughput = 100 * 1024, .blink_time = 110 }, |
| 168 | { .throughput = 200 * 1024, .blink_time = 80 }, |
| 169 | { .throughput = 300 * 1024, .blink_time = 50 }, |
| 170 | }; |
| 171 | #endif |
| 172 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 173 | static void ath9k_deinit_softc(struct ath_softc *sc); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 174 | |
| 175 | /* |
| 176 | * Read and write, they both share the same lock. We do this to serialize |
| 177 | * reads and writes on Atheros 802.11n PCI devices only. This is required |
| 178 | * as the FIFO on these devices can only accept sanely 2 requests. |
| 179 | */ |
| 180 | |
| 181 | static void ath9k_iowrite32(void *hw_priv, u32 val, u32 reg_offset) |
| 182 | { |
| 183 | struct ath_hw *ah = (struct ath_hw *) hw_priv; |
| 184 | struct ath_common *common = ath9k_hw_common(ah); |
| 185 | struct ath_softc *sc = (struct ath_softc *) common->priv; |
| 186 | |
Felix Fietkau | f3eef64 | 2012-03-14 16:40:25 +0100 | [diff] [blame] | 187 | if (NR_CPUS > 1 && ah->config.serialize_regmode == SER_REG_MODE_ON) { |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 188 | unsigned long flags; |
| 189 | spin_lock_irqsave(&sc->sc_serial_rw, flags); |
| 190 | iowrite32(val, sc->mem + reg_offset); |
| 191 | spin_unlock_irqrestore(&sc->sc_serial_rw, flags); |
| 192 | } else |
| 193 | iowrite32(val, sc->mem + reg_offset); |
| 194 | } |
| 195 | |
| 196 | static unsigned int ath9k_ioread32(void *hw_priv, u32 reg_offset) |
| 197 | { |
| 198 | struct ath_hw *ah = (struct ath_hw *) hw_priv; |
| 199 | struct ath_common *common = ath9k_hw_common(ah); |
| 200 | struct ath_softc *sc = (struct ath_softc *) common->priv; |
| 201 | u32 val; |
| 202 | |
Felix Fietkau | f3eef64 | 2012-03-14 16:40:25 +0100 | [diff] [blame] | 203 | if (NR_CPUS > 1 && ah->config.serialize_regmode == SER_REG_MODE_ON) { |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 204 | unsigned long flags; |
| 205 | spin_lock_irqsave(&sc->sc_serial_rw, flags); |
| 206 | val = ioread32(sc->mem + reg_offset); |
| 207 | spin_unlock_irqrestore(&sc->sc_serial_rw, flags); |
| 208 | } else |
| 209 | val = ioread32(sc->mem + reg_offset); |
| 210 | return val; |
| 211 | } |
| 212 | |
Rajkumar Manoharan | 5479de6 | 2011-07-17 11:43:02 +0530 | [diff] [blame] | 213 | static unsigned int __ath9k_reg_rmw(struct ath_softc *sc, u32 reg_offset, |
| 214 | u32 set, u32 clr) |
| 215 | { |
| 216 | u32 val; |
| 217 | |
| 218 | val = ioread32(sc->mem + reg_offset); |
| 219 | val &= ~clr; |
| 220 | val |= set; |
| 221 | iowrite32(val, sc->mem + reg_offset); |
| 222 | |
| 223 | return val; |
| 224 | } |
| 225 | |
Felix Fietkau | 845e03c | 2011-03-23 20:57:25 +0100 | [diff] [blame] | 226 | static unsigned int ath9k_reg_rmw(void *hw_priv, u32 reg_offset, u32 set, u32 clr) |
| 227 | { |
| 228 | struct ath_hw *ah = (struct ath_hw *) hw_priv; |
| 229 | struct ath_common *common = ath9k_hw_common(ah); |
| 230 | struct ath_softc *sc = (struct ath_softc *) common->priv; |
| 231 | unsigned long uninitialized_var(flags); |
| 232 | u32 val; |
| 233 | |
Felix Fietkau | f3eef64 | 2012-03-14 16:40:25 +0100 | [diff] [blame] | 234 | if (NR_CPUS > 1 && ah->config.serialize_regmode == SER_REG_MODE_ON) { |
Felix Fietkau | 845e03c | 2011-03-23 20:57:25 +0100 | [diff] [blame] | 235 | spin_lock_irqsave(&sc->sc_serial_rw, flags); |
Rajkumar Manoharan | 5479de6 | 2011-07-17 11:43:02 +0530 | [diff] [blame] | 236 | val = __ath9k_reg_rmw(sc, reg_offset, set, clr); |
Felix Fietkau | 845e03c | 2011-03-23 20:57:25 +0100 | [diff] [blame] | 237 | spin_unlock_irqrestore(&sc->sc_serial_rw, flags); |
Rajkumar Manoharan | 5479de6 | 2011-07-17 11:43:02 +0530 | [diff] [blame] | 238 | } else |
| 239 | val = __ath9k_reg_rmw(sc, reg_offset, set, clr); |
Felix Fietkau | 845e03c | 2011-03-23 20:57:25 +0100 | [diff] [blame] | 240 | |
| 241 | return val; |
| 242 | } |
| 243 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 244 | /**************************/ |
| 245 | /* Initialization */ |
| 246 | /**************************/ |
| 247 | |
| 248 | static void setup_ht_cap(struct ath_softc *sc, |
| 249 | struct ieee80211_sta_ht_cap *ht_info) |
| 250 | { |
Felix Fietkau | 3bb065a | 2010-04-19 19:57:34 +0200 | [diff] [blame] | 251 | struct ath_hw *ah = sc->sc_ah; |
| 252 | struct ath_common *common = ath9k_hw_common(ah); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 253 | u8 tx_streams, rx_streams; |
Felix Fietkau | 3bb065a | 2010-04-19 19:57:34 +0200 | [diff] [blame] | 254 | int i, max_streams; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 255 | |
| 256 | ht_info->ht_supported = true; |
| 257 | ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 | |
| 258 | IEEE80211_HT_CAP_SM_PS | |
| 259 | IEEE80211_HT_CAP_SGI_40 | |
| 260 | IEEE80211_HT_CAP_DSSSCCK40; |
| 261 | |
Luis R. Rodriguez | b0a3344 | 2010-04-15 17:39:39 -0400 | [diff] [blame] | 262 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_LDPC) |
| 263 | ht_info->cap |= IEEE80211_HT_CAP_LDPC_CODING; |
| 264 | |
Vasanthakumar Thiagarajan | 6473d24 | 2010-05-13 18:42:38 -0700 | [diff] [blame] | 265 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_SGI_20) |
| 266 | ht_info->cap |= IEEE80211_HT_CAP_SGI_20; |
| 267 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 268 | ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K; |
| 269 | ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8; |
| 270 | |
Sujith Manoharan | e41db61 | 2012-09-10 09:20:12 +0530 | [diff] [blame] | 271 | if (AR_SREV_9330(ah) || AR_SREV_9485(ah) || AR_SREV_9565(ah)) |
Vasanthakumar Thiagarajan | 7f1c7a6 | 2010-12-06 04:27:41 -0800 | [diff] [blame] | 272 | max_streams = 1; |
Mohammed Shafi Shajakhan | e710419 | 2011-12-01 18:14:01 +0530 | [diff] [blame] | 273 | else if (AR_SREV_9462(ah)) |
| 274 | max_streams = 2; |
Vasanthakumar Thiagarajan | 7f1c7a6 | 2010-12-06 04:27:41 -0800 | [diff] [blame] | 275 | else if (AR_SREV_9300_20_OR_LATER(ah)) |
Felix Fietkau | 3bb065a | 2010-04-19 19:57:34 +0200 | [diff] [blame] | 276 | max_streams = 3; |
| 277 | else |
| 278 | max_streams = 2; |
| 279 | |
Felix Fietkau | 7a37081 | 2010-09-22 12:34:52 +0200 | [diff] [blame] | 280 | if (AR_SREV_9280_20_OR_LATER(ah)) { |
Felix Fietkau | 074a8c0 | 2010-04-19 19:57:36 +0200 | [diff] [blame] | 281 | if (max_streams >= 2) |
| 282 | ht_info->cap |= IEEE80211_HT_CAP_TX_STBC; |
| 283 | ht_info->cap |= (1 << IEEE80211_HT_CAP_RX_STBC_SHIFT); |
| 284 | } |
| 285 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 286 | /* set up supported mcs set */ |
| 287 | memset(&ht_info->mcs, 0, sizeof(ht_info->mcs)); |
Felix Fietkau | 82b2d33 | 2011-09-03 01:40:23 +0200 | [diff] [blame] | 288 | tx_streams = ath9k_cmn_count_streams(ah->txchainmask, max_streams); |
| 289 | rx_streams = ath9k_cmn_count_streams(ah->rxchainmask, max_streams); |
Felix Fietkau | 3bb065a | 2010-04-19 19:57:34 +0200 | [diff] [blame] | 290 | |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 291 | ath_dbg(common, CONFIG, "TX streams %d, RX streams: %d\n", |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 292 | tx_streams, rx_streams); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 293 | |
| 294 | if (tx_streams != rx_streams) { |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 295 | ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF; |
| 296 | ht_info->mcs.tx_params |= ((tx_streams - 1) << |
| 297 | IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT); |
| 298 | } |
| 299 | |
Felix Fietkau | 3bb065a | 2010-04-19 19:57:34 +0200 | [diff] [blame] | 300 | for (i = 0; i < rx_streams; i++) |
| 301 | ht_info->mcs.rx_mask[i] = 0xff; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 302 | |
| 303 | ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_DEFINED; |
| 304 | } |
| 305 | |
| 306 | static int ath9k_reg_notifier(struct wiphy *wiphy, |
| 307 | struct regulatory_request *request) |
| 308 | { |
| 309 | struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy); |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 310 | struct ath_softc *sc = hw->priv; |
Rajkumar Manoharan | 687f545 | 2011-12-08 23:59:25 +0530 | [diff] [blame] | 311 | struct ath_hw *ah = sc->sc_ah; |
| 312 | struct ath_regulatory *reg = ath9k_hw_regulatory(ah); |
| 313 | int ret; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 314 | |
Rajkumar Manoharan | 687f545 | 2011-12-08 23:59:25 +0530 | [diff] [blame] | 315 | ret = ath_reg_notifier_apply(wiphy, request, reg); |
| 316 | |
| 317 | /* Set tx power */ |
| 318 | if (ah->curchan) { |
| 319 | sc->config.txpowlimit = 2 * ah->curchan->chan->max_power; |
| 320 | ath9k_ps_wakeup(sc); |
| 321 | ath9k_hw_set_txpowerlimit(ah, sc->config.txpowlimit, false); |
| 322 | sc->curtxpow = ath9k_hw_regulatory(ah)->power_limit; |
| 323 | ath9k_ps_restore(sc); |
| 324 | } |
| 325 | |
| 326 | return ret; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | /* |
| 330 | * This function will allocate both the DMA descriptor structure, and the |
| 331 | * buffers it contains. These are used to contain the descriptors used |
| 332 | * by the system. |
| 333 | */ |
| 334 | int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd, |
| 335 | struct list_head *head, const char *name, |
Vasanthakumar Thiagarajan | 4adfcde | 2010-04-15 17:39:33 -0400 | [diff] [blame] | 336 | int nbuf, int ndesc, bool is_tx) |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 337 | { |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 338 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Vasanthakumar Thiagarajan | 4adfcde | 2010-04-15 17:39:33 -0400 | [diff] [blame] | 339 | u8 *ds; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 340 | struct ath_buf *bf; |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 341 | int i, bsize, desc_len; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 342 | |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 343 | ath_dbg(common, CONFIG, "%s DMA: %u buffers %u desc/buf\n", |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 344 | name, nbuf, ndesc); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 345 | |
| 346 | INIT_LIST_HEAD(head); |
Vasanthakumar Thiagarajan | 4adfcde | 2010-04-15 17:39:33 -0400 | [diff] [blame] | 347 | |
| 348 | if (is_tx) |
| 349 | desc_len = sc->sc_ah->caps.tx_desc_len; |
| 350 | else |
| 351 | desc_len = sizeof(struct ath_desc); |
| 352 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 353 | /* ath_desc must be a multiple of DWORDs */ |
Vasanthakumar Thiagarajan | 4adfcde | 2010-04-15 17:39:33 -0400 | [diff] [blame] | 354 | if ((desc_len % 4) != 0) { |
Joe Perches | 3800276 | 2010-12-02 19:12:36 -0800 | [diff] [blame] | 355 | ath_err(common, "ath_desc not DWORD aligned\n"); |
Vasanthakumar Thiagarajan | 4adfcde | 2010-04-15 17:39:33 -0400 | [diff] [blame] | 356 | BUG_ON((desc_len % 4) != 0); |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 357 | return -ENOMEM; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 358 | } |
| 359 | |
Vasanthakumar Thiagarajan | 4adfcde | 2010-04-15 17:39:33 -0400 | [diff] [blame] | 360 | dd->dd_desc_len = desc_len * nbuf * ndesc; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 361 | |
| 362 | /* |
| 363 | * Need additional DMA memory because we can't use |
| 364 | * descriptors that cross the 4K page boundary. Assume |
| 365 | * one skipped descriptor per 4K page. |
| 366 | */ |
| 367 | if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) { |
| 368 | u32 ndesc_skipped = |
| 369 | ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len); |
| 370 | u32 dma_len; |
| 371 | |
| 372 | while (ndesc_skipped) { |
Vasanthakumar Thiagarajan | 4adfcde | 2010-04-15 17:39:33 -0400 | [diff] [blame] | 373 | dma_len = ndesc_skipped * desc_len; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 374 | dd->dd_desc_len += dma_len; |
| 375 | |
| 376 | ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len); |
Joe Perches | ee289b6 | 2010-05-17 22:47:34 -0700 | [diff] [blame] | 377 | } |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | /* allocate descriptors */ |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 381 | dd->dd_desc = dmam_alloc_coherent(sc->dev, dd->dd_desc_len, |
| 382 | &dd->dd_desc_paddr, GFP_KERNEL); |
| 383 | if (!dd->dd_desc) |
| 384 | return -ENOMEM; |
| 385 | |
Vasanthakumar Thiagarajan | 4adfcde | 2010-04-15 17:39:33 -0400 | [diff] [blame] | 386 | ds = (u8 *) dd->dd_desc; |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 387 | ath_dbg(common, CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n", |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 388 | name, ds, (u32) dd->dd_desc_len, |
| 389 | ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 390 | |
| 391 | /* allocate buffers */ |
| 392 | bsize = sizeof(struct ath_buf) * nbuf; |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 393 | bf = devm_kzalloc(sc->dev, bsize, GFP_KERNEL); |
| 394 | if (!bf) |
| 395 | return -ENOMEM; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 396 | |
Vasanthakumar Thiagarajan | 4adfcde | 2010-04-15 17:39:33 -0400 | [diff] [blame] | 397 | for (i = 0; i < nbuf; i++, bf++, ds += (desc_len * ndesc)) { |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 398 | bf->bf_desc = ds; |
| 399 | bf->bf_daddr = DS2PHYS(dd, ds); |
| 400 | |
| 401 | if (!(sc->sc_ah->caps.hw_caps & |
| 402 | ATH9K_HW_CAP_4KB_SPLITTRANS)) { |
| 403 | /* |
| 404 | * Skip descriptor addresses which can cause 4KB |
| 405 | * boundary crossing (addr + length) with a 32 dword |
| 406 | * descriptor fetch. |
| 407 | */ |
| 408 | while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) { |
| 409 | BUG_ON((caddr_t) bf->bf_desc >= |
| 410 | ((caddr_t) dd->dd_desc + |
| 411 | dd->dd_desc_len)); |
| 412 | |
Vasanthakumar Thiagarajan | 4adfcde | 2010-04-15 17:39:33 -0400 | [diff] [blame] | 413 | ds += (desc_len * ndesc); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 414 | bf->bf_desc = ds; |
| 415 | bf->bf_daddr = DS2PHYS(dd, ds); |
| 416 | } |
| 417 | } |
| 418 | list_add_tail(&bf->list, head); |
| 419 | } |
| 420 | return 0; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 421 | } |
| 422 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 423 | static int ath9k_init_queues(struct ath_softc *sc) |
| 424 | { |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 425 | int i = 0; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 426 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 427 | sc->beacon.beaconq = ath9k_hw_beaconq_setup(sc->sc_ah); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 428 | sc->beacon.cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 429 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 430 | sc->config.cabqReadytime = ATH_CABQ_READY_TIME; |
| 431 | ath_cabq_update(sc); |
| 432 | |
Sujith Manoharan | bea843c | 2012-11-21 18:13:10 +0530 | [diff] [blame] | 433 | for (i = 0; i < IEEE80211_NUM_ACS; i++) { |
Felix Fietkau | 066dae9 | 2010-11-07 14:59:39 +0100 | [diff] [blame] | 434 | sc->tx.txq_map[i] = ath_txq_setup(sc, ATH9K_TX_QUEUE_DATA, i); |
Ben Greear | 60f2d1d | 2011-01-09 23:11:52 -0800 | [diff] [blame] | 435 | sc->tx.txq_map[i]->mac80211_qnum = i; |
Felix Fietkau | 7702e78 | 2012-07-15 19:53:35 +0200 | [diff] [blame] | 436 | sc->tx.txq_max_pending[i] = ATH_MAX_QDEPTH; |
Ben Greear | 60f2d1d | 2011-01-09 23:11:52 -0800 | [diff] [blame] | 437 | } |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 438 | return 0; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 439 | } |
| 440 | |
Felix Fietkau | f209f52 | 2010-10-01 01:06:53 +0200 | [diff] [blame] | 441 | static int ath9k_init_channels_rates(struct ath_softc *sc) |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 442 | { |
Felix Fietkau | f209f52 | 2010-10-01 01:06:53 +0200 | [diff] [blame] | 443 | void *channels; |
| 444 | |
Felix Fietkau | cac4220 | 2010-10-09 02:39:30 +0200 | [diff] [blame] | 445 | BUILD_BUG_ON(ARRAY_SIZE(ath9k_2ghz_chantable) + |
| 446 | ARRAY_SIZE(ath9k_5ghz_chantable) != |
| 447 | ATH9K_NUM_CHANNELS); |
| 448 | |
Felix Fietkau | d465991 | 2010-10-14 16:02:39 +0200 | [diff] [blame] | 449 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_2GHZ) { |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 450 | channels = devm_kzalloc(sc->dev, |
Felix Fietkau | f209f52 | 2010-10-01 01:06:53 +0200 | [diff] [blame] | 451 | sizeof(ath9k_2ghz_chantable), GFP_KERNEL); |
| 452 | if (!channels) |
| 453 | return -ENOMEM; |
| 454 | |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 455 | memcpy(channels, ath9k_2ghz_chantable, |
| 456 | sizeof(ath9k_2ghz_chantable)); |
Felix Fietkau | f209f52 | 2010-10-01 01:06:53 +0200 | [diff] [blame] | 457 | sc->sbands[IEEE80211_BAND_2GHZ].channels = channels; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 458 | sc->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ; |
| 459 | sc->sbands[IEEE80211_BAND_2GHZ].n_channels = |
| 460 | ARRAY_SIZE(ath9k_2ghz_chantable); |
| 461 | sc->sbands[IEEE80211_BAND_2GHZ].bitrates = ath9k_legacy_rates; |
| 462 | sc->sbands[IEEE80211_BAND_2GHZ].n_bitrates = |
| 463 | ARRAY_SIZE(ath9k_legacy_rates); |
| 464 | } |
| 465 | |
Felix Fietkau | d465991 | 2010-10-14 16:02:39 +0200 | [diff] [blame] | 466 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_5GHZ) { |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 467 | channels = devm_kzalloc(sc->dev, |
Felix Fietkau | f209f52 | 2010-10-01 01:06:53 +0200 | [diff] [blame] | 468 | sizeof(ath9k_5ghz_chantable), GFP_KERNEL); |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 469 | if (!channels) |
Felix Fietkau | f209f52 | 2010-10-01 01:06:53 +0200 | [diff] [blame] | 470 | return -ENOMEM; |
Felix Fietkau | f209f52 | 2010-10-01 01:06:53 +0200 | [diff] [blame] | 471 | |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 472 | memcpy(channels, ath9k_5ghz_chantable, |
| 473 | sizeof(ath9k_5ghz_chantable)); |
Felix Fietkau | f209f52 | 2010-10-01 01:06:53 +0200 | [diff] [blame] | 474 | sc->sbands[IEEE80211_BAND_5GHZ].channels = channels; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 475 | sc->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ; |
| 476 | sc->sbands[IEEE80211_BAND_5GHZ].n_channels = |
| 477 | ARRAY_SIZE(ath9k_5ghz_chantable); |
| 478 | sc->sbands[IEEE80211_BAND_5GHZ].bitrates = |
| 479 | ath9k_legacy_rates + 4; |
| 480 | sc->sbands[IEEE80211_BAND_5GHZ].n_bitrates = |
| 481 | ARRAY_SIZE(ath9k_legacy_rates) - 4; |
| 482 | } |
Felix Fietkau | f209f52 | 2010-10-01 01:06:53 +0200 | [diff] [blame] | 483 | return 0; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 484 | } |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 485 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 486 | static void ath9k_init_misc(struct ath_softc *sc) |
| 487 | { |
| 488 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
| 489 | int i = 0; |
Sujith Manoharan | 3d4e20f | 2012-03-14 14:40:58 +0530 | [diff] [blame] | 490 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 491 | setup_timer(&common->ani.timer, ath_ani_calibrate, (unsigned long)sc); |
| 492 | |
Sujith Manoharan | aaa1ec4 | 2012-06-04 16:27:08 +0530 | [diff] [blame] | 493 | sc->last_rssi = ATH_RSSI_DUMMY_MARKER; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 494 | sc->config.txpowlimit = ATH_TXPOWER_MAX; |
Felix Fietkau | 364734f | 2010-09-14 20:22:44 +0200 | [diff] [blame] | 495 | memcpy(common->bssidmask, ath_bcast_mac, ETH_ALEN); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 496 | sc->beacon.slottime = ATH9K_SLOT_TIME_9; |
| 497 | |
Felix Fietkau | 7545daf | 2011-01-24 19:23:16 +0100 | [diff] [blame] | 498 | for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++) |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 499 | sc->beacon.bslot[i] = NULL; |
Vasanthakumar Thiagarajan | 102885a | 2010-09-02 01:34:43 -0700 | [diff] [blame] | 500 | |
| 501 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_ANT_DIV_COMB) |
| 502 | sc->ant_comb.count = ATH_ANT_DIV_COMB_INIT_COUNT; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 503 | } |
| 504 | |
Gabor Juhos | ab5c4f7 | 2012-12-10 15:30:28 +0100 | [diff] [blame] | 505 | static void ath9k_eeprom_request_cb(const struct firmware *eeprom_blob, |
| 506 | void *ctx) |
| 507 | { |
| 508 | struct ath9k_eeprom_ctx *ec = ctx; |
| 509 | |
| 510 | if (eeprom_blob) |
| 511 | ec->ah->eeprom_blob = eeprom_blob; |
| 512 | |
| 513 | complete(&ec->complete); |
| 514 | } |
| 515 | |
| 516 | static int ath9k_eeprom_request(struct ath_softc *sc, const char *name) |
| 517 | { |
| 518 | struct ath9k_eeprom_ctx ec; |
| 519 | struct ath_hw *ah = ah = sc->sc_ah; |
| 520 | int err; |
| 521 | |
| 522 | /* try to load the EEPROM content asynchronously */ |
| 523 | init_completion(&ec.complete); |
| 524 | ec.ah = sc->sc_ah; |
| 525 | |
| 526 | err = request_firmware_nowait(THIS_MODULE, 1, name, sc->dev, GFP_KERNEL, |
| 527 | &ec, ath9k_eeprom_request_cb); |
| 528 | if (err < 0) { |
| 529 | ath_err(ath9k_hw_common(ah), |
| 530 | "EEPROM request failed\n"); |
| 531 | return err; |
| 532 | } |
| 533 | |
| 534 | wait_for_completion(&ec.complete); |
| 535 | |
| 536 | if (!ah->eeprom_blob) { |
| 537 | ath_err(ath9k_hw_common(ah), |
| 538 | "Unable to load EEPROM file %s\n", name); |
| 539 | return -EINVAL; |
| 540 | } |
| 541 | |
| 542 | return 0; |
| 543 | } |
| 544 | |
| 545 | static void ath9k_eeprom_release(struct ath_softc *sc) |
| 546 | { |
| 547 | release_firmware(sc->sc_ah->eeprom_blob); |
| 548 | } |
| 549 | |
Pavel Roskin | eb93e89 | 2011-07-23 03:55:39 -0400 | [diff] [blame] | 550 | static int ath9k_init_softc(u16 devid, struct ath_softc *sc, |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 551 | const struct ath_bus_ops *bus_ops) |
| 552 | { |
Felix Fietkau | 6fb1b1e | 2011-03-19 13:55:39 +0100 | [diff] [blame] | 553 | struct ath9k_platform_data *pdata = sc->dev->platform_data; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 554 | struct ath_hw *ah = NULL; |
| 555 | struct ath_common *common; |
| 556 | int ret = 0, i; |
| 557 | int csz = 0; |
| 558 | |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 559 | ah = devm_kzalloc(sc->dev, sizeof(struct ath_hw), GFP_KERNEL); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 560 | if (!ah) |
| 561 | return -ENOMEM; |
| 562 | |
Felix Fietkau | c1b976d | 2012-12-12 13:14:23 +0100 | [diff] [blame] | 563 | ah->dev = sc->dev; |
Ben Greear | 233536e | 2011-01-09 23:11:44 -0800 | [diff] [blame] | 564 | ah->hw = sc->hw; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 565 | ah->hw_version.devid = devid; |
Felix Fietkau | f9f84e9 | 2011-03-23 20:57:24 +0100 | [diff] [blame] | 566 | ah->reg_ops.read = ath9k_ioread32; |
| 567 | ah->reg_ops.write = ath9k_iowrite32; |
Felix Fietkau | 845e03c | 2011-03-23 20:57:25 +0100 | [diff] [blame] | 568 | ah->reg_ops.rmw = ath9k_reg_rmw; |
Rajkumar Manoharan | e8fe733 | 2011-08-05 18:59:41 +0530 | [diff] [blame] | 569 | atomic_set(&ah->intr_ref_cnt, -1); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 570 | sc->sc_ah = ah; |
| 571 | |
Zefir Kurtisi | 8e92d3f | 2012-04-03 17:15:50 +0200 | [diff] [blame] | 572 | sc->dfs_detector = dfs_pattern_detector_init(NL80211_DFS_UNSET); |
| 573 | |
Felix Fietkau | 6de66dd | 2011-03-19 13:55:40 +0100 | [diff] [blame] | 574 | if (!pdata) { |
Felix Fietkau | a05b5d45 | 2010-11-17 04:25:33 +0100 | [diff] [blame] | 575 | ah->ah_flags |= AH_USE_EEPROM; |
Felix Fietkau | 6de66dd | 2011-03-19 13:55:40 +0100 | [diff] [blame] | 576 | sc->sc_ah->led_pin = -1; |
| 577 | } else { |
| 578 | sc->sc_ah->gpio_mask = pdata->gpio_mask; |
| 579 | sc->sc_ah->gpio_val = pdata->gpio_val; |
| 580 | sc->sc_ah->led_pin = pdata->led_pin; |
Vasanthakumar Thiagarajan | f2f5f2a | 2011-04-19 19:29:01 +0530 | [diff] [blame] | 581 | ah->is_clk_25mhz = pdata->is_clk_25mhz; |
Gabor Juhos | 3762561 | 2011-06-21 11:23:23 +0200 | [diff] [blame] | 582 | ah->get_mac_revision = pdata->get_mac_revision; |
Gabor Juhos | 7d95847c | 2011-06-21 11:23:51 +0200 | [diff] [blame] | 583 | ah->external_reset = pdata->external_reset; |
Felix Fietkau | 6de66dd | 2011-03-19 13:55:40 +0100 | [diff] [blame] | 584 | } |
Felix Fietkau | a05b5d45 | 2010-11-17 04:25:33 +0100 | [diff] [blame] | 585 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 586 | common = ath9k_hw_common(ah); |
Felix Fietkau | f9f84e9 | 2011-03-23 20:57:24 +0100 | [diff] [blame] | 587 | common->ops = &ah->reg_ops; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 588 | common->bus_ops = bus_ops; |
| 589 | common->ah = ah; |
| 590 | common->hw = sc->hw; |
| 591 | common->priv = sc; |
| 592 | common->debug_mask = ath9k_debug; |
Vasanthakumar Thiagarajan | 8f5dcb1 | 2010-11-26 06:10:06 -0800 | [diff] [blame] | 593 | common->btcoex_enabled = ath9k_btcoex_enable == 1; |
Mohammed Shafi Shajakhan | 05c0be2 | 2011-05-26 10:56:15 +0530 | [diff] [blame] | 594 | common->disable_ani = false; |
Sujith Manoharan | e09f2dc | 2012-09-16 08:06:56 +0530 | [diff] [blame] | 595 | |
| 596 | /* |
| 597 | * Enable Antenna diversity only when BTCOEX is disabled |
| 598 | * and the user manually requests the feature. |
| 599 | */ |
| 600 | if (!common->btcoex_enabled && ath9k_enable_diversity) |
| 601 | common->antenna_diversity = 1; |
| 602 | |
Ben Greear | 20b25744 | 2010-10-15 15:04:09 -0700 | [diff] [blame] | 603 | spin_lock_init(&common->cc_lock); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 604 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 605 | spin_lock_init(&sc->sc_serial_rw); |
| 606 | spin_lock_init(&sc->sc_pm_lock); |
| 607 | mutex_init(&sc->mutex); |
Felix Fietkau | 5baec74 | 2012-03-03 15:17:03 +0100 | [diff] [blame] | 608 | #ifdef CONFIG_ATH9K_MAC_DEBUG |
| 609 | spin_lock_init(&sc->debug.samp_lock); |
| 610 | #endif |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 611 | tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc); |
Sujith Manoharan | fb6e252 | 2012-07-17 17:16:22 +0530 | [diff] [blame] | 612 | tasklet_init(&sc->bcon_tasklet, ath9k_beacon_tasklet, |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 613 | (unsigned long)sc); |
| 614 | |
Sujith Manoharan | aaa1ec4 | 2012-06-04 16:27:08 +0530 | [diff] [blame] | 615 | INIT_WORK(&sc->hw_reset_work, ath_reset_work); |
| 616 | INIT_WORK(&sc->hw_check_work, ath_hw_check); |
| 617 | INIT_WORK(&sc->paprd_work, ath_paprd_calibrate); |
| 618 | INIT_DELAYED_WORK(&sc->hw_pll_work, ath_hw_pll_work); |
| 619 | setup_timer(&sc->rx_poll_timer, ath_rx_poll, (unsigned long)sc); |
| 620 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 621 | /* |
| 622 | * Cache line size is used to size and align various |
| 623 | * structures used to communicate with the hardware. |
| 624 | */ |
| 625 | ath_read_cachesize(common, &csz); |
| 626 | common->cachelsz = csz << 2; /* convert to bytes */ |
| 627 | |
Gabor Juhos | 36b07d1 | 2012-12-11 00:06:41 +0100 | [diff] [blame] | 628 | if (pdata && pdata->eeprom_name) { |
Gabor Juhos | ab5c4f7 | 2012-12-10 15:30:28 +0100 | [diff] [blame] | 629 | ret = ath9k_eeprom_request(sc, pdata->eeprom_name); |
| 630 | if (ret) |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 631 | return ret; |
Gabor Juhos | ab5c4f7 | 2012-12-10 15:30:28 +0100 | [diff] [blame] | 632 | } |
| 633 | |
Luis R. Rodriguez | d70357d | 2010-04-15 17:38:06 -0400 | [diff] [blame] | 634 | /* Initializes the hardware for all supported chipsets */ |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 635 | ret = ath9k_hw_init(ah); |
Luis R. Rodriguez | d70357d | 2010-04-15 17:38:06 -0400 | [diff] [blame] | 636 | if (ret) |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 637 | goto err_hw; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 638 | |
Felix Fietkau | 6fb1b1e | 2011-03-19 13:55:39 +0100 | [diff] [blame] | 639 | if (pdata && pdata->macaddr) |
| 640 | memcpy(common->macaddr, pdata->macaddr, ETH_ALEN); |
| 641 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 642 | ret = ath9k_init_queues(sc); |
| 643 | if (ret) |
| 644 | goto err_queues; |
| 645 | |
| 646 | ret = ath9k_init_btcoex(sc); |
| 647 | if (ret) |
| 648 | goto err_btcoex; |
| 649 | |
Felix Fietkau | f209f52 | 2010-10-01 01:06:53 +0200 | [diff] [blame] | 650 | ret = ath9k_init_channels_rates(sc); |
| 651 | if (ret) |
| 652 | goto err_btcoex; |
| 653 | |
Rajkumar Manoharan | f82b4bd | 2011-08-13 10:28:15 +0530 | [diff] [blame] | 654 | ath9k_cmn_init_crypto(sc->sc_ah); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 655 | ath9k_init_misc(sc); |
Rajkumar Manoharan | 8f176a3 | 2012-09-12 18:59:23 +0530 | [diff] [blame] | 656 | ath_fill_led_pin(sc); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 657 | |
Sujith Manoharan | d09f5f4 | 2012-06-04 16:27:14 +0530 | [diff] [blame] | 658 | if (common->bus_ops->aspm_init) |
| 659 | common->bus_ops->aspm_init(common); |
| 660 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 661 | return 0; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 662 | |
| 663 | err_btcoex: |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 664 | for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) |
| 665 | if (ATH_TXQ_SETUP(sc, i)) |
| 666 | ath_tx_cleanupq(sc, &sc->tx.txq[i]); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 667 | err_queues: |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 668 | ath9k_hw_deinit(ah); |
| 669 | err_hw: |
Gabor Juhos | ab5c4f7 | 2012-12-10 15:30:28 +0100 | [diff] [blame] | 670 | ath9k_eeprom_release(sc); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 671 | return ret; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 672 | } |
| 673 | |
Felix Fietkau | babcbc2 | 2010-10-20 02:09:46 +0200 | [diff] [blame] | 674 | static void ath9k_init_band_txpower(struct ath_softc *sc, int band) |
| 675 | { |
| 676 | struct ieee80211_supported_band *sband; |
| 677 | struct ieee80211_channel *chan; |
| 678 | struct ath_hw *ah = sc->sc_ah; |
Felix Fietkau | babcbc2 | 2010-10-20 02:09:46 +0200 | [diff] [blame] | 679 | int i; |
| 680 | |
| 681 | sband = &sc->sbands[band]; |
| 682 | for (i = 0; i < sband->n_channels; i++) { |
| 683 | chan = &sband->channels[i]; |
| 684 | ah->curchan = &ah->channels[chan->hw_value]; |
| 685 | ath9k_cmn_update_ichannel(ah->curchan, chan, NL80211_CHAN_HT20); |
| 686 | ath9k_hw_set_txpowerlimit(ah, MAX_RATE_POWER, true); |
Felix Fietkau | babcbc2 | 2010-10-20 02:09:46 +0200 | [diff] [blame] | 687 | } |
| 688 | } |
| 689 | |
| 690 | static void ath9k_init_txpower_limits(struct ath_softc *sc) |
| 691 | { |
| 692 | struct ath_hw *ah = sc->sc_ah; |
| 693 | struct ath9k_channel *curchan = ah->curchan; |
| 694 | |
| 695 | if (ah->caps.hw_caps & ATH9K_HW_CAP_2GHZ) |
| 696 | ath9k_init_band_txpower(sc, IEEE80211_BAND_2GHZ); |
| 697 | if (ah->caps.hw_caps & ATH9K_HW_CAP_5GHZ) |
| 698 | ath9k_init_band_txpower(sc, IEEE80211_BAND_5GHZ); |
| 699 | |
| 700 | ah->curchan = curchan; |
| 701 | } |
| 702 | |
Felix Fietkau | 43c3528 | 2011-09-03 01:40:27 +0200 | [diff] [blame] | 703 | void ath9k_reload_chainmask_settings(struct ath_softc *sc) |
| 704 | { |
| 705 | if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_HT)) |
| 706 | return; |
| 707 | |
| 708 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_2GHZ) |
| 709 | setup_ht_cap(sc, &sc->sbands[IEEE80211_BAND_2GHZ].ht_cap); |
| 710 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_5GHZ) |
| 711 | setup_ht_cap(sc, &sc->sbands[IEEE80211_BAND_5GHZ].ht_cap); |
| 712 | } |
| 713 | |
Felix Fietkau | 20c8e8d | 2012-04-17 02:40:07 +0200 | [diff] [blame] | 714 | static const struct ieee80211_iface_limit if_limits[] = { |
| 715 | { .max = 2048, .types = BIT(NL80211_IFTYPE_STATION) | |
| 716 | BIT(NL80211_IFTYPE_P2P_CLIENT) | |
| 717 | BIT(NL80211_IFTYPE_WDS) }, |
| 718 | { .max = 8, .types = |
| 719 | #ifdef CONFIG_MAC80211_MESH |
| 720 | BIT(NL80211_IFTYPE_MESH_POINT) | |
| 721 | #endif |
| 722 | BIT(NL80211_IFTYPE_AP) | |
| 723 | BIT(NL80211_IFTYPE_P2P_GO) }, |
| 724 | }; |
| 725 | |
| 726 | static const struct ieee80211_iface_combination if_comb = { |
| 727 | .limits = if_limits, |
| 728 | .n_limits = ARRAY_SIZE(if_limits), |
| 729 | .max_interfaces = 2048, |
| 730 | .num_different_channels = 1, |
Mohammed Shafi Shajakhan | aebc0d4 | 2012-10-08 21:30:54 +0530 | [diff] [blame] | 731 | .beacon_int_infra_match = true, |
Felix Fietkau | 20c8e8d | 2012-04-17 02:40:07 +0200 | [diff] [blame] | 732 | }; |
Felix Fietkau | 43c3528 | 2011-09-03 01:40:27 +0200 | [diff] [blame] | 733 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 734 | void ath9k_set_hw_capab(struct ath_softc *sc, struct ieee80211_hw *hw) |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 735 | { |
Felix Fietkau | 43c3528 | 2011-09-03 01:40:27 +0200 | [diff] [blame] | 736 | struct ath_hw *ah = sc->sc_ah; |
| 737 | struct ath_common *common = ath9k_hw_common(ah); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 738 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 739 | hw->flags = IEEE80211_HW_RX_INCLUDES_FCS | |
| 740 | IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING | |
| 741 | IEEE80211_HW_SIGNAL_DBM | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 742 | IEEE80211_HW_SUPPORTS_PS | |
| 743 | IEEE80211_HW_PS_NULLFUNC_STACK | |
Vivek Natarajan | 05df498 | 2010-02-09 11:34:50 +0530 | [diff] [blame] | 744 | IEEE80211_HW_SPECTRUM_MGMT | |
Mohammed Shafi Shajakhan | bd8027a | 2010-12-30 12:18:01 +0530 | [diff] [blame] | 745 | IEEE80211_HW_REPORTS_TX_ACK_STATUS; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 746 | |
Luis R. Rodriguez | 5ffaf8a | 2010-02-02 11:58:33 -0500 | [diff] [blame] | 747 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_HT) |
| 748 | hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION; |
| 749 | |
John W. Linville | 3e6109c | 2011-01-05 09:39:17 -0500 | [diff] [blame] | 750 | if (AR_SREV_9160_10_OR_LATER(sc->sc_ah) || ath9k_modparam_nohwcrypt) |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 751 | hw->flags |= IEEE80211_HW_MFP_CAPABLE; |
| 752 | |
| 753 | hw->wiphy->interface_modes = |
Johannes Berg | c426ee2 | 2010-11-26 11:38:04 +0100 | [diff] [blame] | 754 | BIT(NL80211_IFTYPE_P2P_GO) | |
| 755 | BIT(NL80211_IFTYPE_P2P_CLIENT) | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 756 | BIT(NL80211_IFTYPE_AP) | |
Bill Jordan | e51f3ef | 2010-10-01 11:20:39 -0400 | [diff] [blame] | 757 | BIT(NL80211_IFTYPE_WDS) | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 758 | BIT(NL80211_IFTYPE_STATION) | |
| 759 | BIT(NL80211_IFTYPE_ADHOC) | |
| 760 | BIT(NL80211_IFTYPE_MESH_POINT); |
| 761 | |
Felix Fietkau | 20c8e8d | 2012-04-17 02:40:07 +0200 | [diff] [blame] | 762 | hw->wiphy->iface_combinations = &if_comb; |
| 763 | hw->wiphy->n_iface_combinations = 1; |
| 764 | |
Luis R. Rodriguez | 008443d | 2010-09-16 15:12:36 -0400 | [diff] [blame] | 765 | if (AR_SREV_5416(sc->sc_ah)) |
| 766 | hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 767 | |
Jouni Malinen | cfdc9a8 | 2011-03-23 14:52:19 +0200 | [diff] [blame] | 768 | hw->wiphy->flags |= WIPHY_FLAG_IBSS_RSN; |
Jouni Malinen | fd65623 | 2011-10-27 17:31:50 +0300 | [diff] [blame] | 769 | hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS; |
Johannes Berg | 81ddbb5 | 2012-03-26 18:47:18 +0200 | [diff] [blame] | 770 | hw->wiphy->flags |= WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL; |
Jouni Malinen | cfdc9a8 | 2011-03-23 14:52:19 +0200 | [diff] [blame] | 771 | |
Mohammed Shafi Shajakhan | 9f11e16 | 2012-07-10 14:55:35 +0530 | [diff] [blame] | 772 | #ifdef CONFIG_PM_SLEEP |
| 773 | |
| 774 | if ((ah->caps.hw_caps & ATH9K_HW_WOW_DEVICE_CAPABLE) && |
| 775 | device_can_wakeup(sc->dev)) { |
| 776 | |
| 777 | hw->wiphy->wowlan.flags = WIPHY_WOWLAN_MAGIC_PKT | |
| 778 | WIPHY_WOWLAN_DISCONNECT; |
| 779 | hw->wiphy->wowlan.n_patterns = MAX_NUM_USER_PATTERN; |
| 780 | hw->wiphy->wowlan.pattern_min_len = 1; |
| 781 | hw->wiphy->wowlan.pattern_max_len = MAX_PATTERN_SIZE; |
| 782 | |
| 783 | } |
| 784 | |
| 785 | atomic_set(&sc->wow_sleep_proc_intr, -1); |
| 786 | atomic_set(&sc->wow_got_bmiss_intr, -1); |
| 787 | |
| 788 | #endif |
| 789 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 790 | hw->queues = 4; |
| 791 | hw->max_rates = 4; |
| 792 | hw->channel_change_time = 5000; |
Rajkumar Manoharan | 195ca3b | 2012-03-15 23:05:28 +0530 | [diff] [blame] | 793 | hw->max_listen_interval = 1; |
Felix Fietkau | 6589651 | 2010-01-24 03:26:11 +0100 | [diff] [blame] | 794 | hw->max_rate_tries = 10; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 795 | hw->sta_data_size = sizeof(struct ath_node); |
| 796 | hw->vif_data_size = sizeof(struct ath_vif); |
| 797 | |
Felix Fietkau | 43c3528 | 2011-09-03 01:40:27 +0200 | [diff] [blame] | 798 | hw->wiphy->available_antennas_rx = BIT(ah->caps.max_rxchains) - 1; |
| 799 | hw->wiphy->available_antennas_tx = BIT(ah->caps.max_txchains) - 1; |
| 800 | |
| 801 | /* single chain devices with rx diversity */ |
| 802 | if (ah->caps.hw_caps & ATH9K_HW_CAP_ANT_DIV_COMB) |
| 803 | hw->wiphy->available_antennas_rx = BIT(0) | BIT(1); |
| 804 | |
| 805 | sc->ant_rx = hw->wiphy->available_antennas_rx; |
| 806 | sc->ant_tx = hw->wiphy->available_antennas_tx; |
| 807 | |
Felix Fietkau | 6e5c2b4 | 2010-09-20 13:45:40 +0200 | [diff] [blame] | 808 | #ifdef CONFIG_ATH9K_RATE_CONTROL |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 809 | hw->rate_control_algorithm = "ath9k_rate_control"; |
Felix Fietkau | 6e5c2b4 | 2010-09-20 13:45:40 +0200 | [diff] [blame] | 810 | #endif |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 811 | |
Felix Fietkau | d465991 | 2010-10-14 16:02:39 +0200 | [diff] [blame] | 812 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_2GHZ) |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 813 | hw->wiphy->bands[IEEE80211_BAND_2GHZ] = |
| 814 | &sc->sbands[IEEE80211_BAND_2GHZ]; |
Felix Fietkau | d465991 | 2010-10-14 16:02:39 +0200 | [diff] [blame] | 815 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_5GHZ) |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 816 | hw->wiphy->bands[IEEE80211_BAND_5GHZ] = |
| 817 | &sc->sbands[IEEE80211_BAND_5GHZ]; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 818 | |
Felix Fietkau | 43c3528 | 2011-09-03 01:40:27 +0200 | [diff] [blame] | 819 | ath9k_reload_chainmask_settings(sc); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 820 | |
| 821 | SET_IEEE80211_PERM_ADDR(hw, common->macaddr); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 822 | } |
| 823 | |
Pavel Roskin | eb93e89 | 2011-07-23 03:55:39 -0400 | [diff] [blame] | 824 | int ath9k_init_device(u16 devid, struct ath_softc *sc, |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 825 | const struct ath_bus_ops *bus_ops) |
| 826 | { |
| 827 | struct ieee80211_hw *hw = sc->hw; |
| 828 | struct ath_common *common; |
| 829 | struct ath_hw *ah; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 830 | int error = 0; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 831 | struct ath_regulatory *reg; |
| 832 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 833 | /* Bring up device */ |
Pavel Roskin | eb93e89 | 2011-07-23 03:55:39 -0400 | [diff] [blame] | 834 | error = ath9k_init_softc(devid, sc, bus_ops); |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 835 | if (error) |
| 836 | return error; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 837 | |
| 838 | ah = sc->sc_ah; |
| 839 | common = ath9k_hw_common(ah); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 840 | ath9k_set_hw_capab(sc, hw); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 841 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 842 | /* Initialize regulatory */ |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 843 | error = ath_regd_init(&common->regulatory, sc->hw->wiphy, |
| 844 | ath9k_reg_notifier); |
| 845 | if (error) |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 846 | goto deinit; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 847 | |
| 848 | reg = &common->regulatory; |
| 849 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 850 | /* Setup TX DMA */ |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 851 | error = ath_tx_init(sc, ATH_TXBUF); |
| 852 | if (error != 0) |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 853 | goto deinit; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 854 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 855 | /* Setup RX DMA */ |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 856 | error = ath_rx_init(sc, ATH_RXBUF); |
| 857 | if (error != 0) |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 858 | goto deinit; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 859 | |
Felix Fietkau | babcbc2 | 2010-10-20 02:09:46 +0200 | [diff] [blame] | 860 | ath9k_init_txpower_limits(sc); |
| 861 | |
Felix Fietkau | 0cf55c2 | 2011-02-27 22:26:40 +0100 | [diff] [blame] | 862 | #ifdef CONFIG_MAC80211_LEDS |
| 863 | /* must be initialized before ieee80211_register_hw */ |
| 864 | sc->led_cdev.default_trigger = ieee80211_create_tpt_led_trigger(sc->hw, |
| 865 | IEEE80211_TPT_LEDTRIG_FL_RADIO, ath9k_tpt_blink, |
| 866 | ARRAY_SIZE(ath9k_tpt_blink)); |
| 867 | #endif |
| 868 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 869 | /* Register with mac80211 */ |
| 870 | error = ieee80211_register_hw(hw); |
| 871 | if (error) |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 872 | goto rx_cleanup; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 873 | |
Ben Greear | eb27244 | 2010-11-29 14:13:22 -0800 | [diff] [blame] | 874 | error = ath9k_init_debug(ah); |
| 875 | if (error) { |
Joe Perches | 3800276 | 2010-12-02 19:12:36 -0800 | [diff] [blame] | 876 | ath_err(common, "Unable to create debugfs files\n"); |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 877 | goto unregister; |
Ben Greear | eb27244 | 2010-11-29 14:13:22 -0800 | [diff] [blame] | 878 | } |
| 879 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 880 | /* Handle world regulatory */ |
| 881 | if (!ath_is_world_regd(reg)) { |
| 882 | error = regulatory_hint(hw->wiphy, reg->alpha2); |
| 883 | if (error) |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 884 | goto unregister; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 885 | } |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 886 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 887 | ath_init_leds(sc); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 888 | ath_start_rfkill_poll(sc); |
| 889 | |
| 890 | return 0; |
| 891 | |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 892 | unregister: |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 893 | ieee80211_unregister_hw(hw); |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 894 | rx_cleanup: |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 895 | ath_rx_cleanup(sc); |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 896 | deinit: |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 897 | ath9k_deinit_softc(sc); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 898 | return error; |
| 899 | } |
| 900 | |
| 901 | /*****************************/ |
| 902 | /* De-Initialization */ |
| 903 | /*****************************/ |
| 904 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 905 | static void ath9k_deinit_softc(struct ath_softc *sc) |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 906 | { |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 907 | int i = 0; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 908 | |
Sujith Manoharan | 5908120 | 2012-02-22 12:40:21 +0530 | [diff] [blame] | 909 | ath9k_deinit_btcoex(sc); |
Mohammed Shafi Shajakhan | 19686dd | 2011-11-30 10:41:28 +0530 | [diff] [blame] | 910 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 911 | for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) |
| 912 | if (ATH_TXQ_SETUP(sc, i)) |
| 913 | ath_tx_cleanupq(sc, &sc->tx.txq[i]); |
| 914 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 915 | ath9k_hw_deinit(sc->sc_ah); |
Zefir Kurtisi | 8e92d3f | 2012-04-03 17:15:50 +0200 | [diff] [blame] | 916 | if (sc->dfs_detector != NULL) |
| 917 | sc->dfs_detector->exit(sc->dfs_detector); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 918 | |
Gabor Juhos | ab5c4f7 | 2012-12-10 15:30:28 +0100 | [diff] [blame] | 919 | ath9k_eeprom_release(sc); |
Simon Wunderlich | e93d083 | 2013-01-08 14:48:58 +0100 | [diff] [blame^] | 920 | |
| 921 | if (sc->rfs_chan_spec_scan) { |
| 922 | relay_close(sc->rfs_chan_spec_scan); |
| 923 | sc->rfs_chan_spec_scan = NULL; |
| 924 | } |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 925 | } |
| 926 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 927 | void ath9k_deinit_device(struct ath_softc *sc) |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 928 | { |
| 929 | struct ieee80211_hw *hw = sc->hw; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 930 | |
| 931 | ath9k_ps_wakeup(sc); |
| 932 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 933 | wiphy_rfkill_stop_polling(sc->hw->wiphy); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 934 | ath_deinit_leds(sc); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 935 | |
Rajkumar Manoharan | c7c1806 | 2011-01-27 18:39:38 +0530 | [diff] [blame] | 936 | ath9k_ps_restore(sc); |
| 937 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 938 | ieee80211_unregister_hw(hw); |
| 939 | ath_rx_cleanup(sc); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 940 | ath9k_deinit_softc(sc); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 941 | } |
| 942 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 943 | /************************/ |
| 944 | /* Module Hooks */ |
| 945 | /************************/ |
| 946 | |
| 947 | static int __init ath9k_init(void) |
| 948 | { |
| 949 | int error; |
| 950 | |
| 951 | /* Register rate control algorithm */ |
| 952 | error = ath_rate_control_register(); |
| 953 | if (error != 0) { |
Joe Perches | 516304b | 2012-03-18 17:30:52 -0700 | [diff] [blame] | 954 | pr_err("Unable to register rate control algorithm: %d\n", |
| 955 | error); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 956 | goto err_out; |
| 957 | } |
| 958 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 959 | error = ath_pci_init(); |
| 960 | if (error < 0) { |
Joe Perches | 516304b | 2012-03-18 17:30:52 -0700 | [diff] [blame] | 961 | pr_err("No PCI devices found, driver not installed\n"); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 962 | error = -ENODEV; |
Ben Greear | eb27244 | 2010-11-29 14:13:22 -0800 | [diff] [blame] | 963 | goto err_rate_unregister; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 964 | } |
| 965 | |
| 966 | error = ath_ahb_init(); |
| 967 | if (error < 0) { |
| 968 | error = -ENODEV; |
| 969 | goto err_pci_exit; |
| 970 | } |
| 971 | |
| 972 | return 0; |
| 973 | |
| 974 | err_pci_exit: |
| 975 | ath_pci_exit(); |
| 976 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 977 | err_rate_unregister: |
| 978 | ath_rate_control_unregister(); |
| 979 | err_out: |
| 980 | return error; |
| 981 | } |
| 982 | module_init(ath9k_init); |
| 983 | |
| 984 | static void __exit ath9k_exit(void) |
| 985 | { |
Rajkumar Manoharan | d584747 | 2010-12-20 14:39:51 +0530 | [diff] [blame] | 986 | is_ath9k_unloaded = true; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 987 | ath_ahb_exit(); |
| 988 | ath_pci_exit(); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 989 | ath_rate_control_unregister(); |
Joe Perches | 516304b | 2012-03-18 17:30:52 -0700 | [diff] [blame] | 990 | pr_info("%s: Driver unloaded\n", dev_info); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 991 | } |
| 992 | module_exit(ath9k_exit); |