blob: 6e87af42b30a2e0d192772ce16e64adc3863c877 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Luis R. Rodriguezb3950e62010-04-15 17:39:03 -04002 * Copyright (c) 2008-2010 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
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 <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070019#include <asm/unaligned.h>
20
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070021#include "hw.h"
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040022#include "hw-ops.h"
Luis R. Rodriguezcfe8cba2009-09-13 23:39:31 -070023#include "rc.h"
Luis R. Rodriguezb622a722010-04-15 17:39:28 -040024#include "ar9003_mac.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070025
Sujithcbe61d82009-02-09 13:27:12 +053026static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070027
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040028MODULE_AUTHOR("Atheros Communications");
29MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
30MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
31MODULE_LICENSE("Dual BSD/GPL");
32
33static int __init ath9k_init(void)
34{
35 return 0;
36}
37module_init(ath9k_init);
38
39static void __exit ath9k_exit(void)
40{
41 return;
42}
43module_exit(ath9k_exit);
44
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040045/* Private hardware callbacks */
46
47static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
48{
49 ath9k_hw_private_ops(ah)->init_cal_settings(ah);
50}
51
52static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
53{
54 ath9k_hw_private_ops(ah)->init_mode_regs(ah);
55}
56
57static bool ath9k_hw_macversion_supported(struct ath_hw *ah)
58{
59 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
60
61 return priv_ops->macversion_supported(ah->hw_version.macVersion);
62}
63
Luis R. Rodriguez64773962010-04-15 17:38:17 -040064static u32 ath9k_hw_compute_pll_control(struct ath_hw *ah,
65 struct ath9k_channel *chan)
66{
67 return ath9k_hw_private_ops(ah)->compute_pll_control(ah, chan);
68}
69
Luis R. Rodriguez991312d2010-04-15 17:39:05 -040070static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
71{
72 if (!ath9k_hw_private_ops(ah)->init_mode_gain_regs)
73 return;
74
75 ath9k_hw_private_ops(ah)->init_mode_gain_regs(ah);
76}
77
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -040078static void ath9k_hw_ani_cache_ini_regs(struct ath_hw *ah)
79{
80 /* You will not have this callback if using the old ANI */
81 if (!ath9k_hw_private_ops(ah)->ani_cache_ini_regs)
82 return;
83
84 ath9k_hw_private_ops(ah)->ani_cache_ini_regs(ah);
85}
86
Sujithf1dc5602008-10-29 10:16:30 +053087/********************/
88/* Helper Functions */
89/********************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070090
Sujithcbe61d82009-02-09 13:27:12 +053091static u32 ath9k_hw_mac_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053092{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070093 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053094
Sujith2660b812009-02-09 13:27:26 +053095 if (!ah->curchan) /* should really check for CCK instead */
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080096 return usecs *ATH9K_CLOCK_RATE_CCK;
97 if (conf->channel->band == IEEE80211_BAND_2GHZ)
98 return usecs *ATH9K_CLOCK_RATE_2GHZ_OFDM;
Vasanthakumar Thiagarajane5553722010-04-26 15:04:33 -040099
100 if (ah->caps.hw_caps & ATH9K_HW_CAP_FASTCLOCK)
101 return usecs * ATH9K_CLOCK_FAST_RATE_5GHZ_OFDM;
102 else
103 return usecs * ATH9K_CLOCK_RATE_5GHZ_OFDM;
Sujithf1dc5602008-10-29 10:16:30 +0530104}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700105
Sujithcbe61d82009-02-09 13:27:12 +0530106static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +0530107{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -0700108 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +0530109
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -0800110 if (conf_is_ht40(conf))
Sujithf1dc5602008-10-29 10:16:30 +0530111 return ath9k_hw_mac_clks(ah, usecs) * 2;
112 else
113 return ath9k_hw_mac_clks(ah, usecs);
114}
115
Sujith0caa7b12009-02-16 13:23:20 +0530116bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700117{
118 int i;
119
Sujith0caa7b12009-02-16 13:23:20 +0530120 BUG_ON(timeout < AH_TIME_QUANTUM);
121
122 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700123 if ((REG_READ(ah, reg) & mask) == val)
124 return true;
125
126 udelay(AH_TIME_QUANTUM);
127 }
Sujith04bd4632008-11-28 22:18:05 +0530128
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700129 ath_print(ath9k_hw_common(ah), ATH_DBG_ANY,
130 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
131 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +0530132
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700133 return false;
134}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400135EXPORT_SYMBOL(ath9k_hw_wait);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700136
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700137u32 ath9k_hw_reverse_bits(u32 val, u32 n)
138{
139 u32 retval;
140 int i;
141
142 for (i = 0, retval = 0; i < n; i++) {
143 retval = (retval << 1) | (val & 1);
144 val >>= 1;
145 }
146 return retval;
147}
148
Sujithcbe61d82009-02-09 13:27:12 +0530149bool ath9k_get_channel_edges(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530150 u16 flags, u16 *low,
151 u16 *high)
152{
Sujith2660b812009-02-09 13:27:26 +0530153 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530154
155 if (flags & CHANNEL_5GHZ) {
156 *low = pCap->low_5ghz_chan;
157 *high = pCap->high_5ghz_chan;
158 return true;
159 }
160 if ((flags & CHANNEL_2GHZ)) {
161 *low = pCap->low_2ghz_chan;
162 *high = pCap->high_2ghz_chan;
163 return true;
164 }
165 return false;
166}
167
Sujithcbe61d82009-02-09 13:27:12 +0530168u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Felix Fietkau545750d2009-11-23 22:21:01 +0100169 u8 phy, int kbps,
Sujithf1dc5602008-10-29 10:16:30 +0530170 u32 frameLen, u16 rateix,
171 bool shortPreamble)
172{
173 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
Sujithf1dc5602008-10-29 10:16:30 +0530174
175 if (kbps == 0)
176 return 0;
177
Felix Fietkau545750d2009-11-23 22:21:01 +0100178 switch (phy) {
Sujith46d14a52008-11-18 09:08:13 +0530179 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530180 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Felix Fietkau545750d2009-11-23 22:21:01 +0100181 if (shortPreamble)
Sujithf1dc5602008-10-29 10:16:30 +0530182 phyTime >>= 1;
183 numBits = frameLen << 3;
184 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
185 break;
Sujith46d14a52008-11-18 09:08:13 +0530186 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530187 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530188 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
189 numBits = OFDM_PLCP_BITS + (frameLen << 3);
190 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
191 txTime = OFDM_SIFS_TIME_QUARTER
192 + OFDM_PREAMBLE_TIME_QUARTER
193 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530194 } else if (ah->curchan &&
195 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530196 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
197 numBits = OFDM_PLCP_BITS + (frameLen << 3);
198 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
199 txTime = OFDM_SIFS_TIME_HALF +
200 OFDM_PREAMBLE_TIME_HALF
201 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
202 } else {
203 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
204 numBits = OFDM_PLCP_BITS + (frameLen << 3);
205 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
206 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
207 + (numSymbols * OFDM_SYMBOL_TIME);
208 }
209 break;
210 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700211 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
Felix Fietkau545750d2009-11-23 22:21:01 +0100212 "Unknown phy %u (rate ix %u)\n", phy, rateix);
Sujithf1dc5602008-10-29 10:16:30 +0530213 txTime = 0;
214 break;
215 }
216
217 return txTime;
218}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400219EXPORT_SYMBOL(ath9k_hw_computetxtime);
Sujithf1dc5602008-10-29 10:16:30 +0530220
Sujithcbe61d82009-02-09 13:27:12 +0530221void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530222 struct ath9k_channel *chan,
223 struct chan_centers *centers)
224{
225 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530226
227 if (!IS_CHAN_HT40(chan)) {
228 centers->ctl_center = centers->ext_center =
229 centers->synth_center = chan->channel;
230 return;
231 }
232
233 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
234 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
235 centers->synth_center =
236 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
237 extoff = 1;
238 } else {
239 centers->synth_center =
240 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
241 extoff = -1;
242 }
243
244 centers->ctl_center =
245 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700246 /* 25 MHz spacing is supported by hw but not on upper layers */
Sujithf1dc5602008-10-29 10:16:30 +0530247 centers->ext_center =
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700248 centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
Sujithf1dc5602008-10-29 10:16:30 +0530249}
250
251/******************/
252/* Chip Revisions */
253/******************/
254
Sujithcbe61d82009-02-09 13:27:12 +0530255static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530256{
257 u32 val;
258
259 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
260
261 if (val == 0xFF) {
262 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530263 ah->hw_version.macVersion =
264 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
265 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Sujith2660b812009-02-09 13:27:26 +0530266 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530267 } else {
268 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530269 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530270
Sujithd535a422009-02-09 13:27:06 +0530271 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530272
Sujithd535a422009-02-09 13:27:06 +0530273 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530274 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530275 }
276}
277
Sujithf1dc5602008-10-29 10:16:30 +0530278/************************************/
279/* HW Attach, Detach, Init Routines */
280/************************************/
281
Sujithcbe61d82009-02-09 13:27:12 +0530282static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530283{
Sujithfeed0292009-01-29 11:37:35 +0530284 if (AR_SREV_9100(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530285 return;
286
Sujith7d0d0df2010-04-16 11:53:57 +0530287 ENABLE_REGWRITE_BUFFER(ah);
288
Sujithf1dc5602008-10-29 10:16:30 +0530289 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
290 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
291 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
292 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
293 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
294 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
295 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
296 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
297 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
298
299 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
Sujith7d0d0df2010-04-16 11:53:57 +0530300
301 REGWRITE_BUFFER_FLUSH(ah);
302 DISABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530303}
304
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400305/* This should work for all families including legacy */
Sujithcbe61d82009-02-09 13:27:12 +0530306static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530307{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700308 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400309 u32 regAddr[2] = { AR_STA_ID0 };
Sujithf1dc5602008-10-29 10:16:30 +0530310 u32 regHold[2];
311 u32 patternData[4] = { 0x55555555,
312 0xaaaaaaaa,
313 0x66666666,
314 0x99999999 };
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400315 int i, j, loop_max;
Sujithf1dc5602008-10-29 10:16:30 +0530316
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400317 if (!AR_SREV_9300_20_OR_LATER(ah)) {
318 loop_max = 2;
319 regAddr[1] = AR_PHY_BASE + (8 << 2);
320 } else
321 loop_max = 1;
322
323 for (i = 0; i < loop_max; i++) {
Sujithf1dc5602008-10-29 10:16:30 +0530324 u32 addr = regAddr[i];
325 u32 wrData, rdData;
326
327 regHold[i] = REG_READ(ah, addr);
328 for (j = 0; j < 0x100; j++) {
329 wrData = (j << 16) | j;
330 REG_WRITE(ah, addr, wrData);
331 rdData = REG_READ(ah, addr);
332 if (rdData != wrData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700333 ath_print(common, ATH_DBG_FATAL,
334 "address test failed "
335 "addr: 0x%08x - wr:0x%08x != "
336 "rd:0x%08x\n",
337 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530338 return false;
339 }
340 }
341 for (j = 0; j < 4; j++) {
342 wrData = patternData[j];
343 REG_WRITE(ah, addr, wrData);
344 rdData = REG_READ(ah, addr);
345 if (wrData != rdData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700346 ath_print(common, ATH_DBG_FATAL,
347 "address test failed "
348 "addr: 0x%08x - wr:0x%08x != "
349 "rd:0x%08x\n",
350 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530351 return false;
352 }
353 }
354 REG_WRITE(ah, regAddr[i], regHold[i]);
355 }
356 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530357
Sujithf1dc5602008-10-29 10:16:30 +0530358 return true;
359}
360
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700361static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700362{
363 int i;
364
Sujith2660b812009-02-09 13:27:26 +0530365 ah->config.dma_beacon_response_time = 2;
366 ah->config.sw_beacon_response_time = 10;
367 ah->config.additional_swba_backoff = 0;
368 ah->config.ack_6mb = 0x0;
369 ah->config.cwm_ignore_extcca = 0;
370 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530371 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530372 ah->config.pcie_waen = 0;
373 ah->config.analog_shiftreg = 1;
Sujith2660b812009-02-09 13:27:26 +0530374 ah->config.ofdm_trig_low = 200;
375 ah->config.ofdm_trig_high = 500;
376 ah->config.cck_trig_high = 200;
377 ah->config.cck_trig_low = 100;
Luis R. Rodriguez03c72512010-06-12 00:33:46 -0400378 ah->config.enable_ani = true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700379
380 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530381 ah->config.spurchans[i][0] = AR_NO_SPUR;
382 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700383 }
384
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500385 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
386 ah->config.ht_enable = 1;
387 else
388 ah->config.ht_enable = 0;
389
Sujith0ce024c2009-12-14 14:57:00 +0530390 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez6a0ec302010-06-21 18:38:49 -0400391 ah->config.pcieSerDesWrite = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400392
393 /*
394 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
395 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
396 * This means we use it for all AR5416 devices, and the few
397 * minor PCI AR9280 devices out there.
398 *
399 * Serialization is required because these devices do not handle
400 * well the case of two concurrent reads/writes due to the latency
401 * involved. During one read/write another read/write can be issued
402 * on another CPU while the previous read/write may still be working
403 * on our hardware, if we hit this case the hardware poops in a loop.
404 * We prevent this by serializing reads and writes.
405 *
406 * This issue is not present on PCI-Express devices or pre-AR5416
407 * devices (legacy, 802.11abg).
408 */
409 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700410 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700411}
412
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700413static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700414{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700415 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
416
417 regulatory->country_code = CTRY_DEFAULT;
418 regulatory->power_limit = MAX_RATE_POWER;
419 regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
420
Sujithd535a422009-02-09 13:27:06 +0530421 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530422 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700423
424 ah->ah_flags = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700425 if (!AR_SREV_9100(ah))
426 ah->ah_flags = AH_USE_EEPROM;
427
Sujith2660b812009-02-09 13:27:26 +0530428 ah->atim_window = 0;
Felix Fietkau16f24112010-06-12 17:22:32 +0200429 ah->sta_id1_defaults =
430 AR_STA_ID1_CRPT_MIC_ENABLE |
431 AR_STA_ID1_MCAST_KSRCH;
Sujith2660b812009-02-09 13:27:26 +0530432 ah->beacon_interval = 100;
433 ah->enable_32kHz_clock = DONT_USE_32KHZ;
434 ah->slottime = (u32) -1;
Sujith2660b812009-02-09 13:27:26 +0530435 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200436 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700437}
438
Sujithcbe61d82009-02-09 13:27:12 +0530439static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700440{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700441 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530442 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700443 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530444 u16 eeval;
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400445 u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700446
Sujithf1dc5602008-10-29 10:16:30 +0530447 sum = 0;
448 for (i = 0; i < 3; i++) {
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400449 eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
Sujithf1dc5602008-10-29 10:16:30 +0530450 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700451 common->macaddr[2 * i] = eeval >> 8;
452 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700453 }
Sujithd8baa932009-03-30 15:28:25 +0530454 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530455 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700456
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700457 return 0;
458}
459
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700460static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700461{
462 int ecode;
463
Sujith527d4852010-03-17 14:25:16 +0530464 if (!AR_SREV_9271(ah)) {
465 if (!ath9k_hw_chip_test(ah))
466 return -ENODEV;
467 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700468
Luis R. Rodriguezebd5a142010-04-15 17:39:18 -0400469 if (!AR_SREV_9300_20_OR_LATER(ah)) {
470 ecode = ar9002_hw_rf_claim(ah);
471 if (ecode != 0)
472 return ecode;
473 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700474
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700475 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700476 if (ecode != 0)
477 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530478
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700479 ath_print(ath9k_hw_common(ah), ATH_DBG_CONFIG,
480 "Eeprom VER: %d, REV: %d\n",
481 ah->eep_ops->get_eeprom_ver(ah),
482 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530483
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400484 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
485 if (ecode) {
486 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
487 "Failed allocating banks for "
488 "external radio\n");
489 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400490 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700491
492 if (!AR_SREV_9100(ah)) {
493 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700494 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700495 }
Sujithf1dc5602008-10-29 10:16:30 +0530496
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700497 return 0;
498}
499
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400500static void ath9k_hw_attach_ops(struct ath_hw *ah)
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700501{
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400502 if (AR_SREV_9300_20_OR_LATER(ah))
503 ar9003_hw_attach_ops(ah);
504 else
505 ar9002_hw_attach_ops(ah);
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700506}
507
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400508/* Called for all hardware families */
509static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700510{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700511 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700512 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700513
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400514 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
515 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700516
517 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700518 ath_print(common, ATH_DBG_FATAL,
519 "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700520 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700521 }
522
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400523 ath9k_hw_init_defaults(ah);
524 ath9k_hw_init_config(ah);
525
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400526 ath9k_hw_attach_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400527
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700528 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700529 ath_print(common, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700530 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700531 }
532
533 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
534 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
535 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
536 ah->config.serialize_regmode =
537 SER_REG_MODE_ON;
538 } else {
539 ah->config.serialize_regmode =
540 SER_REG_MODE_OFF;
541 }
542 }
543
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700544 ath_print(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700545 ah->config.serialize_regmode);
546
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500547 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
548 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
549 else
550 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
551
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400552 if (!ath9k_hw_macversion_supported(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700553 ath_print(common, ATH_DBG_FATAL,
554 "Mac Chip Rev 0x%02x.%x is not supported by "
555 "this driver\n", ah->hw_version.macVersion,
556 ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700557 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700558 }
559
Luis R. Rodriguez0df13da2010-04-15 17:38:59 -0400560 if (AR_SREV_9271(ah) || AR_SREV_9100(ah))
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400561 ah->is_pciexpress = false;
562
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700563 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700564 ath9k_hw_init_cal_settings(ah);
565
566 ah->ani_function = ATH9K_ANI_ALL;
Luis R. Rodriguez31a0bd32010-04-15 17:38:22 -0400567 if (AR_SREV_9280_10_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700568 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400569 if (!AR_SREV_9300_20_OR_LATER(ah))
570 ah->ani_function &= ~ATH9K_ANI_MRC_CCK;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700571
572 ath9k_hw_init_mode_regs(ah);
573
Luis R. Rodriguez5efa3a62010-05-07 18:23:22 -0400574 /*
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -0400575 * Read back AR_WA into a permanent copy and set bits 14 and 17.
576 * We need to do this to avoid RMW of this register. We cannot
577 * read the reg when chip is asleep.
578 */
579 ah->WARegVal = REG_READ(ah, AR_WA);
580 ah->WARegVal |= (AR_WA_D3_L1_DISABLE |
581 AR_WA_ASPM_TIMER_BASED_DISABLE);
582
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700583 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530584 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700585 else
586 ath9k_hw_disablepcie(ah);
587
Luis R. Rodriguezd8f492b2010-04-15 17:39:04 -0400588 if (!AR_SREV_9300_20_OR_LATER(ah))
589 ar9002_hw_cck_chan14_spread(ah);
Sujith193cd452009-09-18 15:04:07 +0530590
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700591 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700592 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700593 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700594
595 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100596 r = ath9k_hw_fill_cap_info(ah);
597 if (r)
598 return r;
599
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700600 r = ath9k_hw_init_macaddr(ah);
601 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700602 ath_print(common, ATH_DBG_FATAL,
603 "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700604 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700605 }
606
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400607 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530608 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700609 else
Sujith2660b812009-02-09 13:27:26 +0530610 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700611
Felix Fietkau641d9922010-04-15 17:38:49 -0400612 if (AR_SREV_9300_20_OR_LATER(ah))
613 ar9003_hw_set_nf_limits(ah);
614
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700615 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -0400616 ah->bb_watchdog_timeout_ms = 25;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700617
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400618 common->state = ATH_HW_INITIALIZED;
619
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700620 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700621}
622
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400623int ath9k_hw_init(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530624{
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400625 int ret;
626 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530627
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400628 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
629 switch (ah->hw_version.devid) {
630 case AR5416_DEVID_PCI:
631 case AR5416_DEVID_PCIE:
632 case AR5416_AR9100_DEVID:
633 case AR9160_DEVID_PCI:
634 case AR9280_DEVID_PCI:
635 case AR9280_DEVID_PCIE:
636 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400637 case AR9287_DEVID_PCI:
638 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400639 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400640 case AR9300_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400641 break;
642 default:
643 if (common->bus_ops->ath_bus_type == ATH_USB)
644 break;
645 ath_print(common, ATH_DBG_FATAL,
646 "Hardware device ID 0x%04x not supported\n",
647 ah->hw_version.devid);
648 return -EOPNOTSUPP;
649 }
Sujithf1dc5602008-10-29 10:16:30 +0530650
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400651 ret = __ath9k_hw_init(ah);
652 if (ret) {
653 ath_print(common, ATH_DBG_FATAL,
654 "Unable to initialize hardware; "
655 "initialization status: %d\n", ret);
656 return ret;
657 }
Sujithf1dc5602008-10-29 10:16:30 +0530658
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400659 return 0;
Sujithf1dc5602008-10-29 10:16:30 +0530660}
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400661EXPORT_SYMBOL(ath9k_hw_init);
Sujithf1dc5602008-10-29 10:16:30 +0530662
Sujithcbe61d82009-02-09 13:27:12 +0530663static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530664{
Sujith7d0d0df2010-04-16 11:53:57 +0530665 ENABLE_REGWRITE_BUFFER(ah);
666
Sujithf1dc5602008-10-29 10:16:30 +0530667 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
668 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
669
670 REG_WRITE(ah, AR_QOS_NO_ACK,
671 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
672 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
673 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
674
675 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
676 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
677 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
678 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
679 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
Sujith7d0d0df2010-04-16 11:53:57 +0530680
681 REGWRITE_BUFFER_FLUSH(ah);
682 DISABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530683}
684
Sujithcbe61d82009-02-09 13:27:12 +0530685static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530686 struct ath9k_channel *chan)
687{
Luis R. Rodriguez64773962010-04-15 17:38:17 -0400688 u32 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530689
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100690 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530691
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400692 /* Switch the core clock for ar9271 to 117Mhz */
693 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530694 udelay(500);
695 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400696 }
697
Sujithf1dc5602008-10-29 10:16:30 +0530698 udelay(RTC_PLL_SETTLE_DELAY);
699
700 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
701}
702
Sujithcbe61d82009-02-09 13:27:12 +0530703static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800704 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530705{
Pavel Roskin152d5302010-03-31 18:05:37 -0400706 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530707 AR_IMR_TXURN |
708 AR_IMR_RXERR |
709 AR_IMR_RXORN |
710 AR_IMR_BCNMISC;
711
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400712 if (AR_SREV_9300_20_OR_LATER(ah)) {
713 imr_reg |= AR_IMR_RXOK_HP;
714 if (ah->config.rx_intr_mitigation)
715 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
716 else
717 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530718
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400719 } else {
720 if (ah->config.rx_intr_mitigation)
721 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
722 else
723 imr_reg |= AR_IMR_RXOK;
724 }
725
726 if (ah->config.tx_intr_mitigation)
727 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
728 else
729 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530730
Colin McCabed97809d2008-12-01 13:38:55 -0800731 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -0400732 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +0530733
Sujith7d0d0df2010-04-16 11:53:57 +0530734 ENABLE_REGWRITE_BUFFER(ah);
735
Pavel Roskin152d5302010-03-31 18:05:37 -0400736 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500737 ah->imrs2_reg |= AR_IMR_S2_GTT;
738 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530739
740 if (!AR_SREV_9100(ah)) {
741 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
742 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
743 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
744 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400745
Sujith7d0d0df2010-04-16 11:53:57 +0530746 REGWRITE_BUFFER_FLUSH(ah);
747 DISABLE_REGWRITE_BUFFER(ah);
748
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400749 if (AR_SREV_9300_20_OR_LATER(ah)) {
750 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
751 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
752 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
753 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
754 }
Sujithf1dc5602008-10-29 10:16:30 +0530755}
756
Felix Fietkau0005baf2010-01-15 02:33:40 +0100757static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530758{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100759 u32 val = ath9k_hw_mac_to_clks(ah, us);
760 val = min(val, (u32) 0xFFFF);
761 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530762}
763
Felix Fietkau0005baf2010-01-15 02:33:40 +0100764static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530765{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100766 u32 val = ath9k_hw_mac_to_clks(ah, us);
767 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
768 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
769}
770
771static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
772{
773 u32 val = ath9k_hw_mac_to_clks(ah, us);
774 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
775 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530776}
777
Sujithcbe61d82009-02-09 13:27:12 +0530778static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +0530779{
Sujithf1dc5602008-10-29 10:16:30 +0530780 if (tu > 0xFFFF) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700781 ath_print(ath9k_hw_common(ah), ATH_DBG_XMIT,
782 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +0530783 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +0530784 return false;
785 } else {
786 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +0530787 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +0530788 return true;
789 }
790}
791
Felix Fietkau0005baf2010-01-15 02:33:40 +0100792void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530793{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100794 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
795 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +0100796 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100797 int sifstime;
798
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700799 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
800 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +0530801
Sujith2660b812009-02-09 13:27:26 +0530802 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +0530803 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +0530804 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100805
806 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
807 sifstime = 16;
808 else
809 sifstime = 10;
810
Felix Fietkaue239d852010-01-15 02:34:58 +0100811 /* As defined by IEEE 802.11-2007 17.3.8.6 */
812 slottime = ah->slottime + 3 * ah->coverage_class;
813 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +0100814
815 /*
816 * Workaround for early ACK timeouts, add an offset to match the
817 * initval's 64us ack timeout value.
818 * This was initially only meant to work around an issue with delayed
819 * BA frames in some implementations, but it has been found to fix ACK
820 * timeout issues in other cases as well.
821 */
822 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
823 acktimeout += 64 - sifstime - ah->slottime;
824
Felix Fietkaue239d852010-01-15 02:34:58 +0100825 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100826 ath9k_hw_set_ack_timeout(ah, acktimeout);
827 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +0530828 if (ah->globaltxtimeout != (u32) -1)
829 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +0530830}
Felix Fietkau0005baf2010-01-15 02:33:40 +0100831EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +0530832
Sujith285f2dd2010-01-08 10:36:07 +0530833void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700834{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400835 struct ath_common *common = ath9k_hw_common(ah);
836
Sujith736b3a22010-03-17 14:25:24 +0530837 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400838 goto free_hw;
839
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700840 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400841
842free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400843 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700844}
Sujith285f2dd2010-01-08 10:36:07 +0530845EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700846
Sujithf1dc5602008-10-29 10:16:30 +0530847/*******/
848/* INI */
849/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700850
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400851u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -0400852{
853 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
854
855 if (IS_CHAN_B(chan))
856 ctl |= CTL_11B;
857 else if (IS_CHAN_G(chan))
858 ctl |= CTL_11G;
859 else
860 ctl |= CTL_11A;
861
862 return ctl;
863}
864
Sujithf1dc5602008-10-29 10:16:30 +0530865/****************************************/
866/* Reset and Channel Switching Routines */
867/****************************************/
868
Sujithcbe61d82009-02-09 13:27:12 +0530869static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530870{
Felix Fietkau57b32222010-04-15 17:39:22 -0400871 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530872 u32 regval;
873
Sujith7d0d0df2010-04-16 11:53:57 +0530874 ENABLE_REGWRITE_BUFFER(ah);
875
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400876 /*
877 * set AHB_MODE not to do cacheline prefetches
878 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400879 if (!AR_SREV_9300_20_OR_LATER(ah)) {
880 regval = REG_READ(ah, AR_AHB_MODE);
881 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
882 }
Sujithf1dc5602008-10-29 10:16:30 +0530883
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400884 /*
885 * let mac dma reads be in 128 byte chunks
886 */
Sujithf1dc5602008-10-29 10:16:30 +0530887 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
888 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
889
Sujith7d0d0df2010-04-16 11:53:57 +0530890 REGWRITE_BUFFER_FLUSH(ah);
891 DISABLE_REGWRITE_BUFFER(ah);
892
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400893 /*
894 * Restore TX Trigger Level to its pre-reset value.
895 * The initial value depends on whether aggregation is enabled, and is
896 * adjusted whenever underruns are detected.
897 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400898 if (!AR_SREV_9300_20_OR_LATER(ah))
899 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +0530900
Sujith7d0d0df2010-04-16 11:53:57 +0530901 ENABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530902
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400903 /*
904 * let mac dma writes be in 128 byte chunks
905 */
Sujithf1dc5602008-10-29 10:16:30 +0530906 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
907 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
908
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400909 /*
910 * Setup receive FIFO threshold to hold off TX activities
911 */
Sujithf1dc5602008-10-29 10:16:30 +0530912 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
913
Felix Fietkau57b32222010-04-15 17:39:22 -0400914 if (AR_SREV_9300_20_OR_LATER(ah)) {
915 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
916 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
917
918 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
919 ah->caps.rx_status_len);
920 }
921
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400922 /*
923 * reduce the number of usable entries in PCU TXBUF to avoid
924 * wrap around issues.
925 */
Sujithf1dc5602008-10-29 10:16:30 +0530926 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400927 /* For AR9285 the number of Fifos are reduced to half.
928 * So set the usable tx buf size also to half to
929 * avoid data/delimiter underruns
930 */
Sujithf1dc5602008-10-29 10:16:30 +0530931 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
932 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400933 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +0530934 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
935 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
936 }
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -0400937
Sujith7d0d0df2010-04-16 11:53:57 +0530938 REGWRITE_BUFFER_FLUSH(ah);
939 DISABLE_REGWRITE_BUFFER(ah);
940
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -0400941 if (AR_SREV_9300_20_OR_LATER(ah))
942 ath9k_hw_reset_txstatus_ring(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530943}
944
Sujithcbe61d82009-02-09 13:27:12 +0530945static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530946{
947 u32 val;
948
949 val = REG_READ(ah, AR_STA_ID1);
950 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
951 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -0800952 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +0530953 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
954 | AR_STA_ID1_KSRCH_MODE);
955 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
956 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800957 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400958 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +0530959 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
960 | AR_STA_ID1_KSRCH_MODE);
961 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
962 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800963 case NL80211_IFTYPE_STATION:
964 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +0530965 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
966 break;
967 }
968}
969
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400970void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
971 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700972{
973 u32 coef_exp, coef_man;
974
975 for (coef_exp = 31; coef_exp > 0; coef_exp--)
976 if ((coef_scaled >> coef_exp) & 0x1)
977 break;
978
979 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
980
981 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
982
983 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
984 *coef_exponent = coef_exp - 16;
985}
986
Sujithcbe61d82009-02-09 13:27:12 +0530987static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +0530988{
989 u32 rst_flags;
990 u32 tmpReg;
991
Sujith70768492009-02-16 13:23:12 +0530992 if (AR_SREV_9100(ah)) {
993 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
994 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
995 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
996 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
997 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
998 }
999
Sujith7d0d0df2010-04-16 11:53:57 +05301000 ENABLE_REGWRITE_BUFFER(ah);
1001
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001002 if (AR_SREV_9300_20_OR_LATER(ah)) {
1003 REG_WRITE(ah, AR_WA, ah->WARegVal);
1004 udelay(10);
1005 }
1006
Sujithf1dc5602008-10-29 10:16:30 +05301007 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1008 AR_RTC_FORCE_WAKE_ON_INT);
1009
1010 if (AR_SREV_9100(ah)) {
1011 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1012 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1013 } else {
1014 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1015 if (tmpReg &
1016 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1017 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001018 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301019 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001020
1021 val = AR_RC_HOSTIF;
1022 if (!AR_SREV_9300_20_OR_LATER(ah))
1023 val |= AR_RC_AHB;
1024 REG_WRITE(ah, AR_RC, val);
1025
1026 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301027 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301028
1029 rst_flags = AR_RTC_RC_MAC_WARM;
1030 if (type == ATH9K_RESET_COLD)
1031 rst_flags |= AR_RTC_RC_MAC_COLD;
1032 }
1033
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001034 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujith7d0d0df2010-04-16 11:53:57 +05301035
1036 REGWRITE_BUFFER_FLUSH(ah);
1037 DISABLE_REGWRITE_BUFFER(ah);
1038
Sujithf1dc5602008-10-29 10:16:30 +05301039 udelay(50);
1040
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001041 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301042 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001043 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1044 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301045 return false;
1046 }
1047
1048 if (!AR_SREV_9100(ah))
1049 REG_WRITE(ah, AR_RC, 0);
1050
Sujithf1dc5602008-10-29 10:16:30 +05301051 if (AR_SREV_9100(ah))
1052 udelay(50);
1053
1054 return true;
1055}
1056
Sujithcbe61d82009-02-09 13:27:12 +05301057static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301058{
Sujith7d0d0df2010-04-16 11:53:57 +05301059 ENABLE_REGWRITE_BUFFER(ah);
1060
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001061 if (AR_SREV_9300_20_OR_LATER(ah)) {
1062 REG_WRITE(ah, AR_WA, ah->WARegVal);
1063 udelay(10);
1064 }
1065
Sujithf1dc5602008-10-29 10:16:30 +05301066 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1067 AR_RTC_FORCE_WAKE_ON_INT);
1068
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001069 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301070 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1071
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001072 REG_WRITE(ah, AR_RTC_RESET, 0);
Luis R. Rodriguezee031112010-06-21 18:38:51 -04001073 udelay(2);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301074
Sujith7d0d0df2010-04-16 11:53:57 +05301075 REGWRITE_BUFFER_FLUSH(ah);
1076 DISABLE_REGWRITE_BUFFER(ah);
1077
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001078 if (!AR_SREV_9300_20_OR_LATER(ah))
1079 udelay(2);
1080
1081 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301082 REG_WRITE(ah, AR_RC, 0);
1083
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001084 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301085
1086 if (!ath9k_hw_wait(ah,
1087 AR_RTC_STATUS,
1088 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301089 AR_RTC_STATUS_ON,
1090 AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001091 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1092 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301093 return false;
1094 }
1095
1096 ath9k_hw_read_revisions(ah);
1097
1098 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1099}
1100
Sujithcbe61d82009-02-09 13:27:12 +05301101static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301102{
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001103 if (AR_SREV_9300_20_OR_LATER(ah)) {
1104 REG_WRITE(ah, AR_WA, ah->WARegVal);
1105 udelay(10);
1106 }
1107
Sujithf1dc5602008-10-29 10:16:30 +05301108 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1109 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1110
1111 switch (type) {
1112 case ATH9K_RESET_POWER_ON:
1113 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301114 case ATH9K_RESET_WARM:
1115 case ATH9K_RESET_COLD:
1116 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301117 default:
1118 return false;
1119 }
1120}
1121
Sujithcbe61d82009-02-09 13:27:12 +05301122static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301123 struct ath9k_channel *chan)
1124{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301125 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301126 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1127 return false;
1128 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301129 return false;
1130
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001131 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301132 return false;
1133
Sujith2660b812009-02-09 13:27:26 +05301134 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301135 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301136 ath9k_hw_set_rfmode(ah, chan);
1137
1138 return true;
1139}
1140
Sujithcbe61d82009-02-09 13:27:12 +05301141static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001142 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301143{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001144 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001145 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001146 struct ieee80211_channel *channel = chan->chan;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001147 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001148 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301149
1150 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1151 if (ath9k_hw_numtxpending(ah, qnum)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001152 ath_print(common, ATH_DBG_QUEUE,
1153 "Transmit frames pending on "
1154 "queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301155 return false;
1156 }
1157 }
1158
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001159 if (!ath9k_hw_rfbus_req(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001160 ath_print(common, ATH_DBG_FATAL,
1161 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301162 return false;
1163 }
1164
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001165 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301166
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001167 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001168 if (r) {
1169 ath_print(common, ATH_DBG_FATAL,
1170 "Failed to set channel\n");
1171 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301172 }
1173
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001174 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001175 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301176 channel->max_antenna_gain * 2,
1177 channel->max_power * 2,
1178 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001179 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301180
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001181 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301182
1183 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1184 ath9k_hw_set_delta_slope(ah, chan);
1185
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001186 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301187
1188 if (!chan->oneTimeCalsDone)
1189 chan->oneTimeCalsDone = true;
1190
1191 return true;
1192}
1193
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001194bool ath9k_hw_check_alive(struct ath_hw *ah)
Johannes Berg3b319aa2009-06-13 14:50:26 +05301195{
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001196 int count = 50;
1197 u32 reg;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301198
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001199 if (AR_SREV_9285_10_OR_LATER(ah))
1200 return true;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301201
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001202 do {
1203 reg = REG_READ(ah, AR_OBS_BUS_1);
1204
1205 if ((reg & 0x7E7FFFEF) == 0x00702400)
1206 continue;
1207
1208 switch (reg & 0x7E000B00) {
1209 case 0x1E000000:
1210 case 0x52000B00:
1211 case 0x18000B00:
1212 continue;
1213 default:
1214 return true;
1215 }
1216 } while (count-- > 0);
1217
1218 return false;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301219}
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001220EXPORT_SYMBOL(ath9k_hw_check_alive);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301221
Sujithcbe61d82009-02-09 13:27:12 +05301222int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001223 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001224{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001225 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001226 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301227 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001228 u32 saveDefAntenna;
1229 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301230 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001231 int i, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001232
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001233 ah->txchainmask = common->tx_chainmask;
1234 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001235
Vasanthakumar Thiagarajan9b9cc612010-04-15 17:39:41 -04001236 if (!ah->chip_fullsleep) {
1237 ath9k_hw_abortpcurecv(ah);
1238 if (!ath9k_hw_stopdmarecv(ah))
1239 ath_print(common, ATH_DBG_XMIT,
1240 "Failed to stop receive dma\n");
1241 }
1242
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001243 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001244 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001245
Vasanthakumar Thiagarajan9ebef792009-09-17 09:26:44 +05301246 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001247 ath9k_hw_getnf(ah, curchan);
1248
1249 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301250 (ah->chip_fullsleep != true) &&
1251 (ah->curchan != NULL) &&
1252 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001253 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301254 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04001255 !AR_SREV_9280(ah)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001256
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001257 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301258 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001259 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001260 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001261 }
1262 }
1263
1264 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1265 if (saveDefAntenna == 0)
1266 saveDefAntenna = 1;
1267
1268 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1269
Sujith46fe7822009-09-17 09:25:25 +05301270 /* For chips on which RTC reset is done, save TSF before it gets cleared */
1271 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1272 tsf = ath9k_hw_gettsf64(ah);
1273
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001274 saveLedState = REG_READ(ah, AR_CFG_LED) &
1275 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1276 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1277
1278 ath9k_hw_mark_phy_inactive(ah);
1279
Sujith05020d22010-03-17 14:25:23 +05301280 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001281 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1282 REG_WRITE(ah,
1283 AR9271_RESET_POWER_DOWN_CONTROL,
1284 AR9271_RADIO_RF_RST);
1285 udelay(50);
1286 }
1287
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001288 if (!ath9k_hw_chip_reset(ah, chan)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001289 ath_print(common, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001290 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001291 }
1292
Sujith05020d22010-03-17 14:25:23 +05301293 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001294 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1295 ah->htc_reset_init = false;
1296 REG_WRITE(ah,
1297 AR9271_RESET_POWER_DOWN_CONTROL,
1298 AR9271_GATE_MAC_CTL);
1299 udelay(50);
1300 }
1301
Sujith46fe7822009-09-17 09:25:25 +05301302 /* Restore TSF */
1303 if (tsf && AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1304 ath9k_hw_settsf64(ah, tsf);
1305
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301306 if (AR_SREV_9280_10_OR_LATER(ah))
1307 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001308
Sujithe9141f72010-06-01 15:14:10 +05301309 if (!AR_SREV_9300_20_OR_LATER(ah))
1310 ar9002_hw_enable_async_fifo(ah);
1311
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001312 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001313 if (r)
1314 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001315
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001316 /* Setup MFP options for CCMP */
1317 if (AR_SREV_9280_20_OR_LATER(ah)) {
1318 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1319 * frames when constructing CCMP AAD. */
1320 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1321 0xc7ff);
1322 ah->sw_mgmt_crypto = false;
1323 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1324 /* Disable hardware crypto for management frames */
1325 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1326 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1327 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1328 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1329 ah->sw_mgmt_crypto = true;
1330 } else
1331 ah->sw_mgmt_crypto = true;
1332
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001333 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1334 ath9k_hw_set_delta_slope(ah, chan);
1335
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001336 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301337 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001338
Sujith6819d572010-04-16 11:53:56 +05301339 ath9k_hw_set_operating_mode(ah, ah->opmode);
1340
Sujith7d0d0df2010-04-16 11:53:57 +05301341 ENABLE_REGWRITE_BUFFER(ah);
1342
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001343 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1344 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001345 | macStaId1
1346 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301347 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301348 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301349 | ah->sta_id1_defaults);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001350 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001351 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001352 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001353 REG_WRITE(ah, AR_ISR, ~0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001354 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1355
Sujith7d0d0df2010-04-16 11:53:57 +05301356 REGWRITE_BUFFER_FLUSH(ah);
1357 DISABLE_REGWRITE_BUFFER(ah);
1358
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001359 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001360 if (r)
1361 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001362
Sujith7d0d0df2010-04-16 11:53:57 +05301363 ENABLE_REGWRITE_BUFFER(ah);
1364
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001365 for (i = 0; i < AR_NUM_DCU; i++)
1366 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1367
Sujith7d0d0df2010-04-16 11:53:57 +05301368 REGWRITE_BUFFER_FLUSH(ah);
1369 DISABLE_REGWRITE_BUFFER(ah);
1370
Sujith2660b812009-02-09 13:27:26 +05301371 ah->intr_txqs = 0;
1372 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001373 ath9k_hw_resettxqueue(ah, i);
1374
Sujith2660b812009-02-09 13:27:26 +05301375 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001376 ath9k_hw_ani_cache_ini_regs(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001377 ath9k_hw_init_qos(ah);
1378
Sujith2660b812009-02-09 13:27:26 +05301379 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301380 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301381
Felix Fietkau0005baf2010-01-15 02:33:40 +01001382 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001383
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001384 if (!AR_SREV_9300_20_OR_LATER(ah)) {
Sujithe9141f72010-06-01 15:14:10 +05301385 ar9002_hw_update_async_fifo(ah);
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001386 ar9002_hw_enable_wep_aggregation(ah);
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301387 }
1388
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001389 REG_WRITE(ah, AR_STA_ID1,
1390 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
1391
1392 ath9k_hw_set_dma(ah);
1393
1394 REG_WRITE(ah, AR_OBS, 8);
1395
Sujith0ce024c2009-12-14 14:57:00 +05301396 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001397 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1398 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1399 }
1400
Vasanthakumar Thiagarajan7f62a132010-04-15 17:39:19 -04001401 if (ah->config.tx_intr_mitigation) {
1402 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
1403 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
1404 }
1405
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001406 ath9k_hw_init_bb(ah, chan);
1407
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001408 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001409 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001410
Sujith7d0d0df2010-04-16 11:53:57 +05301411 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001412
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001413 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001414 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1415
Sujith7d0d0df2010-04-16 11:53:57 +05301416 REGWRITE_BUFFER_FLUSH(ah);
1417 DISABLE_REGWRITE_BUFFER(ah);
1418
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001419 /*
1420 * For big endian systems turn on swapping for descriptors
1421 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001422 if (AR_SREV_9100(ah)) {
1423 u32 mask;
1424 mask = REG_READ(ah, AR_CFG);
1425 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001426 ath_print(common, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05301427 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001428 } else {
1429 mask =
1430 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1431 REG_WRITE(ah, AR_CFG, mask);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001432 ath_print(common, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05301433 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001434 }
1435 } else {
Sujithcbba8cd2010-06-02 15:53:31 +05301436 if (common->bus_ops->ath_bus_type == ATH_USB) {
1437 /* Configure AR9271 target WLAN */
1438 if (AR_SREV_9271(ah))
1439 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
1440 else
1441 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1442 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001443#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001444 else
1445 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001446#endif
1447 }
1448
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001449 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301450 ath9k_hw_btcoex_enable(ah);
1451
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001452 if (AR_SREV_9300_20_OR_LATER(ah)) {
1453 ath9k_hw_loadnf(ah, curchan);
1454 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001455 ar9003_hw_bb_watchdog_config(ah);
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001456 }
1457
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001458 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001459}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001460EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001461
Sujithf1dc5602008-10-29 10:16:30 +05301462/************************/
1463/* Key Cache Management */
1464/************************/
1465
Sujithcbe61d82009-02-09 13:27:12 +05301466bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001467{
Sujithf1dc5602008-10-29 10:16:30 +05301468 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001469
Sujith2660b812009-02-09 13:27:26 +05301470 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001471 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1472 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001473 return false;
1474 }
1475
Sujithf1dc5602008-10-29 10:16:30 +05301476 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001477
Sujithf1dc5602008-10-29 10:16:30 +05301478 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
1479 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
1480 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
1481 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
1482 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
1483 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
1484 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
1485 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
1486
1487 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1488 u16 micentry = entry + 64;
1489
1490 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
1491 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
1492 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
1493 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
1494
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001495 }
1496
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001497 return true;
1498}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001499EXPORT_SYMBOL(ath9k_hw_keyreset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001500
John W. Linvillef35376a2010-06-29 15:24:05 -04001501static bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001502{
Sujithf1dc5602008-10-29 10:16:30 +05301503 u32 macHi, macLo;
Felix Fietkau1d0bb422010-05-25 19:42:44 +02001504 u32 unicast_flag = AR_KEYTABLE_VALID;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001505
Sujith2660b812009-02-09 13:27:26 +05301506 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001507 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1508 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001509 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001510 }
1511
Sujithf1dc5602008-10-29 10:16:30 +05301512 if (mac != NULL) {
Felix Fietkau1d0bb422010-05-25 19:42:44 +02001513 /*
1514 * AR_KEYTABLE_VALID indicates that the address is a unicast
1515 * address, which must match the transmitter address for
1516 * decrypting frames.
1517 * Not setting this bit allows the hardware to use the key
1518 * for multicast frame decryption.
1519 */
1520 if (mac[0] & 0x01)
1521 unicast_flag = 0;
1522
Sujithf1dc5602008-10-29 10:16:30 +05301523 macHi = (mac[5] << 8) | mac[4];
1524 macLo = (mac[3] << 24) |
1525 (mac[2] << 16) |
1526 (mac[1] << 8) |
1527 mac[0];
1528 macLo >>= 1;
1529 macLo |= (macHi & 1) << 31;
1530 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001531 } else {
Sujithf1dc5602008-10-29 10:16:30 +05301532 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001533 }
Sujithf1dc5602008-10-29 10:16:30 +05301534 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
Felix Fietkau1d0bb422010-05-25 19:42:44 +02001535 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | unicast_flag);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001536
1537 return true;
1538}
1539
Sujithcbe61d82009-02-09 13:27:12 +05301540bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05301541 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001542 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001543{
Sujith2660b812009-02-09 13:27:26 +05301544 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001545 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301546 u32 key0, key1, key2, key3, key4;
1547 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001548
Sujithf1dc5602008-10-29 10:16:30 +05301549 if (entry >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001550 ath_print(common, ATH_DBG_FATAL,
1551 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05301552 return false;
1553 }
1554
1555 switch (k->kv_type) {
1556 case ATH9K_CIPHER_AES_OCB:
1557 keyType = AR_KEYTABLE_TYPE_AES;
1558 break;
1559 case ATH9K_CIPHER_AES_CCM:
1560 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001561 ath_print(common, ATH_DBG_ANY,
1562 "AES-CCM not supported by mac rev 0x%x\n",
1563 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001564 return false;
1565 }
Sujithf1dc5602008-10-29 10:16:30 +05301566 keyType = AR_KEYTABLE_TYPE_CCM;
1567 break;
1568 case ATH9K_CIPHER_TKIP:
1569 keyType = AR_KEYTABLE_TYPE_TKIP;
1570 if (ATH9K_IS_MIC_ENABLED(ah)
1571 && entry + 64 >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001572 ath_print(common, ATH_DBG_ANY,
1573 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001574 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001575 }
Sujithf1dc5602008-10-29 10:16:30 +05301576 break;
1577 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08001578 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001579 ath_print(common, ATH_DBG_ANY,
1580 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05301581 return false;
1582 }
Zhu Yie31a16d2009-05-21 21:47:03 +08001583 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05301584 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08001585 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301586 keyType = AR_KEYTABLE_TYPE_104;
1587 else
1588 keyType = AR_KEYTABLE_TYPE_128;
1589 break;
1590 case ATH9K_CIPHER_CLR:
1591 keyType = AR_KEYTABLE_TYPE_CLR;
1592 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001593 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001594 ath_print(common, ATH_DBG_FATAL,
1595 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001596 return false;
1597 }
Sujithf1dc5602008-10-29 10:16:30 +05301598
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001599 key0 = get_unaligned_le32(k->kv_val + 0);
1600 key1 = get_unaligned_le16(k->kv_val + 4);
1601 key2 = get_unaligned_le32(k->kv_val + 6);
1602 key3 = get_unaligned_le16(k->kv_val + 10);
1603 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08001604 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301605 key4 &= 0xff;
1606
Jouni Malinen672903b2009-03-02 15:06:31 +02001607 /*
1608 * Note: Key cache registers access special memory area that requires
1609 * two 32-bit writes to actually update the values in the internal
1610 * memory. Consequently, the exact order and pairs used here must be
1611 * maintained.
1612 */
1613
Sujithf1dc5602008-10-29 10:16:30 +05301614 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1615 u16 micentry = entry + 64;
1616
Jouni Malinen672903b2009-03-02 15:06:31 +02001617 /*
1618 * Write inverted key[47:0] first to avoid Michael MIC errors
1619 * on frames that could be sent or received at the same time.
1620 * The correct key will be written in the end once everything
1621 * else is ready.
1622 */
Sujithf1dc5602008-10-29 10:16:30 +05301623 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
1624 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001625
1626 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301627 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1628 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001629
1630 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301631 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1632 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02001633
1634 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301635 (void) ath9k_hw_keysetmac(ah, entry, mac);
1636
Sujith2660b812009-02-09 13:27:26 +05301637 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02001638 /*
1639 * TKIP uses two key cache entries:
1640 * Michael MIC TX/RX keys in the same key cache entry
1641 * (idx = main index + 64):
1642 * key0 [31:0] = RX key [31:0]
1643 * key1 [15:0] = TX key [31:16]
1644 * key1 [31:16] = reserved
1645 * key2 [31:0] = RX key [63:32]
1646 * key3 [15:0] = TX key [15:0]
1647 * key3 [31:16] = reserved
1648 * key4 [31:0] = TX key [63:32]
1649 */
Sujithf1dc5602008-10-29 10:16:30 +05301650 u32 mic0, mic1, mic2, mic3, mic4;
1651
1652 mic0 = get_unaligned_le32(k->kv_mic + 0);
1653 mic2 = get_unaligned_le32(k->kv_mic + 4);
1654 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
1655 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
1656 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001657
1658 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05301659 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1660 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001661
1662 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301663 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1664 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001665
1666 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301667 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
1668 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1669 AR_KEYTABLE_TYPE_CLR);
1670
1671 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001672 /*
1673 * TKIP uses four key cache entries (two for group
1674 * keys):
1675 * Michael MIC TX/RX keys are in different key cache
1676 * entries (idx = main index + 64 for TX and
1677 * main index + 32 + 96 for RX):
1678 * key0 [31:0] = TX/RX MIC key [31:0]
1679 * key1 [31:0] = reserved
1680 * key2 [31:0] = TX/RX MIC key [63:32]
1681 * key3 [31:0] = reserved
1682 * key4 [31:0] = reserved
1683 *
1684 * Upper layer code will call this function separately
1685 * for TX and RX keys when these registers offsets are
1686 * used.
1687 */
Sujithf1dc5602008-10-29 10:16:30 +05301688 u32 mic0, mic2;
1689
1690 mic0 = get_unaligned_le32(k->kv_mic + 0);
1691 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001692
1693 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301694 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1695 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001696
1697 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05301698 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1699 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001700
1701 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301702 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
1703 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1704 AR_KEYTABLE_TYPE_CLR);
1705 }
Jouni Malinen672903b2009-03-02 15:06:31 +02001706
1707 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05301708 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
1709 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001710
1711 /*
1712 * Write the correct (un-inverted) key[47:0] last to enable
1713 * TKIP now that all other registers are set with correct
1714 * values.
1715 */
Sujithf1dc5602008-10-29 10:16:30 +05301716 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1717 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
1718 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001719 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301720 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1721 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001722
1723 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301724 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1725 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001726
1727 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301728 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1729 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
1730
Jouni Malinen672903b2009-03-02 15:06:31 +02001731 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301732 (void) ath9k_hw_keysetmac(ah, entry, mac);
1733 }
1734
Sujithf1dc5602008-10-29 10:16:30 +05301735 return true;
1736}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001737EXPORT_SYMBOL(ath9k_hw_set_keycache_entry);
Sujithf1dc5602008-10-29 10:16:30 +05301738
Sujithf1dc5602008-10-29 10:16:30 +05301739/******************************/
1740/* Power Management (Chipset) */
1741/******************************/
1742
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001743/*
1744 * Notify Power Mgt is disabled in self-generated frames.
1745 * If requested, force chip to sleep.
1746 */
Sujithcbe61d82009-02-09 13:27:12 +05301747static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301748{
1749 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1750 if (setChip) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001751 /*
1752 * Clear the RTC force wake bit to allow the
1753 * mac to go to sleep.
1754 */
Sujithf1dc5602008-10-29 10:16:30 +05301755 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1756 AR_RTC_FORCE_WAKE_EN);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001757 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301758 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1759
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001760 /* Shutdown chip. Active low */
Sujith14b3af32010-03-17 14:25:18 +05301761 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05301762 REG_CLR_BIT(ah, (AR_RTC_RESET),
1763 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301764 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001765
1766 /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */
1767 if (AR_SREV_9300_20_OR_LATER(ah))
1768 REG_WRITE(ah, AR_WA,
1769 ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001770}
1771
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001772/*
1773 * Notify Power Management is enabled in self-generating
1774 * frames. If request, set power mode of chip to
1775 * auto/normal. Duration in units of 128us (1/8 TU).
1776 */
Sujithcbe61d82009-02-09 13:27:12 +05301777static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001778{
Sujithf1dc5602008-10-29 10:16:30 +05301779 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1780 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05301781 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001782
Sujithf1dc5602008-10-29 10:16:30 +05301783 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001784 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05301785 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1786 AR_RTC_FORCE_WAKE_ON_INT);
1787 } else {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001788 /*
1789 * Clear the RTC force wake bit to allow the
1790 * mac to go to sleep.
1791 */
Sujithf1dc5602008-10-29 10:16:30 +05301792 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1793 AR_RTC_FORCE_WAKE_EN);
1794 }
1795 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001796
1797 /* Clear Bit 14 of AR_WA after putting chip into Net Sleep mode. */
1798 if (AR_SREV_9300_20_OR_LATER(ah))
1799 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Sujithf1dc5602008-10-29 10:16:30 +05301800}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001801
Sujithcbe61d82009-02-09 13:27:12 +05301802static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301803{
1804 u32 val;
1805 int i;
1806
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001807 /* Set Bits 14 and 17 of AR_WA before powering on the chip. */
1808 if (AR_SREV_9300_20_OR_LATER(ah)) {
1809 REG_WRITE(ah, AR_WA, ah->WARegVal);
1810 udelay(10);
1811 }
1812
Sujithf1dc5602008-10-29 10:16:30 +05301813 if (setChip) {
1814 if ((REG_READ(ah, AR_RTC_STATUS) &
1815 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
1816 if (ath9k_hw_set_reset_reg(ah,
1817 ATH9K_RESET_POWER_ON) != true) {
1818 return false;
1819 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04001820 if (!AR_SREV_9300_20_OR_LATER(ah))
1821 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05301822 }
1823 if (AR_SREV_9100(ah))
1824 REG_SET_BIT(ah, AR_RTC_RESET,
1825 AR_RTC_RESET_EN);
1826
1827 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1828 AR_RTC_FORCE_WAKE_EN);
1829 udelay(50);
1830
1831 for (i = POWER_UP_TIME / 50; i > 0; i--) {
1832 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
1833 if (val == AR_RTC_STATUS_ON)
1834 break;
1835 udelay(50);
1836 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1837 AR_RTC_FORCE_WAKE_EN);
1838 }
1839 if (i == 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001840 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1841 "Failed to wakeup in %uus\n",
1842 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05301843 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001844 }
1845 }
1846
Sujithf1dc5602008-10-29 10:16:30 +05301847 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1848
1849 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001850}
1851
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001852bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05301853{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001854 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05301855 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05301856 static const char *modes[] = {
1857 "AWAKE",
1858 "FULL-SLEEP",
1859 "NETWORK SLEEP",
1860 "UNDEFINED"
1861 };
Sujithf1dc5602008-10-29 10:16:30 +05301862
Gabor Juhoscbdec972009-07-24 17:27:22 +02001863 if (ah->power_mode == mode)
1864 return status;
1865
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001866 ath_print(common, ATH_DBG_RESET, "%s -> %s\n",
1867 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05301868
1869 switch (mode) {
1870 case ATH9K_PM_AWAKE:
1871 status = ath9k_hw_set_power_awake(ah, setChip);
1872 break;
1873 case ATH9K_PM_FULL_SLEEP:
1874 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05301875 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05301876 break;
1877 case ATH9K_PM_NETWORK_SLEEP:
1878 ath9k_set_power_network_sleep(ah, setChip);
1879 break;
1880 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001881 ath_print(common, ATH_DBG_FATAL,
1882 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05301883 return false;
1884 }
Sujith2660b812009-02-09 13:27:26 +05301885 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05301886
1887 return status;
1888}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001889EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05301890
Sujithf1dc5602008-10-29 10:16:30 +05301891/*******************/
1892/* Beacon Handling */
1893/*******************/
1894
Sujithcbe61d82009-02-09 13:27:12 +05301895void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001896{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001897 int flags = 0;
1898
Sujith2660b812009-02-09 13:27:26 +05301899 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001900
Sujith7d0d0df2010-04-16 11:53:57 +05301901 ENABLE_REGWRITE_BUFFER(ah);
1902
Sujith2660b812009-02-09 13:27:26 +05301903 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001904 case NL80211_IFTYPE_STATION:
1905 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001906 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1907 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
1908 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
1909 flags |= AR_TBTT_TIMER_EN;
1910 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001911 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001912 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001913 REG_SET_BIT(ah, AR_TXCFG,
1914 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
1915 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
1916 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05301917 (ah->atim_window ? ah->
1918 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001919 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08001920 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001921 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1922 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
1923 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301924 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301925 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001926 REG_WRITE(ah, AR_NEXT_SWBA,
1927 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301928 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301929 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001930 flags |=
1931 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
1932 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001933 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001934 ath_print(ath9k_hw_common(ah), ATH_DBG_BEACON,
1935 "%s: unsupported opmode: %d\n",
1936 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08001937 return;
1938 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001939 }
1940
1941 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1942 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1943 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
1944 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
1945
Sujith7d0d0df2010-04-16 11:53:57 +05301946 REGWRITE_BUFFER_FLUSH(ah);
1947 DISABLE_REGWRITE_BUFFER(ah);
1948
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001949 beacon_period &= ~ATH9K_BEACON_ENA;
1950 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001951 ath9k_hw_reset_tsf(ah);
1952 }
1953
1954 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
1955}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001956EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001957
Sujithcbe61d82009-02-09 13:27:12 +05301958void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301959 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001960{
1961 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05301962 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001963 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001964
Sujith7d0d0df2010-04-16 11:53:57 +05301965 ENABLE_REGWRITE_BUFFER(ah);
1966
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001967 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
1968
1969 REG_WRITE(ah, AR_BEACON_PERIOD,
1970 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1971 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
1972 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1973
Sujith7d0d0df2010-04-16 11:53:57 +05301974 REGWRITE_BUFFER_FLUSH(ah);
1975 DISABLE_REGWRITE_BUFFER(ah);
1976
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001977 REG_RMW_FIELD(ah, AR_RSSI_THR,
1978 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
1979
1980 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
1981
1982 if (bs->bs_sleepduration > beaconintval)
1983 beaconintval = bs->bs_sleepduration;
1984
1985 dtimperiod = bs->bs_dtimperiod;
1986 if (bs->bs_sleepduration > dtimperiod)
1987 dtimperiod = bs->bs_sleepduration;
1988
1989 if (beaconintval == dtimperiod)
1990 nextTbtt = bs->bs_nextdtim;
1991 else
1992 nextTbtt = bs->bs_nexttbtt;
1993
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001994 ath_print(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
1995 ath_print(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
1996 ath_print(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
1997 ath_print(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001998
Sujith7d0d0df2010-04-16 11:53:57 +05301999 ENABLE_REGWRITE_BUFFER(ah);
2000
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002001 REG_WRITE(ah, AR_NEXT_DTIM,
2002 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
2003 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
2004
2005 REG_WRITE(ah, AR_SLEEP1,
2006 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
2007 | AR_SLEEP1_ASSUME_DTIM);
2008
Sujith60b67f52008-08-07 10:52:38 +05302009 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002010 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
2011 else
2012 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
2013
2014 REG_WRITE(ah, AR_SLEEP2,
2015 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
2016
2017 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
2018 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
2019
Sujith7d0d0df2010-04-16 11:53:57 +05302020 REGWRITE_BUFFER_FLUSH(ah);
2021 DISABLE_REGWRITE_BUFFER(ah);
2022
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002023 REG_SET_BIT(ah, AR_TIMER_MODE,
2024 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
2025 AR_DTIM_TIMER_EN);
2026
Sujith4af9cf42009-02-12 10:06:47 +05302027 /* TSF Out of Range Threshold */
2028 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002029}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002030EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002031
Sujithf1dc5602008-10-29 10:16:30 +05302032/*******************/
2033/* HW Capabilities */
2034/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002035
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002036int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002037{
Sujith2660b812009-02-09 13:27:26 +05302038 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002039 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002040 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002041 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002042
Sujithf1dc5602008-10-29 10:16:30 +05302043 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002044
Sujithf74df6f2009-02-09 13:27:24 +05302045 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002046 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302047
Sujithf74df6f2009-02-09 13:27:24 +05302048 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05302049 if (AR_SREV_9285_10_OR_LATER(ah))
2050 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002051 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302052
Sujithf74df6f2009-02-09 13:27:24 +05302053 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05302054
Sujith2660b812009-02-09 13:27:26 +05302055 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05302056 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002057 if (regulatory->current_rd == 0x64 ||
2058 regulatory->current_rd == 0x65)
2059 regulatory->current_rd += 5;
2060 else if (regulatory->current_rd == 0x41)
2061 regulatory->current_rd = 0x43;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002062 ath_print(common, ATH_DBG_REGULATORY,
2063 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002064 }
Sujithdc2222a2008-08-14 13:26:55 +05302065
Sujithf74df6f2009-02-09 13:27:24 +05302066 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002067 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
2068 ath_print(common, ATH_DBG_FATAL,
2069 "no band has been marked as supported in EEPROM.\n");
2070 return -EINVAL;
2071 }
2072
Sujithf1dc5602008-10-29 10:16:30 +05302073 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002074
Sujithf1dc5602008-10-29 10:16:30 +05302075 if (eeval & AR5416_OPFLAGS_11A) {
2076 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05302077 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05302078 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
2079 set_bit(ATH9K_MODE_11NA_HT20,
2080 pCap->wireless_modes);
2081 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
2082 set_bit(ATH9K_MODE_11NA_HT40PLUS,
2083 pCap->wireless_modes);
2084 set_bit(ATH9K_MODE_11NA_HT40MINUS,
2085 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002086 }
2087 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002088 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002089
Sujithf1dc5602008-10-29 10:16:30 +05302090 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05302091 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05302092 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05302093 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
2094 set_bit(ATH9K_MODE_11NG_HT20,
2095 pCap->wireless_modes);
2096 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
2097 set_bit(ATH9K_MODE_11NG_HT40PLUS,
2098 pCap->wireless_modes);
2099 set_bit(ATH9K_MODE_11NG_HT40MINUS,
2100 pCap->wireless_modes);
2101 }
2102 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002103 }
Sujithf1dc5602008-10-29 10:16:30 +05302104
Sujithf74df6f2009-02-09 13:27:24 +05302105 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002106 /*
2107 * For AR9271 we will temporarilly uses the rx chainmax as read from
2108 * the EEPROM.
2109 */
Sujith8147f5d2009-02-20 15:13:23 +05302110 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002111 !(eeval & AR5416_OPFLAGS_11A) &&
2112 !(AR_SREV_9271(ah)))
2113 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05302114 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
2115 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002116 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05302117 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05302118
Sujithd535a422009-02-09 13:27:06 +05302119 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05302120 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05302121
2122 pCap->low_2ghz_chan = 2312;
2123 pCap->high_2ghz_chan = 2732;
2124
2125 pCap->low_5ghz_chan = 4920;
2126 pCap->high_5ghz_chan = 6100;
2127
2128 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
2129 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
2130 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
2131
2132 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
2133 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
2134 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
2135
Sujith2660b812009-02-09 13:27:26 +05302136 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05302137 pCap->hw_caps |= ATH9K_HW_CAP_HT;
2138 else
2139 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
2140
2141 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
2142 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
2143 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
2144 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
2145
2146 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
2147 pCap->total_queues =
2148 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
2149 else
2150 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
2151
2152 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
2153 pCap->keycache_size =
2154 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
2155 else
2156 pCap->keycache_size = AR_KEYTABLE_SIZE;
2157
2158 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -05002159
2160 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
2161 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
2162 else
2163 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
Sujithf1dc5602008-10-29 10:16:30 +05302164
Sujith5b5fa352010-03-17 14:25:15 +05302165 if (AR_SREV_9271(ah))
2166 pCap->num_gpio_pins = AR9271_NUM_GPIO;
2167 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302168 pCap->num_gpio_pins = AR9285_NUM_GPIO;
2169 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302170 pCap->num_gpio_pins = AR928X_NUM_GPIO;
2171 else
2172 pCap->num_gpio_pins = AR_NUM_GPIO;
2173
Sujithf1dc5602008-10-29 10:16:30 +05302174 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
2175 pCap->hw_caps |= ATH9K_HW_CAP_CST;
2176 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
2177 } else {
2178 pCap->rts_aggr_limit = (8 * 1024);
2179 }
2180
2181 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
2182
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302183#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05302184 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
2185 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
2186 ah->rfkill_gpio =
2187 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
2188 ah->rfkill_polarity =
2189 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05302190
2191 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
2192 }
2193#endif
Vasanthakumar Thiagarajand5d11542010-05-17 18:57:56 -07002194 if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
Vivek Natarajanbde748a2010-04-05 14:48:05 +05302195 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
2196 else
2197 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05302198
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302199 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302200 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
2201 else
2202 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
2203
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002204 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05302205 pCap->reg_cap =
2206 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2207 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
2208 AR_EEPROM_EEREGCAP_EN_KK_U2 |
2209 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
2210 } else {
2211 pCap->reg_cap =
2212 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2213 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
2214 }
2215
Senthil Balasubramanianebb90cf2009-09-18 15:07:33 +05302216 /* Advertise midband for AR5416 with FCC midband set in eeprom */
2217 if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
2218 AR_SREV_5416(ah))
2219 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
Sujithf1dc5602008-10-29 10:16:30 +05302220
2221 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302222 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302223 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302224 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302225
Vasanthakumar Thiagarajanfe129462009-09-09 15:25:50 +05302226 if (AR_SREV_9280_10_OR_LATER(ah) &&
Luis R. Rodrigueza36cfbc2009-09-09 16:05:32 -07002227 ath9k_hw_btcoex_supported(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002228 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
2229 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302230
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302231 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002232 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
2233 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302234 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002235 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302236 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302237 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002238 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05302239 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002240
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002241 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajane5553722010-04-26 15:04:33 -04002242 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_LDPC |
2243 ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002244 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
2245 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
2246 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002247 pCap->tx_desc_len = sizeof(struct ar9003_txc);
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04002248 pCap->txs_len = sizeof(struct ar9003_txs);
Felix Fietkau49352502010-06-12 00:33:59 -04002249 if (ah->eep_ops->get_eeprom(ah, EEP_PAPRD))
2250 pCap->hw_caps |= ATH9K_HW_CAP_PAPRD;
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002251 } else {
2252 pCap->tx_desc_len = sizeof(struct ath_desc);
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04002253 if (AR_SREV_9280_20(ah) &&
2254 ((ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) <=
2255 AR5416_EEP_MINOR_VER_16) ||
2256 ah->eep_ops->get_eeprom(ah, EEP_FSTCLK_5G)))
2257 pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002258 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002259
Vasanthakumar Thiagarajan6c84ce02010-04-15 17:39:16 -04002260 if (AR_SREV_9300_20_OR_LATER(ah))
2261 pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
2262
Sujithb4dec5e2010-05-17 12:01:19 +05302263 if (AR_SREV_9287_10_OR_LATER(ah) || AR_SREV_9271(ah))
Vasanthakumar Thiagarajan6473d242010-05-13 18:42:38 -07002264 pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
2265
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002266 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002267}
2268
Sujithf1dc5602008-10-29 10:16:30 +05302269/****************************/
2270/* GPIO / RFKILL / Antennae */
2271/****************************/
2272
Sujithcbe61d82009-02-09 13:27:12 +05302273static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302274 u32 gpio, u32 type)
2275{
2276 int addr;
2277 u32 gpio_shift, tmp;
2278
2279 if (gpio > 11)
2280 addr = AR_GPIO_OUTPUT_MUX3;
2281 else if (gpio > 5)
2282 addr = AR_GPIO_OUTPUT_MUX2;
2283 else
2284 addr = AR_GPIO_OUTPUT_MUX1;
2285
2286 gpio_shift = (gpio % 6) * 5;
2287
2288 if (AR_SREV_9280_20_OR_LATER(ah)
2289 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2290 REG_RMW(ah, addr, (type << gpio_shift),
2291 (0x1f << gpio_shift));
2292 } else {
2293 tmp = REG_READ(ah, addr);
2294 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2295 tmp &= ~(0x1f << gpio_shift);
2296 tmp |= (type << gpio_shift);
2297 REG_WRITE(ah, addr, tmp);
2298 }
2299}
2300
Sujithcbe61d82009-02-09 13:27:12 +05302301void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302302{
2303 u32 gpio_shift;
2304
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002305 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302306
2307 gpio_shift = gpio << 1;
2308
2309 REG_RMW(ah,
2310 AR_GPIO_OE_OUT,
2311 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2312 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2313}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002314EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302315
Sujithcbe61d82009-02-09 13:27:12 +05302316u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302317{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302318#define MS_REG_READ(x, y) \
2319 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2320
Sujith2660b812009-02-09 13:27:26 +05302321 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302322 return 0xffffffff;
2323
Felix Fietkau783dfca2010-04-15 17:38:11 -04002324 if (AR_SREV_9300_20_OR_LATER(ah))
2325 return MS_REG_READ(AR9300, gpio) != 0;
2326 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05302327 return MS_REG_READ(AR9271, gpio) != 0;
2328 else if (AR_SREV_9287_10_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302329 return MS_REG_READ(AR9287, gpio) != 0;
2330 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302331 return MS_REG_READ(AR9285, gpio) != 0;
2332 else if (AR_SREV_9280_10_OR_LATER(ah))
2333 return MS_REG_READ(AR928X, gpio) != 0;
2334 else
2335 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05302336}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002337EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302338
Sujithcbe61d82009-02-09 13:27:12 +05302339void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05302340 u32 ah_signal_type)
2341{
2342 u32 gpio_shift;
2343
2344 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
2345
2346 gpio_shift = 2 * gpio;
2347
2348 REG_RMW(ah,
2349 AR_GPIO_OE_OUT,
2350 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2351 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2352}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002353EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05302354
Sujithcbe61d82009-02-09 13:27:12 +05302355void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302356{
Sujith5b5fa352010-03-17 14:25:15 +05302357 if (AR_SREV_9271(ah))
2358 val = ~val;
2359
Sujithf1dc5602008-10-29 10:16:30 +05302360 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2361 AR_GPIO_BIT(gpio));
2362}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002363EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302364
Sujithcbe61d82009-02-09 13:27:12 +05302365u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302366{
2367 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
2368}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002369EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302370
Sujithcbe61d82009-02-09 13:27:12 +05302371void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302372{
2373 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2374}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002375EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302376
Sujithf1dc5602008-10-29 10:16:30 +05302377/*********************/
2378/* General Operation */
2379/*********************/
2380
Sujithcbe61d82009-02-09 13:27:12 +05302381u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302382{
2383 u32 bits = REG_READ(ah, AR_RX_FILTER);
2384 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2385
2386 if (phybits & AR_PHY_ERR_RADAR)
2387 bits |= ATH9K_RX_FILTER_PHYRADAR;
2388 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2389 bits |= ATH9K_RX_FILTER_PHYERR;
2390
2391 return bits;
2392}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002393EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302394
Sujithcbe61d82009-02-09 13:27:12 +05302395void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302396{
2397 u32 phybits;
2398
Sujith7d0d0df2010-04-16 11:53:57 +05302399 ENABLE_REGWRITE_BUFFER(ah);
2400
Sujith7ea310b2009-09-03 12:08:43 +05302401 REG_WRITE(ah, AR_RX_FILTER, bits);
2402
Sujithf1dc5602008-10-29 10:16:30 +05302403 phybits = 0;
2404 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2405 phybits |= AR_PHY_ERR_RADAR;
2406 if (bits & ATH9K_RX_FILTER_PHYERR)
2407 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2408 REG_WRITE(ah, AR_PHY_ERR, phybits);
2409
2410 if (phybits)
2411 REG_WRITE(ah, AR_RXCFG,
2412 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
2413 else
2414 REG_WRITE(ah, AR_RXCFG,
2415 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
Sujith7d0d0df2010-04-16 11:53:57 +05302416
2417 REGWRITE_BUFFER_FLUSH(ah);
2418 DISABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302419}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002420EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302421
Sujithcbe61d82009-02-09 13:27:12 +05302422bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302423{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302424 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2425 return false;
2426
2427 ath9k_hw_init_pll(ah, NULL);
2428 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302429}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002430EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302431
Sujithcbe61d82009-02-09 13:27:12 +05302432bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302433{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002434 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302435 return false;
2436
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302437 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2438 return false;
2439
2440 ath9k_hw_init_pll(ah, NULL);
2441 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302442}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002443EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302444
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002445void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05302446{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002447 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05302448 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002449 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05302450
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002451 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05302452
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002453 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002454 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002455 channel->max_antenna_gain * 2,
2456 channel->max_power * 2,
2457 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002458 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05302459}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002460EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302461
Sujithcbe61d82009-02-09 13:27:12 +05302462void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302463{
Sujith2660b812009-02-09 13:27:26 +05302464 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302465}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002466EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302467
Sujithcbe61d82009-02-09 13:27:12 +05302468void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302469{
2470 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2471 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2472}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002473EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302474
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002475void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302476{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002477 struct ath_common *common = ath9k_hw_common(ah);
2478
2479 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2480 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2481 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302482}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002483EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302484
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002485#define ATH9K_MAX_TSF_READ 10
2486
Sujithcbe61d82009-02-09 13:27:12 +05302487u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302488{
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002489 u32 tsf_lower, tsf_upper1, tsf_upper2;
2490 int i;
Sujithf1dc5602008-10-29 10:16:30 +05302491
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002492 tsf_upper1 = REG_READ(ah, AR_TSF_U32);
2493 for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
2494 tsf_lower = REG_READ(ah, AR_TSF_L32);
2495 tsf_upper2 = REG_READ(ah, AR_TSF_U32);
2496 if (tsf_upper2 == tsf_upper1)
2497 break;
2498 tsf_upper1 = tsf_upper2;
2499 }
Sujithf1dc5602008-10-29 10:16:30 +05302500
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002501 WARN_ON( i == ATH9K_MAX_TSF_READ );
2502
2503 return (((u64)tsf_upper1 << 32) | tsf_lower);
Sujithf1dc5602008-10-29 10:16:30 +05302504}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002505EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302506
Sujithcbe61d82009-02-09 13:27:12 +05302507void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002508{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002509 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002510 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002511}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002512EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002513
Sujithcbe61d82009-02-09 13:27:12 +05302514void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302515{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002516 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2517 AH_TSF_WRITE_TIMEOUT))
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002518 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
2519 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002520
Sujithf1dc5602008-10-29 10:16:30 +05302521 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002522}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002523EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002524
Sujith54e4cec2009-08-07 09:45:09 +05302525void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002526{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002527 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302528 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002529 else
Sujith2660b812009-02-09 13:27:26 +05302530 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002531}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002532EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002533
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002534void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002535{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002536 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05302537 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002538
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002539 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05302540 macmode = AR_2040_JOINED_RX_CLEAR;
2541 else
2542 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002543
Sujithf1dc5602008-10-29 10:16:30 +05302544 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002545}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302546
2547/* HW Generic timers configuration */
2548
2549static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2550{
2551 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2552 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2553 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2554 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2555 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2556 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2557 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2558 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2559 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2560 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2561 AR_NDP2_TIMER_MODE, 0x0002},
2562 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2563 AR_NDP2_TIMER_MODE, 0x0004},
2564 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2565 AR_NDP2_TIMER_MODE, 0x0008},
2566 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2567 AR_NDP2_TIMER_MODE, 0x0010},
2568 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2569 AR_NDP2_TIMER_MODE, 0x0020},
2570 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2571 AR_NDP2_TIMER_MODE, 0x0040},
2572 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2573 AR_NDP2_TIMER_MODE, 0x0080}
2574};
2575
2576/* HW generic timer primitives */
2577
2578/* compute and clear index of rightmost 1 */
2579static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
2580{
2581 u32 b;
2582
2583 b = *mask;
2584 b &= (0-b);
2585 *mask &= ~b;
2586 b *= debruijn32;
2587 b >>= 27;
2588
2589 return timer_table->gen_timer_index[b];
2590}
2591
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05302592u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302593{
2594 return REG_READ(ah, AR_TSF_L32);
2595}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002596EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302597
2598struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2599 void (*trigger)(void *),
2600 void (*overflow)(void *),
2601 void *arg,
2602 u8 timer_index)
2603{
2604 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2605 struct ath_gen_timer *timer;
2606
2607 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
2608
2609 if (timer == NULL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002610 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2611 "Failed to allocate memory"
2612 "for hw timer[%d]\n", timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302613 return NULL;
2614 }
2615
2616 /* allocate a hardware generic timer slot */
2617 timer_table->timers[timer_index] = timer;
2618 timer->index = timer_index;
2619 timer->trigger = trigger;
2620 timer->overflow = overflow;
2621 timer->arg = arg;
2622
2623 return timer;
2624}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002625EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302626
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002627void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2628 struct ath_gen_timer *timer,
2629 u32 timer_next,
2630 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302631{
2632 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2633 u32 tsf;
2634
2635 BUG_ON(!timer_period);
2636
2637 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
2638
2639 tsf = ath9k_hw_gettsf32(ah);
2640
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002641 ath_print(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
2642 "curent tsf %x period %x"
2643 "timer_next %x\n", tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302644
2645 /*
2646 * Pull timer_next forward if the current TSF already passed it
2647 * because of software latency
2648 */
2649 if (timer_next < tsf)
2650 timer_next = tsf + timer_period;
2651
2652 /*
2653 * Program generic timer registers
2654 */
2655 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2656 timer_next);
2657 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2658 timer_period);
2659 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2660 gen_tmr_configuration[timer->index].mode_mask);
2661
2662 /* Enable both trigger and thresh interrupt masks */
2663 REG_SET_BIT(ah, AR_IMR_S5,
2664 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2665 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302666}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002667EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302668
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002669void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302670{
2671 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2672
2673 if ((timer->index < AR_FIRST_NDP_TIMER) ||
2674 (timer->index >= ATH_MAX_GEN_TIMER)) {
2675 return;
2676 }
2677
2678 /* Clear generic timer enable bits. */
2679 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2680 gen_tmr_configuration[timer->index].mode_mask);
2681
2682 /* Disable both trigger and thresh interrupt masks */
2683 REG_CLR_BIT(ah, AR_IMR_S5,
2684 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2685 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2686
2687 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302688}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002689EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302690
2691void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
2692{
2693 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2694
2695 /* free the hardware generic timer slot */
2696 timer_table->timers[timer->index] = NULL;
2697 kfree(timer);
2698}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002699EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302700
2701/*
2702 * Generic Timer Interrupts handling
2703 */
2704void ath_gen_timer_isr(struct ath_hw *ah)
2705{
2706 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2707 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002708 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302709 u32 trigger_mask, thresh_mask, index;
2710
2711 /* get hardware generic timer interrupt status */
2712 trigger_mask = ah->intr_gen_timer_trigger;
2713 thresh_mask = ah->intr_gen_timer_thresh;
2714 trigger_mask &= timer_table->timer_mask.val;
2715 thresh_mask &= timer_table->timer_mask.val;
2716
2717 trigger_mask &= ~thresh_mask;
2718
2719 while (thresh_mask) {
2720 index = rightmost_index(timer_table, &thresh_mask);
2721 timer = timer_table->timers[index];
2722 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002723 ath_print(common, ATH_DBG_HWTIMER,
2724 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302725 timer->overflow(timer->arg);
2726 }
2727
2728 while (trigger_mask) {
2729 index = rightmost_index(timer_table, &trigger_mask);
2730 timer = timer_table->timers[index];
2731 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002732 ath_print(common, ATH_DBG_HWTIMER,
2733 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302734 timer->trigger(timer->arg);
2735 }
2736}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002737EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002738
Sujith05020d22010-03-17 14:25:23 +05302739/********/
2740/* HTC */
2741/********/
2742
2743void ath9k_hw_htc_resetinit(struct ath_hw *ah)
2744{
2745 ah->htc_reset_init = true;
2746}
2747EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
2748
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002749static struct {
2750 u32 version;
2751 const char * name;
2752} ath_mac_bb_names[] = {
2753 /* Devices with external radios */
2754 { AR_SREV_VERSION_5416_PCI, "5416" },
2755 { AR_SREV_VERSION_5416_PCIE, "5418" },
2756 { AR_SREV_VERSION_9100, "9100" },
2757 { AR_SREV_VERSION_9160, "9160" },
2758 /* Single-chip solutions */
2759 { AR_SREV_VERSION_9280, "9280" },
2760 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04002761 { AR_SREV_VERSION_9287, "9287" },
2762 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguezec839032010-04-15 17:39:20 -04002763 { AR_SREV_VERSION_9300, "9300" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002764};
2765
2766/* For devices with external radios */
2767static struct {
2768 u16 version;
2769 const char * name;
2770} ath_rf_names[] = {
2771 { 0, "5133" },
2772 { AR_RAD5133_SREV_MAJOR, "5133" },
2773 { AR_RAD5122_SREV_MAJOR, "5122" },
2774 { AR_RAD2133_SREV_MAJOR, "2133" },
2775 { AR_RAD2122_SREV_MAJOR, "2122" }
2776};
2777
2778/*
2779 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2780 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002781static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002782{
2783 int i;
2784
2785 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2786 if (ath_mac_bb_names[i].version == mac_bb_version) {
2787 return ath_mac_bb_names[i].name;
2788 }
2789 }
2790
2791 return "????";
2792}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002793
2794/*
2795 * Return the RF name. "????" is returned if the RF is unknown.
2796 * Used for devices with external radios.
2797 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002798static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002799{
2800 int i;
2801
2802 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2803 if (ath_rf_names[i].version == rf_version) {
2804 return ath_rf_names[i].name;
2805 }
2806 }
2807
2808 return "????";
2809}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002810
2811void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
2812{
2813 int used;
2814
2815 /* chipsets >= AR9280 are single-chip */
2816 if (AR_SREV_9280_10_OR_LATER(ah)) {
2817 used = snprintf(hw_name, len,
2818 "Atheros AR%s Rev:%x",
2819 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2820 ah->hw_version.macRev);
2821 }
2822 else {
2823 used = snprintf(hw_name, len,
2824 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
2825 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2826 ah->hw_version.macRev,
2827 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
2828 AR_RADIO_SREV_MAJOR)),
2829 ah->hw_version.phyRev);
2830 }
2831
2832 hw_name[used] = '\0';
2833}
2834EXPORT_SYMBOL(ath9k_hw_name);