blob: 4f00400c7ffb83545d461c623f055b73481efb02 [file] [log] [blame]
Sujith55624202010-01-08 10:36:02 +05301/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2008-2011 Atheros Communications Inc.
Sujith55624202010-01-08 10:36:02 +05303 *
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 Perches516304b2012-03-18 17:30:52 -070017#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18
Alexey Dobriyanb7f080c2011-06-16 11:01:34 +000019#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Felix Fietkau6fb1b1e2011-03-19 13:55:39 +010021#include <linux/ath9k_platform.h>
Paul Gortmaker9d9779e2011-07-03 15:21:01 -040022#include <linux/module.h>
Martin Blumenstingl138b4122016-10-16 22:59:07 +020023#include <linux/of.h>
24#include <linux/of_net.h>
Christian Lampartereb3a97a2021-09-13 15:40:35 +030025#include <linux/nvmem-consumer.h>
Simon Wunderliche93d0832013-01-08 14:48:58 +010026#include <linux/relay.h>
AceLan Kao3153b682018-01-16 11:43:50 +020027#include <linux/dmi.h>
Oleksij Rempelb0a1ae92013-05-24 20:30:59 +020028#include <net/ieee80211_radiotap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029
Sujith55624202010-01-08 10:36:02 +053030#include "ath9k.h"
31
Gabor Juhosab5c4f72012-12-10 15:30:28 +010032struct ath9k_eeprom_ctx {
33 struct completion complete;
34 struct ath_hw *ah;
35};
36
Sujith55624202010-01-08 10:36:02 +053037static char *dev_info = "ath9k";
38
39MODULE_AUTHOR("Atheros Communications");
40MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
Sujith55624202010-01-08 10:36:02 +053041MODULE_LICENSE("Dual BSD/GPL");
42
43static unsigned int ath9k_debug = ATH_DBG_DEFAULT;
44module_param_named(debug, ath9k_debug, uint, 0);
45MODULE_PARM_DESC(debug, "Debugging mask");
46
John W. Linville3e6109c2011-01-05 09:39:17 -050047int ath9k_modparam_nohwcrypt;
48module_param_named(nohwcrypt, ath9k_modparam_nohwcrypt, int, 0444);
Sujith55624202010-01-08 10:36:02 +053049MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption");
50
Hong Xu0c8a1e42015-01-24 03:34:03 -080051int ath9k_led_blink;
52module_param_named(blink, ath9k_led_blink, int, 0444);
Vivek Natarajan9a75c2f2010-06-22 11:52:37 +053053MODULE_PARM_DESC(blink, "Enable LED blink on activity");
54
Vittorio Gambaletta (VittGam)cd840422016-04-11 04:48:54 +020055static int ath9k_led_active_high = -1;
56module_param_named(led_active_high, ath9k_led_active_high, int, 0444);
57MODULE_PARM_DESC(led_active_high, "Invert LED polarity");
58
Vasanthakumar Thiagarajan8f5dcb12010-11-26 06:10:06 -080059static int ath9k_btcoex_enable;
60module_param_named(btcoex_enable, ath9k_btcoex_enable, int, 0444);
61MODULE_PARM_DESC(btcoex_enable, "Enable wifi-BT coexistence");
62
Sujith Manoharan63081302013-08-04 14:21:55 +053063static int ath9k_bt_ant_diversity;
64module_param_named(bt_ant_diversity, ath9k_bt_ant_diversity, int, 0444);
65MODULE_PARM_DESC(bt_ant_diversity, "Enable WLAN/BT RX antenna diversity");
Sujith Manoharane09f2dc2012-09-16 08:06:56 +053066
Sujith Manoharan82983832014-02-04 08:37:53 +053067static int ath9k_ps_enable;
68module_param_named(ps_enable, ath9k_ps_enable, int, 0444);
69MODULE_PARM_DESC(ps_enable, "Enable WLAN PowerSave");
70
Sujith Manoharan499afac2014-08-22 20:39:31 +053071#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
72
Felix Fietkau78b21942014-06-11 16:17:55 +053073int ath9k_use_chanctx;
Rajkumar Manoharan71a5f882014-05-29 15:11:09 +053074module_param_named(use_chanctx, ath9k_use_chanctx, int, 0444);
75MODULE_PARM_DESC(use_chanctx, "Enable channel context for concurrency");
76
Sujith Manoharan499afac2014-08-22 20:39:31 +053077#endif /* CONFIG_ATH9K_CHANNEL_CONTEXT */
78
Russell Hu73681602018-01-16 11:43:47 +020079int ath9k_use_msi;
80module_param_named(use_msi, ath9k_use_msi, int, 0444);
81MODULE_PARM_DESC(use_msi, "Use MSI instead of INTx if possible");
82
Rajkumar Manoharand5847472010-12-20 14:39:51 +053083bool is_ath9k_unloaded;
Sujith55624202010-01-08 10:36:02 +053084
Felix Fietkau0cf55c22011-02-27 22:26:40 +010085#ifdef CONFIG_MAC80211_LEDS
86static 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 Kao3153b682018-01-16 11:43:50 +0200100static int __init set_use_msi(const struct dmi_system_id *dmi)
101{
102 ath9k_use_msi = 1;
103 return 1;
104}
105
106static 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
Sujith285f2dd2010-01-08 10:36:07 +0530150static void ath9k_deinit_softc(struct ath_softc *sc);
Sujith55624202010-01-08 10:36:02 +0530151
kbuild test robotd81f9a02014-11-12 06:19:48 +0800152static void ath9k_op_ps_wakeup(struct ath_common *common)
Oleksij Rempel99d22172014-11-06 08:53:25 +0100153{
154 ath9k_ps_wakeup((struct ath_softc *) common->priv);
155}
156
kbuild test robotd81f9a02014-11-12 06:19:48 +0800157static void ath9k_op_ps_restore(struct ath_common *common)
Oleksij Rempel99d22172014-11-06 08:53:25 +0100158{
159 ath9k_ps_restore((struct ath_softc *) common->priv);
160}
161
Bhumika Goyal3588e112017-08-03 20:25:31 +0530162static const struct ath_ps_ops ath9k_ps_ops = {
Oleksij Rempel99d22172014-11-06 08:53:25 +0100163 .wakeup = ath9k_op_ps_wakeup,
164 .restore = ath9k_op_ps_restore,
165};
166
Sujith55624202010-01-08 10:36:02 +0530167/*
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
173static void ath9k_iowrite32(void *hw_priv, u32 val, u32 reg_offset)
174{
Himanshu Jha50c8cd42017-09-01 12:13:34 +0530175 struct ath_hw *ah = hw_priv;
Sujith55624202010-01-08 10:36:02 +0530176 struct ath_common *common = ath9k_hw_common(ah);
177 struct ath_softc *sc = (struct ath_softc *) common->priv;
178
Felix Fietkauf3eef642012-03-14 16:40:25 +0100179 if (NR_CPUS > 1 && ah->config.serialize_regmode == SER_REG_MODE_ON) {
Sujith55624202010-01-08 10:36:02 +0530180 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
188static unsigned int ath9k_ioread32(void *hw_priv, u32 reg_offset)
189{
Himanshu Jha50c8cd42017-09-01 12:13:34 +0530190 struct ath_hw *ah = hw_priv;
Sujith55624202010-01-08 10:36:02 +0530191 struct ath_common *common = ath9k_hw_common(ah);
192 struct ath_softc *sc = (struct ath_softc *) common->priv;
193 u32 val;
194
Felix Fietkauf3eef642012-03-14 16:40:25 +0100195 if (NR_CPUS > 1 && ah->config.serialize_regmode == SER_REG_MODE_ON) {
Sujith55624202010-01-08 10:36:02 +0530196 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 Rempeld55ce0a2015-03-22 19:29:50 +0100205static 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 Manoharan5479de62011-07-17 11:43:02 +0530215static 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 Fietkau845e03c2011-03-23 20:57:25 +0100228static unsigned int ath9k_reg_rmw(void *hw_priv, u32 reg_offset, u32 set, u32 clr)
229{
Himanshu Jha50c8cd42017-09-01 12:13:34 +0530230 struct ath_hw *ah = hw_priv;
Felix Fietkau845e03c2011-03-23 20:57:25 +0100231 struct ath_common *common = ath9k_hw_common(ah);
232 struct ath_softc *sc = (struct ath_softc *) common->priv;
Kees Cook3f649ab2020-06-03 13:09:38 -0700233 unsigned long flags;
Felix Fietkau845e03c2011-03-23 20:57:25 +0100234 u32 val;
235
Felix Fietkauf3eef642012-03-14 16:40:25 +0100236 if (NR_CPUS > 1 && ah->config.serialize_regmode == SER_REG_MODE_ON) {
Felix Fietkau845e03c2011-03-23 20:57:25 +0100237 spin_lock_irqsave(&sc->sc_serial_rw, flags);
Rajkumar Manoharan5479de62011-07-17 11:43:02 +0530238 val = __ath9k_reg_rmw(sc, reg_offset, set, clr);
Felix Fietkau845e03c2011-03-23 20:57:25 +0100239 spin_unlock_irqrestore(&sc->sc_serial_rw, flags);
Rajkumar Manoharan5479de62011-07-17 11:43:02 +0530240 } else
241 val = __ath9k_reg_rmw(sc, reg_offset, set, clr);
Felix Fietkau845e03c2011-03-23 20:57:25 +0100242
243 return val;
244}
245
Sujith55624202010-01-08 10:36:02 +0530246/**************************/
247/* Initialization */
248/**************************/
249
Luis R. Rodriguez0c0280b2013-01-11 18:39:36 +0000250static void ath9k_reg_notifier(struct wiphy *wiphy,
251 struct regulatory_request *request)
Sujith55624202010-01-08 10:36:02 +0530252{
253 struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy);
Felix Fietkau9ac586152011-01-24 19:23:18 +0100254 struct ath_softc *sc = hw->priv;
Rajkumar Manoharan687f5452011-12-08 23:59:25 +0530255 struct ath_hw *ah = sc->sc_ah;
256 struct ath_regulatory *reg = ath9k_hw_regulatory(ah);
Sujith55624202010-01-08 10:36:02 +0530257
Luis R. Rodriguez0c0280b2013-01-11 18:39:36 +0000258 ath_reg_notifier_apply(wiphy, request, reg);
Rajkumar Manoharan687f5452011-12-08 23:59:25 +0530259
Timothy Redaelli4415d582018-03-27 11:25:25 +0300260 /* 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 Manoharan687f5452011-12-08 23:59:25 +0530265 /* Set tx power */
Felix Fietkaud385c5c2014-11-04 16:56:57 +0100266 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 Fietkaud385c5c2014-11-04 16:56:57 +0100275 ath9k_ps_restore(sc);
Sujith55624202010-01-08 10:36:02 +0530276}
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*/
283int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd,
284 struct list_head *head, const char *name,
Vasanthakumar Thiagarajan4adfcde2010-04-15 17:39:33 -0400285 int nbuf, int ndesc, bool is_tx)
Sujith55624202010-01-08 10:36:02 +0530286{
Sujith55624202010-01-08 10:36:02 +0530287 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Vasanthakumar Thiagarajan4adfcde2010-04-15 17:39:33 -0400288 u8 *ds;
Felix Fietkaub81950b12012-12-12 13:14:22 +0100289 int i, bsize, desc_len;
Sujith55624202010-01-08 10:36:02 +0530290
Joe Perchesd2182b62011-12-15 14:55:53 -0800291 ath_dbg(common, CONFIG, "%s DMA: %u buffers %u desc/buf\n",
Joe Perches226afe62010-12-02 19:12:37 -0800292 name, nbuf, ndesc);
Sujith55624202010-01-08 10:36:02 +0530293
294 INIT_LIST_HEAD(head);
Vasanthakumar Thiagarajan4adfcde2010-04-15 17:39:33 -0400295
296 if (is_tx)
297 desc_len = sc->sc_ah->caps.tx_desc_len;
298 else
299 desc_len = sizeof(struct ath_desc);
300
Sujith55624202010-01-08 10:36:02 +0530301 /* ath_desc must be a multiple of DWORDs */
Vasanthakumar Thiagarajan4adfcde2010-04-15 17:39:33 -0400302 if ((desc_len % 4) != 0) {
Joe Perches38002762010-12-02 19:12:36 -0800303 ath_err(common, "ath_desc not DWORD aligned\n");
Vasanthakumar Thiagarajan4adfcde2010-04-15 17:39:33 -0400304 BUG_ON((desc_len % 4) != 0);
Felix Fietkaub81950b12012-12-12 13:14:22 +0100305 return -ENOMEM;
Sujith55624202010-01-08 10:36:02 +0530306 }
307
Vasanthakumar Thiagarajan4adfcde2010-04-15 17:39:33 -0400308 dd->dd_desc_len = desc_len * nbuf * ndesc;
Sujith55624202010-01-08 10:36:02 +0530309
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 Thiagarajan4adfcde2010-04-15 17:39:33 -0400321 dma_len = ndesc_skipped * desc_len;
Sujith55624202010-01-08 10:36:02 +0530322 dd->dd_desc_len += dma_len;
323
324 ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len);
Joe Perchesee289b62010-05-17 22:47:34 -0700325 }
Sujith55624202010-01-08 10:36:02 +0530326 }
327
328 /* allocate descriptors */
Felix Fietkaub81950b12012-12-12 13:14:22 +0100329 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 Jha50c8cd42017-09-01 12:13:34 +0530334 ds = dd->dd_desc;
Joe Perchesd2182b62011-12-15 14:55:53 -0800335 ath_dbg(common, CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n",
Joe Perches226afe62010-12-02 19:12:37 -0800336 name, ds, (u32) dd->dd_desc_len,
337 ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len);
Sujith55624202010-01-08 10:36:02 +0530338
339 /* allocate buffers */
Felix Fietkau1a04d592013-10-11 23:30:52 +0200340 if (is_tx) {
341 struct ath_buf *bf;
Sujith55624202010-01-08 10:36:02 +0530342
Felix Fietkau1a04d592013-10-11 23:30:52 +0200343 bsize = sizeof(struct ath_buf) * nbuf;
344 bf = devm_kzalloc(sc->dev, bsize, GFP_KERNEL);
345 if (!bf)
346 return -ENOMEM;
Sujith55624202010-01-08 10:36:02 +0530347
Felix Fietkau1a04d592013-10-11 23:30:52 +0200348 for (i = 0; i < nbuf; i++, bf++, ds += (desc_len * ndesc)) {
349 bf->bf_desc = ds;
350 bf->bf_daddr = DS2PHYS(dd, ds);
Sujith55624202010-01-08 10:36:02 +0530351
Felix Fietkau1a04d592013-10-11 23:30:52 +0200352 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 }
Sujith55624202010-01-08 10:36:02 +0530368 }
Felix Fietkau1a04d592013-10-11 23:30:52 +0200369 list_add_tail(&bf->list, head);
Sujith55624202010-01-08 10:36:02 +0530370 }
Felix Fietkau1a04d592013-10-11 23:30:52 +0200371 } 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 }
Sujith55624202010-01-08 10:36:02 +0530402 }
403 return 0;
Sujith55624202010-01-08 10:36:02 +0530404}
405
Sujith285f2dd2010-01-08 10:36:07 +0530406static int ath9k_init_queues(struct ath_softc *sc)
407{
Sujith285f2dd2010-01-08 10:36:07 +0530408 int i = 0;
Sujith55624202010-01-08 10:36:02 +0530409
Sujith285f2dd2010-01-08 10:36:07 +0530410 sc->beacon.beaconq = ath9k_hw_beaconq_setup(sc->sc_ah);
Sujith285f2dd2010-01-08 10:36:07 +0530411 sc->beacon.cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0);
Sujith285f2dd2010-01-08 10:36:07 +0530412 ath_cabq_update(sc);
413
Felix Fietkauf2c7a792013-06-07 18:12:00 +0200414 sc->tx.uapsdq = ath_txq_setup(sc, ATH9K_TX_QUEUE_UAPSD, 0);
415
Sujith Manoharanbea843c2012-11-21 18:13:10 +0530416 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
Felix Fietkau066dae92010-11-07 14:59:39 +0100417 sc->tx.txq_map[i] = ath_txq_setup(sc, ATH9K_TX_QUEUE_DATA, i);
Ben Greear60f2d1d2011-01-09 23:11:52 -0800418 sc->tx.txq_map[i]->mac80211_qnum = i;
419 }
Sujith285f2dd2010-01-08 10:36:07 +0530420 return 0;
Sujith285f2dd2010-01-08 10:36:07 +0530421}
422
Sujith285f2dd2010-01-08 10:36:07 +0530423static 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 Manoharan3d4e20f2012-03-14 14:40:58 +0530427
Kees Cook7ac76762017-10-24 02:29:54 -0700428 timer_setup(&common->ani.timer, ath_ani_calibrate, 0);
Sujith285f2dd2010-01-08 10:36:07 +0530429
Oleksij Rempel32efb0c2014-02-04 10:27:39 +0100430 common->last_rssi = ATH_RSSI_DUMMY_MARKER;
Joe Perchesa72c9262018-03-21 03:32:52 -0700431 eth_broadcast_addr(common->bssidmask);
Benjamin Berg11b0ac22016-07-04 14:37:24 +0200432 sc->beacon.slottime = 9;
Sujith285f2dd2010-01-08 10:36:07 +0530433
Felix Fietkau7545daf2011-01-24 19:23:16 +0100434 for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++)
Sujith285f2dd2010-01-08 10:36:07 +0530435 sc->beacon.bslot[i] = NULL;
Vasanthakumar Thiagarajan102885a2010-09-02 01:34:43 -0700436
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 Wunderlich04ccd4a2013-01-23 17:38:04 +0100439
Oleksij Rempeldd7657b2014-11-06 08:53:22 +0100440 sc->spec_priv.ah = sc->sc_ah;
Oleksij Rempel21af25d2014-11-06 08:53:20 +0100441 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;
Sujith285f2dd2010-01-08 10:36:07 +0530447}
448
Sujith Manoharan0f978bf2013-12-06 16:28:45 +0530449static void ath9k_init_pcoem_platform(struct ath_softc *sc)
Sujith Manoharan9b60b642013-06-13 22:51:26 +0530450{
451 struct ath_hw *ah = sc->sc_ah;
Sujith Manoharan3f2da952013-08-04 14:21:56 +0530452 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujith Manoharan9b60b642013-06-13 22:51:26 +0530453 struct ath_common *common = ath9k_hw_common(ah);
454
Felix Fietkau935477e2014-10-25 17:19:26 +0200455 if (!IS_ENABLED(CONFIG_ATH9K_PCOEM))
456 return;
457
Sujith Manoharan9b60b642013-06-13 22:51:26 +0530458 if (common->bus_ops->ath_bus_type != ATH_PCI)
459 return;
460
Sujith Manoharane861ef52013-06-18 10:13:43 +0530461 if (sc->driver_data & (ATH9K_PCI_CUS198 |
462 ATH9K_PCI_CUS230)) {
Sujith Manoharan9b60b642013-06-13 22:51:26 +0530463 ah->config.xlna_gpio = 9;
464 ah->config.xatten_margin_cfg = true;
Sujith Manoharane083a422013-08-19 11:04:01 +0530465 ah->config.alt_mingainidx = true;
Sujith Manoharan31fd2162013-08-04 14:22:01 +0530466 ah->config.ant_ctrl_comm2g_switch_enable = 0x000BBB88;
Sujith Manoharan3afa6b42013-08-04 14:21:54 +0530467 sc->ant_comb.low_rssi_thresh = 20;
468 sc->ant_comb.fast_div_bias = 3;
Sujith Manoharan9b60b642013-06-13 22:51:26 +0530469
Sujith Manoharane861ef52013-06-18 10:13:43 +0530470 ath_info(common, "Set parameters for %s\n",
471 (sc->driver_data & ATH9K_PCI_CUS198) ?
472 "CUS198" : "CUS230");
Sujith Manoharan3f2da952013-08-04 14:21:56 +0530473 }
474
475 if (sc->driver_data & ATH9K_PCI_CUS217)
Sujith Manoharan12eea642013-06-18 15:42:36 +0530476 ath_info(common, "CUS217 card detected\n");
Sujith Manoharan3f2da952013-08-04 14:21:56 +0530477
Sujith Manoharan10631332013-09-02 13:59:05 +0530478 if (sc->driver_data & ATH9K_PCI_CUS252)
479 ath_info(common, "CUS252 card detected\n");
480
Sujith Manoharan3fcdd0a2013-09-02 13:59:06 +0530481 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 Manoharan4dd35642013-10-23 14:26:04 +0530487 if (sc->driver_data & ATH9K_PCI_KILLER)
488 ath_info(common, "Killer Wireless card detected\n");
489
Sujith Manoharan3fcdd0a2013-09-02 13:59:06 +0530490 /*
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 Manoharan3f2da952013-08-04 14:21:56 +0530501 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 Manoharan9b60b642013-06-13 22:51:26 +0530504 }
Sujith Manoharand1ae25a2013-08-25 16:30:40 +0530505
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 Manoharan2d22c7d2013-11-08 11:45:25 +0530510
Sujith Manoharanafa7e6d2015-03-09 14:20:07 +0530511 /*
512 * The default value of pll_pwrsave is 1.
513 * For certain AR9485 cards, it is set to 0.
Sujith Manoharan656cd752015-03-09 14:20:08 +0530514 * For AR9462, AR9565 it's set to 7.
Sujith Manoharanafa7e6d2015-03-09 14:20:07 +0530515 */
516 ah->config.pll_pwrsave = 1;
517
Sujith Manoharan2d22c7d2013-11-08 11:45:25 +0530518 if (sc->driver_data & ATH9K_PCI_NO_PLL_PWRSAVE) {
Sujith Manoharanafa7e6d2015-03-09 14:20:07 +0530519 ah->config.pll_pwrsave = 0;
Sujith Manoharan2d22c7d2013-11-08 11:45:25 +0530520 ath_info(common, "Disable PLL PowerSave\n");
521 }
Sujith Manoharanaeeb2062014-11-16 06:11:02 +0530522
523 if (sc->driver_data & ATH9K_PCI_LED_ACT_HI)
524 ah->config.led_active_high = true;
Sujith Manoharan9b60b642013-06-13 22:51:26 +0530525}
526
Gabor Juhosab5c4f72012-12-10 15:30:28 +0100527static 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
538static int ath9k_eeprom_request(struct ath_softc *sc, const char *name)
539{
540 struct ath9k_eeprom_ctx ec;
Colin Ian King47f58b12016-04-10 12:25:31 +0100541 struct ath_hw *ah = sc->sc_ah;
Gabor Juhosab5c4f72012-12-10 15:30:28 +0100542 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
567static void ath9k_eeprom_release(struct ath_softc *sc)
568{
569 release_firmware(sc->sc_ah->eeprom_blob);
570}
571
Christian Lampartereb3a97a2021-09-13 15:40:35 +0300572static int ath9k_nvmem_request_eeprom(struct ath_softc *sc)
573{
574 struct ath_hw *ah = sc->sc_ah;
575 struct nvmem_cell *cell;
576 void *buf;
577 size_t len;
578 int err;
579
580 cell = devm_nvmem_cell_get(sc->dev, "calibration");
581 if (IS_ERR(cell)) {
582 err = PTR_ERR(cell);
583
584 /* nvmem cell might not be defined, or the nvmem
585 * subsystem isn't included. In this case, follow
586 * the established "just return 0;" convention of
587 * ath9k_init_platform to say:
588 * "All good. Nothing to see here. Please go on."
589 */
590 if (err == -ENOENT || err == -EOPNOTSUPP)
591 return 0;
592
593 return err;
594 }
595
596 buf = nvmem_cell_read(cell, &len);
597 if (IS_ERR(buf))
598 return PTR_ERR(buf);
599
600 /* run basic sanity checks on the returned nvram cell length.
601 * That length has to be a multiple of a "u16" (i.e.: & 1).
602 * Furthermore, it has to be more than "let's say" 512 bytes
603 * but less than the maximum of AR9300_EEPROM_SIZE (16kb).
604 */
605 if ((len & 1) == 1 || len < 512 || len >= AR9300_EEPROM_SIZE) {
606 kfree(buf);
607 return -EINVAL;
608 }
609
610 /* devres manages the calibration values release on shutdown */
611 ah->nvmem_blob = (u16 *)devm_kmemdup(sc->dev, buf, len, GFP_KERNEL);
612 kfree(buf);
Dan Carpenter57671352021-10-11 18:18:01 +0300613 if (!ah->nvmem_blob)
614 return -ENOMEM;
Christian Lampartereb3a97a2021-09-13 15:40:35 +0300615
616 ah->nvmem_blob_len = len;
617 ah->ah_flags &= ~AH_USE_EEPROM;
618 ah->ah_flags |= AH_NO_EEP_SWAP;
619
620 return 0;
621}
622
Martin Blumenstingl28755b82016-06-23 16:57:13 +0200623static int ath9k_init_platform(struct ath_softc *sc)
Sujith Manoharan0f978bf2013-12-06 16:28:45 +0530624{
625 struct ath9k_platform_data *pdata = sc->dev->platform_data;
626 struct ath_hw *ah = sc->sc_ah;
Martin Blumenstingl28755b82016-06-23 16:57:13 +0200627 struct ath_common *common = ath9k_hw_common(ah);
628 int ret;
Sujith Manoharan0f978bf2013-12-06 16:28:45 +0530629
630 if (!pdata)
631 return 0;
632
Martin Blumenstingl28755b82016-06-23 16:57:13 +0200633 if (!pdata->use_eeprom) {
634 ah->ah_flags &= ~AH_USE_EEPROM;
635 ah->gpio_mask = pdata->gpio_mask;
636 ah->gpio_val = pdata->gpio_val;
637 ah->led_pin = pdata->led_pin;
638 ah->is_clk_25mhz = pdata->is_clk_25mhz;
639 ah->get_mac_revision = pdata->get_mac_revision;
640 ah->external_reset = pdata->external_reset;
641 ah->disable_2ghz = pdata->disable_2ghz;
642 ah->disable_5ghz = pdata->disable_5ghz;
643
644 if (!pdata->endian_check)
645 ah->ah_flags |= AH_NO_EEP_SWAP;
646 }
647
Sujith Manoharan0f978bf2013-12-06 16:28:45 +0530648 if (pdata->eeprom_name) {
649 ret = ath9k_eeprom_request(sc, pdata->eeprom_name);
650 if (ret)
651 return ret;
652 }
653
Martin Blumenstingl3467f0d2016-06-23 16:57:09 +0200654 if (pdata->led_active_high)
655 ah->config.led_active_high = true;
656
Sujith Manoharan0f978bf2013-12-06 16:28:45 +0530657 if (pdata->tx_gain_buffalo)
658 ah->config.tx_gain_buffalo = true;
659
Martin Blumenstingl28755b82016-06-23 16:57:13 +0200660 if (pdata->macaddr)
661 ether_addr_copy(common->macaddr, pdata->macaddr);
662
663 return 0;
Sujith Manoharan0f978bf2013-12-06 16:28:45 +0530664}
665
Martin Blumenstingl138b4122016-10-16 22:59:07 +0200666static int ath9k_of_init(struct ath_softc *sc)
667{
668 struct device_node *np = sc->dev->of_node;
669 struct ath_hw *ah = sc->sc_ah;
670 struct ath_common *common = ath9k_hw_common(ah);
671 enum ath_bus_type bus_type = common->bus_ops->ath_bus_type;
Martin Blumenstingl138b4122016-10-16 22:59:07 +0200672 char eeprom_name[100];
673 int ret;
674
675 if (!of_device_is_available(np))
676 return 0;
677
678 ath_dbg(common, CONFIG, "parsing configuration from OF node\n");
679
680 if (of_property_read_bool(np, "qca,no-eeprom")) {
681 /* ath9k-eeprom-<bus>-<id>.bin */
682 scnprintf(eeprom_name, sizeof(eeprom_name),
683 "ath9k-eeprom-%s-%s.bin",
684 ath_bus_type_to_string(bus_type), dev_name(ah->dev));
685
686 ret = ath9k_eeprom_request(sc, eeprom_name);
687 if (ret)
688 return ret;
Daniel F. Dickinsonce938232018-12-22 01:09:13 -0500689
690 ah->ah_flags &= ~AH_USE_EEPROM;
691 ah->ah_flags |= AH_NO_EEP_SWAP;
Martin Blumenstingl138b4122016-10-16 22:59:07 +0200692 }
693
Michael Walle83216e32021-04-12 19:47:17 +0200694 of_get_mac_address(np, common->macaddr);
Martin Blumenstingl138b4122016-10-16 22:59:07 +0200695
Martin Blumenstingl138b4122016-10-16 22:59:07 +0200696 return 0;
697}
698
Pavel Roskineb93e892011-07-23 03:55:39 -0400699static int ath9k_init_softc(u16 devid, struct ath_softc *sc,
Sujith285f2dd2010-01-08 10:36:07 +0530700 const struct ath_bus_ops *bus_ops)
701{
702 struct ath_hw *ah = NULL;
Sujith Manoharan3f2da952013-08-04 14:21:56 +0530703 struct ath9k_hw_capabilities *pCap;
Sujith285f2dd2010-01-08 10:36:07 +0530704 struct ath_common *common;
705 int ret = 0, i;
706 int csz = 0;
707
Felix Fietkaub81950b12012-12-12 13:14:22 +0100708 ah = devm_kzalloc(sc->dev, sizeof(struct ath_hw), GFP_KERNEL);
Sujith285f2dd2010-01-08 10:36:07 +0530709 if (!ah)
710 return -ENOMEM;
711
Felix Fietkauc1b976d2012-12-12 13:14:23 +0100712 ah->dev = sc->dev;
Ben Greear233536e2011-01-09 23:11:44 -0800713 ah->hw = sc->hw;
Sujith285f2dd2010-01-08 10:36:07 +0530714 ah->hw_version.devid = devid;
Martin Blumenstingl28755b82016-06-23 16:57:13 +0200715 ah->ah_flags |= AH_USE_EEPROM;
716 ah->led_pin = -1;
Felix Fietkauf9f84e92011-03-23 20:57:24 +0100717 ah->reg_ops.read = ath9k_ioread32;
Oleksij Rempeld55ce0a2015-03-22 19:29:50 +0100718 ah->reg_ops.multi_read = ath9k_multi_ioread32;
Felix Fietkauf9f84e92011-03-23 20:57:24 +0100719 ah->reg_ops.write = ath9k_iowrite32;
Felix Fietkau845e03c2011-03-23 20:57:25 +0100720 ah->reg_ops.rmw = ath9k_reg_rmw;
Sujith Manoharan3f2da952013-08-04 14:21:56 +0530721 pCap = &ah->caps;
Sujith285f2dd2010-01-08 10:36:07 +0530722
Janusz Dziedzic95a59922013-10-14 11:06:03 +0200723 common = ath9k_hw_common(ah);
Felix Fietkau56bdbe02014-11-30 21:58:30 +0100724
725 /* Will be cleared in ath9k_start() */
726 set_bit(ATH_OP_INVALID, &common->op_flags);
727
728 sc->sc_ah = ah;
Janusz Dziedzic95a59922013-10-14 11:06:03 +0200729 sc->dfs_detector = dfs_pattern_detector_init(common, NL80211_DFS_UNSET);
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -0700730 sc->tx99_power = MAX_RATE_POWER + 1;
Felix Fietkau10e23182013-11-11 22:23:35 +0100731 init_waitqueue_head(&sc->tx_wait);
Rajkumar Manoharanca900ac2014-06-11 16:18:02 +0530732 sc->cur_chan = &sc->chanctx[0];
Sujith Manoharan499afac2014-08-22 20:39:31 +0530733 if (!ath9k_is_chanctx_enabled())
Rajkumar Manoharan3ad9c382014-06-11 16:18:15 +0530734 sc->cur_chan->hw_queue_base = 0;
Zefir Kurtisi8e92d3f2012-04-03 17:15:50 +0200735
Felix Fietkauf9f84e92011-03-23 20:57:24 +0100736 common->ops = &ah->reg_ops;
Sujith285f2dd2010-01-08 10:36:07 +0530737 common->bus_ops = bus_ops;
Oleksij Rempel99d22172014-11-06 08:53:25 +0100738 common->ps_ops = &ath9k_ps_ops;
Sujith285f2dd2010-01-08 10:36:07 +0530739 common->ah = ah;
740 common->hw = sc->hw;
741 common->priv = sc;
742 common->debug_mask = ath9k_debug;
Vasanthakumar Thiagarajan8f5dcb12010-11-26 06:10:06 -0800743 common->btcoex_enabled = ath9k_btcoex_enable == 1;
Mohammed Shafi Shajakhan05c0be22011-05-26 10:56:15 +0530744 common->disable_ani = false;
Sujith Manoharane09f2dc2012-09-16 08:06:56 +0530745
746 /*
Sujith Manoharan9b60b642013-06-13 22:51:26 +0530747 * Platform quirks.
748 */
Sujith Manoharan0f978bf2013-12-06 16:28:45 +0530749 ath9k_init_pcoem_platform(sc);
750
Martin Blumenstingl28755b82016-06-23 16:57:13 +0200751 ret = ath9k_init_platform(sc);
Sujith Manoharan0f978bf2013-12-06 16:28:45 +0530752 if (ret)
753 return ret;
Sujith Manoharan9b60b642013-06-13 22:51:26 +0530754
Martin Blumenstingl138b4122016-10-16 22:59:07 +0200755 ret = ath9k_of_init(sc);
756 if (ret)
757 return ret;
758
Christian Lampartereb3a97a2021-09-13 15:40:35 +0300759 ret = ath9k_nvmem_request_eeprom(sc);
760 if (ret)
761 return ret;
762
Vittorio Gambaletta (VittGam)cd840422016-04-11 04:48:54 +0200763 if (ath9k_led_active_high != -1)
764 ah->config.led_active_high = ath9k_led_active_high == 1;
765
Sujith Manoharan9b60b642013-06-13 22:51:26 +0530766 /*
Sujith Manoharan3f2da952013-08-04 14:21:56 +0530767 * Enable WLAN/BT RX Antenna diversity only when:
768 *
Sujith Manoharan7d845872013-08-07 12:29:27 +0530769 * - BTCOEX is disabled.
Sujith Manoharan3f2da952013-08-04 14:21:56 +0530770 * - the user manually requests the feature.
771 * - the HW cap is set using the platform data.
Sujith Manoharane09f2dc2012-09-16 08:06:56 +0530772 */
Sujith Manoharan7d845872013-08-07 12:29:27 +0530773 if (!common->btcoex_enabled && ath9k_bt_ant_diversity &&
Sujith Manoharan3f2da952013-08-04 14:21:56 +0530774 (pCap->hw_caps & ATH9K_HW_CAP_BT_ANT_DIV))
Sujith Manoharan63081302013-08-04 14:21:55 +0530775 common->bt_ant_diversity = 1;
Sujith Manoharane09f2dc2012-09-16 08:06:56 +0530776
Ben Greear20b257442010-10-15 15:04:09 -0700777 spin_lock_init(&common->cc_lock);
Felix Fietkau3a5e9692017-02-02 10:14:52 +0100778 spin_lock_init(&sc->intr_lock);
Sujith285f2dd2010-01-08 10:36:07 +0530779 spin_lock_init(&sc->sc_serial_rw);
780 spin_lock_init(&sc->sc_pm_lock);
Felix Fietkaubff11762014-06-11 16:17:52 +0530781 spin_lock_init(&sc->chan_lock);
Sujith285f2dd2010-01-08 10:36:07 +0530782 mutex_init(&sc->mutex);
Allen Paisf91a35b2020-08-17 14:36:23 +0530783 tasklet_setup(&sc->intr_tq, ath9k_tasklet);
784 tasklet_setup(&sc->bcon_tasklet, ath9k_beacon_tasklet);
Sujith285f2dd2010-01-08 10:36:07 +0530785
Kees Cook7ac76762017-10-24 02:29:54 -0700786 timer_setup(&sc->sleep_timer, ath_ps_full_sleep, 0);
Sujith Manoharanaaa1ec42012-06-04 16:27:08 +0530787 INIT_WORK(&sc->hw_reset_work, ath_reset_work);
Sujith Manoharanaaa1ec42012-06-04 16:27:08 +0530788 INIT_WORK(&sc->paprd_work, ath_paprd_calibrate);
789 INIT_DELAYED_WORK(&sc->hw_pll_work, ath_hw_pll_work);
Felix Fietkaud63ffc42017-02-02 10:14:50 +0100790 INIT_DELAYED_WORK(&sc->hw_check_work, ath_hw_check_work);
Sujith Manoharan705d0bf2014-08-23 13:29:06 +0530791
792 ath9k_init_channel_context(sc);
Sujith Manoharanaaa1ec42012-06-04 16:27:08 +0530793
Sujith285f2dd2010-01-08 10:36:07 +0530794 /*
795 * Cache line size is used to size and align various
796 * structures used to communicate with the hardware.
797 */
798 ath_read_cachesize(common, &csz);
799 common->cachelsz = csz << 2; /* convert to bytes */
800
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400801 /* Initializes the hardware for all supported chipsets */
Sujith285f2dd2010-01-08 10:36:07 +0530802 ret = ath9k_hw_init(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400803 if (ret)
Sujith285f2dd2010-01-08 10:36:07 +0530804 goto err_hw;
Sujith285f2dd2010-01-08 10:36:07 +0530805
Sujith285f2dd2010-01-08 10:36:07 +0530806 ret = ath9k_init_queues(sc);
807 if (ret)
808 goto err_queues;
809
810 ret = ath9k_init_btcoex(sc);
811 if (ret)
812 goto err_btcoex;
813
Oleksij Rempel13f71052014-02-25 14:48:50 +0100814 ret = ath9k_cmn_init_channels_rates(common);
Felix Fietkauf209f522010-10-01 01:06:53 +0200815 if (ret)
816 goto err_btcoex;
817
Sujith Manoharanc7dd40c2014-08-22 20:39:30 +0530818 ret = ath9k_init_p2p(sc);
819 if (ret)
Sujith Manoharan4f681692014-08-22 20:39:25 +0530820 goto err_btcoex;
Felix Fietkaud463af42014-04-06 00:37:03 +0200821
Rajkumar Manoharanf82b4bd2011-08-13 10:28:15 +0530822 ath9k_cmn_init_crypto(sc->sc_ah);
Sujith285f2dd2010-01-08 10:36:07 +0530823 ath9k_init_misc(sc);
Felix Fietkaufbbcd142014-06-11 16:17:49 +0530824 ath_chanctx_init(sc);
Sujith Manoharane90e3022014-08-23 13:29:20 +0530825 ath9k_offchannel_init(sc);
Sujith285f2dd2010-01-08 10:36:07 +0530826
Sujith Manoharand09f5f42012-06-04 16:27:14 +0530827 if (common->bus_ops->aspm_init)
828 common->bus_ops->aspm_init(common);
829
Sujith55624202010-01-08 10:36:02 +0530830 return 0;
Sujith285f2dd2010-01-08 10:36:07 +0530831
832err_btcoex:
Sujith55624202010-01-08 10:36:02 +0530833 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
834 if (ATH_TXQ_SETUP(sc, i))
835 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
Sujith285f2dd2010-01-08 10:36:07 +0530836err_queues:
Sujith285f2dd2010-01-08 10:36:07 +0530837 ath9k_hw_deinit(ah);
838err_hw:
Gabor Juhosab5c4f72012-12-10 15:30:28 +0100839 ath9k_eeprom_release(sc);
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -0700840 dev_kfree_skb_any(sc->tx99_skb);
Sujith285f2dd2010-01-08 10:36:07 +0530841 return ret;
Sujith55624202010-01-08 10:36:02 +0530842}
843
Felix Fietkaubabcbc22010-10-20 02:09:46 +0200844static void ath9k_init_band_txpower(struct ath_softc *sc, int band)
845{
846 struct ieee80211_supported_band *sband;
847 struct ieee80211_channel *chan;
848 struct ath_hw *ah = sc->sc_ah;
Oleksij Rempel13f71052014-02-25 14:48:50 +0100849 struct ath_common *common = ath9k_hw_common(ah);
Simon Wunderlich06718942013-08-16 10:46:04 +0200850 struct cfg80211_chan_def chandef;
Felix Fietkaubabcbc22010-10-20 02:09:46 +0200851 int i;
852
Oleksij Rempel13f71052014-02-25 14:48:50 +0100853 sband = &common->sbands[band];
Felix Fietkaubabcbc22010-10-20 02:09:46 +0200854 for (i = 0; i < sband->n_channels; i++) {
855 chan = &sband->channels[i];
856 ah->curchan = &ah->channels[chan->hw_value];
Simon Wunderlich06718942013-08-16 10:46:04 +0200857 cfg80211_chandef_create(&chandef, chan, NL80211_CHAN_HT20);
Felix Fietkau2297f1c2013-10-11 23:30:57 +0200858 ath9k_cmn_get_channel(sc->hw, ah, &chandef);
Sven Eckelmannb037b102019-03-20 11:37:23 +0100859 ath9k_hw_set_txpowerlimit(ah, MAX_COMBINED_POWER, true);
Felix Fietkaubabcbc22010-10-20 02:09:46 +0200860 }
861}
862
863static void ath9k_init_txpower_limits(struct ath_softc *sc)
864{
865 struct ath_hw *ah = sc->sc_ah;
866 struct ath9k_channel *curchan = ah->curchan;
867
868 if (ah->caps.hw_caps & ATH9K_HW_CAP_2GHZ)
Johannes Berg57fbcce2016-04-12 15:56:15 +0200869 ath9k_init_band_txpower(sc, NL80211_BAND_2GHZ);
Felix Fietkaubabcbc22010-10-20 02:09:46 +0200870 if (ah->caps.hw_caps & ATH9K_HW_CAP_5GHZ)
Johannes Berg57fbcce2016-04-12 15:56:15 +0200871 ath9k_init_band_txpower(sc, NL80211_BAND_5GHZ);
Felix Fietkaubabcbc22010-10-20 02:09:46 +0200872
873 ah->curchan = curchan;
874}
875
Felix Fietkau20c8e8d2012-04-17 02:40:07 +0200876static const struct ieee80211_iface_limit if_limits[] = {
Rajkumar Manoharan71a5f882014-05-29 15:11:09 +0530877 { .max = 2048, .types = BIT(NL80211_IFTYPE_STATION) },
Felix Fietkau20c8e8d2012-04-17 02:40:07 +0200878 { .max = 8, .types =
879#ifdef CONFIG_MAC80211_MESH
880 BIT(NL80211_IFTYPE_MESH_POINT) |
881#endif
Felix Fietkau95ae4812014-04-06 00:37:02 +0200882 BIT(NL80211_IFTYPE_AP) },
883 { .max = 1, .types = BIT(NL80211_IFTYPE_P2P_CLIENT) |
Felix Fietkau20c8e8d2012-04-17 02:40:07 +0200884 BIT(NL80211_IFTYPE_P2P_GO) },
885};
886
Sujith Manoharan499afac2014-08-22 20:39:31 +0530887#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
888
Rajkumar Manoharana4068322014-06-11 16:18:16 +0530889static const struct ieee80211_iface_limit if_limits_multi[] = {
Sujith Manoharan86162d42014-08-24 21:16:12 +0530890 { .max = 2, .types = BIT(NL80211_IFTYPE_STATION) |
891 BIT(NL80211_IFTYPE_AP) |
892 BIT(NL80211_IFTYPE_P2P_CLIENT) |
Rajkumar Manoharana4068322014-06-11 16:18:16 +0530893 BIT(NL80211_IFTYPE_P2P_GO) },
Sujith Manoharan86162d42014-08-24 21:16:12 +0530894 { .max = 1, .types = BIT(NL80211_IFTYPE_ADHOC) },
[email protected]eb61f9f2015-07-21 11:11:40 +0200895 { .max = 1, .types = BIT(NL80211_IFTYPE_P2P_DEVICE) },
Rajkumar Manoharana4068322014-06-11 16:18:16 +0530896};
897
Rajkumar Manoharana4068322014-06-11 16:18:16 +0530898static const struct ieee80211_iface_combination if_comb_multi[] = {
899 {
900 .limits = if_limits_multi,
901 .n_limits = ARRAY_SIZE(if_limits_multi),
[email protected]eb61f9f2015-07-21 11:11:40 +0200902 .max_interfaces = 3,
Rajkumar Manoharana4068322014-06-11 16:18:16 +0530903 .num_different_channels = 2,
904 .beacon_int_infra_match = true,
905 },
906};
907
Sujith Manoharan499afac2014-08-22 20:39:31 +0530908#endif /* CONFIG_ATH9K_CHANNEL_CONTEXT */
909
Zefir Kurtisie9cdedf2013-04-03 18:31:29 +0200910static const struct ieee80211_iface_combination if_comb[] = {
911 {
912 .limits = if_limits,
913 .n_limits = ARRAY_SIZE(if_limits),
914 .max_interfaces = 2048,
915 .num_different_channels = 1,
916 .beacon_int_infra_match = true,
Felix Fietkau12865582016-01-22 01:56:30 +0100917#ifdef CONFIG_ATH9K_DFS_CERTIFIED
918 .radar_detect_widths = BIT(NL80211_CHAN_WIDTH_20_NOHT) |
919 BIT(NL80211_CHAN_WIDTH_20) |
920 BIT(NL80211_CHAN_WIDTH_40),
921#endif
Zefir Kurtisie9cdedf2013-04-03 18:31:29 +0200922 },
Felix Fietkau20c8e8d2012-04-17 02:40:07 +0200923};
Felix Fietkau43c35282011-09-03 01:40:27 +0200924
Sujith Manoharan868caae2014-10-21 19:23:02 +0530925#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
926static void ath9k_set_mcc_capab(struct ath_softc *sc, struct ieee80211_hw *hw)
927{
928 struct ath_hw *ah = sc->sc_ah;
929 struct ath_common *common = ath9k_hw_common(ah);
930
931 if (!ath9k_is_chanctx_enabled())
932 return;
933
Johannes Berg30686bf2015-06-02 21:39:54 +0200934 ieee80211_hw_set(hw, QUEUE_CONTROL);
Sujith Manoharan868caae2014-10-21 19:23:02 +0530935 hw->queues = ATH9K_NUM_TX_QUEUES;
936 hw->offchannel_tx_hw_queue = hw->queues - 1;
Sujith Manoharan868caae2014-10-21 19:23:02 +0530937 hw->wiphy->iface_combinations = if_comb_multi;
938 hw->wiphy->n_iface_combinations = ARRAY_SIZE(if_comb_multi);
939 hw->wiphy->max_scan_ssids = 255;
940 hw->wiphy->max_scan_ie_len = IEEE80211_MAX_DATA_LEN;
941 hw->wiphy->max_remain_on_channel_duration = 10000;
942 hw->chanctx_data_size = sizeof(void *);
943 hw->extra_beacon_tailroom =
944 sizeof(struct ieee80211_p2p_noa_attr) + 9;
945
946 ath_dbg(common, CHAN_CTX, "Use channel contexts\n");
947}
948#endif /* CONFIG_ATH9K_CHANNEL_CONTEXT */
949
Sujith Manoharan7b6ef992013-12-18 09:53:19 +0530950static void ath9k_set_hw_capab(struct ath_softc *sc, struct ieee80211_hw *hw)
Sujith55624202010-01-08 10:36:02 +0530951{
Felix Fietkau43c35282011-09-03 01:40:27 +0200952 struct ath_hw *ah = sc->sc_ah;
953 struct ath_common *common = ath9k_hw_common(ah);
Sujith285f2dd2010-01-08 10:36:07 +0530954
Johannes Berg30686bf2015-06-02 21:39:54 +0200955 ieee80211_hw_set(hw, SUPPORTS_HT_CCK_RATES);
956 ieee80211_hw_set(hw, SUPPORTS_RC_TABLE);
957 ieee80211_hw_set(hw, REPORTS_TX_ACK_STATUS);
958 ieee80211_hw_set(hw, SPECTRUM_MGMT);
959 ieee80211_hw_set(hw, PS_NULLFUNC_STACK);
960 ieee80211_hw_set(hw, SIGNAL_DBM);
961 ieee80211_hw_set(hw, RX_INCLUDES_FCS);
962 ieee80211_hw_set(hw, HOST_BROADCAST_PS_BUFFERING);
Felix Fietkauf419c5f2015-07-22 13:06:12 +0200963 ieee80211_hw_set(hw, SUPPORT_FAST_XMIT);
Pawel Kulakowski50e81e22015-12-18 10:48:57 +0100964 ieee80211_hw_set(hw, SUPPORTS_CLONED_SKBS);
Sujith55624202010-01-08 10:36:02 +0530965
Sujith Manoharan82983832014-02-04 08:37:53 +0530966 if (ath9k_ps_enable)
Johannes Berg30686bf2015-06-02 21:39:54 +0200967 ieee80211_hw_set(hw, SUPPORTS_PS);
Sujith Manoharan82983832014-02-04 08:37:53 +0530968
Oleksij Rempelb0a1ae92013-05-24 20:30:59 +0200969 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_HT) {
Johannes Berg30686bf2015-06-02 21:39:54 +0200970 ieee80211_hw_set(hw, AMPDU_AGGREGATION);
Oleksij Rempelb0a1ae92013-05-24 20:30:59 +0200971
972 if (AR_SREV_9280_20_OR_LATER(ah))
973 hw->radiotap_mcs_details |=
974 IEEE80211_RADIOTAP_MCS_HAVE_STBC;
975 }
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500976
John W. Linville3e6109c2011-01-05 09:39:17 -0500977 if (AR_SREV_9160_10_OR_LATER(sc->sc_ah) || ath9k_modparam_nohwcrypt)
Johannes Berg30686bf2015-06-02 21:39:54 +0200978 ieee80211_hw_set(hw, MFP_CAPABLE);
Sujith55624202010-01-08 10:36:02 +0530979
Sujith Manoharanfdcf1bd2014-09-05 08:03:14 +0530980 hw->wiphy->features |= NL80211_FEATURE_ACTIVE_MONITOR |
981 NL80211_FEATURE_AP_MODE_CHAN_WIDTH_CHANGE |
982 NL80211_FEATURE_P2P_GO_CTWIN;
Felix Fietkauec26bcc2013-05-28 13:01:54 +0200983
Masahiro Yamada97f26452016-08-03 13:45:50 -0700984 if (!IS_ENABLED(CONFIG_ATH9K_TX99)) {
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -0700985 hw->wiphy->interface_modes =
986 BIT(NL80211_IFTYPE_P2P_GO) |
987 BIT(NL80211_IFTYPE_P2P_CLIENT) |
988 BIT(NL80211_IFTYPE_AP) |
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -0700989 BIT(NL80211_IFTYPE_STATION) |
990 BIT(NL80211_IFTYPE_ADHOC) |
Sujith Manoharan499afac2014-08-22 20:39:31 +0530991 BIT(NL80211_IFTYPE_MESH_POINT) |
Jan Kaisrlik862a3362015-09-17 14:03:46 +0200992 BIT(NL80211_IFTYPE_OCB);
Sujith Manoharan499afac2014-08-22 20:39:31 +0530993
[email protected]eb61f9f2015-07-21 11:11:40 +0200994 if (ath9k_is_chanctx_enabled())
995 hw->wiphy->interface_modes |=
996 BIT(NL80211_IFTYPE_P2P_DEVICE);
997
Arnd Bergmann362210e2016-03-14 15:18:37 +0100998 hw->wiphy->iface_combinations = if_comb;
999 hw->wiphy->n_iface_combinations = ARRAY_SIZE(if_comb);
Luis R. Rodriguez89f927a2013-10-14 17:42:11 -07001000 }
Felix Fietkau20c8e8d2012-04-17 02:40:07 +02001001
Sujith Manoharan531671c2013-06-01 07:08:09 +05301002 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
Sujith55624202010-01-08 10:36:02 +05301003
Jouni Malinencfdc9a82011-03-23 14:52:19 +02001004 hw->wiphy->flags |= WIPHY_FLAG_IBSS_RSN;
Jouni Malinenfd656232011-10-27 17:31:50 +03001005 hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS;
Johannes Berg81ddbb52012-03-26 18:47:18 +02001006 hw->wiphy->flags |= WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL;
Simon Wunderlich6fac8bb2013-08-14 08:01:34 +02001007 hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_5_10_MHZ;
Simon Wunderlichd074e8d2013-08-14 08:01:38 +02001008 hw->wiphy->flags |= WIPHY_FLAG_HAS_CHANNEL_SWITCH;
Jouni Malinen7b4f6632014-02-18 20:41:08 +02001009 hw->wiphy->flags |= WIPHY_FLAG_AP_UAPSD;
Jouni Malinencfdc9a82011-03-23 14:52:19 +02001010
Sujith Manoharan868caae2014-10-21 19:23:02 +05301011 hw->queues = 4;
Sujith55624202010-01-08 10:36:02 +05301012 hw->max_rates = 4;
Rajkumar Manoharan5f2f9e42014-06-26 16:54:41 +05301013 hw->max_listen_interval = 10;
Felix Fietkau65896512010-01-24 03:26:11 +01001014 hw->max_rate_tries = 10;
Sujith55624202010-01-08 10:36:02 +05301015 hw->sta_data_size = sizeof(struct ath_node);
1016 hw->vif_data_size = sizeof(struct ath_vif);
Toke Høiland-Jørgensen50f08ed2016-11-09 12:31:49 +01001017 hw->txq_data_size = sizeof(struct ath_atx_tid);
Felix Fietkau029cd032015-09-24 16:59:46 +02001018 hw->extra_tx_headroom = 4;
Sujith55624202010-01-08 10:36:02 +05301019
Felix Fietkau43c35282011-09-03 01:40:27 +02001020 hw->wiphy->available_antennas_rx = BIT(ah->caps.max_rxchains) - 1;
1021 hw->wiphy->available_antennas_tx = BIT(ah->caps.max_txchains) - 1;
1022
1023 /* single chain devices with rx diversity */
1024 if (ah->caps.hw_caps & ATH9K_HW_CAP_ANT_DIV_COMB)
1025 hw->wiphy->available_antennas_rx = BIT(0) | BIT(1);
1026
1027 sc->ant_rx = hw->wiphy->available_antennas_rx;
1028 sc->ant_tx = hw->wiphy->available_antennas_tx;
1029
Felix Fietkaud4659912010-10-14 16:02:39 +02001030 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_2GHZ)
Johannes Berg57fbcce2016-04-12 15:56:15 +02001031 hw->wiphy->bands[NL80211_BAND_2GHZ] =
1032 &common->sbands[NL80211_BAND_2GHZ];
Felix Fietkaud4659912010-10-14 16:02:39 +02001033 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_5GHZ)
Johannes Berg57fbcce2016-04-12 15:56:15 +02001034 hw->wiphy->bands[NL80211_BAND_5GHZ] =
1035 &common->sbands[NL80211_BAND_5GHZ];
Sujith285f2dd2010-01-08 10:36:07 +05301036
Sujith Manoharan868caae2014-10-21 19:23:02 +05301037#ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
1038 ath9k_set_mcc_capab(sc, hw);
1039#endif
Sujith Manoharanbabaa802013-10-28 13:01:28 +05301040 ath9k_init_wow(hw);
Oleksij Rempelb57ba3b2014-02-25 14:48:55 +01001041 ath9k_cmn_reload_chainmask(ah);
Sujith285f2dd2010-01-08 10:36:07 +05301042
1043 SET_IEEE80211_PERM_ADDR(hw, common->macaddr);
Andrew Zaborowskiae44b502017-02-10 04:50:23 +01001044
1045 wiphy_ext_feature_set(hw->wiphy, NL80211_EXT_FEATURE_CQM_RSSI_LIST);
Toke Høiland-Jørgensen89cea742019-02-11 18:47:47 +02001046 wiphy_ext_feature_set(hw->wiphy, NL80211_EXT_FEATURE_AIRTIME_FAIRNESS);
Jouni Malinenc01c3202020-04-26 11:47:32 +03001047 wiphy_ext_feature_set(hw->wiphy,
1048 NL80211_EXT_FEATURE_MULTICAST_REGISTRATIONS);
Alexander Wetzel4bad3a22020-08-04 18:41:51 +02001049 wiphy_ext_feature_set(hw->wiphy, NL80211_EXT_FEATURE_CAN_REPLACE_PTK0);
Sujith55624202010-01-08 10:36:02 +05301050}
1051
Pavel Roskineb93e892011-07-23 03:55:39 -04001052int ath9k_init_device(u16 devid, struct ath_softc *sc,
Sujith55624202010-01-08 10:36:02 +05301053 const struct ath_bus_ops *bus_ops)
1054{
1055 struct ieee80211_hw *hw = sc->hw;
1056 struct ath_common *common;
1057 struct ath_hw *ah;
Sujith285f2dd2010-01-08 10:36:07 +05301058 int error = 0;
Sujith55624202010-01-08 10:36:02 +05301059 struct ath_regulatory *reg;
1060
Sujith285f2dd2010-01-08 10:36:07 +05301061 /* Bring up device */
Pavel Roskineb93e892011-07-23 03:55:39 -04001062 error = ath9k_init_softc(devid, sc, bus_ops);
Felix Fietkaub81950b12012-12-12 13:14:22 +01001063 if (error)
1064 return error;
Sujith55624202010-01-08 10:36:02 +05301065
1066 ah = sc->sc_ah;
1067 common = ath9k_hw_common(ah);
Sujith285f2dd2010-01-08 10:36:07 +05301068 ath9k_set_hw_capab(sc, hw);
Sujith55624202010-01-08 10:36:02 +05301069
Sujith285f2dd2010-01-08 10:36:07 +05301070 /* Initialize regulatory */
Sujith55624202010-01-08 10:36:02 +05301071 error = ath_regd_init(&common->regulatory, sc->hw->wiphy,
1072 ath9k_reg_notifier);
1073 if (error)
Felix Fietkaub81950b12012-12-12 13:14:22 +01001074 goto deinit;
Sujith55624202010-01-08 10:36:02 +05301075
1076 reg = &common->regulatory;
1077
Sujith285f2dd2010-01-08 10:36:07 +05301078 /* Setup TX DMA */
Sujith55624202010-01-08 10:36:02 +05301079 error = ath_tx_init(sc, ATH_TXBUF);
1080 if (error != 0)
Felix Fietkaub81950b12012-12-12 13:14:22 +01001081 goto deinit;
Sujith55624202010-01-08 10:36:02 +05301082
Sujith285f2dd2010-01-08 10:36:07 +05301083 /* Setup RX DMA */
Sujith55624202010-01-08 10:36:02 +05301084 error = ath_rx_init(sc, ATH_RXBUF);
1085 if (error != 0)
Felix Fietkaub81950b12012-12-12 13:14:22 +01001086 goto deinit;
Sujith285f2dd2010-01-08 10:36:07 +05301087
Felix Fietkaubabcbc22010-10-20 02:09:46 +02001088 ath9k_init_txpower_limits(sc);
1089
Felix Fietkau0cf55c22011-02-27 22:26:40 +01001090#ifdef CONFIG_MAC80211_LEDS
1091 /* must be initialized before ieee80211_register_hw */
1092 sc->led_cdev.default_trigger = ieee80211_create_tpt_led_trigger(sc->hw,
1093 IEEE80211_TPT_LEDTRIG_FL_RADIO, ath9k_tpt_blink,
1094 ARRAY_SIZE(ath9k_tpt_blink));
1095#endif
1096
Christian Lamparter03469e72021-10-11 18:18:00 +03001097 wiphy_read_of_freq_limits(hw->wiphy);
1098
Sujith285f2dd2010-01-08 10:36:07 +05301099 /* Register with mac80211 */
1100 error = ieee80211_register_hw(hw);
1101 if (error)
Felix Fietkaub81950b12012-12-12 13:14:22 +01001102 goto rx_cleanup;
Sujith285f2dd2010-01-08 10:36:07 +05301103
Ben Greeareb272442010-11-29 14:13:22 -08001104 error = ath9k_init_debug(ah);
1105 if (error) {
Joe Perches38002762010-12-02 19:12:36 -08001106 ath_err(common, "Unable to create debugfs files\n");
Felix Fietkaub81950b12012-12-12 13:14:22 +01001107 goto unregister;
Ben Greeareb272442010-11-29 14:13:22 -08001108 }
1109
Sujith285f2dd2010-01-08 10:36:07 +05301110 /* Handle world regulatory */
1111 if (!ath_is_world_regd(reg)) {
1112 error = regulatory_hint(hw->wiphy, reg->alpha2);
1113 if (error)
Sujith Manoharanaf690092013-05-10 18:41:06 +05301114 goto debug_cleanup;
Sujith285f2dd2010-01-08 10:36:07 +05301115 }
Sujith55624202010-01-08 10:36:02 +05301116
Sujith55624202010-01-08 10:36:02 +05301117 ath_init_leds(sc);
Sujith55624202010-01-08 10:36:02 +05301118 ath_start_rfkill_poll(sc);
1119
1120 return 0;
1121
Sujith Manoharanaf690092013-05-10 18:41:06 +05301122debug_cleanup:
1123 ath9k_deinit_debug(sc);
Felix Fietkaub81950b12012-12-12 13:14:22 +01001124unregister:
Sujith285f2dd2010-01-08 10:36:07 +05301125 ieee80211_unregister_hw(hw);
Felix Fietkaub81950b12012-12-12 13:14:22 +01001126rx_cleanup:
Sujith285f2dd2010-01-08 10:36:07 +05301127 ath_rx_cleanup(sc);
Felix Fietkaub81950b12012-12-12 13:14:22 +01001128deinit:
Sujith285f2dd2010-01-08 10:36:07 +05301129 ath9k_deinit_softc(sc);
Sujith55624202010-01-08 10:36:02 +05301130 return error;
1131}
1132
1133/*****************************/
1134/* De-Initialization */
1135/*****************************/
1136
Sujith285f2dd2010-01-08 10:36:07 +05301137static void ath9k_deinit_softc(struct ath_softc *sc)
Sujith55624202010-01-08 10:36:02 +05301138{
Sujith285f2dd2010-01-08 10:36:07 +05301139 int i = 0;
Sujith55624202010-01-08 10:36:02 +05301140
Sujith Manoharanc7dd40c2014-08-22 20:39:30 +05301141 ath9k_deinit_p2p(sc);
Sujith Manoharan59081202012-02-22 12:40:21 +05301142 ath9k_deinit_btcoex(sc);
Mohammed Shafi Shajakhan19686dd2011-11-30 10:41:28 +05301143
Sujith285f2dd2010-01-08 10:36:07 +05301144 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
1145 if (ATH_TXQ_SETUP(sc, i))
1146 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
1147
Felix Fietkaubf3dac52013-11-11 22:23:33 +01001148 del_timer_sync(&sc->sleep_timer);
Sujith285f2dd2010-01-08 10:36:07 +05301149 ath9k_hw_deinit(sc->sc_ah);
Zefir Kurtisi8e92d3f2012-04-03 17:15:50 +02001150 if (sc->dfs_detector != NULL)
1151 sc->dfs_detector->exit(sc->dfs_detector);
Sujith285f2dd2010-01-08 10:36:07 +05301152
Gabor Juhosab5c4f72012-12-10 15:30:28 +01001153 ath9k_eeprom_release(sc);
Sujith55624202010-01-08 10:36:02 +05301154}
1155
Sujith285f2dd2010-01-08 10:36:07 +05301156void ath9k_deinit_device(struct ath_softc *sc)
Sujith55624202010-01-08 10:36:02 +05301157{
1158 struct ieee80211_hw *hw = sc->hw;
Sujith55624202010-01-08 10:36:02 +05301159
1160 ath9k_ps_wakeup(sc);
1161
Sujith55624202010-01-08 10:36:02 +05301162 wiphy_rfkill_stop_polling(sc->hw->wiphy);
Sujith285f2dd2010-01-08 10:36:07 +05301163 ath_deinit_leds(sc);
Sujith55624202010-01-08 10:36:02 +05301164
Rajkumar Manoharanc7c18062011-01-27 18:39:38 +05301165 ath9k_ps_restore(sc);
1166
Sujith Manoharanaf690092013-05-10 18:41:06 +05301167 ath9k_deinit_debug(sc);
Sujith Manoharan661d2582015-01-30 19:05:26 +05301168 ath9k_deinit_wow(hw);
Sujith55624202010-01-08 10:36:02 +05301169 ieee80211_unregister_hw(hw);
1170 ath_rx_cleanup(sc);
Sujith285f2dd2010-01-08 10:36:07 +05301171 ath9k_deinit_softc(sc);
Sujith55624202010-01-08 10:36:02 +05301172}
1173
Sujith55624202010-01-08 10:36:02 +05301174/************************/
1175/* Module Hooks */
1176/************************/
1177
1178static int __init ath9k_init(void)
1179{
1180 int error;
1181
Sujith55624202010-01-08 10:36:02 +05301182 error = ath_pci_init();
1183 if (error < 0) {
Joe Perches516304b2012-03-18 17:30:52 -07001184 pr_err("No PCI devices found, driver not installed\n");
Sujith55624202010-01-08 10:36:02 +05301185 error = -ENODEV;
Sujith Manoharan9e495a22014-02-06 10:22:55 +05301186 goto err_out;
Sujith55624202010-01-08 10:36:02 +05301187 }
1188
1189 error = ath_ahb_init();
1190 if (error < 0) {
1191 error = -ENODEV;
1192 goto err_pci_exit;
1193 }
1194
AceLan Kao3153b682018-01-16 11:43:50 +02001195 dmi_check_system(ath9k_quirks);
1196
Sujith55624202010-01-08 10:36:02 +05301197 return 0;
1198
1199 err_pci_exit:
1200 ath_pci_exit();
Sujith55624202010-01-08 10:36:02 +05301201 err_out:
1202 return error;
1203}
1204module_init(ath9k_init);
1205
1206static void __exit ath9k_exit(void)
1207{
Rajkumar Manoharand5847472010-12-20 14:39:51 +05301208 is_ath9k_unloaded = true;
Sujith55624202010-01-08 10:36:02 +05301209 ath_ahb_exit();
1210 ath_pci_exit();
Joe Perches516304b2012-03-18 17:30:52 -07001211 pr_info("%s: Driver unloaded\n", dev_info);
Sujith55624202010-01-08 10:36:02 +05301212}
1213module_exit(ath9k_exit);