blob: 70e5aa415c89e4d0bd6cb36e40d1839687fbf56d [file] [log] [blame]
Sujith55624202010-01-08 10:36:02 +05301/*
2 * Copyright (c) 2008-2009 Atheros Communications Inc.
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
17#include "ath9k.h"
18
19static char *dev_info = "ath9k";
20
21MODULE_AUTHOR("Atheros Communications");
22MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
23MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
24MODULE_LICENSE("Dual BSD/GPL");
25
26static unsigned int ath9k_debug = ATH_DBG_DEFAULT;
27module_param_named(debug, ath9k_debug, uint, 0);
28MODULE_PARM_DESC(debug, "Debugging mask");
29
30int modparam_nohwcrypt;
31module_param_named(nohwcrypt, modparam_nohwcrypt, int, 0444);
32MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption");
33
34/* We use the hw_value as an index into our private channel structure */
35
36#define CHAN2G(_freq, _idx) { \
37 .center_freq = (_freq), \
38 .hw_value = (_idx), \
39 .max_power = 20, \
40}
41
42#define CHAN5G(_freq, _idx) { \
43 .band = IEEE80211_BAND_5GHZ, \
44 .center_freq = (_freq), \
45 .hw_value = (_idx), \
46 .max_power = 20, \
47}
48
49/* Some 2 GHz radios are actually tunable on 2312-2732
50 * on 5 MHz steps, we support the channels which we know
51 * we have calibration data for all cards though to make
52 * this static */
53static struct ieee80211_channel ath9k_2ghz_chantable[] = {
54 CHAN2G(2412, 0), /* Channel 1 */
55 CHAN2G(2417, 1), /* Channel 2 */
56 CHAN2G(2422, 2), /* Channel 3 */
57 CHAN2G(2427, 3), /* Channel 4 */
58 CHAN2G(2432, 4), /* Channel 5 */
59 CHAN2G(2437, 5), /* Channel 6 */
60 CHAN2G(2442, 6), /* Channel 7 */
61 CHAN2G(2447, 7), /* Channel 8 */
62 CHAN2G(2452, 8), /* Channel 9 */
63 CHAN2G(2457, 9), /* Channel 10 */
64 CHAN2G(2462, 10), /* Channel 11 */
65 CHAN2G(2467, 11), /* Channel 12 */
66 CHAN2G(2472, 12), /* Channel 13 */
67 CHAN2G(2484, 13), /* Channel 14 */
68};
69
70/* Some 5 GHz radios are actually tunable on XXXX-YYYY
71 * on 5 MHz steps, we support the channels which we know
72 * we have calibration data for all cards though to make
73 * this static */
74static struct ieee80211_channel ath9k_5ghz_chantable[] = {
75 /* _We_ call this UNII 1 */
76 CHAN5G(5180, 14), /* Channel 36 */
77 CHAN5G(5200, 15), /* Channel 40 */
78 CHAN5G(5220, 16), /* Channel 44 */
79 CHAN5G(5240, 17), /* Channel 48 */
80 /* _We_ call this UNII 2 */
81 CHAN5G(5260, 18), /* Channel 52 */
82 CHAN5G(5280, 19), /* Channel 56 */
83 CHAN5G(5300, 20), /* Channel 60 */
84 CHAN5G(5320, 21), /* Channel 64 */
85 /* _We_ call this "Middle band" */
86 CHAN5G(5500, 22), /* Channel 100 */
87 CHAN5G(5520, 23), /* Channel 104 */
88 CHAN5G(5540, 24), /* Channel 108 */
89 CHAN5G(5560, 25), /* Channel 112 */
90 CHAN5G(5580, 26), /* Channel 116 */
91 CHAN5G(5600, 27), /* Channel 120 */
92 CHAN5G(5620, 28), /* Channel 124 */
93 CHAN5G(5640, 29), /* Channel 128 */
94 CHAN5G(5660, 30), /* Channel 132 */
95 CHAN5G(5680, 31), /* Channel 136 */
96 CHAN5G(5700, 32), /* Channel 140 */
97 /* _We_ call this UNII 3 */
98 CHAN5G(5745, 33), /* Channel 149 */
99 CHAN5G(5765, 34), /* Channel 153 */
100 CHAN5G(5785, 35), /* Channel 157 */
101 CHAN5G(5805, 36), /* Channel 161 */
102 CHAN5G(5825, 37), /* Channel 165 */
103};
104
105/* Atheros hardware rate code addition for short premble */
106#define SHPCHECK(__hw_rate, __flags) \
107 ((__flags & IEEE80211_RATE_SHORT_PREAMBLE) ? (__hw_rate | 0x04 ) : 0)
108
109#define RATE(_bitrate, _hw_rate, _flags) { \
110 .bitrate = (_bitrate), \
111 .flags = (_flags), \
112 .hw_value = (_hw_rate), \
113 .hw_value_short = (SHPCHECK(_hw_rate, _flags)) \
114}
115
116static struct ieee80211_rate ath9k_legacy_rates[] = {
117 RATE(10, 0x1b, 0),
118 RATE(20, 0x1a, IEEE80211_RATE_SHORT_PREAMBLE),
119 RATE(55, 0x19, IEEE80211_RATE_SHORT_PREAMBLE),
120 RATE(110, 0x18, IEEE80211_RATE_SHORT_PREAMBLE),
121 RATE(60, 0x0b, 0),
122 RATE(90, 0x0f, 0),
123 RATE(120, 0x0a, 0),
124 RATE(180, 0x0e, 0),
125 RATE(240, 0x09, 0),
126 RATE(360, 0x0d, 0),
127 RATE(480, 0x08, 0),
128 RATE(540, 0x0c, 0),
129};
130
Sujith285f2dd2010-01-08 10:36:07 +0530131static void ath9k_deinit_softc(struct ath_softc *sc);
Sujith55624202010-01-08 10:36:02 +0530132
133/*
134 * Read and write, they both share the same lock. We do this to serialize
135 * reads and writes on Atheros 802.11n PCI devices only. This is required
136 * as the FIFO on these devices can only accept sanely 2 requests.
137 */
138
139static void ath9k_iowrite32(void *hw_priv, u32 val, u32 reg_offset)
140{
141 struct ath_hw *ah = (struct ath_hw *) hw_priv;
142 struct ath_common *common = ath9k_hw_common(ah);
143 struct ath_softc *sc = (struct ath_softc *) common->priv;
144
145 if (ah->config.serialize_regmode == SER_REG_MODE_ON) {
146 unsigned long flags;
147 spin_lock_irqsave(&sc->sc_serial_rw, flags);
148 iowrite32(val, sc->mem + reg_offset);
149 spin_unlock_irqrestore(&sc->sc_serial_rw, flags);
150 } else
151 iowrite32(val, sc->mem + reg_offset);
152}
153
154static unsigned int ath9k_ioread32(void *hw_priv, u32 reg_offset)
155{
156 struct ath_hw *ah = (struct ath_hw *) hw_priv;
157 struct ath_common *common = ath9k_hw_common(ah);
158 struct ath_softc *sc = (struct ath_softc *) common->priv;
159 u32 val;
160
161 if (ah->config.serialize_regmode == SER_REG_MODE_ON) {
162 unsigned long flags;
163 spin_lock_irqsave(&sc->sc_serial_rw, flags);
164 val = ioread32(sc->mem + reg_offset);
165 spin_unlock_irqrestore(&sc->sc_serial_rw, flags);
166 } else
167 val = ioread32(sc->mem + reg_offset);
168 return val;
169}
170
171static const struct ath_ops ath9k_common_ops = {
172 .read = ath9k_ioread32,
173 .write = ath9k_iowrite32,
174};
175
Felix Fietkau3bb065a2010-04-19 19:57:34 +0200176static int count_streams(unsigned int chainmask, int max)
177{
178 int streams = 0;
179
180 do {
181 if (++streams == max)
182 break;
183 } while ((chainmask = chainmask & (chainmask - 1)));
184
185 return streams;
186}
187
Sujith55624202010-01-08 10:36:02 +0530188/**************************/
189/* Initialization */
190/**************************/
191
192static void setup_ht_cap(struct ath_softc *sc,
193 struct ieee80211_sta_ht_cap *ht_info)
194{
Felix Fietkau3bb065a2010-04-19 19:57:34 +0200195 struct ath_hw *ah = sc->sc_ah;
196 struct ath_common *common = ath9k_hw_common(ah);
Sujith55624202010-01-08 10:36:02 +0530197 u8 tx_streams, rx_streams;
Felix Fietkau3bb065a2010-04-19 19:57:34 +0200198 int i, max_streams;
Sujith55624202010-01-08 10:36:02 +0530199
200 ht_info->ht_supported = true;
201 ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
202 IEEE80211_HT_CAP_SM_PS |
203 IEEE80211_HT_CAP_SGI_40 |
204 IEEE80211_HT_CAP_DSSSCCK40;
205
Luis R. Rodriguezb0a33442010-04-15 17:39:39 -0400206 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_LDPC)
207 ht_info->cap |= IEEE80211_HT_CAP_LDPC_CODING;
208
Sujith55624202010-01-08 10:36:02 +0530209 ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K;
210 ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8;
211
Felix Fietkau3bb065a2010-04-19 19:57:34 +0200212 if (AR_SREV_9300_20_OR_LATER(ah))
213 max_streams = 3;
214 else
215 max_streams = 2;
216
Felix Fietkau074a8c02010-04-19 19:57:36 +0200217 if (AR_SREV_9280_10_OR_LATER(ah)) {
218 if (max_streams >= 2)
219 ht_info->cap |= IEEE80211_HT_CAP_TX_STBC;
220 ht_info->cap |= (1 << IEEE80211_HT_CAP_RX_STBC_SHIFT);
221 }
222
Sujith55624202010-01-08 10:36:02 +0530223 /* set up supported mcs set */
224 memset(&ht_info->mcs, 0, sizeof(ht_info->mcs));
Felix Fietkau3bb065a2010-04-19 19:57:34 +0200225 tx_streams = count_streams(common->tx_chainmask, max_streams);
226 rx_streams = count_streams(common->rx_chainmask, max_streams);
227
228 ath_print(common, ATH_DBG_CONFIG,
229 "TX streams %d, RX streams: %d\n",
230 tx_streams, rx_streams);
Sujith55624202010-01-08 10:36:02 +0530231
232 if (tx_streams != rx_streams) {
Sujith55624202010-01-08 10:36:02 +0530233 ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_RX_DIFF;
234 ht_info->mcs.tx_params |= ((tx_streams - 1) <<
235 IEEE80211_HT_MCS_TX_MAX_STREAMS_SHIFT);
236 }
237
Felix Fietkau3bb065a2010-04-19 19:57:34 +0200238 for (i = 0; i < rx_streams; i++)
239 ht_info->mcs.rx_mask[i] = 0xff;
Sujith55624202010-01-08 10:36:02 +0530240
241 ht_info->mcs.tx_params |= IEEE80211_HT_MCS_TX_DEFINED;
242}
243
244static int ath9k_reg_notifier(struct wiphy *wiphy,
245 struct regulatory_request *request)
246{
247 struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy);
248 struct ath_wiphy *aphy = hw->priv;
249 struct ath_softc *sc = aphy->sc;
250 struct ath_regulatory *reg = ath9k_hw_regulatory(sc->sc_ah);
251
252 return ath_reg_notifier_apply(wiphy, request, reg);
253}
254
255/*
256 * This function will allocate both the DMA descriptor structure, and the
257 * buffers it contains. These are used to contain the descriptors used
258 * by the system.
259*/
260int ath_descdma_setup(struct ath_softc *sc, struct ath_descdma *dd,
261 struct list_head *head, const char *name,
Vasanthakumar Thiagarajan4adfcde2010-04-15 17:39:33 -0400262 int nbuf, int ndesc, bool is_tx)
Sujith55624202010-01-08 10:36:02 +0530263{
264#define DS2PHYS(_dd, _ds) \
265 ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc))
266#define ATH_DESC_4KB_BOUND_CHECK(_daddr) ((((_daddr) & 0xFFF) > 0xF7F) ? 1 : 0)
267#define ATH_DESC_4KB_BOUND_NUM_SKIPPED(_len) ((_len) / 4096)
268 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Vasanthakumar Thiagarajan4adfcde2010-04-15 17:39:33 -0400269 u8 *ds;
Sujith55624202010-01-08 10:36:02 +0530270 struct ath_buf *bf;
Vasanthakumar Thiagarajan4adfcde2010-04-15 17:39:33 -0400271 int i, bsize, error, desc_len;
Sujith55624202010-01-08 10:36:02 +0530272
273 ath_print(common, ATH_DBG_CONFIG, "%s DMA: %u buffers %u desc/buf\n",
274 name, nbuf, ndesc);
275
276 INIT_LIST_HEAD(head);
Vasanthakumar Thiagarajan4adfcde2010-04-15 17:39:33 -0400277
278 if (is_tx)
279 desc_len = sc->sc_ah->caps.tx_desc_len;
280 else
281 desc_len = sizeof(struct ath_desc);
282
Sujith55624202010-01-08 10:36:02 +0530283 /* ath_desc must be a multiple of DWORDs */
Vasanthakumar Thiagarajan4adfcde2010-04-15 17:39:33 -0400284 if ((desc_len % 4) != 0) {
Sujith55624202010-01-08 10:36:02 +0530285 ath_print(common, ATH_DBG_FATAL,
286 "ath_desc not DWORD aligned\n");
Vasanthakumar Thiagarajan4adfcde2010-04-15 17:39:33 -0400287 BUG_ON((desc_len % 4) != 0);
Sujith55624202010-01-08 10:36:02 +0530288 error = -ENOMEM;
289 goto fail;
290 }
291
Vasanthakumar Thiagarajan4adfcde2010-04-15 17:39:33 -0400292 dd->dd_desc_len = desc_len * nbuf * ndesc;
Sujith55624202010-01-08 10:36:02 +0530293
294 /*
295 * Need additional DMA memory because we can't use
296 * descriptors that cross the 4K page boundary. Assume
297 * one skipped descriptor per 4K page.
298 */
299 if (!(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_4KB_SPLITTRANS)) {
300 u32 ndesc_skipped =
301 ATH_DESC_4KB_BOUND_NUM_SKIPPED(dd->dd_desc_len);
302 u32 dma_len;
303
304 while (ndesc_skipped) {
Vasanthakumar Thiagarajan4adfcde2010-04-15 17:39:33 -0400305 dma_len = ndesc_skipped * desc_len;
Sujith55624202010-01-08 10:36:02 +0530306 dd->dd_desc_len += dma_len;
307
308 ndesc_skipped = ATH_DESC_4KB_BOUND_NUM_SKIPPED(dma_len);
309 };
310 }
311
312 /* allocate descriptors */
313 dd->dd_desc = dma_alloc_coherent(sc->dev, dd->dd_desc_len,
314 &dd->dd_desc_paddr, GFP_KERNEL);
315 if (dd->dd_desc == NULL) {
316 error = -ENOMEM;
317 goto fail;
318 }
Vasanthakumar Thiagarajan4adfcde2010-04-15 17:39:33 -0400319 ds = (u8 *) dd->dd_desc;
Sujith55624202010-01-08 10:36:02 +0530320 ath_print(common, ATH_DBG_CONFIG, "%s DMA map: %p (%u) -> %llx (%u)\n",
321 name, ds, (u32) dd->dd_desc_len,
322 ito64(dd->dd_desc_paddr), /*XXX*/(u32) dd->dd_desc_len);
323
324 /* allocate buffers */
325 bsize = sizeof(struct ath_buf) * nbuf;
326 bf = kzalloc(bsize, GFP_KERNEL);
327 if (bf == NULL) {
328 error = -ENOMEM;
329 goto fail2;
330 }
331 dd->dd_bufptr = bf;
332
Vasanthakumar Thiagarajan4adfcde2010-04-15 17:39:33 -0400333 for (i = 0; i < nbuf; i++, bf++, ds += (desc_len * ndesc)) {
Sujith55624202010-01-08 10:36:02 +0530334 bf->bf_desc = ds;
335 bf->bf_daddr = DS2PHYS(dd, ds);
336
337 if (!(sc->sc_ah->caps.hw_caps &
338 ATH9K_HW_CAP_4KB_SPLITTRANS)) {
339 /*
340 * Skip descriptor addresses which can cause 4KB
341 * boundary crossing (addr + length) with a 32 dword
342 * descriptor fetch.
343 */
344 while (ATH_DESC_4KB_BOUND_CHECK(bf->bf_daddr)) {
345 BUG_ON((caddr_t) bf->bf_desc >=
346 ((caddr_t) dd->dd_desc +
347 dd->dd_desc_len));
348
Vasanthakumar Thiagarajan4adfcde2010-04-15 17:39:33 -0400349 ds += (desc_len * ndesc);
Sujith55624202010-01-08 10:36:02 +0530350 bf->bf_desc = ds;
351 bf->bf_daddr = DS2PHYS(dd, ds);
352 }
353 }
354 list_add_tail(&bf->list, head);
355 }
356 return 0;
357fail2:
358 dma_free_coherent(sc->dev, dd->dd_desc_len, dd->dd_desc,
359 dd->dd_desc_paddr);
360fail:
361 memset(dd, 0, sizeof(*dd));
362 return error;
363#undef ATH_DESC_4KB_BOUND_CHECK
364#undef ATH_DESC_4KB_BOUND_NUM_SKIPPED
365#undef DS2PHYS
366}
367
Sujith285f2dd2010-01-08 10:36:07 +0530368static void ath9k_init_crypto(struct ath_softc *sc)
Sujith55624202010-01-08 10:36:02 +0530369{
Sujith285f2dd2010-01-08 10:36:07 +0530370 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
371 int i = 0;
Sujith55624202010-01-08 10:36:02 +0530372
373 /* Get the hardware key cache size. */
Sujith285f2dd2010-01-08 10:36:07 +0530374 common->keymax = sc->sc_ah->caps.keycache_size;
Sujith55624202010-01-08 10:36:02 +0530375 if (common->keymax > ATH_KEYMAX) {
376 ath_print(common, ATH_DBG_ANY,
377 "Warning, using only %u entries in %u key cache\n",
378 ATH_KEYMAX, common->keymax);
379 common->keymax = ATH_KEYMAX;
380 }
381
382 /*
383 * Reset the key cache since some parts do not
384 * reset the contents on initial power up.
385 */
386 for (i = 0; i < common->keymax; i++)
Sujith285f2dd2010-01-08 10:36:07 +0530387 ath9k_hw_keyreset(sc->sc_ah, (u16) i);
Sujith55624202010-01-08 10:36:02 +0530388
Sujith285f2dd2010-01-08 10:36:07 +0530389 if (ath9k_hw_getcapability(sc->sc_ah, ATH9K_CAP_CIPHER,
Sujith55624202010-01-08 10:36:02 +0530390 ATH9K_CIPHER_TKIP, NULL)) {
391 /*
392 * Whether we should enable h/w TKIP MIC.
393 * XXX: if we don't support WME TKIP MIC, then we wouldn't
394 * report WMM capable, so it's always safe to turn on
395 * TKIP MIC in this case.
396 */
Sujith285f2dd2010-01-08 10:36:07 +0530397 ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_TKIP_MIC, 0, 1, NULL);
Sujith55624202010-01-08 10:36:02 +0530398 }
399
400 /*
401 * Check whether the separate key cache entries
402 * are required to handle both tx+rx MIC keys.
403 * With split mic keys the number of stations is limited
404 * to 27 otherwise 59.
405 */
Sujith285f2dd2010-01-08 10:36:07 +0530406 if (ath9k_hw_getcapability(sc->sc_ah, ATH9K_CAP_CIPHER,
Sujith55624202010-01-08 10:36:02 +0530407 ATH9K_CIPHER_TKIP, NULL)
Sujith285f2dd2010-01-08 10:36:07 +0530408 && ath9k_hw_getcapability(sc->sc_ah, ATH9K_CAP_CIPHER,
Sujith55624202010-01-08 10:36:02 +0530409 ATH9K_CIPHER_MIC, NULL)
Sujith285f2dd2010-01-08 10:36:07 +0530410 && ath9k_hw_getcapability(sc->sc_ah, ATH9K_CAP_TKIP_SPLIT,
Sujith55624202010-01-08 10:36:02 +0530411 0, NULL))
412 common->splitmic = 1;
413
414 /* turn on mcast key search if possible */
Sujith285f2dd2010-01-08 10:36:07 +0530415 if (!ath9k_hw_getcapability(sc->sc_ah, ATH9K_CAP_MCAST_KEYSRCH, 0, NULL))
416 (void)ath9k_hw_setcapability(sc->sc_ah, ATH9K_CAP_MCAST_KEYSRCH,
417 1, 1, NULL);
Sujith55624202010-01-08 10:36:02 +0530418
Sujith285f2dd2010-01-08 10:36:07 +0530419}
Sujith55624202010-01-08 10:36:02 +0530420
Sujith285f2dd2010-01-08 10:36:07 +0530421static int ath9k_init_btcoex(struct ath_softc *sc)
422{
423 int r, qnum;
424
425 switch (sc->sc_ah->btcoex_hw.scheme) {
426 case ATH_BTCOEX_CFG_NONE:
427 break;
428 case ATH_BTCOEX_CFG_2WIRE:
429 ath9k_hw_btcoex_init_2wire(sc->sc_ah);
430 break;
431 case ATH_BTCOEX_CFG_3WIRE:
432 ath9k_hw_btcoex_init_3wire(sc->sc_ah);
433 r = ath_init_btcoex_timer(sc);
434 if (r)
435 return -1;
436 qnum = ath_tx_get_qnum(sc, ATH9K_TX_QUEUE_DATA, ATH9K_WME_AC_BE);
437 ath9k_hw_init_btcoex_hw(sc->sc_ah, qnum);
438 sc->btcoex.bt_stomp_type = ATH_BTCOEX_STOMP_LOW;
439 break;
440 default:
441 WARN_ON(1);
442 break;
Sujith55624202010-01-08 10:36:02 +0530443 }
444
Sujith285f2dd2010-01-08 10:36:07 +0530445 return 0;
446}
Sujith55624202010-01-08 10:36:02 +0530447
Sujith285f2dd2010-01-08 10:36:07 +0530448static int ath9k_init_queues(struct ath_softc *sc)
449{
450 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
451 int i = 0;
Sujith55624202010-01-08 10:36:02 +0530452
Sujith285f2dd2010-01-08 10:36:07 +0530453 for (i = 0; i < ARRAY_SIZE(sc->tx.hwq_map); i++)
454 sc->tx.hwq_map[i] = -1;
Sujith55624202010-01-08 10:36:02 +0530455
Sujith285f2dd2010-01-08 10:36:07 +0530456 sc->beacon.beaconq = ath9k_hw_beaconq_setup(sc->sc_ah);
457 if (sc->beacon.beaconq == -1) {
458 ath_print(common, ATH_DBG_FATAL,
459 "Unable to setup a beacon xmit queue\n");
460 goto err;
Sujith55624202010-01-08 10:36:02 +0530461 }
462
Sujith285f2dd2010-01-08 10:36:07 +0530463 sc->beacon.cabq = ath_txq_setup(sc, ATH9K_TX_QUEUE_CAB, 0);
464 if (sc->beacon.cabq == NULL) {
465 ath_print(common, ATH_DBG_FATAL,
466 "Unable to setup CAB xmit queue\n");
467 goto err;
468 }
Sujith55624202010-01-08 10:36:02 +0530469
Sujith285f2dd2010-01-08 10:36:07 +0530470 sc->config.cabqReadytime = ATH_CABQ_READY_TIME;
471 ath_cabq_update(sc);
472
473 if (!ath_tx_setup(sc, ATH9K_WME_AC_BK)) {
474 ath_print(common, ATH_DBG_FATAL,
475 "Unable to setup xmit queue for BK traffic\n");
476 goto err;
477 }
478
479 if (!ath_tx_setup(sc, ATH9K_WME_AC_BE)) {
480 ath_print(common, ATH_DBG_FATAL,
481 "Unable to setup xmit queue for BE traffic\n");
482 goto err;
483 }
484 if (!ath_tx_setup(sc, ATH9K_WME_AC_VI)) {
485 ath_print(common, ATH_DBG_FATAL,
486 "Unable to setup xmit queue for VI traffic\n");
487 goto err;
488 }
489 if (!ath_tx_setup(sc, ATH9K_WME_AC_VO)) {
490 ath_print(common, ATH_DBG_FATAL,
491 "Unable to setup xmit queue for VO traffic\n");
492 goto err;
493 }
494
495 return 0;
496
497err:
498 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
499 if (ATH_TXQ_SETUP(sc, i))
500 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
501
502 return -EIO;
503}
504
505static void ath9k_init_channels_rates(struct ath_softc *sc)
506{
Sujith55624202010-01-08 10:36:02 +0530507 if (test_bit(ATH9K_MODE_11G, sc->sc_ah->caps.wireless_modes)) {
508 sc->sbands[IEEE80211_BAND_2GHZ].channels = ath9k_2ghz_chantable;
509 sc->sbands[IEEE80211_BAND_2GHZ].band = IEEE80211_BAND_2GHZ;
510 sc->sbands[IEEE80211_BAND_2GHZ].n_channels =
511 ARRAY_SIZE(ath9k_2ghz_chantable);
512 sc->sbands[IEEE80211_BAND_2GHZ].bitrates = ath9k_legacy_rates;
513 sc->sbands[IEEE80211_BAND_2GHZ].n_bitrates =
514 ARRAY_SIZE(ath9k_legacy_rates);
515 }
516
517 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->caps.wireless_modes)) {
518 sc->sbands[IEEE80211_BAND_5GHZ].channels = ath9k_5ghz_chantable;
519 sc->sbands[IEEE80211_BAND_5GHZ].band = IEEE80211_BAND_5GHZ;
520 sc->sbands[IEEE80211_BAND_5GHZ].n_channels =
521 ARRAY_SIZE(ath9k_5ghz_chantable);
522 sc->sbands[IEEE80211_BAND_5GHZ].bitrates =
523 ath9k_legacy_rates + 4;
524 sc->sbands[IEEE80211_BAND_5GHZ].n_bitrates =
525 ARRAY_SIZE(ath9k_legacy_rates) - 4;
526 }
Sujith285f2dd2010-01-08 10:36:07 +0530527}
Sujith55624202010-01-08 10:36:02 +0530528
Sujith285f2dd2010-01-08 10:36:07 +0530529static void ath9k_init_misc(struct ath_softc *sc)
530{
531 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
532 int i = 0;
533
534 common->ani.noise_floor = ATH_DEFAULT_NOISE_FLOOR;
535 setup_timer(&common->ani.timer, ath_ani_calibrate, (unsigned long)sc);
536
537 sc->config.txpowlimit = ATH_TXPOWER_MAX;
538
539 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_HT) {
540 sc->sc_flags |= SC_OP_TXAGGR;
541 sc->sc_flags |= SC_OP_RXAGGR;
Sujith55624202010-01-08 10:36:02 +0530542 }
543
Sujith285f2dd2010-01-08 10:36:07 +0530544 common->tx_chainmask = sc->sc_ah->caps.tx_chainmask;
545 common->rx_chainmask = sc->sc_ah->caps.rx_chainmask;
546
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400547 ath9k_hw_set_diversity(sc->sc_ah, true);
Sujith285f2dd2010-01-08 10:36:07 +0530548 sc->rx.defant = ath9k_hw_getdefantenna(sc->sc_ah);
549
550 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK)
551 memcpy(common->bssidmask, ath_bcast_mac, ETH_ALEN);
552
553 sc->beacon.slottime = ATH9K_SLOT_TIME_9;
554
555 for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++) {
556 sc->beacon.bslot[i] = NULL;
557 sc->beacon.bslot_aphy[i] = NULL;
558 }
559}
560
561static int ath9k_init_softc(u16 devid, struct ath_softc *sc, u16 subsysid,
562 const struct ath_bus_ops *bus_ops)
563{
564 struct ath_hw *ah = NULL;
565 struct ath_common *common;
566 int ret = 0, i;
567 int csz = 0;
568
Sujith285f2dd2010-01-08 10:36:07 +0530569 ah = kzalloc(sizeof(struct ath_hw), GFP_KERNEL);
570 if (!ah)
571 return -ENOMEM;
572
573 ah->hw_version.devid = devid;
574 ah->hw_version.subsysid = subsysid;
575 sc->sc_ah = ah;
576
577 common = ath9k_hw_common(ah);
578 common->ops = &ath9k_common_ops;
579 common->bus_ops = bus_ops;
580 common->ah = ah;
581 common->hw = sc->hw;
582 common->priv = sc;
583 common->debug_mask = ath9k_debug;
584
585 spin_lock_init(&sc->wiphy_lock);
586 spin_lock_init(&sc->sc_resetlock);
587 spin_lock_init(&sc->sc_serial_rw);
588 spin_lock_init(&sc->sc_pm_lock);
589 mutex_init(&sc->mutex);
590 tasklet_init(&sc->intr_tq, ath9k_tasklet, (unsigned long)sc);
591 tasklet_init(&sc->bcon_tasklet, ath_beacon_tasklet,
592 (unsigned long)sc);
593
594 /*
595 * Cache line size is used to size and align various
596 * structures used to communicate with the hardware.
597 */
598 ath_read_cachesize(common, &csz);
599 common->cachelsz = csz << 2; /* convert to bytes */
600
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400601 /* Initializes the hardware for all supported chipsets */
Sujith285f2dd2010-01-08 10:36:07 +0530602 ret = ath9k_hw_init(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400603 if (ret)
Sujith285f2dd2010-01-08 10:36:07 +0530604 goto err_hw;
Sujith285f2dd2010-01-08 10:36:07 +0530605
606 ret = ath9k_init_debug(ah);
607 if (ret) {
608 ath_print(common, ATH_DBG_FATAL,
609 "Unable to create debugfs files\n");
610 goto err_debug;
611 }
612
613 ret = ath9k_init_queues(sc);
614 if (ret)
615 goto err_queues;
616
617 ret = ath9k_init_btcoex(sc);
618 if (ret)
619 goto err_btcoex;
620
621 ath9k_init_crypto(sc);
622 ath9k_init_channels_rates(sc);
623 ath9k_init_misc(sc);
624
Sujith55624202010-01-08 10:36:02 +0530625 return 0;
Sujith285f2dd2010-01-08 10:36:07 +0530626
627err_btcoex:
Sujith55624202010-01-08 10:36:02 +0530628 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
629 if (ATH_TXQ_SETUP(sc, i))
630 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
Sujith285f2dd2010-01-08 10:36:07 +0530631err_queues:
632 ath9k_exit_debug(ah);
633err_debug:
634 ath9k_hw_deinit(ah);
635err_hw:
636 tasklet_kill(&sc->intr_tq);
637 tasklet_kill(&sc->bcon_tasklet);
Sujith55624202010-01-08 10:36:02 +0530638
Sujith285f2dd2010-01-08 10:36:07 +0530639 kfree(ah);
640 sc->sc_ah = NULL;
641
642 return ret;
Sujith55624202010-01-08 10:36:02 +0530643}
644
Sujith285f2dd2010-01-08 10:36:07 +0530645void ath9k_set_hw_capab(struct ath_softc *sc, struct ieee80211_hw *hw)
Sujith55624202010-01-08 10:36:02 +0530646{
Sujith285f2dd2010-01-08 10:36:07 +0530647 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
648
Sujith55624202010-01-08 10:36:02 +0530649 hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
650 IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
651 IEEE80211_HW_SIGNAL_DBM |
Sujith55624202010-01-08 10:36:02 +0530652 IEEE80211_HW_SUPPORTS_PS |
653 IEEE80211_HW_PS_NULLFUNC_STACK |
Vivek Natarajan05df4982010-02-09 11:34:50 +0530654 IEEE80211_HW_SPECTRUM_MGMT |
655 IEEE80211_HW_REPORTS_TX_ACK_STATUS;
Sujith55624202010-01-08 10:36:02 +0530656
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500657 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_HT)
658 hw->flags |= IEEE80211_HW_AMPDU_AGGREGATION;
659
Sujith55624202010-01-08 10:36:02 +0530660 if (AR_SREV_9160_10_OR_LATER(sc->sc_ah) || modparam_nohwcrypt)
661 hw->flags |= IEEE80211_HW_MFP_CAPABLE;
662
663 hw->wiphy->interface_modes =
664 BIT(NL80211_IFTYPE_AP) |
665 BIT(NL80211_IFTYPE_STATION) |
666 BIT(NL80211_IFTYPE_ADHOC) |
667 BIT(NL80211_IFTYPE_MESH_POINT);
668
669 hw->wiphy->flags &= ~WIPHY_FLAG_PS_ON_BY_DEFAULT;
670
671 hw->queues = 4;
672 hw->max_rates = 4;
673 hw->channel_change_time = 5000;
674 hw->max_listen_interval = 10;
Felix Fietkau65896512010-01-24 03:26:11 +0100675 hw->max_rate_tries = 10;
Sujith55624202010-01-08 10:36:02 +0530676 hw->sta_data_size = sizeof(struct ath_node);
677 hw->vif_data_size = sizeof(struct ath_vif);
678
679 hw->rate_control_algorithm = "ath9k_rate_control";
680
681 if (test_bit(ATH9K_MODE_11G, sc->sc_ah->caps.wireless_modes))
682 hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
683 &sc->sbands[IEEE80211_BAND_2GHZ];
684 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->caps.wireless_modes))
685 hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
686 &sc->sbands[IEEE80211_BAND_5GHZ];
Sujith285f2dd2010-01-08 10:36:07 +0530687
688 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_HT) {
689 if (test_bit(ATH9K_MODE_11G, sc->sc_ah->caps.wireless_modes))
690 setup_ht_cap(sc, &sc->sbands[IEEE80211_BAND_2GHZ].ht_cap);
691 if (test_bit(ATH9K_MODE_11A, sc->sc_ah->caps.wireless_modes))
692 setup_ht_cap(sc, &sc->sbands[IEEE80211_BAND_5GHZ].ht_cap);
693 }
694
695 SET_IEEE80211_PERM_ADDR(hw, common->macaddr);
Sujith55624202010-01-08 10:36:02 +0530696}
697
Sujith285f2dd2010-01-08 10:36:07 +0530698int ath9k_init_device(u16 devid, struct ath_softc *sc, u16 subsysid,
Sujith55624202010-01-08 10:36:02 +0530699 const struct ath_bus_ops *bus_ops)
700{
701 struct ieee80211_hw *hw = sc->hw;
702 struct ath_common *common;
703 struct ath_hw *ah;
Sujith285f2dd2010-01-08 10:36:07 +0530704 int error = 0;
Sujith55624202010-01-08 10:36:02 +0530705 struct ath_regulatory *reg;
706
Sujith285f2dd2010-01-08 10:36:07 +0530707 /* Bring up device */
708 error = ath9k_init_softc(devid, sc, subsysid, bus_ops);
Sujith55624202010-01-08 10:36:02 +0530709 if (error != 0)
Sujith285f2dd2010-01-08 10:36:07 +0530710 goto error_init;
Sujith55624202010-01-08 10:36:02 +0530711
712 ah = sc->sc_ah;
713 common = ath9k_hw_common(ah);
Sujith285f2dd2010-01-08 10:36:07 +0530714 ath9k_set_hw_capab(sc, hw);
Sujith55624202010-01-08 10:36:02 +0530715
Sujith285f2dd2010-01-08 10:36:07 +0530716 /* Initialize regulatory */
Sujith55624202010-01-08 10:36:02 +0530717 error = ath_regd_init(&common->regulatory, sc->hw->wiphy,
718 ath9k_reg_notifier);
719 if (error)
Sujith285f2dd2010-01-08 10:36:07 +0530720 goto error_regd;
Sujith55624202010-01-08 10:36:02 +0530721
722 reg = &common->regulatory;
723
Sujith285f2dd2010-01-08 10:36:07 +0530724 /* Setup TX DMA */
Sujith55624202010-01-08 10:36:02 +0530725 error = ath_tx_init(sc, ATH_TXBUF);
726 if (error != 0)
Sujith285f2dd2010-01-08 10:36:07 +0530727 goto error_tx;
Sujith55624202010-01-08 10:36:02 +0530728
Sujith285f2dd2010-01-08 10:36:07 +0530729 /* Setup RX DMA */
Sujith55624202010-01-08 10:36:02 +0530730 error = ath_rx_init(sc, ATH_RXBUF);
731 if (error != 0)
Sujith285f2dd2010-01-08 10:36:07 +0530732 goto error_rx;
733
734 /* Register with mac80211 */
735 error = ieee80211_register_hw(hw);
736 if (error)
737 goto error_register;
738
739 /* Handle world regulatory */
740 if (!ath_is_world_regd(reg)) {
741 error = regulatory_hint(hw->wiphy, reg->alpha2);
742 if (error)
743 goto error_world;
744 }
Sujith55624202010-01-08 10:36:02 +0530745
746 INIT_WORK(&sc->chan_work, ath9k_wiphy_chan_work);
747 INIT_DELAYED_WORK(&sc->wiphy_work, ath9k_wiphy_work);
748 sc->wiphy_scheduler_int = msecs_to_jiffies(500);
749
Sujith55624202010-01-08 10:36:02 +0530750 ath_init_leds(sc);
Sujith55624202010-01-08 10:36:02 +0530751 ath_start_rfkill_poll(sc);
752
753 return 0;
754
Sujith285f2dd2010-01-08 10:36:07 +0530755error_world:
756 ieee80211_unregister_hw(hw);
757error_register:
758 ath_rx_cleanup(sc);
759error_rx:
760 ath_tx_cleanup(sc);
761error_tx:
762 /* Nothing */
763error_regd:
764 ath9k_deinit_softc(sc);
765error_init:
Sujith55624202010-01-08 10:36:02 +0530766 return error;
767}
768
769/*****************************/
770/* De-Initialization */
771/*****************************/
772
Sujith285f2dd2010-01-08 10:36:07 +0530773static void ath9k_deinit_softc(struct ath_softc *sc)
Sujith55624202010-01-08 10:36:02 +0530774{
Sujith285f2dd2010-01-08 10:36:07 +0530775 int i = 0;
Sujith55624202010-01-08 10:36:02 +0530776
Sujith285f2dd2010-01-08 10:36:07 +0530777 if ((sc->btcoex.no_stomp_timer) &&
778 sc->sc_ah->btcoex_hw.scheme == ATH_BTCOEX_CFG_3WIRE)
779 ath_gen_timer_free(sc->sc_ah, sc->btcoex.no_stomp_timer);
Sujith55624202010-01-08 10:36:02 +0530780
Sujith285f2dd2010-01-08 10:36:07 +0530781 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
782 if (ATH_TXQ_SETUP(sc, i))
783 ath_tx_cleanupq(sc, &sc->tx.txq[i]);
784
785 ath9k_exit_debug(sc->sc_ah);
786 ath9k_hw_deinit(sc->sc_ah);
787
788 tasklet_kill(&sc->intr_tq);
789 tasklet_kill(&sc->bcon_tasklet);
Sujith736b3a22010-03-17 14:25:24 +0530790
791 kfree(sc->sc_ah);
792 sc->sc_ah = NULL;
Sujith55624202010-01-08 10:36:02 +0530793}
794
Sujith285f2dd2010-01-08 10:36:07 +0530795void ath9k_deinit_device(struct ath_softc *sc)
Sujith55624202010-01-08 10:36:02 +0530796{
797 struct ieee80211_hw *hw = sc->hw;
Sujith55624202010-01-08 10:36:02 +0530798 int i = 0;
799
800 ath9k_ps_wakeup(sc);
801
Sujith55624202010-01-08 10:36:02 +0530802 wiphy_rfkill_stop_polling(sc->hw->wiphy);
Sujith285f2dd2010-01-08 10:36:07 +0530803 ath_deinit_leds(sc);
Sujith55624202010-01-08 10:36:02 +0530804
805 for (i = 0; i < sc->num_sec_wiphy; i++) {
806 struct ath_wiphy *aphy = sc->sec_wiphy[i];
807 if (aphy == NULL)
808 continue;
809 sc->sec_wiphy[i] = NULL;
810 ieee80211_unregister_hw(aphy->hw);
811 ieee80211_free_hw(aphy->hw);
812 }
Sujith285f2dd2010-01-08 10:36:07 +0530813 kfree(sc->sec_wiphy);
814
Sujith55624202010-01-08 10:36:02 +0530815 ieee80211_unregister_hw(hw);
816 ath_rx_cleanup(sc);
817 ath_tx_cleanup(sc);
Sujith285f2dd2010-01-08 10:36:07 +0530818 ath9k_deinit_softc(sc);
Sujith55624202010-01-08 10:36:02 +0530819}
820
821void ath_descdma_cleanup(struct ath_softc *sc,
822 struct ath_descdma *dd,
823 struct list_head *head)
824{
825 dma_free_coherent(sc->dev, dd->dd_desc_len, dd->dd_desc,
826 dd->dd_desc_paddr);
827
828 INIT_LIST_HEAD(head);
829 kfree(dd->dd_bufptr);
830 memset(dd, 0, sizeof(*dd));
831}
832
Sujith55624202010-01-08 10:36:02 +0530833/************************/
834/* Module Hooks */
835/************************/
836
837static int __init ath9k_init(void)
838{
839 int error;
840
841 /* Register rate control algorithm */
842 error = ath_rate_control_register();
843 if (error != 0) {
844 printk(KERN_ERR
845 "ath9k: Unable to register rate control "
846 "algorithm: %d\n",
847 error);
848 goto err_out;
849 }
850
851 error = ath9k_debug_create_root();
852 if (error) {
853 printk(KERN_ERR
854 "ath9k: Unable to create debugfs root: %d\n",
855 error);
856 goto err_rate_unregister;
857 }
858
859 error = ath_pci_init();
860 if (error < 0) {
861 printk(KERN_ERR
862 "ath9k: No PCI devices found, driver not installed.\n");
863 error = -ENODEV;
864 goto err_remove_root;
865 }
866
867 error = ath_ahb_init();
868 if (error < 0) {
869 error = -ENODEV;
870 goto err_pci_exit;
871 }
872
873 return 0;
874
875 err_pci_exit:
876 ath_pci_exit();
877
878 err_remove_root:
879 ath9k_debug_remove_root();
880 err_rate_unregister:
881 ath_rate_control_unregister();
882 err_out:
883 return error;
884}
885module_init(ath9k_init);
886
887static void __exit ath9k_exit(void)
888{
889 ath_ahb_exit();
890 ath_pci_exit();
891 ath9k_debug_remove_root();
892 ath_rate_control_unregister();
893 printk(KERN_INFO "%s: Driver unloaded\n", dev_info);
894}
895module_exit(ath9k_exit);