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> |
Martin Blumenstingl | 138b412 | 2016-10-16 22:59:07 +0200 | [diff] [blame] | 23 | #include <linux/of.h> |
| 24 | #include <linux/of_net.h> |
Simon Wunderlich | e93d083 | 2013-01-08 14:48:58 +0100 | [diff] [blame] | 25 | #include <linux/relay.h> |
AceLan Kao | 3153b68 | 2018-01-16 11:43:50 +0200 | [diff] [blame] | 26 | #include <linux/dmi.h> |
Oleksij Rempel | b0a1ae9 | 2013-05-24 20:30:59 +0200 | [diff] [blame] | 27 | #include <net/ieee80211_radiotap.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 28 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 29 | #include "ath9k.h" |
| 30 | |
Gabor Juhos | ab5c4f7 | 2012-12-10 15:30:28 +0100 | [diff] [blame] | 31 | struct ath9k_eeprom_ctx { |
| 32 | struct completion complete; |
| 33 | struct ath_hw *ah; |
| 34 | }; |
| 35 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 36 | static char *dev_info = "ath9k"; |
| 37 | |
| 38 | MODULE_AUTHOR("Atheros Communications"); |
| 39 | MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards."); |
| 40 | MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards"); |
| 41 | MODULE_LICENSE("Dual BSD/GPL"); |
| 42 | |
| 43 | static unsigned int ath9k_debug = ATH_DBG_DEFAULT; |
| 44 | module_param_named(debug, ath9k_debug, uint, 0); |
| 45 | MODULE_PARM_DESC(debug, "Debugging mask"); |
| 46 | |
John W. Linville | 3e6109c | 2011-01-05 09:39:17 -0500 | [diff] [blame] | 47 | int ath9k_modparam_nohwcrypt; |
| 48 | module_param_named(nohwcrypt, ath9k_modparam_nohwcrypt, int, 0444); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 49 | MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption"); |
| 50 | |
Hong Xu | 0c8a1e4 | 2015-01-24 03:34:03 -0800 | [diff] [blame] | 51 | int ath9k_led_blink; |
| 52 | module_param_named(blink, ath9k_led_blink, int, 0444); |
Vivek Natarajan | 9a75c2f | 2010-06-22 11:52:37 +0530 | [diff] [blame] | 53 | MODULE_PARM_DESC(blink, "Enable LED blink on activity"); |
| 54 | |
Vittorio Gambaletta (VittGam) | cd84042 | 2016-04-11 04:48:54 +0200 | [diff] [blame] | 55 | static int ath9k_led_active_high = -1; |
| 56 | module_param_named(led_active_high, ath9k_led_active_high, int, 0444); |
| 57 | MODULE_PARM_DESC(led_active_high, "Invert LED polarity"); |
| 58 | |
Vasanthakumar Thiagarajan | 8f5dcb1 | 2010-11-26 06:10:06 -0800 | [diff] [blame] | 59 | static int ath9k_btcoex_enable; |
| 60 | module_param_named(btcoex_enable, ath9k_btcoex_enable, int, 0444); |
| 61 | MODULE_PARM_DESC(btcoex_enable, "Enable wifi-BT coexistence"); |
| 62 | |
Sujith Manoharan | 6308130 | 2013-08-04 14:21:55 +0530 | [diff] [blame] | 63 | static int ath9k_bt_ant_diversity; |
| 64 | module_param_named(bt_ant_diversity, ath9k_bt_ant_diversity, int, 0444); |
| 65 | MODULE_PARM_DESC(bt_ant_diversity, "Enable WLAN/BT RX antenna diversity"); |
Sujith Manoharan | e09f2dc | 2012-09-16 08:06:56 +0530 | [diff] [blame] | 66 | |
Sujith Manoharan | 8298383 | 2014-02-04 08:37:53 +0530 | [diff] [blame] | 67 | static int ath9k_ps_enable; |
| 68 | module_param_named(ps_enable, ath9k_ps_enable, int, 0444); |
| 69 | MODULE_PARM_DESC(ps_enable, "Enable WLAN PowerSave"); |
| 70 | |
Sujith Manoharan | 499afac | 2014-08-22 20:39:31 +0530 | [diff] [blame] | 71 | #ifdef CONFIG_ATH9K_CHANNEL_CONTEXT |
| 72 | |
Felix Fietkau | 78b2194 | 2014-06-11 16:17:55 +0530 | [diff] [blame] | 73 | int ath9k_use_chanctx; |
Rajkumar Manoharan | 71a5f88 | 2014-05-29 15:11:09 +0530 | [diff] [blame] | 74 | module_param_named(use_chanctx, ath9k_use_chanctx, int, 0444); |
| 75 | MODULE_PARM_DESC(use_chanctx, "Enable channel context for concurrency"); |
| 76 | |
Sujith Manoharan | 499afac | 2014-08-22 20:39:31 +0530 | [diff] [blame] | 77 | #endif /* CONFIG_ATH9K_CHANNEL_CONTEXT */ |
| 78 | |
Russell Hu | 7368160 | 2018-01-16 11:43:47 +0200 | [diff] [blame] | 79 | int ath9k_use_msi; |
| 80 | module_param_named(use_msi, ath9k_use_msi, int, 0444); |
| 81 | MODULE_PARM_DESC(use_msi, "Use MSI instead of INTx if possible"); |
| 82 | |
Rajkumar Manoharan | d584747 | 2010-12-20 14:39:51 +0530 | [diff] [blame] | 83 | bool is_ath9k_unloaded; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 84 | |
Felix Fietkau | 0cf55c2 | 2011-02-27 22:26:40 +0100 | [diff] [blame] | 85 | #ifdef CONFIG_MAC80211_LEDS |
| 86 | static const struct ieee80211_tpt_blink ath9k_tpt_blink[] = { |
| 87 | { .throughput = 0 * 1024, .blink_time = 334 }, |
| 88 | { .throughput = 1 * 1024, .blink_time = 260 }, |
| 89 | { .throughput = 5 * 1024, .blink_time = 220 }, |
| 90 | { .throughput = 10 * 1024, .blink_time = 190 }, |
| 91 | { .throughput = 20 * 1024, .blink_time = 170 }, |
| 92 | { .throughput = 50 * 1024, .blink_time = 150 }, |
| 93 | { .throughput = 70 * 1024, .blink_time = 130 }, |
| 94 | { .throughput = 100 * 1024, .blink_time = 110 }, |
| 95 | { .throughput = 200 * 1024, .blink_time = 80 }, |
| 96 | { .throughput = 300 * 1024, .blink_time = 50 }, |
| 97 | }; |
| 98 | #endif |
| 99 | |
AceLan Kao | 3153b68 | 2018-01-16 11:43:50 +0200 | [diff] [blame] | 100 | static int __init set_use_msi(const struct dmi_system_id *dmi) |
| 101 | { |
| 102 | ath9k_use_msi = 1; |
| 103 | return 1; |
| 104 | } |
| 105 | |
| 106 | static const struct dmi_system_id ath9k_quirks[] __initconst = { |
| 107 | { |
| 108 | .callback = set_use_msi, |
| 109 | .ident = "Dell Inspiron 24-3460", |
| 110 | .matches = { |
| 111 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 112 | DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 24-3460"), |
| 113 | }, |
| 114 | }, |
| 115 | { |
| 116 | .callback = set_use_msi, |
| 117 | .ident = "Dell Vostro 3262", |
| 118 | .matches = { |
| 119 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 120 | DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3262"), |
| 121 | }, |
| 122 | }, |
| 123 | { |
| 124 | .callback = set_use_msi, |
| 125 | .ident = "Dell Inspiron 3472", |
| 126 | .matches = { |
| 127 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 128 | DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 3472"), |
| 129 | }, |
| 130 | }, |
| 131 | { |
| 132 | .callback = set_use_msi, |
| 133 | .ident = "Dell Vostro 15-3572", |
| 134 | .matches = { |
| 135 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 136 | DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 15-3572"), |
| 137 | }, |
| 138 | }, |
| 139 | { |
| 140 | .callback = set_use_msi, |
| 141 | .ident = "Dell Inspiron 14-3473", |
| 142 | .matches = { |
| 143 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 144 | DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 14-3473"), |
| 145 | }, |
| 146 | }, |
| 147 | {} |
| 148 | }; |
| 149 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 150 | static void ath9k_deinit_softc(struct ath_softc *sc); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 151 | |
kbuild test robot | d81f9a0 | 2014-11-12 06:19:48 +0800 | [diff] [blame] | 152 | static void ath9k_op_ps_wakeup(struct ath_common *common) |
Oleksij Rempel | 99d2217 | 2014-11-06 08:53:25 +0100 | [diff] [blame] | 153 | { |
| 154 | ath9k_ps_wakeup((struct ath_softc *) common->priv); |
| 155 | } |
| 156 | |
kbuild test robot | d81f9a0 | 2014-11-12 06:19:48 +0800 | [diff] [blame] | 157 | static void ath9k_op_ps_restore(struct ath_common *common) |
Oleksij Rempel | 99d2217 | 2014-11-06 08:53:25 +0100 | [diff] [blame] | 158 | { |
| 159 | ath9k_ps_restore((struct ath_softc *) common->priv); |
| 160 | } |
| 161 | |
Bhumika Goyal | 3588e11 | 2017-08-03 20:25:31 +0530 | [diff] [blame] | 162 | static const struct ath_ps_ops ath9k_ps_ops = { |
Oleksij Rempel | 99d2217 | 2014-11-06 08:53:25 +0100 | [diff] [blame] | 163 | .wakeup = ath9k_op_ps_wakeup, |
| 164 | .restore = ath9k_op_ps_restore, |
| 165 | }; |
| 166 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 167 | /* |
| 168 | * Read and write, they both share the same lock. We do this to serialize |
| 169 | * reads and writes on Atheros 802.11n PCI devices only. This is required |
| 170 | * as the FIFO on these devices can only accept sanely 2 requests. |
| 171 | */ |
| 172 | |
| 173 | static void ath9k_iowrite32(void *hw_priv, u32 val, u32 reg_offset) |
| 174 | { |
Himanshu Jha | 50c8cd4 | 2017-09-01 12:13:34 +0530 | [diff] [blame] | 175 | struct ath_hw *ah = hw_priv; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 176 | struct ath_common *common = ath9k_hw_common(ah); |
| 177 | struct ath_softc *sc = (struct ath_softc *) common->priv; |
| 178 | |
Felix Fietkau | f3eef64 | 2012-03-14 16:40:25 +0100 | [diff] [blame] | 179 | if (NR_CPUS > 1 && ah->config.serialize_regmode == SER_REG_MODE_ON) { |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 180 | unsigned long flags; |
| 181 | spin_lock_irqsave(&sc->sc_serial_rw, flags); |
| 182 | iowrite32(val, sc->mem + reg_offset); |
| 183 | spin_unlock_irqrestore(&sc->sc_serial_rw, flags); |
| 184 | } else |
| 185 | iowrite32(val, sc->mem + reg_offset); |
| 186 | } |
| 187 | |
| 188 | static unsigned int ath9k_ioread32(void *hw_priv, u32 reg_offset) |
| 189 | { |
Himanshu Jha | 50c8cd4 | 2017-09-01 12:13:34 +0530 | [diff] [blame] | 190 | struct ath_hw *ah = hw_priv; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 191 | struct ath_common *common = ath9k_hw_common(ah); |
| 192 | struct ath_softc *sc = (struct ath_softc *) common->priv; |
| 193 | u32 val; |
| 194 | |
Felix Fietkau | f3eef64 | 2012-03-14 16:40:25 +0100 | [diff] [blame] | 195 | if (NR_CPUS > 1 && ah->config.serialize_regmode == SER_REG_MODE_ON) { |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 196 | unsigned long flags; |
| 197 | spin_lock_irqsave(&sc->sc_serial_rw, flags); |
| 198 | val = ioread32(sc->mem + reg_offset); |
| 199 | spin_unlock_irqrestore(&sc->sc_serial_rw, flags); |
| 200 | } else |
| 201 | val = ioread32(sc->mem + reg_offset); |
| 202 | return val; |
| 203 | } |
| 204 | |
Oleksij Rempel | d55ce0a | 2015-03-22 19:29:50 +0100 | [diff] [blame] | 205 | static void ath9k_multi_ioread32(void *hw_priv, u32 *addr, |
| 206 | u32 *val, u16 count) |
| 207 | { |
| 208 | int i; |
| 209 | |
| 210 | for (i = 0; i < count; i++) |
| 211 | val[i] = ath9k_ioread32(hw_priv, addr[i]); |
| 212 | } |
| 213 | |
| 214 | |
Rajkumar Manoharan | 5479de6 | 2011-07-17 11:43:02 +0530 | [diff] [blame] | 215 | static unsigned int __ath9k_reg_rmw(struct ath_softc *sc, u32 reg_offset, |
| 216 | u32 set, u32 clr) |
| 217 | { |
| 218 | u32 val; |
| 219 | |
| 220 | val = ioread32(sc->mem + reg_offset); |
| 221 | val &= ~clr; |
| 222 | val |= set; |
| 223 | iowrite32(val, sc->mem + reg_offset); |
| 224 | |
| 225 | return val; |
| 226 | } |
| 227 | |
Felix Fietkau | 845e03c | 2011-03-23 20:57:25 +0100 | [diff] [blame] | 228 | static unsigned int ath9k_reg_rmw(void *hw_priv, u32 reg_offset, u32 set, u32 clr) |
| 229 | { |
Himanshu Jha | 50c8cd4 | 2017-09-01 12:13:34 +0530 | [diff] [blame] | 230 | struct ath_hw *ah = hw_priv; |
Felix Fietkau | 845e03c | 2011-03-23 20:57:25 +0100 | [diff] [blame] | 231 | struct ath_common *common = ath9k_hw_common(ah); |
| 232 | struct ath_softc *sc = (struct ath_softc *) common->priv; |
| 233 | unsigned long uninitialized_var(flags); |
| 234 | u32 val; |
| 235 | |
Felix Fietkau | f3eef64 | 2012-03-14 16:40:25 +0100 | [diff] [blame] | 236 | if (NR_CPUS > 1 && ah->config.serialize_regmode == SER_REG_MODE_ON) { |
Felix Fietkau | 845e03c | 2011-03-23 20:57:25 +0100 | [diff] [blame] | 237 | spin_lock_irqsave(&sc->sc_serial_rw, flags); |
Rajkumar Manoharan | 5479de6 | 2011-07-17 11:43:02 +0530 | [diff] [blame] | 238 | val = __ath9k_reg_rmw(sc, reg_offset, set, clr); |
Felix Fietkau | 845e03c | 2011-03-23 20:57:25 +0100 | [diff] [blame] | 239 | spin_unlock_irqrestore(&sc->sc_serial_rw, flags); |
Rajkumar Manoharan | 5479de6 | 2011-07-17 11:43:02 +0530 | [diff] [blame] | 240 | } else |
| 241 | val = __ath9k_reg_rmw(sc, reg_offset, set, clr); |
Felix Fietkau | 845e03c | 2011-03-23 20:57:25 +0100 | [diff] [blame] | 242 | |
| 243 | return val; |
| 244 | } |
| 245 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 246 | /**************************/ |
| 247 | /* Initialization */ |
| 248 | /**************************/ |
| 249 | |
Luis R. Rodriguez | 0c0280b | 2013-01-11 18:39:36 +0000 | [diff] [blame] | 250 | static void ath9k_reg_notifier(struct wiphy *wiphy, |
| 251 | struct regulatory_request *request) |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 252 | { |
| 253 | struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy); |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 254 | struct ath_softc *sc = hw->priv; |
Rajkumar Manoharan | 687f545 | 2011-12-08 23:59:25 +0530 | [diff] [blame] | 255 | struct ath_hw *ah = sc->sc_ah; |
| 256 | struct ath_regulatory *reg = ath9k_hw_regulatory(ah); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 257 | |
Luis R. Rodriguez | 0c0280b | 2013-01-11 18:39:36 +0000 | [diff] [blame] | 258 | ath_reg_notifier_apply(wiphy, request, reg); |
Rajkumar Manoharan | 687f545 | 2011-12-08 23:59:25 +0530 | [diff] [blame] | 259 | |
Timothy Redaelli | 4415d58 | 2018-03-27 11:25:25 +0300 | [diff] [blame] | 260 | /* synchronize DFS detector if regulatory domain changed */ |
| 261 | if (sc->dfs_detector != NULL) |
| 262 | sc->dfs_detector->set_dfs_domain(sc->dfs_detector, |
| 263 | request->dfs_region); |
| 264 | |
Rajkumar Manoharan | 687f545 | 2011-12-08 23:59:25 +0530 | [diff] [blame] | 265 | /* Set tx power */ |
Felix Fietkau | d385c5c | 2014-11-04 16:56:57 +0100 | [diff] [blame] | 266 | if (!ah->curchan) |
| 267 | return; |
| 268 | |
| 269 | sc->cur_chan->txpower = 2 * ah->curchan->chan->max_power; |
| 270 | ath9k_ps_wakeup(sc); |
| 271 | ath9k_hw_set_txpowerlimit(ah, sc->cur_chan->txpower, false); |
| 272 | ath9k_cmn_update_txpow(ah, sc->cur_chan->cur_txpower, |
| 273 | sc->cur_chan->txpower, |
| 274 | &sc->cur_chan->cur_txpower); |
Felix Fietkau | d385c5c | 2014-11-04 16:56:57 +0100 | [diff] [blame] | 275 | ath9k_ps_restore(sc); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 276 | } |
| 277 | |
| 278 | /* |
| 279 | * This function will allocate both the DMA descriptor structure, and the |
| 280 | * buffers it contains. These are used to contain the descriptors used |
| 281 | * by the system. |
| 282 | */ |
| 283 | int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd, |
| 284 | struct list_head *head, const char *name, |
Vasanthakumar Thiagarajan | 4adfcde | 2010-04-15 17:39:33 -0400 | [diff] [blame] | 285 | int nbuf, int ndesc, bool is_tx) |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 286 | { |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 287 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Vasanthakumar Thiagarajan | 4adfcde | 2010-04-15 17:39:33 -0400 | [diff] [blame] | 288 | u8 *ds; |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 289 | int i, bsize, desc_len; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 290 | |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 291 | ath_dbg(common, CONFIG, "%s DMA: %u buffers %u desc/buf\n", |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 292 | name, nbuf, ndesc); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 293 | |
| 294 | INIT_LIST_HEAD(head); |
Vasanthakumar Thiagarajan | 4adfcde | 2010-04-15 17:39:33 -0400 | [diff] [blame] | 295 | |
| 296 | if (is_tx) |
| 297 | desc_len = sc->sc_ah->caps.tx_desc_len; |
| 298 | else |
| 299 | desc_len = sizeof(struct ath_desc); |
| 300 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 301 | /* ath_desc must be a multiple of DWORDs */ |
Vasanthakumar Thiagarajan | 4adfcde | 2010-04-15 17:39:33 -0400 | [diff] [blame] | 302 | if ((desc_len % 4) != 0) { |
Joe Perches | 3800276 | 2010-12-02 19:12:36 -0800 | [diff] [blame] | 303 | ath_err(common, "ath_desc not DWORD aligned\n"); |
Vasanthakumar Thiagarajan | 4adfcde | 2010-04-15 17:39:33 -0400 | [diff] [blame] | 304 | BUG_ON((desc_len % 4) != 0); |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 305 | return -ENOMEM; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 306 | } |
| 307 | |
Vasanthakumar Thiagarajan | 4adfcde | 2010-04-15 17:39:33 -0400 | [diff] [blame] | 308 | dd->dd_desc_len = desc_len * nbuf * ndesc; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 309 | |
| 310 | /* |
| 311 | * Need additional DMA memory because we can't use |
| 312 | * descriptors that cross the 4K page boundary. Assume |
| 313 | * one skipped descriptor per 4K page. |
| 314 | */ |
| 315 | if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) { |
| 316 | u32 ndesc_skipped = |
| 317 | ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len); |
| 318 | u32 dma_len; |
| 319 | |
| 320 | while (ndesc_skipped) { |
Vasanthakumar Thiagarajan | 4adfcde | 2010-04-15 17:39:33 -0400 | [diff] [blame] | 321 | dma_len = ndesc_skipped * desc_len; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 322 | dd->dd_desc_len += dma_len; |
| 323 | |
| 324 | ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len); |
Joe Perches | ee289b6 | 2010-05-17 22:47:34 -0700 | [diff] [blame] | 325 | } |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | /* allocate descriptors */ |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 329 | dd->dd_desc = dmam_alloc_coherent(sc->dev, dd->dd_desc_len, |
| 330 | &dd->dd_desc_paddr, GFP_KERNEL); |
| 331 | if (!dd->dd_desc) |
| 332 | return -ENOMEM; |
| 333 | |
Himanshu Jha | 50c8cd4 | 2017-09-01 12:13:34 +0530 | [diff] [blame] | 334 | ds = dd->dd_desc; |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 335 | ath_dbg(common, CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n", |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 336 | name, ds, (u32) dd->dd_desc_len, |
| 337 | ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 338 | |
| 339 | /* allocate buffers */ |
Felix Fietkau | 1a04d59 | 2013-10-11 23:30:52 +0200 | [diff] [blame] | 340 | if (is_tx) { |
| 341 | struct ath_buf *bf; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 342 | |
Felix Fietkau | 1a04d59 | 2013-10-11 23:30:52 +0200 | [diff] [blame] | 343 | bsize = sizeof(struct ath_buf) * nbuf; |
| 344 | bf = devm_kzalloc(sc->dev, bsize, GFP_KERNEL); |
| 345 | if (!bf) |
| 346 | return -ENOMEM; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 347 | |
Felix Fietkau | 1a04d59 | 2013-10-11 23:30:52 +0200 | [diff] [blame] | 348 | for (i = 0; i < nbuf; i++, bf++, ds += (desc_len * ndesc)) { |
| 349 | bf->bf_desc = ds; |
| 350 | bf->bf_daddr = DS2PHYS(dd, ds); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 351 | |
Felix Fietkau | 1a04d59 | 2013-10-11 23:30:52 +0200 | [diff] [blame] | 352 | if (!(sc->sc_ah->caps.hw_caps & |
| 353 | ATH9K_HW_CAP_4KB_SPLITTRANS)) { |
| 354 | /* |
| 355 | * Skip descriptor addresses which can cause 4KB |
| 356 | * boundary crossing (addr + length) with a 32 dword |
| 357 | * descriptor fetch. |
| 358 | */ |
| 359 | while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) { |
| 360 | BUG_ON((caddr_t) bf->bf_desc >= |
| 361 | ((caddr_t) dd->dd_desc + |
| 362 | dd->dd_desc_len)); |
| 363 | |
| 364 | ds += (desc_len * ndesc); |
| 365 | bf->bf_desc = ds; |
| 366 | bf->bf_daddr = DS2PHYS(dd, ds); |
| 367 | } |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 368 | } |
Felix Fietkau | 1a04d59 | 2013-10-11 23:30:52 +0200 | [diff] [blame] | 369 | list_add_tail(&bf->list, head); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 370 | } |
Felix Fietkau | 1a04d59 | 2013-10-11 23:30:52 +0200 | [diff] [blame] | 371 | } else { |
| 372 | struct ath_rxbuf *bf; |
| 373 | |
| 374 | bsize = sizeof(struct ath_rxbuf) * nbuf; |
| 375 | bf = devm_kzalloc(sc->dev, bsize, GFP_KERNEL); |
| 376 | if (!bf) |
| 377 | return -ENOMEM; |
| 378 | |
| 379 | for (i = 0; i < nbuf; i++, bf++, ds += (desc_len * ndesc)) { |
| 380 | bf->bf_desc = ds; |
| 381 | bf->bf_daddr = DS2PHYS(dd, ds); |
| 382 | |
| 383 | if (!(sc->sc_ah->caps.hw_caps & |
| 384 | ATH9K_HW_CAP_4KB_SPLITTRANS)) { |
| 385 | /* |
| 386 | * Skip descriptor addresses which can cause 4KB |
| 387 | * boundary crossing (addr + length) with a 32 dword |
| 388 | * descriptor fetch. |
| 389 | */ |
| 390 | while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) { |
| 391 | BUG_ON((caddr_t) bf->bf_desc >= |
| 392 | ((caddr_t) dd->dd_desc + |
| 393 | dd->dd_desc_len)); |
| 394 | |
| 395 | ds += (desc_len * ndesc); |
| 396 | bf->bf_desc = ds; |
| 397 | bf->bf_daddr = DS2PHYS(dd, ds); |
| 398 | } |
| 399 | } |
| 400 | list_add_tail(&bf->list, head); |
| 401 | } |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 402 | } |
| 403 | return 0; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 404 | } |
| 405 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 406 | static int ath9k_init_queues(struct ath_softc *sc) |
| 407 | { |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 408 | int i = 0; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 409 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 410 | sc->beacon.beaconq = ath9k_hw_beaconq_setup(sc->sc_ah); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 411 | sc->beacon.cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 412 | ath_cabq_update(sc); |
| 413 | |
Felix Fietkau | f2c7a79 | 2013-06-07 18:12:00 +0200 | [diff] [blame] | 414 | sc->tx.uapsdq = ath_txq_setup(sc, ATH9K_TX_QUEUE_UAPSD, 0); |
| 415 | |
Sujith Manoharan | bea843c | 2012-11-21 18:13:10 +0530 | [diff] [blame] | 416 | for (i = 0; i < IEEE80211_NUM_ACS; i++) { |
Felix Fietkau | 066dae9 | 2010-11-07 14:59:39 +0100 | [diff] [blame] | 417 | 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] | 418 | sc->tx.txq_map[i]->mac80211_qnum = i; |
| 419 | } |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 420 | return 0; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 421 | } |
| 422 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 423 | static void ath9k_init_misc(struct ath_softc *sc) |
| 424 | { |
| 425 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
| 426 | int i = 0; |
Sujith Manoharan | 3d4e20f | 2012-03-14 14:40:58 +0530 | [diff] [blame] | 427 | |
Kees Cook | 7ac7676 | 2017-10-24 02:29:54 -0700 | [diff] [blame] | 428 | timer_setup(&common->ani.timer, ath_ani_calibrate, 0); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 429 | |
Oleksij Rempel | 32efb0c | 2014-02-04 10:27:39 +0100 | [diff] [blame] | 430 | common->last_rssi = ATH_RSSI_DUMMY_MARKER; |
Joe Perches | a72c926 | 2018-03-21 03:32:52 -0700 | [diff] [blame] | 431 | eth_broadcast_addr(common->bssidmask); |
Benjamin Berg | 11b0ac2 | 2016-07-04 14:37:24 +0200 | [diff] [blame] | 432 | sc->beacon.slottime = 9; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 433 | |
Felix Fietkau | 7545daf | 2011-01-24 19:23:16 +0100 | [diff] [blame] | 434 | for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++) |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 435 | sc->beacon.bslot[i] = NULL; |
Vasanthakumar Thiagarajan | 102885a | 2010-09-02 01:34:43 -0700 | [diff] [blame] | 436 | |
| 437 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_ANT_DIV_COMB) |
| 438 | sc->ant_comb.count = ATH_ANT_DIV_COMB_INIT_COUNT; |
Simon Wunderlich | 04ccd4a | 2013-01-23 17:38:04 +0100 | [diff] [blame] | 439 | |
Oleksij Rempel | dd7657b | 2014-11-06 08:53:22 +0100 | [diff] [blame] | 440 | sc->spec_priv.ah = sc->sc_ah; |
Oleksij Rempel | 21af25d | 2014-11-06 08:53:20 +0100 | [diff] [blame] | 441 | sc->spec_priv.spec_config.enabled = 0; |
| 442 | sc->spec_priv.spec_config.short_repeat = true; |
| 443 | sc->spec_priv.spec_config.count = 8; |
| 444 | sc->spec_priv.spec_config.endless = false; |
| 445 | sc->spec_priv.spec_config.period = 0xFF; |
| 446 | sc->spec_priv.spec_config.fft_period = 0xF; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 447 | } |
| 448 | |
Sujith Manoharan | 0f978bf | 2013-12-06 16:28:45 +0530 | [diff] [blame] | 449 | static void ath9k_init_pcoem_platform(struct ath_softc *sc) |
Sujith Manoharan | 9b60b64 | 2013-06-13 22:51:26 +0530 | [diff] [blame] | 450 | { |
| 451 | struct ath_hw *ah = sc->sc_ah; |
Sujith Manoharan | 3f2da95 | 2013-08-04 14:21:56 +0530 | [diff] [blame] | 452 | struct ath9k_hw_capabilities *pCap = &ah->caps; |
Sujith Manoharan | 9b60b64 | 2013-06-13 22:51:26 +0530 | [diff] [blame] | 453 | struct ath_common *common = ath9k_hw_common(ah); |
| 454 | |
Felix Fietkau | 935477e | 2014-10-25 17:19:26 +0200 | [diff] [blame] | 455 | if (!IS_ENABLED(CONFIG_ATH9K_PCOEM)) |
| 456 | return; |
| 457 | |
Sujith Manoharan | 9b60b64 | 2013-06-13 22:51:26 +0530 | [diff] [blame] | 458 | if (common->bus_ops->ath_bus_type != ATH_PCI) |
| 459 | return; |
| 460 | |
Sujith Manoharan | e861ef5 | 2013-06-18 10:13:43 +0530 | [diff] [blame] | 461 | if (sc->driver_data & (ATH9K_PCI_CUS198 | |
| 462 | ATH9K_PCI_CUS230)) { |
Sujith Manoharan | 9b60b64 | 2013-06-13 22:51:26 +0530 | [diff] [blame] | 463 | ah->config.xlna_gpio = 9; |
| 464 | ah->config.xatten_margin_cfg = true; |
Sujith Manoharan | e083a42 | 2013-08-19 11:04:01 +0530 | [diff] [blame] | 465 | ah->config.alt_mingainidx = true; |
Sujith Manoharan | 31fd216 | 2013-08-04 14:22:01 +0530 | [diff] [blame] | 466 | ah->config.ant_ctrl_comm2g_switch_enable = 0x000BBB88; |
Sujith Manoharan | 3afa6b4 | 2013-08-04 14:21:54 +0530 | [diff] [blame] | 467 | sc->ant_comb.low_rssi_thresh = 20; |
| 468 | sc->ant_comb.fast_div_bias = 3; |
Sujith Manoharan | 9b60b64 | 2013-06-13 22:51:26 +0530 | [diff] [blame] | 469 | |
Sujith Manoharan | e861ef5 | 2013-06-18 10:13:43 +0530 | [diff] [blame] | 470 | ath_info(common, "Set parameters for %s\n", |
| 471 | (sc->driver_data & ATH9K_PCI_CUS198) ? |
| 472 | "CUS198" : "CUS230"); |
Sujith Manoharan | 3f2da95 | 2013-08-04 14:21:56 +0530 | [diff] [blame] | 473 | } |
| 474 | |
| 475 | if (sc->driver_data & ATH9K_PCI_CUS217) |
Sujith Manoharan | 12eea64 | 2013-06-18 15:42:36 +0530 | [diff] [blame] | 476 | ath_info(common, "CUS217 card detected\n"); |
Sujith Manoharan | 3f2da95 | 2013-08-04 14:21:56 +0530 | [diff] [blame] | 477 | |
Sujith Manoharan | 1063133 | 2013-09-02 13:59:05 +0530 | [diff] [blame] | 478 | if (sc->driver_data & ATH9K_PCI_CUS252) |
| 479 | ath_info(common, "CUS252 card detected\n"); |
| 480 | |
Sujith Manoharan | 3fcdd0a | 2013-09-02 13:59:06 +0530 | [diff] [blame] | 481 | if (sc->driver_data & ATH9K_PCI_AR9565_1ANT) |
| 482 | ath_info(common, "WB335 1-ANT card detected\n"); |
| 483 | |
| 484 | if (sc->driver_data & ATH9K_PCI_AR9565_2ANT) |
| 485 | ath_info(common, "WB335 2-ANT card detected\n"); |
| 486 | |
Sujith Manoharan | 4dd3564 | 2013-10-23 14:26:04 +0530 | [diff] [blame] | 487 | if (sc->driver_data & ATH9K_PCI_KILLER) |
| 488 | ath_info(common, "Killer Wireless card detected\n"); |
| 489 | |
Sujith Manoharan | 3fcdd0a | 2013-09-02 13:59:06 +0530 | [diff] [blame] | 490 | /* |
| 491 | * Some WB335 cards do not support antenna diversity. Since |
| 492 | * we use a hardcoded value for AR9565 instead of using the |
| 493 | * EEPROM/OTP data, remove the combining feature from |
| 494 | * the HW capabilities bitmap. |
| 495 | */ |
| 496 | if (sc->driver_data & (ATH9K_PCI_AR9565_1ANT | ATH9K_PCI_AR9565_2ANT)) { |
| 497 | if (!(sc->driver_data & ATH9K_PCI_BT_ANT_DIV)) |
| 498 | pCap->hw_caps &= ~ATH9K_HW_CAP_ANT_DIV_COMB; |
| 499 | } |
| 500 | |
Sujith Manoharan | 3f2da95 | 2013-08-04 14:21:56 +0530 | [diff] [blame] | 501 | if (sc->driver_data & ATH9K_PCI_BT_ANT_DIV) { |
| 502 | pCap->hw_caps |= ATH9K_HW_CAP_BT_ANT_DIV; |
| 503 | ath_info(common, "Set BT/WLAN RX diversity capability\n"); |
Sujith Manoharan | 9b60b64 | 2013-06-13 22:51:26 +0530 | [diff] [blame] | 504 | } |
Sujith Manoharan | d1ae25a | 2013-08-25 16:30:40 +0530 | [diff] [blame] | 505 | |
| 506 | if (sc->driver_data & ATH9K_PCI_D3_L1_WAR) { |
| 507 | ah->config.pcie_waen = 0x0040473b; |
| 508 | ath_info(common, "Enable WAR for ASPM D3/L1\n"); |
| 509 | } |
Sujith Manoharan | 2d22c7d | 2013-11-08 11:45:25 +0530 | [diff] [blame] | 510 | |
Sujith Manoharan | afa7e6d | 2015-03-09 14:20:07 +0530 | [diff] [blame] | 511 | /* |
| 512 | * The default value of pll_pwrsave is 1. |
| 513 | * For certain AR9485 cards, it is set to 0. |
Sujith Manoharan | 656cd75 | 2015-03-09 14:20:08 +0530 | [diff] [blame] | 514 | * For AR9462, AR9565 it's set to 7. |
Sujith Manoharan | afa7e6d | 2015-03-09 14:20:07 +0530 | [diff] [blame] | 515 | */ |
| 516 | ah->config.pll_pwrsave = 1; |
| 517 | |
Sujith Manoharan | 2d22c7d | 2013-11-08 11:45:25 +0530 | [diff] [blame] | 518 | if (sc->driver_data & ATH9K_PCI_NO_PLL_PWRSAVE) { |
Sujith Manoharan | afa7e6d | 2015-03-09 14:20:07 +0530 | [diff] [blame] | 519 | ah->config.pll_pwrsave = 0; |
Sujith Manoharan | 2d22c7d | 2013-11-08 11:45:25 +0530 | [diff] [blame] | 520 | ath_info(common, "Disable PLL PowerSave\n"); |
| 521 | } |
Sujith Manoharan | aeeb206 | 2014-11-16 06:11:02 +0530 | [diff] [blame] | 522 | |
| 523 | if (sc->driver_data & ATH9K_PCI_LED_ACT_HI) |
| 524 | ah->config.led_active_high = true; |
Sujith Manoharan | 9b60b64 | 2013-06-13 22:51:26 +0530 | [diff] [blame] | 525 | } |
| 526 | |
Gabor Juhos | ab5c4f7 | 2012-12-10 15:30:28 +0100 | [diff] [blame] | 527 | static void ath9k_eeprom_request_cb(const struct firmware *eeprom_blob, |
| 528 | void *ctx) |
| 529 | { |
| 530 | struct ath9k_eeprom_ctx *ec = ctx; |
| 531 | |
| 532 | if (eeprom_blob) |
| 533 | ec->ah->eeprom_blob = eeprom_blob; |
| 534 | |
| 535 | complete(&ec->complete); |
| 536 | } |
| 537 | |
| 538 | static int ath9k_eeprom_request(struct ath_softc *sc, const char *name) |
| 539 | { |
| 540 | struct ath9k_eeprom_ctx ec; |
Colin Ian King | 47f58b1 | 2016-04-10 12:25:31 +0100 | [diff] [blame] | 541 | struct ath_hw *ah = sc->sc_ah; |
Gabor Juhos | ab5c4f7 | 2012-12-10 15:30:28 +0100 | [diff] [blame] | 542 | int err; |
| 543 | |
| 544 | /* try to load the EEPROM content asynchronously */ |
| 545 | init_completion(&ec.complete); |
| 546 | ec.ah = sc->sc_ah; |
| 547 | |
| 548 | err = request_firmware_nowait(THIS_MODULE, 1, name, sc->dev, GFP_KERNEL, |
| 549 | &ec, ath9k_eeprom_request_cb); |
| 550 | if (err < 0) { |
| 551 | ath_err(ath9k_hw_common(ah), |
| 552 | "EEPROM request failed\n"); |
| 553 | return err; |
| 554 | } |
| 555 | |
| 556 | wait_for_completion(&ec.complete); |
| 557 | |
| 558 | if (!ah->eeprom_blob) { |
| 559 | ath_err(ath9k_hw_common(ah), |
| 560 | "Unable to load EEPROM file %s\n", name); |
| 561 | return -EINVAL; |
| 562 | } |
| 563 | |
| 564 | return 0; |
| 565 | } |
| 566 | |
| 567 | static void ath9k_eeprom_release(struct ath_softc *sc) |
| 568 | { |
| 569 | release_firmware(sc->sc_ah->eeprom_blob); |
| 570 | } |
| 571 | |
Martin Blumenstingl | 28755b8 | 2016-06-23 16:57:13 +0200 | [diff] [blame] | 572 | static int ath9k_init_platform(struct ath_softc *sc) |
Sujith Manoharan | 0f978bf | 2013-12-06 16:28:45 +0530 | [diff] [blame] | 573 | { |
| 574 | struct ath9k_platform_data *pdata = sc->dev->platform_data; |
| 575 | struct ath_hw *ah = sc->sc_ah; |
Martin Blumenstingl | 28755b8 | 2016-06-23 16:57:13 +0200 | [diff] [blame] | 576 | struct ath_common *common = ath9k_hw_common(ah); |
| 577 | int ret; |
Sujith Manoharan | 0f978bf | 2013-12-06 16:28:45 +0530 | [diff] [blame] | 578 | |
| 579 | if (!pdata) |
| 580 | return 0; |
| 581 | |
Martin Blumenstingl | 28755b8 | 2016-06-23 16:57:13 +0200 | [diff] [blame] | 582 | if (!pdata->use_eeprom) { |
| 583 | ah->ah_flags &= ~AH_USE_EEPROM; |
| 584 | ah->gpio_mask = pdata->gpio_mask; |
| 585 | ah->gpio_val = pdata->gpio_val; |
| 586 | ah->led_pin = pdata->led_pin; |
| 587 | ah->is_clk_25mhz = pdata->is_clk_25mhz; |
| 588 | ah->get_mac_revision = pdata->get_mac_revision; |
| 589 | ah->external_reset = pdata->external_reset; |
| 590 | ah->disable_2ghz = pdata->disable_2ghz; |
| 591 | ah->disable_5ghz = pdata->disable_5ghz; |
| 592 | |
| 593 | if (!pdata->endian_check) |
| 594 | ah->ah_flags |= AH_NO_EEP_SWAP; |
| 595 | } |
| 596 | |
Sujith Manoharan | 0f978bf | 2013-12-06 16:28:45 +0530 | [diff] [blame] | 597 | if (pdata->eeprom_name) { |
| 598 | ret = ath9k_eeprom_request(sc, pdata->eeprom_name); |
| 599 | if (ret) |
| 600 | return ret; |
| 601 | } |
| 602 | |
Martin Blumenstingl | 3467f0d | 2016-06-23 16:57:09 +0200 | [diff] [blame] | 603 | if (pdata->led_active_high) |
| 604 | ah->config.led_active_high = true; |
| 605 | |
Sujith Manoharan | 0f978bf | 2013-12-06 16:28:45 +0530 | [diff] [blame] | 606 | if (pdata->tx_gain_buffalo) |
| 607 | ah->config.tx_gain_buffalo = true; |
| 608 | |
Martin Blumenstingl | 28755b8 | 2016-06-23 16:57:13 +0200 | [diff] [blame] | 609 | if (pdata->macaddr) |
| 610 | ether_addr_copy(common->macaddr, pdata->macaddr); |
| 611 | |
| 612 | return 0; |
Sujith Manoharan | 0f978bf | 2013-12-06 16:28:45 +0530 | [diff] [blame] | 613 | } |
| 614 | |
Martin Blumenstingl | 138b412 | 2016-10-16 22:59:07 +0200 | [diff] [blame] | 615 | static int ath9k_of_init(struct ath_softc *sc) |
| 616 | { |
| 617 | struct device_node *np = sc->dev->of_node; |
| 618 | struct ath_hw *ah = sc->sc_ah; |
| 619 | struct ath_common *common = ath9k_hw_common(ah); |
| 620 | enum ath_bus_type bus_type = common->bus_ops->ath_bus_type; |
| 621 | const char *mac; |
| 622 | char eeprom_name[100]; |
| 623 | int ret; |
| 624 | |
| 625 | if (!of_device_is_available(np)) |
| 626 | return 0; |
| 627 | |
| 628 | ath_dbg(common, CONFIG, "parsing configuration from OF node\n"); |
| 629 | |
| 630 | if (of_property_read_bool(np, "qca,no-eeprom")) { |
| 631 | /* ath9k-eeprom-<bus>-<id>.bin */ |
| 632 | scnprintf(eeprom_name, sizeof(eeprom_name), |
| 633 | "ath9k-eeprom-%s-%s.bin", |
| 634 | ath_bus_type_to_string(bus_type), dev_name(ah->dev)); |
| 635 | |
| 636 | ret = ath9k_eeprom_request(sc, eeprom_name); |
| 637 | if (ret) |
| 638 | return ret; |
| 639 | } |
| 640 | |
| 641 | mac = of_get_mac_address(np); |
| 642 | if (mac) |
| 643 | ether_addr_copy(common->macaddr, mac); |
| 644 | |
| 645 | ah->ah_flags &= ~AH_USE_EEPROM; |
| 646 | ah->ah_flags |= AH_NO_EEP_SWAP; |
| 647 | |
| 648 | return 0; |
| 649 | } |
| 650 | |
Pavel Roskin | eb93e89 | 2011-07-23 03:55:39 -0400 | [diff] [blame] | 651 | static int ath9k_init_softc(u16 devid, struct ath_softc *sc, |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 652 | const struct ath_bus_ops *bus_ops) |
| 653 | { |
| 654 | struct ath_hw *ah = NULL; |
Sujith Manoharan | 3f2da95 | 2013-08-04 14:21:56 +0530 | [diff] [blame] | 655 | struct ath9k_hw_capabilities *pCap; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 656 | struct ath_common *common; |
| 657 | int ret = 0, i; |
| 658 | int csz = 0; |
| 659 | |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 660 | ah = devm_kzalloc(sc->dev, sizeof(struct ath_hw), GFP_KERNEL); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 661 | if (!ah) |
| 662 | return -ENOMEM; |
| 663 | |
Felix Fietkau | c1b976d | 2012-12-12 13:14:23 +0100 | [diff] [blame] | 664 | ah->dev = sc->dev; |
Ben Greear | 233536e | 2011-01-09 23:11:44 -0800 | [diff] [blame] | 665 | ah->hw = sc->hw; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 666 | ah->hw_version.devid = devid; |
Martin Blumenstingl | 28755b8 | 2016-06-23 16:57:13 +0200 | [diff] [blame] | 667 | ah->ah_flags |= AH_USE_EEPROM; |
| 668 | ah->led_pin = -1; |
Felix Fietkau | f9f84e9 | 2011-03-23 20:57:24 +0100 | [diff] [blame] | 669 | ah->reg_ops.read = ath9k_ioread32; |
Oleksij Rempel | d55ce0a | 2015-03-22 19:29:50 +0100 | [diff] [blame] | 670 | ah->reg_ops.multi_read = ath9k_multi_ioread32; |
Felix Fietkau | f9f84e9 | 2011-03-23 20:57:24 +0100 | [diff] [blame] | 671 | ah->reg_ops.write = ath9k_iowrite32; |
Felix Fietkau | 845e03c | 2011-03-23 20:57:25 +0100 | [diff] [blame] | 672 | ah->reg_ops.rmw = ath9k_reg_rmw; |
Sujith Manoharan | 3f2da95 | 2013-08-04 14:21:56 +0530 | [diff] [blame] | 673 | pCap = &ah->caps; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 674 | |
Janusz Dziedzic | 95a5992 | 2013-10-14 11:06:03 +0200 | [diff] [blame] | 675 | common = ath9k_hw_common(ah); |
Felix Fietkau | 56bdbe0 | 2014-11-30 21:58:30 +0100 | [diff] [blame] | 676 | |
| 677 | /* Will be cleared in ath9k_start() */ |
| 678 | set_bit(ATH_OP_INVALID, &common->op_flags); |
Toke Høiland-Jørgensen | 63fefa0 | 2016-12-05 13:27:37 +0200 | [diff] [blame] | 679 | sc->airtime_flags = (AIRTIME_USE_TX | AIRTIME_USE_RX | |
| 680 | AIRTIME_USE_NEW_QUEUES); |
Felix Fietkau | 56bdbe0 | 2014-11-30 21:58:30 +0100 | [diff] [blame] | 681 | |
| 682 | sc->sc_ah = ah; |
Janusz Dziedzic | 95a5992 | 2013-10-14 11:06:03 +0200 | [diff] [blame] | 683 | sc->dfs_detector = dfs_pattern_detector_init(common, NL80211_DFS_UNSET); |
Luis R. Rodriguez | 89f927a | 2013-10-14 17:42:11 -0700 | [diff] [blame] | 684 | sc->tx99_power = MAX_RATE_POWER + 1; |
Felix Fietkau | 10e2318 | 2013-11-11 22:23:35 +0100 | [diff] [blame] | 685 | init_waitqueue_head(&sc->tx_wait); |
Rajkumar Manoharan | ca900ac | 2014-06-11 16:18:02 +0530 | [diff] [blame] | 686 | sc->cur_chan = &sc->chanctx[0]; |
Sujith Manoharan | 499afac | 2014-08-22 20:39:31 +0530 | [diff] [blame] | 687 | if (!ath9k_is_chanctx_enabled()) |
Rajkumar Manoharan | 3ad9c38 | 2014-06-11 16:18:15 +0530 | [diff] [blame] | 688 | sc->cur_chan->hw_queue_base = 0; |
Zefir Kurtisi | 8e92d3f | 2012-04-03 17:15:50 +0200 | [diff] [blame] | 689 | |
Felix Fietkau | f9f84e9 | 2011-03-23 20:57:24 +0100 | [diff] [blame] | 690 | common->ops = &ah->reg_ops; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 691 | common->bus_ops = bus_ops; |
Oleksij Rempel | 99d2217 | 2014-11-06 08:53:25 +0100 | [diff] [blame] | 692 | common->ps_ops = &ath9k_ps_ops; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 693 | common->ah = ah; |
| 694 | common->hw = sc->hw; |
| 695 | common->priv = sc; |
| 696 | common->debug_mask = ath9k_debug; |
Vasanthakumar Thiagarajan | 8f5dcb1 | 2010-11-26 06:10:06 -0800 | [diff] [blame] | 697 | common->btcoex_enabled = ath9k_btcoex_enable == 1; |
Mohammed Shafi Shajakhan | 05c0be2 | 2011-05-26 10:56:15 +0530 | [diff] [blame] | 698 | common->disable_ani = false; |
Sujith Manoharan | e09f2dc | 2012-09-16 08:06:56 +0530 | [diff] [blame] | 699 | |
| 700 | /* |
Sujith Manoharan | 9b60b64 | 2013-06-13 22:51:26 +0530 | [diff] [blame] | 701 | * Platform quirks. |
| 702 | */ |
Sujith Manoharan | 0f978bf | 2013-12-06 16:28:45 +0530 | [diff] [blame] | 703 | ath9k_init_pcoem_platform(sc); |
| 704 | |
Martin Blumenstingl | 28755b8 | 2016-06-23 16:57:13 +0200 | [diff] [blame] | 705 | ret = ath9k_init_platform(sc); |
Sujith Manoharan | 0f978bf | 2013-12-06 16:28:45 +0530 | [diff] [blame] | 706 | if (ret) |
| 707 | return ret; |
Sujith Manoharan | 9b60b64 | 2013-06-13 22:51:26 +0530 | [diff] [blame] | 708 | |
Martin Blumenstingl | 138b412 | 2016-10-16 22:59:07 +0200 | [diff] [blame] | 709 | ret = ath9k_of_init(sc); |
| 710 | if (ret) |
| 711 | return ret; |
| 712 | |
Vittorio Gambaletta (VittGam) | cd84042 | 2016-04-11 04:48:54 +0200 | [diff] [blame] | 713 | if (ath9k_led_active_high != -1) |
| 714 | ah->config.led_active_high = ath9k_led_active_high == 1; |
| 715 | |
Sujith Manoharan | 9b60b64 | 2013-06-13 22:51:26 +0530 | [diff] [blame] | 716 | /* |
Sujith Manoharan | 3f2da95 | 2013-08-04 14:21:56 +0530 | [diff] [blame] | 717 | * Enable WLAN/BT RX Antenna diversity only when: |
| 718 | * |
Sujith Manoharan | 7d84587 | 2013-08-07 12:29:27 +0530 | [diff] [blame] | 719 | * - BTCOEX is disabled. |
Sujith Manoharan | 3f2da95 | 2013-08-04 14:21:56 +0530 | [diff] [blame] | 720 | * - the user manually requests the feature. |
| 721 | * - the HW cap is set using the platform data. |
Sujith Manoharan | e09f2dc | 2012-09-16 08:06:56 +0530 | [diff] [blame] | 722 | */ |
Sujith Manoharan | 7d84587 | 2013-08-07 12:29:27 +0530 | [diff] [blame] | 723 | if (!common->btcoex_enabled && ath9k_bt_ant_diversity && |
Sujith Manoharan | 3f2da95 | 2013-08-04 14:21:56 +0530 | [diff] [blame] | 724 | (pCap->hw_caps & ATH9K_HW_CAP_BT_ANT_DIV)) |
Sujith Manoharan | 6308130 | 2013-08-04 14:21:55 +0530 | [diff] [blame] | 725 | common->bt_ant_diversity = 1; |
Sujith Manoharan | e09f2dc | 2012-09-16 08:06:56 +0530 | [diff] [blame] | 726 | |
Ben Greear | 20b25744 | 2010-10-15 15:04:09 -0700 | [diff] [blame] | 727 | spin_lock_init(&common->cc_lock); |
Felix Fietkau | 3a5e969 | 2017-02-02 10:14:52 +0100 | [diff] [blame] | 728 | spin_lock_init(&sc->intr_lock); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 729 | spin_lock_init(&sc->sc_serial_rw); |
| 730 | spin_lock_init(&sc->sc_pm_lock); |
Felix Fietkau | bff1176 | 2014-06-11 16:17:52 +0530 | [diff] [blame] | 731 | spin_lock_init(&sc->chan_lock); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 732 | mutex_init(&sc->mutex); |
| 733 | tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc); |
Sujith Manoharan | fb6e252 | 2012-07-17 17:16:22 +0530 | [diff] [blame] | 734 | tasklet_init(&sc->bcon_tasklet, ath9k_beacon_tasklet, |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 735 | (unsigned long)sc); |
| 736 | |
Kees Cook | 7ac7676 | 2017-10-24 02:29:54 -0700 | [diff] [blame] | 737 | timer_setup(&sc->sleep_timer, ath_ps_full_sleep, 0); |
Sujith Manoharan | aaa1ec4 | 2012-06-04 16:27:08 +0530 | [diff] [blame] | 738 | INIT_WORK(&sc->hw_reset_work, ath_reset_work); |
Sujith Manoharan | aaa1ec4 | 2012-06-04 16:27:08 +0530 | [diff] [blame] | 739 | INIT_WORK(&sc->paprd_work, ath_paprd_calibrate); |
| 740 | INIT_DELAYED_WORK(&sc->hw_pll_work, ath_hw_pll_work); |
Felix Fietkau | d63ffc4 | 2017-02-02 10:14:50 +0100 | [diff] [blame] | 741 | INIT_DELAYED_WORK(&sc->hw_check_work, ath_hw_check_work); |
Sujith Manoharan | 705d0bf | 2014-08-23 13:29:06 +0530 | [diff] [blame] | 742 | |
| 743 | ath9k_init_channel_context(sc); |
Sujith Manoharan | aaa1ec4 | 2012-06-04 16:27:08 +0530 | [diff] [blame] | 744 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 745 | /* |
| 746 | * Cache line size is used to size and align various |
| 747 | * structures used to communicate with the hardware. |
| 748 | */ |
| 749 | ath_read_cachesize(common, &csz); |
| 750 | common->cachelsz = csz << 2; /* convert to bytes */ |
| 751 | |
Luis R. Rodriguez | d70357d | 2010-04-15 17:38:06 -0400 | [diff] [blame] | 752 | /* Initializes the hardware for all supported chipsets */ |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 753 | ret = ath9k_hw_init(ah); |
Luis R. Rodriguez | d70357d | 2010-04-15 17:38:06 -0400 | [diff] [blame] | 754 | if (ret) |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 755 | goto err_hw; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 756 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 757 | ret = ath9k_init_queues(sc); |
| 758 | if (ret) |
| 759 | goto err_queues; |
| 760 | |
| 761 | ret = ath9k_init_btcoex(sc); |
| 762 | if (ret) |
| 763 | goto err_btcoex; |
| 764 | |
Oleksij Rempel | 13f7105 | 2014-02-25 14:48:50 +0100 | [diff] [blame] | 765 | ret = ath9k_cmn_init_channels_rates(common); |
Felix Fietkau | f209f52 | 2010-10-01 01:06:53 +0200 | [diff] [blame] | 766 | if (ret) |
| 767 | goto err_btcoex; |
| 768 | |
Sujith Manoharan | c7dd40c | 2014-08-22 20:39:30 +0530 | [diff] [blame] | 769 | ret = ath9k_init_p2p(sc); |
| 770 | if (ret) |
Sujith Manoharan | 4f68169 | 2014-08-22 20:39:25 +0530 | [diff] [blame] | 771 | goto err_btcoex; |
Felix Fietkau | d463af4 | 2014-04-06 00:37:03 +0200 | [diff] [blame] | 772 | |
Rajkumar Manoharan | f82b4bd | 2011-08-13 10:28:15 +0530 | [diff] [blame] | 773 | ath9k_cmn_init_crypto(sc->sc_ah); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 774 | ath9k_init_misc(sc); |
Felix Fietkau | fbbcd14 | 2014-06-11 16:17:49 +0530 | [diff] [blame] | 775 | ath_chanctx_init(sc); |
Sujith Manoharan | e90e302 | 2014-08-23 13:29:20 +0530 | [diff] [blame] | 776 | ath9k_offchannel_init(sc); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 777 | |
Sujith Manoharan | d09f5f4 | 2012-06-04 16:27:14 +0530 | [diff] [blame] | 778 | if (common->bus_ops->aspm_init) |
| 779 | common->bus_ops->aspm_init(common); |
| 780 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 781 | return 0; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 782 | |
| 783 | err_btcoex: |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 784 | for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) |
| 785 | if (ATH_TXQ_SETUP(sc, i)) |
| 786 | ath_tx_cleanupq(sc, &sc->tx.txq[i]); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 787 | err_queues: |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 788 | ath9k_hw_deinit(ah); |
| 789 | err_hw: |
Gabor Juhos | ab5c4f7 | 2012-12-10 15:30:28 +0100 | [diff] [blame] | 790 | ath9k_eeprom_release(sc); |
Luis R. Rodriguez | 89f927a | 2013-10-14 17:42:11 -0700 | [diff] [blame] | 791 | dev_kfree_skb_any(sc->tx99_skb); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 792 | return ret; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 793 | } |
| 794 | |
Felix Fietkau | babcbc2 | 2010-10-20 02:09:46 +0200 | [diff] [blame] | 795 | static void ath9k_init_band_txpower(struct ath_softc *sc, int band) |
| 796 | { |
| 797 | struct ieee80211_supported_band *sband; |
| 798 | struct ieee80211_channel *chan; |
| 799 | struct ath_hw *ah = sc->sc_ah; |
Oleksij Rempel | 13f7105 | 2014-02-25 14:48:50 +0100 | [diff] [blame] | 800 | struct ath_common *common = ath9k_hw_common(ah); |
Simon Wunderlich | 0671894 | 2013-08-16 10:46:04 +0200 | [diff] [blame] | 801 | struct cfg80211_chan_def chandef; |
Felix Fietkau | babcbc2 | 2010-10-20 02:09:46 +0200 | [diff] [blame] | 802 | int i; |
| 803 | |
Oleksij Rempel | 13f7105 | 2014-02-25 14:48:50 +0100 | [diff] [blame] | 804 | sband = &common->sbands[band]; |
Felix Fietkau | babcbc2 | 2010-10-20 02:09:46 +0200 | [diff] [blame] | 805 | for (i = 0; i < sband->n_channels; i++) { |
| 806 | chan = &sband->channels[i]; |
| 807 | ah->curchan = &ah->channels[chan->hw_value]; |
Simon Wunderlich | 0671894 | 2013-08-16 10:46:04 +0200 | [diff] [blame] | 808 | cfg80211_chandef_create(&chandef, chan, NL80211_CHAN_HT20); |
Felix Fietkau | 2297f1c | 2013-10-11 23:30:57 +0200 | [diff] [blame] | 809 | ath9k_cmn_get_channel(sc->hw, ah, &chandef); |
Felix Fietkau | babcbc2 | 2010-10-20 02:09:46 +0200 | [diff] [blame] | 810 | ath9k_hw_set_txpowerlimit(ah, MAX_RATE_POWER, true); |
Felix Fietkau | babcbc2 | 2010-10-20 02:09:46 +0200 | [diff] [blame] | 811 | } |
| 812 | } |
| 813 | |
| 814 | static void ath9k_init_txpower_limits(struct ath_softc *sc) |
| 815 | { |
| 816 | struct ath_hw *ah = sc->sc_ah; |
| 817 | struct ath9k_channel *curchan = ah->curchan; |
| 818 | |
| 819 | if (ah->caps.hw_caps & ATH9K_HW_CAP_2GHZ) |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 820 | ath9k_init_band_txpower(sc, NL80211_BAND_2GHZ); |
Felix Fietkau | babcbc2 | 2010-10-20 02:09:46 +0200 | [diff] [blame] | 821 | if (ah->caps.hw_caps & ATH9K_HW_CAP_5GHZ) |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 822 | ath9k_init_band_txpower(sc, NL80211_BAND_5GHZ); |
Felix Fietkau | babcbc2 | 2010-10-20 02:09:46 +0200 | [diff] [blame] | 823 | |
| 824 | ah->curchan = curchan; |
| 825 | } |
| 826 | |
Felix Fietkau | 20c8e8d | 2012-04-17 02:40:07 +0200 | [diff] [blame] | 827 | static const struct ieee80211_iface_limit if_limits[] = { |
Rajkumar Manoharan | 71a5f88 | 2014-05-29 15:11:09 +0530 | [diff] [blame] | 828 | { .max = 2048, .types = BIT(NL80211_IFTYPE_STATION) }, |
Felix Fietkau | 20c8e8d | 2012-04-17 02:40:07 +0200 | [diff] [blame] | 829 | { .max = 8, .types = |
| 830 | #ifdef CONFIG_MAC80211_MESH |
| 831 | BIT(NL80211_IFTYPE_MESH_POINT) | |
| 832 | #endif |
Felix Fietkau | 95ae481 | 2014-04-06 00:37:02 +0200 | [diff] [blame] | 833 | BIT(NL80211_IFTYPE_AP) }, |
| 834 | { .max = 1, .types = BIT(NL80211_IFTYPE_P2P_CLIENT) | |
Felix Fietkau | 20c8e8d | 2012-04-17 02:40:07 +0200 | [diff] [blame] | 835 | BIT(NL80211_IFTYPE_P2P_GO) }, |
| 836 | }; |
| 837 | |
Johannes Berg | 8f20542 | 2016-10-18 10:28:57 +0200 | [diff] [blame] | 838 | #ifdef CONFIG_WIRELESS_WDS |
Rajkumar Manoharan | 71a5f88 | 2014-05-29 15:11:09 +0530 | [diff] [blame] | 839 | static const struct ieee80211_iface_limit wds_limits[] = { |
| 840 | { .max = 2048, .types = BIT(NL80211_IFTYPE_WDS) }, |
| 841 | }; |
Johannes Berg | 8f20542 | 2016-10-18 10:28:57 +0200 | [diff] [blame] | 842 | #endif |
Rajkumar Manoharan | 71a5f88 | 2014-05-29 15:11:09 +0530 | [diff] [blame] | 843 | |
Sujith Manoharan | 499afac | 2014-08-22 20:39:31 +0530 | [diff] [blame] | 844 | #ifdef CONFIG_ATH9K_CHANNEL_CONTEXT |
| 845 | |
Rajkumar Manoharan | a406832 | 2014-06-11 16:18:16 +0530 | [diff] [blame] | 846 | static const struct ieee80211_iface_limit if_limits_multi[] = { |
Sujith Manoharan | 86162d4 | 2014-08-24 21:16:12 +0530 | [diff] [blame] | 847 | { .max = 2, .types = BIT(NL80211_IFTYPE_STATION) | |
| 848 | BIT(NL80211_IFTYPE_AP) | |
| 849 | BIT(NL80211_IFTYPE_P2P_CLIENT) | |
Rajkumar Manoharan | a406832 | 2014-06-11 16:18:16 +0530 | [diff] [blame] | 850 | BIT(NL80211_IFTYPE_P2P_GO) }, |
Sujith Manoharan | 86162d4 | 2014-08-24 21:16:12 +0530 | [diff] [blame] | 851 | { .max = 1, .types = BIT(NL80211_IFTYPE_ADHOC) }, |
Janusz.Dziedzic@tieto.com | eb61f9f | 2015-07-21 11:11:40 +0200 | [diff] [blame] | 852 | { .max = 1, .types = BIT(NL80211_IFTYPE_P2P_DEVICE) }, |
Rajkumar Manoharan | a406832 | 2014-06-11 16:18:16 +0530 | [diff] [blame] | 853 | }; |
| 854 | |
Rajkumar Manoharan | a406832 | 2014-06-11 16:18:16 +0530 | [diff] [blame] | 855 | static const struct ieee80211_iface_combination if_comb_multi[] = { |
| 856 | { |
| 857 | .limits = if_limits_multi, |
| 858 | .n_limits = ARRAY_SIZE(if_limits_multi), |
Janusz.Dziedzic@tieto.com | eb61f9f | 2015-07-21 11:11:40 +0200 | [diff] [blame] | 859 | .max_interfaces = 3, |
Rajkumar Manoharan | a406832 | 2014-06-11 16:18:16 +0530 | [diff] [blame] | 860 | .num_different_channels = 2, |
| 861 | .beacon_int_infra_match = true, |
| 862 | }, |
| 863 | }; |
| 864 | |
Sujith Manoharan | 499afac | 2014-08-22 20:39:31 +0530 | [diff] [blame] | 865 | #endif /* CONFIG_ATH9K_CHANNEL_CONTEXT */ |
| 866 | |
Zefir Kurtisi | e9cdedf | 2013-04-03 18:31:29 +0200 | [diff] [blame] | 867 | static const struct ieee80211_iface_combination if_comb[] = { |
| 868 | { |
| 869 | .limits = if_limits, |
| 870 | .n_limits = ARRAY_SIZE(if_limits), |
| 871 | .max_interfaces = 2048, |
| 872 | .num_different_channels = 1, |
| 873 | .beacon_int_infra_match = true, |
Felix Fietkau | 1286558 | 2016-01-22 01:56:30 +0100 | [diff] [blame] | 874 | #ifdef CONFIG_ATH9K_DFS_CERTIFIED |
| 875 | .radar_detect_widths = BIT(NL80211_CHAN_WIDTH_20_NOHT) | |
| 876 | BIT(NL80211_CHAN_WIDTH_20) | |
| 877 | BIT(NL80211_CHAN_WIDTH_40), |
| 878 | #endif |
Zefir Kurtisi | e9cdedf | 2013-04-03 18:31:29 +0200 | [diff] [blame] | 879 | }, |
Johannes Berg | 8f20542 | 2016-10-18 10:28:57 +0200 | [diff] [blame] | 880 | #ifdef CONFIG_WIRELESS_WDS |
Rajkumar Manoharan | 71a5f88 | 2014-05-29 15:11:09 +0530 | [diff] [blame] | 881 | { |
| 882 | .limits = wds_limits, |
| 883 | .n_limits = ARRAY_SIZE(wds_limits), |
| 884 | .max_interfaces = 2048, |
| 885 | .num_different_channels = 1, |
| 886 | .beacon_int_infra_match = true, |
| 887 | }, |
Johannes Berg | 8f20542 | 2016-10-18 10:28:57 +0200 | [diff] [blame] | 888 | #endif |
Felix Fietkau | 20c8e8d | 2012-04-17 02:40:07 +0200 | [diff] [blame] | 889 | }; |
Felix Fietkau | 43c3528 | 2011-09-03 01:40:27 +0200 | [diff] [blame] | 890 | |
Sujith Manoharan | 868caae | 2014-10-21 19:23:02 +0530 | [diff] [blame] | 891 | #ifdef CONFIG_ATH9K_CHANNEL_CONTEXT |
| 892 | static void ath9k_set_mcc_capab(struct ath_softc *sc, struct ieee80211_hw *hw) |
| 893 | { |
| 894 | struct ath_hw *ah = sc->sc_ah; |
| 895 | struct ath_common *common = ath9k_hw_common(ah); |
| 896 | |
| 897 | if (!ath9k_is_chanctx_enabled()) |
| 898 | return; |
| 899 | |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 900 | ieee80211_hw_set(hw, QUEUE_CONTROL); |
Sujith Manoharan | 868caae | 2014-10-21 19:23:02 +0530 | [diff] [blame] | 901 | hw->queues = ATH9K_NUM_TX_QUEUES; |
| 902 | hw->offchannel_tx_hw_queue = hw->queues - 1; |
| 903 | hw->wiphy->interface_modes &= ~ BIT(NL80211_IFTYPE_WDS); |
| 904 | hw->wiphy->iface_combinations = if_comb_multi; |
| 905 | hw->wiphy->n_iface_combinations = ARRAY_SIZE(if_comb_multi); |
| 906 | hw->wiphy->max_scan_ssids = 255; |
| 907 | hw->wiphy->max_scan_ie_len = IEEE80211_MAX_DATA_LEN; |
| 908 | hw->wiphy->max_remain_on_channel_duration = 10000; |
| 909 | hw->chanctx_data_size = sizeof(void *); |
| 910 | hw->extra_beacon_tailroom = |
| 911 | sizeof(struct ieee80211_p2p_noa_attr) + 9; |
| 912 | |
| 913 | ath_dbg(common, CHAN_CTX, "Use channel contexts\n"); |
| 914 | } |
| 915 | #endif /* CONFIG_ATH9K_CHANNEL_CONTEXT */ |
| 916 | |
Sujith Manoharan | 7b6ef99 | 2013-12-18 09:53:19 +0530 | [diff] [blame] | 917 | static void ath9k_set_hw_capab(struct ath_softc *sc, struct ieee80211_hw *hw) |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 918 | { |
Felix Fietkau | 43c3528 | 2011-09-03 01:40:27 +0200 | [diff] [blame] | 919 | struct ath_hw *ah = sc->sc_ah; |
| 920 | struct ath_common *common = ath9k_hw_common(ah); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 921 | |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 922 | ieee80211_hw_set(hw, SUPPORTS_HT_CCK_RATES); |
| 923 | ieee80211_hw_set(hw, SUPPORTS_RC_TABLE); |
| 924 | ieee80211_hw_set(hw, REPORTS_TX_ACK_STATUS); |
| 925 | ieee80211_hw_set(hw, SPECTRUM_MGMT); |
| 926 | ieee80211_hw_set(hw, PS_NULLFUNC_STACK); |
| 927 | ieee80211_hw_set(hw, SIGNAL_DBM); |
| 928 | ieee80211_hw_set(hw, RX_INCLUDES_FCS); |
| 929 | ieee80211_hw_set(hw, HOST_BROADCAST_PS_BUFFERING); |
Felix Fietkau | f419c5f | 2015-07-22 13:06:12 +0200 | [diff] [blame] | 930 | ieee80211_hw_set(hw, SUPPORT_FAST_XMIT); |
Pawel Kulakowski | 50e81e2 | 2015-12-18 10:48:57 +0100 | [diff] [blame] | 931 | ieee80211_hw_set(hw, SUPPORTS_CLONED_SKBS); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 932 | |
Sujith Manoharan | 8298383 | 2014-02-04 08:37:53 +0530 | [diff] [blame] | 933 | if (ath9k_ps_enable) |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 934 | ieee80211_hw_set(hw, SUPPORTS_PS); |
Sujith Manoharan | 8298383 | 2014-02-04 08:37:53 +0530 | [diff] [blame] | 935 | |
Oleksij Rempel | b0a1ae9 | 2013-05-24 20:30:59 +0200 | [diff] [blame] | 936 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_HT) { |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 937 | ieee80211_hw_set(hw, AMPDU_AGGREGATION); |
Oleksij Rempel | b0a1ae9 | 2013-05-24 20:30:59 +0200 | [diff] [blame] | 938 | |
| 939 | if (AR_SREV_9280_20_OR_LATER(ah)) |
| 940 | hw->radiotap_mcs_details |= |
| 941 | IEEE80211_RADIOTAP_MCS_HAVE_STBC; |
| 942 | } |
Luis R. Rodriguez | 5ffaf8a | 2010-02-02 11:58:33 -0500 | [diff] [blame] | 943 | |
John W. Linville | 3e6109c | 2011-01-05 09:39:17 -0500 | [diff] [blame] | 944 | if (AR_SREV_9160_10_OR_LATER(sc->sc_ah) || ath9k_modparam_nohwcrypt) |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 945 | ieee80211_hw_set(hw, MFP_CAPABLE); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 946 | |
Sujith Manoharan | fdcf1bd | 2014-09-05 08:03:14 +0530 | [diff] [blame] | 947 | hw->wiphy->features |= NL80211_FEATURE_ACTIVE_MONITOR | |
| 948 | NL80211_FEATURE_AP_MODE_CHAN_WIDTH_CHANGE | |
| 949 | NL80211_FEATURE_P2P_GO_CTWIN; |
Felix Fietkau | ec26bcc | 2013-05-28 13:01:54 +0200 | [diff] [blame] | 950 | |
Masahiro Yamada | 97f2645 | 2016-08-03 13:45:50 -0700 | [diff] [blame] | 951 | if (!IS_ENABLED(CONFIG_ATH9K_TX99)) { |
Luis R. Rodriguez | 89f927a | 2013-10-14 17:42:11 -0700 | [diff] [blame] | 952 | hw->wiphy->interface_modes = |
| 953 | BIT(NL80211_IFTYPE_P2P_GO) | |
| 954 | BIT(NL80211_IFTYPE_P2P_CLIENT) | |
| 955 | BIT(NL80211_IFTYPE_AP) | |
Luis R. Rodriguez | 89f927a | 2013-10-14 17:42:11 -0700 | [diff] [blame] | 956 | BIT(NL80211_IFTYPE_STATION) | |
| 957 | BIT(NL80211_IFTYPE_ADHOC) | |
Sujith Manoharan | 499afac | 2014-08-22 20:39:31 +0530 | [diff] [blame] | 958 | BIT(NL80211_IFTYPE_MESH_POINT) | |
Johannes Berg | 8f20542 | 2016-10-18 10:28:57 +0200 | [diff] [blame] | 959 | #ifdef CONFIG_WIRELESS_WDS |
Jan Kaisrlik | 862a336 | 2015-09-17 14:03:46 +0200 | [diff] [blame] | 960 | BIT(NL80211_IFTYPE_WDS) | |
Johannes Berg | 8f20542 | 2016-10-18 10:28:57 +0200 | [diff] [blame] | 961 | #endif |
Jan Kaisrlik | 862a336 | 2015-09-17 14:03:46 +0200 | [diff] [blame] | 962 | BIT(NL80211_IFTYPE_OCB); |
Sujith Manoharan | 499afac | 2014-08-22 20:39:31 +0530 | [diff] [blame] | 963 | |
Janusz.Dziedzic@tieto.com | eb61f9f | 2015-07-21 11:11:40 +0200 | [diff] [blame] | 964 | if (ath9k_is_chanctx_enabled()) |
| 965 | hw->wiphy->interface_modes |= |
| 966 | BIT(NL80211_IFTYPE_P2P_DEVICE); |
| 967 | |
Arnd Bergmann | 362210e | 2016-03-14 15:18:37 +0100 | [diff] [blame] | 968 | hw->wiphy->iface_combinations = if_comb; |
| 969 | hw->wiphy->n_iface_combinations = ARRAY_SIZE(if_comb); |
Luis R. Rodriguez | 89f927a | 2013-10-14 17:42:11 -0700 | [diff] [blame] | 970 | } |
Felix Fietkau | 20c8e8d | 2012-04-17 02:40:07 +0200 | [diff] [blame] | 971 | |
Sujith Manoharan | 531671c | 2013-06-01 07:08:09 +0530 | [diff] [blame] | 972 | hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 973 | |
Jouni Malinen | cfdc9a8 | 2011-03-23 14:52:19 +0200 | [diff] [blame] | 974 | hw->wiphy->flags |= WIPHY_FLAG_IBSS_RSN; |
Jouni Malinen | fd65623 | 2011-10-27 17:31:50 +0300 | [diff] [blame] | 975 | hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS; |
Johannes Berg | 81ddbb5 | 2012-03-26 18:47:18 +0200 | [diff] [blame] | 976 | hw->wiphy->flags |= WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL; |
Simon Wunderlich | 6fac8bb | 2013-08-14 08:01:34 +0200 | [diff] [blame] | 977 | hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_5_10_MHZ; |
Simon Wunderlich | d074e8d | 2013-08-14 08:01:38 +0200 | [diff] [blame] | 978 | hw->wiphy->flags |= WIPHY_FLAG_HAS_CHANNEL_SWITCH; |
Jouni Malinen | 7b4f663 | 2014-02-18 20:41:08 +0200 | [diff] [blame] | 979 | hw->wiphy->flags |= WIPHY_FLAG_AP_UAPSD; |
Jouni Malinen | cfdc9a8 | 2011-03-23 14:52:19 +0200 | [diff] [blame] | 980 | |
Sujith Manoharan | 868caae | 2014-10-21 19:23:02 +0530 | [diff] [blame] | 981 | hw->queues = 4; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 982 | hw->max_rates = 4; |
Rajkumar Manoharan | 5f2f9e4 | 2014-06-26 16:54:41 +0530 | [diff] [blame] | 983 | hw->max_listen_interval = 10; |
Felix Fietkau | 6589651 | 2010-01-24 03:26:11 +0100 | [diff] [blame] | 984 | hw->max_rate_tries = 10; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 985 | hw->sta_data_size = sizeof(struct ath_node); |
| 986 | hw->vif_data_size = sizeof(struct ath_vif); |
Toke Høiland-Jørgensen | 50f08ed | 2016-11-09 12:31:49 +0100 | [diff] [blame] | 987 | hw->txq_data_size = sizeof(struct ath_atx_tid); |
Felix Fietkau | 029cd03 | 2015-09-24 16:59:46 +0200 | [diff] [blame] | 988 | hw->extra_tx_headroom = 4; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 989 | |
Felix Fietkau | 43c3528 | 2011-09-03 01:40:27 +0200 | [diff] [blame] | 990 | hw->wiphy->available_antennas_rx = BIT(ah->caps.max_rxchains) - 1; |
| 991 | hw->wiphy->available_antennas_tx = BIT(ah->caps.max_txchains) - 1; |
| 992 | |
| 993 | /* single chain devices with rx diversity */ |
| 994 | if (ah->caps.hw_caps & ATH9K_HW_CAP_ANT_DIV_COMB) |
| 995 | hw->wiphy->available_antennas_rx = BIT(0) | BIT(1); |
| 996 | |
| 997 | sc->ant_rx = hw->wiphy->available_antennas_rx; |
| 998 | sc->ant_tx = hw->wiphy->available_antennas_tx; |
| 999 | |
Felix Fietkau | d465991 | 2010-10-14 16:02:39 +0200 | [diff] [blame] | 1000 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_2GHZ) |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 1001 | hw->wiphy->bands[NL80211_BAND_2GHZ] = |
| 1002 | &common->sbands[NL80211_BAND_2GHZ]; |
Felix Fietkau | d465991 | 2010-10-14 16:02:39 +0200 | [diff] [blame] | 1003 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_5GHZ) |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 1004 | hw->wiphy->bands[NL80211_BAND_5GHZ] = |
| 1005 | &common->sbands[NL80211_BAND_5GHZ]; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1006 | |
Sujith Manoharan | 868caae | 2014-10-21 19:23:02 +0530 | [diff] [blame] | 1007 | #ifdef CONFIG_ATH9K_CHANNEL_CONTEXT |
| 1008 | ath9k_set_mcc_capab(sc, hw); |
| 1009 | #endif |
Sujith Manoharan | babaa80 | 2013-10-28 13:01:28 +0530 | [diff] [blame] | 1010 | ath9k_init_wow(hw); |
Oleksij Rempel | b57ba3b | 2014-02-25 14:48:55 +0100 | [diff] [blame] | 1011 | ath9k_cmn_reload_chainmask(ah); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1012 | |
| 1013 | SET_IEEE80211_PERM_ADDR(hw, common->macaddr); |
Andrew Zaborowski | ae44b50 | 2017-02-10 04:50:23 +0100 | [diff] [blame] | 1014 | |
| 1015 | wiphy_ext_feature_set(hw->wiphy, NL80211_EXT_FEATURE_CQM_RSSI_LIST); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1016 | } |
| 1017 | |
Pavel Roskin | eb93e89 | 2011-07-23 03:55:39 -0400 | [diff] [blame] | 1018 | int ath9k_init_device(u16 devid, struct ath_softc *sc, |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1019 | const struct ath_bus_ops *bus_ops) |
| 1020 | { |
| 1021 | struct ieee80211_hw *hw = sc->hw; |
| 1022 | struct ath_common *common; |
| 1023 | struct ath_hw *ah; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1024 | int error = 0; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1025 | struct ath_regulatory *reg; |
| 1026 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1027 | /* Bring up device */ |
Pavel Roskin | eb93e89 | 2011-07-23 03:55:39 -0400 | [diff] [blame] | 1028 | error = ath9k_init_softc(devid, sc, bus_ops); |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 1029 | if (error) |
| 1030 | return error; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1031 | |
| 1032 | ah = sc->sc_ah; |
| 1033 | common = ath9k_hw_common(ah); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1034 | ath9k_set_hw_capab(sc, hw); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1035 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1036 | /* Initialize regulatory */ |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1037 | error = ath_regd_init(&common->regulatory, sc->hw->wiphy, |
| 1038 | ath9k_reg_notifier); |
| 1039 | if (error) |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 1040 | goto deinit; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1041 | |
| 1042 | reg = &common->regulatory; |
| 1043 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1044 | /* Setup TX DMA */ |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1045 | error = ath_tx_init(sc, ATH_TXBUF); |
| 1046 | if (error != 0) |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 1047 | goto deinit; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1048 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1049 | /* Setup RX DMA */ |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1050 | error = ath_rx_init(sc, ATH_RXBUF); |
| 1051 | if (error != 0) |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 1052 | goto deinit; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1053 | |
Felix Fietkau | babcbc2 | 2010-10-20 02:09:46 +0200 | [diff] [blame] | 1054 | ath9k_init_txpower_limits(sc); |
| 1055 | |
Felix Fietkau | 0cf55c2 | 2011-02-27 22:26:40 +0100 | [diff] [blame] | 1056 | #ifdef CONFIG_MAC80211_LEDS |
| 1057 | /* must be initialized before ieee80211_register_hw */ |
| 1058 | sc->led_cdev.default_trigger = ieee80211_create_tpt_led_trigger(sc->hw, |
| 1059 | IEEE80211_TPT_LEDTRIG_FL_RADIO, ath9k_tpt_blink, |
| 1060 | ARRAY_SIZE(ath9k_tpt_blink)); |
| 1061 | #endif |
| 1062 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1063 | /* Register with mac80211 */ |
| 1064 | error = ieee80211_register_hw(hw); |
| 1065 | if (error) |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 1066 | goto rx_cleanup; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1067 | |
Ben Greear | eb27244 | 2010-11-29 14:13:22 -0800 | [diff] [blame] | 1068 | error = ath9k_init_debug(ah); |
| 1069 | if (error) { |
Joe Perches | 3800276 | 2010-12-02 19:12:36 -0800 | [diff] [blame] | 1070 | ath_err(common, "Unable to create debugfs files\n"); |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 1071 | goto unregister; |
Ben Greear | eb27244 | 2010-11-29 14:13:22 -0800 | [diff] [blame] | 1072 | } |
| 1073 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1074 | /* Handle world regulatory */ |
| 1075 | if (!ath_is_world_regd(reg)) { |
| 1076 | error = regulatory_hint(hw->wiphy, reg->alpha2); |
| 1077 | if (error) |
Sujith Manoharan | af69009 | 2013-05-10 18:41:06 +0530 | [diff] [blame] | 1078 | goto debug_cleanup; |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1079 | } |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1080 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1081 | ath_init_leds(sc); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1082 | ath_start_rfkill_poll(sc); |
| 1083 | |
| 1084 | return 0; |
| 1085 | |
Sujith Manoharan | af69009 | 2013-05-10 18:41:06 +0530 | [diff] [blame] | 1086 | debug_cleanup: |
| 1087 | ath9k_deinit_debug(sc); |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 1088 | unregister: |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1089 | ieee80211_unregister_hw(hw); |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 1090 | rx_cleanup: |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1091 | ath_rx_cleanup(sc); |
Felix Fietkau | b81950b1 | 2012-12-12 13:14:22 +0100 | [diff] [blame] | 1092 | deinit: |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1093 | ath9k_deinit_softc(sc); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1094 | return error; |
| 1095 | } |
| 1096 | |
| 1097 | /*****************************/ |
| 1098 | /* De-Initialization */ |
| 1099 | /*****************************/ |
| 1100 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1101 | static void ath9k_deinit_softc(struct ath_softc *sc) |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1102 | { |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1103 | int i = 0; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1104 | |
Sujith Manoharan | c7dd40c | 2014-08-22 20:39:30 +0530 | [diff] [blame] | 1105 | ath9k_deinit_p2p(sc); |
Sujith Manoharan | 5908120 | 2012-02-22 12:40:21 +0530 | [diff] [blame] | 1106 | ath9k_deinit_btcoex(sc); |
Mohammed Shafi Shajakhan | 19686dd | 2011-11-30 10:41:28 +0530 | [diff] [blame] | 1107 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1108 | for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++) |
| 1109 | if (ATH_TXQ_SETUP(sc, i)) |
| 1110 | ath_tx_cleanupq(sc, &sc->tx.txq[i]); |
| 1111 | |
Felix Fietkau | bf3dac5 | 2013-11-11 22:23:33 +0100 | [diff] [blame] | 1112 | del_timer_sync(&sc->sleep_timer); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1113 | ath9k_hw_deinit(sc->sc_ah); |
Zefir Kurtisi | 8e92d3f | 2012-04-03 17:15:50 +0200 | [diff] [blame] | 1114 | if (sc->dfs_detector != NULL) |
| 1115 | sc->dfs_detector->exit(sc->dfs_detector); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1116 | |
Gabor Juhos | ab5c4f7 | 2012-12-10 15:30:28 +0100 | [diff] [blame] | 1117 | ath9k_eeprom_release(sc); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1118 | } |
| 1119 | |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1120 | void ath9k_deinit_device(struct ath_softc *sc) |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1121 | { |
| 1122 | struct ieee80211_hw *hw = sc->hw; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1123 | |
| 1124 | ath9k_ps_wakeup(sc); |
| 1125 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1126 | wiphy_rfkill_stop_polling(sc->hw->wiphy); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1127 | ath_deinit_leds(sc); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1128 | |
Rajkumar Manoharan | c7c1806 | 2011-01-27 18:39:38 +0530 | [diff] [blame] | 1129 | ath9k_ps_restore(sc); |
| 1130 | |
Sujith Manoharan | af69009 | 2013-05-10 18:41:06 +0530 | [diff] [blame] | 1131 | ath9k_deinit_debug(sc); |
Sujith Manoharan | 661d258 | 2015-01-30 19:05:26 +0530 | [diff] [blame] | 1132 | ath9k_deinit_wow(hw); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1133 | ieee80211_unregister_hw(hw); |
| 1134 | ath_rx_cleanup(sc); |
Sujith | 285f2dd | 2010-01-08 10:36:07 +0530 | [diff] [blame] | 1135 | ath9k_deinit_softc(sc); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1136 | } |
| 1137 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1138 | /************************/ |
| 1139 | /* Module Hooks */ |
| 1140 | /************************/ |
| 1141 | |
| 1142 | static int __init ath9k_init(void) |
| 1143 | { |
| 1144 | int error; |
| 1145 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1146 | error = ath_pci_init(); |
| 1147 | if (error < 0) { |
Joe Perches | 516304b | 2012-03-18 17:30:52 -0700 | [diff] [blame] | 1148 | pr_err("No PCI devices found, driver not installed\n"); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1149 | error = -ENODEV; |
Sujith Manoharan | 9e495a2 | 2014-02-06 10:22:55 +0530 | [diff] [blame] | 1150 | goto err_out; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1151 | } |
| 1152 | |
| 1153 | error = ath_ahb_init(); |
| 1154 | if (error < 0) { |
| 1155 | error = -ENODEV; |
| 1156 | goto err_pci_exit; |
| 1157 | } |
| 1158 | |
AceLan Kao | 3153b68 | 2018-01-16 11:43:50 +0200 | [diff] [blame] | 1159 | dmi_check_system(ath9k_quirks); |
| 1160 | |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1161 | return 0; |
| 1162 | |
| 1163 | err_pci_exit: |
| 1164 | ath_pci_exit(); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1165 | err_out: |
| 1166 | return error; |
| 1167 | } |
| 1168 | module_init(ath9k_init); |
| 1169 | |
| 1170 | static void __exit ath9k_exit(void) |
| 1171 | { |
Rajkumar Manoharan | d584747 | 2010-12-20 14:39:51 +0530 | [diff] [blame] | 1172 | is_ath9k_unloaded = true; |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1173 | ath_ahb_exit(); |
| 1174 | ath_pci_exit(); |
Joe Perches | 516304b | 2012-03-18 17:30:52 -0700 | [diff] [blame] | 1175 | pr_info("%s: Driver unloaded\n", dev_info); |
Sujith | 5562420 | 2010-01-08 10:36:02 +0530 | [diff] [blame] | 1176 | } |
| 1177 | module_exit(ath9k_exit); |