blob: 601dbf79cc0d853c28e6b73910e26131a0161b84 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujithcee075a2009-03-13 09:07:23 +05302 * Copyright (c) 2008-2009 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>
18#include <asm/unaligned.h>
19
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070020#include "hw.h"
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040021#include "hw-ops.h"
Luis R. Rodriguezcfe8cba2009-09-13 23:39:31 -070022#include "rc.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070023#include "initvals.h"
24
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080025#define ATH9K_CLOCK_RATE_CCK 22
26#define ATH9K_CLOCK_RATE_5GHZ_OFDM 40
27#define ATH9K_CLOCK_RATE_2GHZ_OFDM 44
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070028
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040029static void ar9002_hw_attach_ops(struct ath_hw *ah);
Luis R. Rodriguez8525f282010-04-15 17:38:19 -040030static void ar9003_hw_attach_ops(struct ath_hw *ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040031
Sujithcbe61d82009-02-09 13:27:12 +053032static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070033
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040034MODULE_AUTHOR("Atheros Communications");
35MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
36MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
37MODULE_LICENSE("Dual BSD/GPL");
38
39static int __init ath9k_init(void)
40{
41 return 0;
42}
43module_init(ath9k_init);
44
45static void __exit ath9k_exit(void)
46{
47 return;
48}
49module_exit(ath9k_exit);
50
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040051/* Private hardware callbacks */
52
53static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
54{
55 ath9k_hw_private_ops(ah)->init_cal_settings(ah);
56}
57
58static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
59{
60 ath9k_hw_private_ops(ah)->init_mode_regs(ah);
61}
62
63static bool ath9k_hw_macversion_supported(struct ath_hw *ah)
64{
65 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
66
67 return priv_ops->macversion_supported(ah->hw_version.macVersion);
68}
69
Luis R. Rodriguez64773962010-04-15 17:38:17 -040070static u32 ath9k_hw_compute_pll_control(struct ath_hw *ah,
71 struct ath9k_channel *chan)
72{
73 return ath9k_hw_private_ops(ah)->compute_pll_control(ah, chan);
74}
75
Sujithf1dc5602008-10-29 10:16:30 +053076/********************/
77/* Helper Functions */
78/********************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070079
Sujithcbe61d82009-02-09 13:27:12 +053080static u32 ath9k_hw_mac_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053081{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070082 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053083
Sujith2660b812009-02-09 13:27:26 +053084 if (!ah->curchan) /* should really check for CCK instead */
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080085 return usecs *ATH9K_CLOCK_RATE_CCK;
86 if (conf->channel->band == IEEE80211_BAND_2GHZ)
87 return usecs *ATH9K_CLOCK_RATE_2GHZ_OFDM;
88 return usecs *ATH9K_CLOCK_RATE_5GHZ_OFDM;
Sujithf1dc5602008-10-29 10:16:30 +053089}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070090
Sujithcbe61d82009-02-09 13:27:12 +053091static u32 ath9k_hw_mac_to_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
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080095 if (conf_is_ht40(conf))
Sujithf1dc5602008-10-29 10:16:30 +053096 return ath9k_hw_mac_clks(ah, usecs) * 2;
97 else
98 return ath9k_hw_mac_clks(ah, usecs);
99}
100
Sujith0caa7b12009-02-16 13:23:20 +0530101bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700102{
103 int i;
104
Sujith0caa7b12009-02-16 13:23:20 +0530105 BUG_ON(timeout < AH_TIME_QUANTUM);
106
107 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700108 if ((REG_READ(ah, reg) & mask) == val)
109 return true;
110
111 udelay(AH_TIME_QUANTUM);
112 }
Sujith04bd4632008-11-28 22:18:05 +0530113
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700114 ath_print(ath9k_hw_common(ah), ATH_DBG_ANY,
115 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
116 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +0530117
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700118 return false;
119}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400120EXPORT_SYMBOL(ath9k_hw_wait);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700121
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700122u32 ath9k_hw_reverse_bits(u32 val, u32 n)
123{
124 u32 retval;
125 int i;
126
127 for (i = 0, retval = 0; i < n; i++) {
128 retval = (retval << 1) | (val & 1);
129 val >>= 1;
130 }
131 return retval;
132}
133
Sujithcbe61d82009-02-09 13:27:12 +0530134bool ath9k_get_channel_edges(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530135 u16 flags, u16 *low,
136 u16 *high)
137{
Sujith2660b812009-02-09 13:27:26 +0530138 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530139
140 if (flags & CHANNEL_5GHZ) {
141 *low = pCap->low_5ghz_chan;
142 *high = pCap->high_5ghz_chan;
143 return true;
144 }
145 if ((flags & CHANNEL_2GHZ)) {
146 *low = pCap->low_2ghz_chan;
147 *high = pCap->high_2ghz_chan;
148 return true;
149 }
150 return false;
151}
152
Sujithcbe61d82009-02-09 13:27:12 +0530153u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Felix Fietkau545750d2009-11-23 22:21:01 +0100154 u8 phy, int kbps,
Sujithf1dc5602008-10-29 10:16:30 +0530155 u32 frameLen, u16 rateix,
156 bool shortPreamble)
157{
158 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
Sujithf1dc5602008-10-29 10:16:30 +0530159
160 if (kbps == 0)
161 return 0;
162
Felix Fietkau545750d2009-11-23 22:21:01 +0100163 switch (phy) {
Sujith46d14a52008-11-18 09:08:13 +0530164 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530165 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Felix Fietkau545750d2009-11-23 22:21:01 +0100166 if (shortPreamble)
Sujithf1dc5602008-10-29 10:16:30 +0530167 phyTime >>= 1;
168 numBits = frameLen << 3;
169 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
170 break;
Sujith46d14a52008-11-18 09:08:13 +0530171 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530172 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530173 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
174 numBits = OFDM_PLCP_BITS + (frameLen << 3);
175 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
176 txTime = OFDM_SIFS_TIME_QUARTER
177 + OFDM_PREAMBLE_TIME_QUARTER
178 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530179 } else if (ah->curchan &&
180 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530181 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
182 numBits = OFDM_PLCP_BITS + (frameLen << 3);
183 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
184 txTime = OFDM_SIFS_TIME_HALF +
185 OFDM_PREAMBLE_TIME_HALF
186 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
187 } else {
188 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
189 numBits = OFDM_PLCP_BITS + (frameLen << 3);
190 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
191 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
192 + (numSymbols * OFDM_SYMBOL_TIME);
193 }
194 break;
195 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700196 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
Felix Fietkau545750d2009-11-23 22:21:01 +0100197 "Unknown phy %u (rate ix %u)\n", phy, rateix);
Sujithf1dc5602008-10-29 10:16:30 +0530198 txTime = 0;
199 break;
200 }
201
202 return txTime;
203}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400204EXPORT_SYMBOL(ath9k_hw_computetxtime);
Sujithf1dc5602008-10-29 10:16:30 +0530205
Sujithcbe61d82009-02-09 13:27:12 +0530206void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530207 struct ath9k_channel *chan,
208 struct chan_centers *centers)
209{
210 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530211
212 if (!IS_CHAN_HT40(chan)) {
213 centers->ctl_center = centers->ext_center =
214 centers->synth_center = chan->channel;
215 return;
216 }
217
218 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
219 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
220 centers->synth_center =
221 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
222 extoff = 1;
223 } else {
224 centers->synth_center =
225 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
226 extoff = -1;
227 }
228
229 centers->ctl_center =
230 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700231 /* 25 MHz spacing is supported by hw but not on upper layers */
Sujithf1dc5602008-10-29 10:16:30 +0530232 centers->ext_center =
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700233 centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
Sujithf1dc5602008-10-29 10:16:30 +0530234}
235
236/******************/
237/* Chip Revisions */
238/******************/
239
Sujithcbe61d82009-02-09 13:27:12 +0530240static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530241{
242 u32 val;
243
244 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
245
246 if (val == 0xFF) {
247 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530248 ah->hw_version.macVersion =
249 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
250 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Sujith2660b812009-02-09 13:27:26 +0530251 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530252 } else {
253 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530254 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530255
Sujithd535a422009-02-09 13:27:06 +0530256 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530257
Sujithd535a422009-02-09 13:27:06 +0530258 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530259 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530260 }
261}
262
Sujithcbe61d82009-02-09 13:27:12 +0530263static int ath9k_hw_get_radiorev(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530264{
265 u32 val;
266 int i;
267
268 REG_WRITE(ah, AR_PHY(0x36), 0x00007058);
269
270 for (i = 0; i < 8; i++)
271 REG_WRITE(ah, AR_PHY(0x20), 0x00010000);
272 val = (REG_READ(ah, AR_PHY(256)) >> 24) & 0xff;
273 val = ((val & 0xf0) >> 4) | ((val & 0x0f) << 4);
274
275 return ath9k_hw_reverse_bits(val, 8);
276}
277
278/************************************/
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
287 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
288 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
289 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
290 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
291 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
292 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
293 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
294 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
295 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
296
297 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
298}
299
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400300/* This should work for all families including legacy */
Sujithcbe61d82009-02-09 13:27:12 +0530301static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530302{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700303 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400304 u32 regAddr[2] = { AR_STA_ID0 };
Sujithf1dc5602008-10-29 10:16:30 +0530305 u32 regHold[2];
306 u32 patternData[4] = { 0x55555555,
307 0xaaaaaaaa,
308 0x66666666,
309 0x99999999 };
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400310 int i, j, loop_max;
Sujithf1dc5602008-10-29 10:16:30 +0530311
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400312 if (!AR_SREV_9300_20_OR_LATER(ah)) {
313 loop_max = 2;
314 regAddr[1] = AR_PHY_BASE + (8 << 2);
315 } else
316 loop_max = 1;
317
318 for (i = 0; i < loop_max; i++) {
Sujithf1dc5602008-10-29 10:16:30 +0530319 u32 addr = regAddr[i];
320 u32 wrData, rdData;
321
322 regHold[i] = REG_READ(ah, addr);
323 for (j = 0; j < 0x100; j++) {
324 wrData = (j << 16) | j;
325 REG_WRITE(ah, addr, wrData);
326 rdData = REG_READ(ah, addr);
327 if (rdData != wrData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700328 ath_print(common, ATH_DBG_FATAL,
329 "address test failed "
330 "addr: 0x%08x - wr:0x%08x != "
331 "rd:0x%08x\n",
332 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530333 return false;
334 }
335 }
336 for (j = 0; j < 4; j++) {
337 wrData = patternData[j];
338 REG_WRITE(ah, addr, wrData);
339 rdData = REG_READ(ah, addr);
340 if (wrData != rdData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700341 ath_print(common, ATH_DBG_FATAL,
342 "address test failed "
343 "addr: 0x%08x - wr:0x%08x != "
344 "rd:0x%08x\n",
345 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530346 return false;
347 }
348 }
349 REG_WRITE(ah, regAddr[i], regHold[i]);
350 }
351 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530352
Sujithf1dc5602008-10-29 10:16:30 +0530353 return true;
354}
355
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700356static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700357{
358 int i;
359
Sujith2660b812009-02-09 13:27:26 +0530360 ah->config.dma_beacon_response_time = 2;
361 ah->config.sw_beacon_response_time = 10;
362 ah->config.additional_swba_backoff = 0;
363 ah->config.ack_6mb = 0x0;
364 ah->config.cwm_ignore_extcca = 0;
365 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530366 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530367 ah->config.pcie_waen = 0;
368 ah->config.analog_shiftreg = 1;
Sujith2660b812009-02-09 13:27:26 +0530369 ah->config.ofdm_trig_low = 200;
370 ah->config.ofdm_trig_high = 500;
371 ah->config.cck_trig_high = 200;
372 ah->config.cck_trig_low = 100;
Luis R. Rodriguez31a0bd32010-04-15 17:38:22 -0400373
374 /*
375 * For now ANI is disabled for AR9003, it is still
376 * being tested.
377 */
378 if (!AR_SREV_9300_20_OR_LATER(ah))
379 ah->config.enable_ani = 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700380
381 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530382 ah->config.spurchans[i][0] = AR_NO_SPUR;
383 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700384 }
385
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500386 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
387 ah->config.ht_enable = 1;
388 else
389 ah->config.ht_enable = 0;
390
Sujith0ce024c2009-12-14 14:57:00 +0530391 ah->config.rx_intr_mitigation = 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;
Sujith2660b812009-02-09 13:27:26 +0530429 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
430 ah->beacon_interval = 100;
431 ah->enable_32kHz_clock = DONT_USE_32KHZ;
432 ah->slottime = (u32) -1;
Sujith2660b812009-02-09 13:27:26 +0530433 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200434 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700435}
436
Sujithcbe61d82009-02-09 13:27:12 +0530437static int ath9k_hw_rf_claim(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700438{
439 u32 val;
440
441 REG_WRITE(ah, AR_PHY(0), 0x00000007);
442
443 val = ath9k_hw_get_radiorev(ah);
444 switch (val & AR_RADIO_SREV_MAJOR) {
445 case 0:
446 val = AR_RAD5133_SREV_MAJOR;
447 break;
448 case AR_RAD5133_SREV_MAJOR:
449 case AR_RAD5122_SREV_MAJOR:
450 case AR_RAD2133_SREV_MAJOR:
451 case AR_RAD2122_SREV_MAJOR:
452 break;
453 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700454 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
455 "Radio Chip Rev 0x%02X not supported\n",
456 val & AR_RADIO_SREV_MAJOR);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700457 return -EOPNOTSUPP;
458 }
459
Sujithd535a422009-02-09 13:27:06 +0530460 ah->hw_version.analog5GhzRev = val;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700461
462 return 0;
463}
464
Sujithcbe61d82009-02-09 13:27:12 +0530465static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700466{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700467 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530468 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700469 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530470 u16 eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700471
Sujithf1dc5602008-10-29 10:16:30 +0530472 sum = 0;
473 for (i = 0; i < 3; i++) {
Sujithf74df6f2009-02-09 13:27:24 +0530474 eeval = ah->eep_ops->get_eeprom(ah, AR_EEPROM_MAC(i));
Sujithf1dc5602008-10-29 10:16:30 +0530475 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700476 common->macaddr[2 * i] = eeval >> 8;
477 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700478 }
Sujithd8baa932009-03-30 15:28:25 +0530479 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530480 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700481
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700482 return 0;
483}
484
Sujithcbe61d82009-02-09 13:27:12 +0530485static void ath9k_hw_init_rxgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530486{
487 u32 rxgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530488
Sujithf74df6f2009-02-09 13:27:24 +0530489 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_17) {
490 rxgain_type = ah->eep_ops->get_eeprom(ah, EEP_RXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530491
492 if (rxgain_type == AR5416_EEP_RXGAIN_13DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530493 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530494 ar9280Modes_backoff_13db_rxgain_9280_2,
495 ARRAY_SIZE(ar9280Modes_backoff_13db_rxgain_9280_2), 6);
496 else if (rxgain_type == AR5416_EEP_RXGAIN_23DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530497 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530498 ar9280Modes_backoff_23db_rxgain_9280_2,
499 ARRAY_SIZE(ar9280Modes_backoff_23db_rxgain_9280_2), 6);
500 else
Sujith2660b812009-02-09 13:27:26 +0530501 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530502 ar9280Modes_original_rxgain_9280_2,
503 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530504 } else {
Sujith2660b812009-02-09 13:27:26 +0530505 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530506 ar9280Modes_original_rxgain_9280_2,
507 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530508 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530509}
510
Sujithcbe61d82009-02-09 13:27:12 +0530511static void ath9k_hw_init_txgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530512{
513 u32 txgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530514
Sujithf74df6f2009-02-09 13:27:24 +0530515 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_19) {
516 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530517
518 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER)
Sujith2660b812009-02-09 13:27:26 +0530519 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530520 ar9280Modes_high_power_tx_gain_9280_2,
521 ARRAY_SIZE(ar9280Modes_high_power_tx_gain_9280_2), 6);
522 else
Sujith2660b812009-02-09 13:27:26 +0530523 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530524 ar9280Modes_original_tx_gain_9280_2,
525 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530526 } else {
Sujith2660b812009-02-09 13:27:26 +0530527 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530528 ar9280Modes_original_tx_gain_9280_2,
529 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530530 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530531}
532
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700533static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700534{
535 int ecode;
536
Sujith527d4852010-03-17 14:25:16 +0530537 if (!AR_SREV_9271(ah)) {
538 if (!ath9k_hw_chip_test(ah))
539 return -ENODEV;
540 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700541
542 ecode = ath9k_hw_rf_claim(ah);
543 if (ecode != 0)
544 return ecode;
545
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700546 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700547 if (ecode != 0)
548 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530549
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700550 ath_print(ath9k_hw_common(ah), ATH_DBG_CONFIG,
551 "Eeprom VER: %d, REV: %d\n",
552 ah->eep_ops->get_eeprom_ver(ah),
553 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530554
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400555 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
556 if (ecode) {
557 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
558 "Failed allocating banks for "
559 "external radio\n");
560 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400561 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700562
563 if (!AR_SREV_9100(ah)) {
564 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700565 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700566 }
Sujithf1dc5602008-10-29 10:16:30 +0530567
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700568 return 0;
569}
570
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400571static bool ar9002_hw_macversion_supported(u32 macversion)
Luis R. Rodriguezf9d4a662009-08-03 12:24:41 -0700572{
573 switch (macversion) {
574 case AR_SREV_VERSION_5416_PCI:
575 case AR_SREV_VERSION_5416_PCIE:
576 case AR_SREV_VERSION_9160:
577 case AR_SREV_VERSION_9100:
578 case AR_SREV_VERSION_9280:
579 case AR_SREV_VERSION_9285:
580 case AR_SREV_VERSION_9287:
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400581 case AR_SREV_VERSION_9271:
Luis R. Rodriguez7976b422009-09-23 23:07:02 -0400582 return true;
Luis R. Rodriguezf9d4a662009-08-03 12:24:41 -0700583 default:
584 break;
585 }
586 return false;
587}
588
Luis R. Rodriguez61accab2010-04-15 17:38:21 -0400589static bool ar9003_hw_macversion_supported(u32 macversion)
590{
591 switch (macversion) {
592 case AR_SREV_VERSION_9300:
593 return true;
594 default:
595 break;
596 }
597 return false;
598}
599
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400600static void ar9002_hw_init_cal_settings(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700601{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700602 if (AR_SREV_9160_10_OR_LATER(ah)) {
603 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530604 ah->iq_caldata.calData = &iq_cal_single_sample;
605 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700606 &adc_gain_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530607 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700608 &adc_dc_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530609 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700610 &adc_init_dc_cal;
611 } else {
Sujith2660b812009-02-09 13:27:26 +0530612 ah->iq_caldata.calData = &iq_cal_multi_sample;
613 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700614 &adc_gain_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530615 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700616 &adc_dc_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530617 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700618 &adc_init_dc_cal;
619 }
Sujith2660b812009-02-09 13:27:26 +0530620 ah->supp_cals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700621 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700622}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700623
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400624static void ar9002_hw_init_mode_regs(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700625{
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400626 if (AR_SREV_9271(ah)) {
Luis R. Rodriguez85643282009-10-19 02:33:33 -0400627 INIT_INI_ARRAY(&ah->iniModes, ar9271Modes_9271,
628 ARRAY_SIZE(ar9271Modes_9271), 6);
629 INIT_INI_ARRAY(&ah->iniCommon, ar9271Common_9271,
630 ARRAY_SIZE(ar9271Common_9271), 2);
Sujith70807e92010-03-17 14:25:14 +0530631 INIT_INI_ARRAY(&ah->iniCommon_normal_cck_fir_coeff_9271,
632 ar9271Common_normal_cck_fir_coeff_9271,
633 ARRAY_SIZE(ar9271Common_normal_cck_fir_coeff_9271), 2);
634 INIT_INI_ARRAY(&ah->iniCommon_japan_2484_cck_fir_coeff_9271,
635 ar9271Common_japan_2484_cck_fir_coeff_9271,
636 ARRAY_SIZE(ar9271Common_japan_2484_cck_fir_coeff_9271), 2);
Luis R. Rodriguez85643282009-10-19 02:33:33 -0400637 INIT_INI_ARRAY(&ah->iniModes_9271_1_0_only,
638 ar9271Modes_9271_1_0_only,
639 ARRAY_SIZE(ar9271Modes_9271_1_0_only), 6);
Sujith70807e92010-03-17 14:25:14 +0530640 INIT_INI_ARRAY(&ah->iniModes_9271_ANI_reg, ar9271Modes_9271_ANI_reg,
641 ARRAY_SIZE(ar9271Modes_9271_ANI_reg), 6);
642 INIT_INI_ARRAY(&ah->iniModes_high_power_tx_gain_9271,
643 ar9271Modes_high_power_tx_gain_9271,
644 ARRAY_SIZE(ar9271Modes_high_power_tx_gain_9271), 6);
645 INIT_INI_ARRAY(&ah->iniModes_normal_power_tx_gain_9271,
646 ar9271Modes_normal_power_tx_gain_9271,
647 ARRAY_SIZE(ar9271Modes_normal_power_tx_gain_9271), 6);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400648 return;
649 }
650
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530651 if (AR_SREV_9287_11_OR_LATER(ah)) {
652 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_1,
653 ARRAY_SIZE(ar9287Modes_9287_1_1), 6);
654 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_1,
655 ARRAY_SIZE(ar9287Common_9287_1_1), 2);
656 if (ah->config.pcie_clock_req)
657 INIT_INI_ARRAY(&ah->iniPcieSerdes,
658 ar9287PciePhy_clkreq_off_L1_9287_1_1,
659 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_1), 2);
660 else
661 INIT_INI_ARRAY(&ah->iniPcieSerdes,
662 ar9287PciePhy_clkreq_always_on_L1_9287_1_1,
663 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_1),
664 2);
665 } else if (AR_SREV_9287_10_OR_LATER(ah)) {
666 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_0,
667 ARRAY_SIZE(ar9287Modes_9287_1_0), 6);
668 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_0,
669 ARRAY_SIZE(ar9287Common_9287_1_0), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700670
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530671 if (ah->config.pcie_clock_req)
672 INIT_INI_ARRAY(&ah->iniPcieSerdes,
673 ar9287PciePhy_clkreq_off_L1_9287_1_0,
674 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_0), 2);
675 else
676 INIT_INI_ARRAY(&ah->iniPcieSerdes,
677 ar9287PciePhy_clkreq_always_on_L1_9287_1_0,
678 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_0),
679 2);
680 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
681
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530682
Sujith2660b812009-02-09 13:27:26 +0530683 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530684 ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530685 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530686 ARRAY_SIZE(ar9285Common_9285_1_2), 2);
687
Sujith2660b812009-02-09 13:27:26 +0530688 if (ah->config.pcie_clock_req) {
689 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530690 ar9285PciePhy_clkreq_off_L1_9285_1_2,
691 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 2);
692 } else {
Sujith2660b812009-02-09 13:27:26 +0530693 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530694 ar9285PciePhy_clkreq_always_on_L1_9285_1_2,
695 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
696 2);
697 }
698 } else if (AR_SREV_9285_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530699 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530700 ARRAY_SIZE(ar9285Modes_9285), 6);
Sujith2660b812009-02-09 13:27:26 +0530701 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530702 ARRAY_SIZE(ar9285Common_9285), 2);
703
Sujith2660b812009-02-09 13:27:26 +0530704 if (ah->config.pcie_clock_req) {
705 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530706 ar9285PciePhy_clkreq_off_L1_9285,
707 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 2);
708 } else {
Sujith2660b812009-02-09 13:27:26 +0530709 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530710 ar9285PciePhy_clkreq_always_on_L1_9285,
711 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
712 }
713 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530714 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700715 ARRAY_SIZE(ar9280Modes_9280_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530716 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700717 ARRAY_SIZE(ar9280Common_9280_2), 2);
718
Sujith2660b812009-02-09 13:27:26 +0530719 if (ah->config.pcie_clock_req) {
720 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530721 ar9280PciePhy_clkreq_off_L1_9280,
722 ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700723 } else {
Sujith2660b812009-02-09 13:27:26 +0530724 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530725 ar9280PciePhy_clkreq_always_on_L1_9280,
726 ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700727 }
Sujith2660b812009-02-09 13:27:26 +0530728 INIT_INI_ARRAY(&ah->iniModesAdditional,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700729 ar9280Modes_fast_clock_9280_2,
Sujithf1dc5602008-10-29 10:16:30 +0530730 ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700731 } else if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530732 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700733 ARRAY_SIZE(ar9280Modes_9280), 6);
Sujith2660b812009-02-09 13:27:26 +0530734 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700735 ARRAY_SIZE(ar9280Common_9280), 2);
736 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530737 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700738 ARRAY_SIZE(ar5416Modes_9160), 6);
Sujith2660b812009-02-09 13:27:26 +0530739 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700740 ARRAY_SIZE(ar5416Common_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530741 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700742 ARRAY_SIZE(ar5416Bank0_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530743 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700744 ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530745 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700746 ARRAY_SIZE(ar5416Bank1_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530747 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700748 ARRAY_SIZE(ar5416Bank2_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530749 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700750 ARRAY_SIZE(ar5416Bank3_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530751 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700752 ARRAY_SIZE(ar5416Bank6_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530753 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700754 ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530755 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700756 ARRAY_SIZE(ar5416Bank7_9160), 2);
757 if (AR_SREV_9160_11(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530758 INIT_INI_ARRAY(&ah->iniAddac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700759 ar5416Addac_91601_1,
760 ARRAY_SIZE(ar5416Addac_91601_1), 2);
761 } else {
Sujith2660b812009-02-09 13:27:26 +0530762 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700763 ARRAY_SIZE(ar5416Addac_9160), 2);
764 }
765 } else if (AR_SREV_9100_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530766 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700767 ARRAY_SIZE(ar5416Modes_9100), 6);
Sujith2660b812009-02-09 13:27:26 +0530768 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700769 ARRAY_SIZE(ar5416Common_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530770 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700771 ARRAY_SIZE(ar5416Bank0_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530772 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700773 ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530774 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700775 ARRAY_SIZE(ar5416Bank1_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530776 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700777 ARRAY_SIZE(ar5416Bank2_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530778 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700779 ARRAY_SIZE(ar5416Bank3_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530780 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700781 ARRAY_SIZE(ar5416Bank6_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530782 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700783 ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530784 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700785 ARRAY_SIZE(ar5416Bank7_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530786 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700787 ARRAY_SIZE(ar5416Addac_9100), 2);
788 } else {
Sujith2660b812009-02-09 13:27:26 +0530789 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700790 ARRAY_SIZE(ar5416Modes), 6);
Sujith2660b812009-02-09 13:27:26 +0530791 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700792 ARRAY_SIZE(ar5416Common), 2);
Sujith2660b812009-02-09 13:27:26 +0530793 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700794 ARRAY_SIZE(ar5416Bank0), 2);
Sujith2660b812009-02-09 13:27:26 +0530795 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700796 ARRAY_SIZE(ar5416BB_RfGain), 3);
Sujith2660b812009-02-09 13:27:26 +0530797 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700798 ARRAY_SIZE(ar5416Bank1), 2);
Sujith2660b812009-02-09 13:27:26 +0530799 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700800 ARRAY_SIZE(ar5416Bank2), 2);
Sujith2660b812009-02-09 13:27:26 +0530801 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700802 ARRAY_SIZE(ar5416Bank3), 3);
Sujith2660b812009-02-09 13:27:26 +0530803 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700804 ARRAY_SIZE(ar5416Bank6), 3);
Sujith2660b812009-02-09 13:27:26 +0530805 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700806 ARRAY_SIZE(ar5416Bank6TPC), 3);
Sujith2660b812009-02-09 13:27:26 +0530807 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700808 ARRAY_SIZE(ar5416Bank7), 2);
Sujith2660b812009-02-09 13:27:26 +0530809 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700810 ARRAY_SIZE(ar5416Addac), 2);
811 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700812}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700813
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700814static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
815{
Vivek Natarajanb37fa872009-09-23 16:27:27 +0530816 if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530817 INIT_INI_ARRAY(&ah->iniModesRxGain,
818 ar9287Modes_rx_gain_9287_1_1,
819 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_1), 6);
820 else if (AR_SREV_9287_10(ah))
821 INIT_INI_ARRAY(&ah->iniModesRxGain,
822 ar9287Modes_rx_gain_9287_1_0,
823 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_0), 6);
824 else if (AR_SREV_9280_20(ah))
825 ath9k_hw_init_rxgain_ini(ah);
826
Vivek Natarajanb37fa872009-09-23 16:27:27 +0530827 if (AR_SREV_9287_11_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530828 INIT_INI_ARRAY(&ah->iniModesTxGain,
829 ar9287Modes_tx_gain_9287_1_1,
830 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_1), 6);
831 } else if (AR_SREV_9287_10(ah)) {
832 INIT_INI_ARRAY(&ah->iniModesTxGain,
833 ar9287Modes_tx_gain_9287_1_0,
834 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_0), 6);
835 } else if (AR_SREV_9280_20(ah)) {
836 ath9k_hw_init_txgain_ini(ah);
837 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530838 u32 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
839
840 /* txgain table */
841 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER) {
Vivek Natarajan53bc7aa2010-04-05 14:48:04 +0530842 if (AR_SREV_9285E_20(ah)) {
843 INIT_INI_ARRAY(&ah->iniModesTxGain,
844 ar9285Modes_XE2_0_high_power,
845 ARRAY_SIZE(
846 ar9285Modes_XE2_0_high_power), 6);
847 } else {
848 INIT_INI_ARRAY(&ah->iniModesTxGain,
849 ar9285Modes_high_power_tx_gain_9285_1_2,
850 ARRAY_SIZE(
851 ar9285Modes_high_power_tx_gain_9285_1_2), 6);
852 }
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530853 } else {
Vivek Natarajan53bc7aa2010-04-05 14:48:04 +0530854 if (AR_SREV_9285E_20(ah)) {
855 INIT_INI_ARRAY(&ah->iniModesTxGain,
856 ar9285Modes_XE2_0_normal_power,
857 ARRAY_SIZE(
858 ar9285Modes_XE2_0_normal_power), 6);
859 } else {
860 INIT_INI_ARRAY(&ah->iniModesTxGain,
861 ar9285Modes_original_tx_gain_9285_1_2,
862 ARRAY_SIZE(
863 ar9285Modes_original_tx_gain_9285_1_2), 6);
864 }
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530865 }
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530866 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700867}
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530868
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100869static void ath9k_hw_init_eeprom_fix(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700870{
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400871 struct base_eep_header *pBase = &(ah->eeprom.def.baseEepHeader);
872 struct ath_common *common = ath9k_hw_common(ah);
Sujith06d0f062009-02-12 10:06:45 +0530873
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400874 ah->need_an_top2_fixup = (ah->hw_version.devid == AR9280_DEVID_PCI) &&
875 (ah->eep_map != EEP_MAP_4KBITS) &&
876 ((pBase->version & 0xff) > 0x0a) &&
877 (pBase->pwdclkind == 0);
Sujith06d0f062009-02-12 10:06:45 +0530878
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400879 if (ah->need_an_top2_fixup)
880 ath_print(common, ATH_DBG_EEPROM,
881 "needs fixup for AR_AN_TOP2 register\n");
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700882}
883
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400884static void ath9k_hw_attach_ops(struct ath_hw *ah)
885{
886 if (AR_SREV_9300_20_OR_LATER(ah))
887 ar9003_hw_attach_ops(ah);
888 else
889 ar9002_hw_attach_ops(ah);
890}
891
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400892/* Called for all hardware families */
893static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700894{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700895 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700896 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700897
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400898 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
899 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700900
901 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700902 ath_print(common, ATH_DBG_FATAL,
903 "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700904 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700905 }
906
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400907 ath9k_hw_init_defaults(ah);
908 ath9k_hw_init_config(ah);
909
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400910 ath9k_hw_attach_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400911
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700912 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700913 ath_print(common, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700914 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700915 }
916
917 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
918 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
919 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
920 ah->config.serialize_regmode =
921 SER_REG_MODE_ON;
922 } else {
923 ah->config.serialize_regmode =
924 SER_REG_MODE_OFF;
925 }
926 }
927
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700928 ath_print(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700929 ah->config.serialize_regmode);
930
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500931 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
932 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
933 else
934 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
935
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400936 if (!ath9k_hw_macversion_supported(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700937 ath_print(common, ATH_DBG_FATAL,
938 "Mac Chip Rev 0x%02x.%x is not supported by "
939 "this driver\n", ah->hw_version.macVersion,
940 ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700941 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700942 }
943
944 if (AR_SREV_9100(ah)) {
945 ah->iq_caldata.calData = &iq_cal_multi_sample;
946 ah->supp_cals = IQ_MISMATCH_CAL;
947 ah->is_pciexpress = false;
948 }
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400949
950 if (AR_SREV_9271(ah))
951 ah->is_pciexpress = false;
952
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700953 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700954 ath9k_hw_init_cal_settings(ah);
955
956 ah->ani_function = ATH9K_ANI_ALL;
Luis R. Rodriguez31a0bd32010-04-15 17:38:22 -0400957 if (AR_SREV_9280_10_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700958 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
959
960 ath9k_hw_init_mode_regs(ah);
961
962 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530963 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700964 else
965 ath9k_hw_disablepcie(ah);
966
Sujith193cd452009-09-18 15:04:07 +0530967 /* Support for Japan ch.14 (2484) spread */
968 if (AR_SREV_9287_11_OR_LATER(ah)) {
969 INIT_INI_ARRAY(&ah->iniCckfirNormal,
970 ar9287Common_normal_cck_fir_coeff_92871_1,
971 ARRAY_SIZE(ar9287Common_normal_cck_fir_coeff_92871_1), 2);
972 INIT_INI_ARRAY(&ah->iniCckfirJapan2484,
973 ar9287Common_japan_2484_cck_fir_coeff_92871_1,
974 ARRAY_SIZE(ar9287Common_japan_2484_cck_fir_coeff_92871_1), 2);
975 }
976
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700977 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700978 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700979 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700980
981 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100982 r = ath9k_hw_fill_cap_info(ah);
983 if (r)
984 return r;
985
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100986 ath9k_hw_init_eeprom_fix(ah);
Sujithf6688cd2008-12-07 21:43:10 +0530987
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700988 r = ath9k_hw_init_macaddr(ah);
989 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700990 ath_print(common, ATH_DBG_FATAL,
991 "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700992 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700993 }
994
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400995 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530996 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700997 else
Sujith2660b812009-02-09 13:27:26 +0530998 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700999
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001000 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001001
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001002 common->state = ATH_HW_INITIALIZED;
1003
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -07001004 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001005}
1006
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04001007int ath9k_hw_init(struct ath_hw *ah)
1008{
1009 int ret;
1010 struct ath_common *common = ath9k_hw_common(ah);
1011
1012 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
1013 switch (ah->hw_version.devid) {
1014 case AR5416_DEVID_PCI:
1015 case AR5416_DEVID_PCIE:
1016 case AR5416_AR9100_DEVID:
1017 case AR9160_DEVID_PCI:
1018 case AR9280_DEVID_PCI:
1019 case AR9280_DEVID_PCIE:
1020 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -04001021 case AR9287_DEVID_PCI:
1022 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04001023 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -04001024 case AR9300_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04001025 break;
1026 default:
1027 if (common->bus_ops->ath_bus_type == ATH_USB)
1028 break;
1029 ath_print(common, ATH_DBG_FATAL,
1030 "Hardware device ID 0x%04x not supported\n",
1031 ah->hw_version.devid);
1032 return -EOPNOTSUPP;
1033 }
1034
1035 ret = __ath9k_hw_init(ah);
1036 if (ret) {
1037 ath_print(common, ATH_DBG_FATAL,
1038 "Unable to initialize hardware; "
1039 "initialization status: %d\n", ret);
1040 return ret;
1041 }
1042
1043 return 0;
1044}
1045EXPORT_SYMBOL(ath9k_hw_init);
1046
Sujithcbe61d82009-02-09 13:27:12 +05301047static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301048{
1049 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
1050 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
1051
1052 REG_WRITE(ah, AR_QOS_NO_ACK,
1053 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
1054 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
1055 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
1056
1057 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
1058 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
1059 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
1060 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
1061 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
1062}
1063
Sujithcbe61d82009-02-09 13:27:12 +05301064static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301065 struct ath9k_channel *chan)
1066{
Luis R. Rodriguez64773962010-04-15 17:38:17 -04001067 u32 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301068
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001069 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +05301070
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -04001071 /* Switch the core clock for ar9271 to 117Mhz */
1072 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +05301073 udelay(500);
1074 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -04001075 }
1076
Sujithf1dc5602008-10-29 10:16:30 +05301077 udelay(RTC_PLL_SETTLE_DELAY);
1078
1079 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
1080}
1081
Sujithcbe61d82009-02-09 13:27:12 +05301082static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -08001083 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301084{
Pavel Roskin152d5302010-03-31 18:05:37 -04001085 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +05301086 AR_IMR_TXURN |
1087 AR_IMR_RXERR |
1088 AR_IMR_RXORN |
1089 AR_IMR_BCNMISC;
1090
Sujith0ce024c2009-12-14 14:57:00 +05301091 if (ah->config.rx_intr_mitigation)
Pavel Roskin152d5302010-03-31 18:05:37 -04001092 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
Sujithf1dc5602008-10-29 10:16:30 +05301093 else
Pavel Roskin152d5302010-03-31 18:05:37 -04001094 imr_reg |= AR_IMR_RXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301095
Pavel Roskin152d5302010-03-31 18:05:37 -04001096 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301097
Colin McCabed97809d2008-12-01 13:38:55 -08001098 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -04001099 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +05301100
Pavel Roskin152d5302010-03-31 18:05:37 -04001101 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -05001102 ah->imrs2_reg |= AR_IMR_S2_GTT;
1103 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +05301104
1105 if (!AR_SREV_9100(ah)) {
1106 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
1107 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
1108 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
1109 }
1110}
1111
Felix Fietkau0005baf2010-01-15 02:33:40 +01001112static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301113{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001114 u32 val = ath9k_hw_mac_to_clks(ah, us);
1115 val = min(val, (u32) 0xFFFF);
1116 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +05301117}
1118
Felix Fietkau0005baf2010-01-15 02:33:40 +01001119static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301120{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001121 u32 val = ath9k_hw_mac_to_clks(ah, us);
1122 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
1123 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
1124}
1125
1126static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
1127{
1128 u32 val = ath9k_hw_mac_to_clks(ah, us);
1129 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
1130 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +05301131}
1132
Sujithcbe61d82009-02-09 13:27:12 +05301133static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +05301134{
Sujithf1dc5602008-10-29 10:16:30 +05301135 if (tu > 0xFFFF) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001136 ath_print(ath9k_hw_common(ah), ATH_DBG_XMIT,
1137 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +05301138 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301139 return false;
1140 } else {
1141 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +05301142 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +05301143 return true;
1144 }
1145}
1146
Felix Fietkau0005baf2010-01-15 02:33:40 +01001147void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301148{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001149 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
1150 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +01001151 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001152 int sifstime;
1153
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001154 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
1155 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +05301156
Sujith2660b812009-02-09 13:27:26 +05301157 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +05301158 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +05301159 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001160
1161 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
1162 sifstime = 16;
1163 else
1164 sifstime = 10;
1165
Felix Fietkaue239d852010-01-15 02:34:58 +01001166 /* As defined by IEEE 802.11-2007 17.3.8.6 */
1167 slottime = ah->slottime + 3 * ah->coverage_class;
1168 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +01001169
1170 /*
1171 * Workaround for early ACK timeouts, add an offset to match the
1172 * initval's 64us ack timeout value.
1173 * This was initially only meant to work around an issue with delayed
1174 * BA frames in some implementations, but it has been found to fix ACK
1175 * timeout issues in other cases as well.
1176 */
1177 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
1178 acktimeout += 64 - sifstime - ah->slottime;
1179
Felix Fietkaue239d852010-01-15 02:34:58 +01001180 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001181 ath9k_hw_set_ack_timeout(ah, acktimeout);
1182 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +05301183 if (ah->globaltxtimeout != (u32) -1)
1184 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +05301185}
Felix Fietkau0005baf2010-01-15 02:33:40 +01001186EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +05301187
Sujith285f2dd2010-01-08 10:36:07 +05301188void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001189{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001190 struct ath_common *common = ath9k_hw_common(ah);
1191
Sujith736b3a22010-03-17 14:25:24 +05301192 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001193 goto free_hw;
1194
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001195 if (!AR_SREV_9100(ah))
Luis R. Rodrigueze70c0cf2009-08-03 12:24:51 -07001196 ath9k_hw_ani_disable(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001197
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001198 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001199
1200free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001201 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001202}
Sujith285f2dd2010-01-08 10:36:07 +05301203EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001204
Sujithf1dc5602008-10-29 10:16:30 +05301205/*******/
1206/* INI */
1207/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001208
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001209u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -04001210{
1211 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1212
1213 if (IS_CHAN_B(chan))
1214 ctl |= CTL_11B;
1215 else if (IS_CHAN_G(chan))
1216 ctl |= CTL_11G;
1217 else
1218 ctl |= CTL_11A;
1219
1220 return ctl;
1221}
1222
Sujithf1dc5602008-10-29 10:16:30 +05301223/****************************************/
1224/* Reset and Channel Switching Routines */
1225/****************************************/
1226
Sujithcbe61d82009-02-09 13:27:12 +05301227static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301228{
1229 u32 regval;
1230
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001231 /*
1232 * set AHB_MODE not to do cacheline prefetches
1233 */
Sujithf1dc5602008-10-29 10:16:30 +05301234 regval = REG_READ(ah, AR_AHB_MODE);
1235 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1236
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001237 /*
1238 * let mac dma reads be in 128 byte chunks
1239 */
Sujithf1dc5602008-10-29 10:16:30 +05301240 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1241 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1242
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001243 /*
1244 * Restore TX Trigger Level to its pre-reset value.
1245 * The initial value depends on whether aggregation is enabled, and is
1246 * adjusted whenever underruns are detected.
1247 */
Sujith2660b812009-02-09 13:27:26 +05301248 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301249
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001250 /*
1251 * let mac dma writes be in 128 byte chunks
1252 */
Sujithf1dc5602008-10-29 10:16:30 +05301253 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1254 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1255
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001256 /*
1257 * Setup receive FIFO threshold to hold off TX activities
1258 */
Sujithf1dc5602008-10-29 10:16:30 +05301259 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1260
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001261 /*
1262 * reduce the number of usable entries in PCU TXBUF to avoid
1263 * wrap around issues.
1264 */
Sujithf1dc5602008-10-29 10:16:30 +05301265 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001266 /* For AR9285 the number of Fifos are reduced to half.
1267 * So set the usable tx buf size also to half to
1268 * avoid data/delimiter underruns
1269 */
Sujithf1dc5602008-10-29 10:16:30 +05301270 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1271 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001272 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +05301273 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1274 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1275 }
1276}
1277
Sujithcbe61d82009-02-09 13:27:12 +05301278static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301279{
1280 u32 val;
1281
1282 val = REG_READ(ah, AR_STA_ID1);
1283 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1284 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001285 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +05301286 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1287 | AR_STA_ID1_KSRCH_MODE);
1288 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1289 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001290 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001291 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +05301292 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1293 | AR_STA_ID1_KSRCH_MODE);
1294 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1295 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001296 case NL80211_IFTYPE_STATION:
1297 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +05301298 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1299 break;
1300 }
1301}
1302
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001303void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
1304 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001305{
1306 u32 coef_exp, coef_man;
1307
1308 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1309 if ((coef_scaled >> coef_exp) & 0x1)
1310 break;
1311
1312 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1313
1314 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1315
1316 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1317 *coef_exponent = coef_exp - 16;
1318}
1319
Sujithcbe61d82009-02-09 13:27:12 +05301320static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301321{
1322 u32 rst_flags;
1323 u32 tmpReg;
1324
Sujith70768492009-02-16 13:23:12 +05301325 if (AR_SREV_9100(ah)) {
1326 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1327 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1328 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1329 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1330 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1331 }
1332
Sujithf1dc5602008-10-29 10:16:30 +05301333 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1334 AR_RTC_FORCE_WAKE_ON_INT);
1335
1336 if (AR_SREV_9100(ah)) {
1337 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1338 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1339 } else {
1340 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1341 if (tmpReg &
1342 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1343 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001344 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301345 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001346
1347 val = AR_RC_HOSTIF;
1348 if (!AR_SREV_9300_20_OR_LATER(ah))
1349 val |= AR_RC_AHB;
1350 REG_WRITE(ah, AR_RC, val);
1351
1352 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301353 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301354
1355 rst_flags = AR_RTC_RC_MAC_WARM;
1356 if (type == ATH9K_RESET_COLD)
1357 rst_flags |= AR_RTC_RC_MAC_COLD;
1358 }
1359
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001360 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujithf1dc5602008-10-29 10:16:30 +05301361 udelay(50);
1362
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001363 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301364 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001365 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1366 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301367 return false;
1368 }
1369
1370 if (!AR_SREV_9100(ah))
1371 REG_WRITE(ah, AR_RC, 0);
1372
Sujithf1dc5602008-10-29 10:16:30 +05301373 if (AR_SREV_9100(ah))
1374 udelay(50);
1375
1376 return true;
1377}
1378
Sujithcbe61d82009-02-09 13:27:12 +05301379static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301380{
1381 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1382 AR_RTC_FORCE_WAKE_ON_INT);
1383
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001384 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301385 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1386
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001387 REG_WRITE(ah, AR_RTC_RESET, 0);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301388
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001389 if (!AR_SREV_9300_20_OR_LATER(ah))
1390 udelay(2);
1391
1392 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301393 REG_WRITE(ah, AR_RC, 0);
1394
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001395 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301396
1397 if (!ath9k_hw_wait(ah,
1398 AR_RTC_STATUS,
1399 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301400 AR_RTC_STATUS_ON,
1401 AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001402 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1403 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301404 return false;
1405 }
1406
1407 ath9k_hw_read_revisions(ah);
1408
1409 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1410}
1411
Sujithcbe61d82009-02-09 13:27:12 +05301412static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301413{
1414 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1415 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1416
1417 switch (type) {
1418 case ATH9K_RESET_POWER_ON:
1419 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301420 case ATH9K_RESET_WARM:
1421 case ATH9K_RESET_COLD:
1422 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301423 default:
1424 return false;
1425 }
1426}
1427
Sujithcbe61d82009-02-09 13:27:12 +05301428static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301429 struct ath9k_channel *chan)
1430{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301431 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301432 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1433 return false;
1434 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301435 return false;
1436
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001437 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301438 return false;
1439
Sujith2660b812009-02-09 13:27:26 +05301440 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301441 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301442 ath9k_hw_set_rfmode(ah, chan);
1443
1444 return true;
1445}
1446
Sujithcbe61d82009-02-09 13:27:12 +05301447static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001448 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301449{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001450 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001451 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001452 struct ieee80211_channel *channel = chan->chan;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001453 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001454 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301455
1456 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1457 if (ath9k_hw_numtxpending(ah, qnum)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001458 ath_print(common, ATH_DBG_QUEUE,
1459 "Transmit frames pending on "
1460 "queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301461 return false;
1462 }
1463 }
1464
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001465 if (!ath9k_hw_rfbus_req(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001466 ath_print(common, ATH_DBG_FATAL,
1467 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301468 return false;
1469 }
1470
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001471 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301472
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001473 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001474 if (r) {
1475 ath_print(common, ATH_DBG_FATAL,
1476 "Failed to set channel\n");
1477 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301478 }
1479
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001480 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001481 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301482 channel->max_antenna_gain * 2,
1483 channel->max_power * 2,
1484 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001485 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301486
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001487 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301488
1489 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1490 ath9k_hw_set_delta_slope(ah, chan);
1491
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001492 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301493
1494 if (!chan->oneTimeCalsDone)
1495 chan->oneTimeCalsDone = true;
1496
1497 return true;
1498}
1499
Sujithcbe61d82009-02-09 13:27:12 +05301500int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001501 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001502{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001503 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001504 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301505 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001506 u32 saveDefAntenna;
1507 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301508 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001509 int i, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001510
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001511 ah->txchainmask = common->tx_chainmask;
1512 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001513
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001514 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001515 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001516
Vasanthakumar Thiagarajan9ebef7992009-09-17 09:26:44 +05301517 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001518 ath9k_hw_getnf(ah, curchan);
1519
1520 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301521 (ah->chip_fullsleep != true) &&
1522 (ah->curchan != NULL) &&
1523 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001524 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301525 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Vasanthakumar Thiagarajan0a475cc2009-09-17 09:27:10 +05301526 !(AR_SREV_9280(ah) || IS_CHAN_A_5MHZ_SPACED(chan) ||
1527 IS_CHAN_A_5MHZ_SPACED(ah->curchan))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001528
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001529 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301530 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001531 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001532 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001533 }
1534 }
1535
1536 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1537 if (saveDefAntenna == 0)
1538 saveDefAntenna = 1;
1539
1540 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1541
Sujith46fe7822009-09-17 09:25:25 +05301542 /* For chips on which RTC reset is done, save TSF before it gets cleared */
1543 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1544 tsf = ath9k_hw_gettsf64(ah);
1545
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001546 saveLedState = REG_READ(ah, AR_CFG_LED) &
1547 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1548 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1549
1550 ath9k_hw_mark_phy_inactive(ah);
1551
Sujith05020d22010-03-17 14:25:23 +05301552 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001553 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1554 REG_WRITE(ah,
1555 AR9271_RESET_POWER_DOWN_CONTROL,
1556 AR9271_RADIO_RF_RST);
1557 udelay(50);
1558 }
1559
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001560 if (!ath9k_hw_chip_reset(ah, chan)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001561 ath_print(common, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001562 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001563 }
1564
Sujith05020d22010-03-17 14:25:23 +05301565 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001566 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1567 ah->htc_reset_init = false;
1568 REG_WRITE(ah,
1569 AR9271_RESET_POWER_DOWN_CONTROL,
1570 AR9271_GATE_MAC_CTL);
1571 udelay(50);
1572 }
1573
Sujith46fe7822009-09-17 09:25:25 +05301574 /* Restore TSF */
1575 if (tsf && AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1576 ath9k_hw_settsf64(ah, tsf);
1577
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301578 if (AR_SREV_9280_10_OR_LATER(ah))
1579 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001580
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001581 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001582 if (r)
1583 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001584
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001585 /* Setup MFP options for CCMP */
1586 if (AR_SREV_9280_20_OR_LATER(ah)) {
1587 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1588 * frames when constructing CCMP AAD. */
1589 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1590 0xc7ff);
1591 ah->sw_mgmt_crypto = false;
1592 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1593 /* Disable hardware crypto for management frames */
1594 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1595 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1596 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1597 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1598 ah->sw_mgmt_crypto = true;
1599 } else
1600 ah->sw_mgmt_crypto = true;
1601
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001602 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1603 ath9k_hw_set_delta_slope(ah, chan);
1604
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001605 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301606 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001607
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001608 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1609 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001610 | macStaId1
1611 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301612 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301613 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301614 | ah->sta_id1_defaults);
1615 ath9k_hw_set_operating_mode(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001616
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001617 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001618
1619 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
1620
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001621 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001622
1623 REG_WRITE(ah, AR_ISR, ~0);
1624
1625 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1626
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001627 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001628 if (r)
1629 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001630
1631 for (i = 0; i < AR_NUM_DCU; i++)
1632 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1633
Sujith2660b812009-02-09 13:27:26 +05301634 ah->intr_txqs = 0;
1635 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001636 ath9k_hw_resettxqueue(ah, i);
1637
Sujith2660b812009-02-09 13:27:26 +05301638 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001639 ath9k_hw_init_qos(ah);
1640
Sujith2660b812009-02-09 13:27:26 +05301641 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301642 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301643
Felix Fietkau0005baf2010-01-15 02:33:40 +01001644 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001645
Vivek Natarajan326bebb2009-08-14 11:33:36 +05301646 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301647 REG_WRITE(ah, AR_D_GBL_IFS_SIFS,
1648 AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR);
1649 REG_WRITE(ah, AR_D_GBL_IFS_SLOT,
1650 AR_D_GBL_IFS_SLOT_ASYNC_FIFO_DUR);
1651 REG_WRITE(ah, AR_D_GBL_IFS_EIFS,
1652 AR_D_GBL_IFS_EIFS_ASYNC_FIFO_DUR);
1653
1654 REG_WRITE(ah, AR_TIME_OUT, AR_TIME_OUT_ACK_CTS_ASYNC_FIFO_DUR);
1655 REG_WRITE(ah, AR_USEC, AR_USEC_ASYNC_FIFO_DUR);
1656
1657 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
1658 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
1659 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
1660 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
1661 }
Vivek Natarajan326bebb2009-08-14 11:33:36 +05301662 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301663 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1664 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
1665 }
1666
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001667 REG_WRITE(ah, AR_STA_ID1,
1668 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
1669
1670 ath9k_hw_set_dma(ah);
1671
1672 REG_WRITE(ah, AR_OBS, 8);
1673
Sujith0ce024c2009-12-14 14:57:00 +05301674 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001675 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1676 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1677 }
1678
1679 ath9k_hw_init_bb(ah, chan);
1680
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001681 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001682 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001683
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001684 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001685 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1686
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001687 /*
1688 * For big endian systems turn on swapping for descriptors
1689 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001690 if (AR_SREV_9100(ah)) {
1691 u32 mask;
1692 mask = REG_READ(ah, AR_CFG);
1693 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001694 ath_print(common, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05301695 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001696 } else {
1697 mask =
1698 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1699 REG_WRITE(ah, AR_CFG, mask);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001700 ath_print(common, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05301701 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001702 }
1703 } else {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001704 /* Configure AR9271 target WLAN */
1705 if (AR_SREV_9271(ah))
1706 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001707#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001708 else
1709 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001710#endif
1711 }
1712
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001713 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301714 ath9k_hw_btcoex_enable(ah);
1715
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001716 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001717}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001718EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001719
Sujithf1dc5602008-10-29 10:16:30 +05301720/************************/
1721/* Key Cache Management */
1722/************************/
1723
Sujithcbe61d82009-02-09 13:27:12 +05301724bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001725{
Sujithf1dc5602008-10-29 10:16:30 +05301726 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001727
Sujith2660b812009-02-09 13:27:26 +05301728 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001729 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1730 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001731 return false;
1732 }
1733
Sujithf1dc5602008-10-29 10:16:30 +05301734 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001735
Sujithf1dc5602008-10-29 10:16:30 +05301736 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
1737 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
1738 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
1739 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
1740 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
1741 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
1742 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
1743 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
1744
1745 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1746 u16 micentry = entry + 64;
1747
1748 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
1749 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
1750 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
1751 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
1752
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001753 }
1754
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001755 return true;
1756}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001757EXPORT_SYMBOL(ath9k_hw_keyreset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001758
Sujithcbe61d82009-02-09 13:27:12 +05301759bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001760{
Sujithf1dc5602008-10-29 10:16:30 +05301761 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001762
Sujith2660b812009-02-09 13:27:26 +05301763 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001764 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1765 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001766 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001767 }
1768
Sujithf1dc5602008-10-29 10:16:30 +05301769 if (mac != NULL) {
1770 macHi = (mac[5] << 8) | mac[4];
1771 macLo = (mac[3] << 24) |
1772 (mac[2] << 16) |
1773 (mac[1] << 8) |
1774 mac[0];
1775 macLo >>= 1;
1776 macLo |= (macHi & 1) << 31;
1777 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001778 } else {
Sujithf1dc5602008-10-29 10:16:30 +05301779 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001780 }
Sujithf1dc5602008-10-29 10:16:30 +05301781 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
1782 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001783
1784 return true;
1785}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001786EXPORT_SYMBOL(ath9k_hw_keysetmac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001787
Sujithcbe61d82009-02-09 13:27:12 +05301788bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05301789 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001790 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001791{
Sujith2660b812009-02-09 13:27:26 +05301792 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001793 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301794 u32 key0, key1, key2, key3, key4;
1795 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001796
Sujithf1dc5602008-10-29 10:16:30 +05301797 if (entry >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001798 ath_print(common, ATH_DBG_FATAL,
1799 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05301800 return false;
1801 }
1802
1803 switch (k->kv_type) {
1804 case ATH9K_CIPHER_AES_OCB:
1805 keyType = AR_KEYTABLE_TYPE_AES;
1806 break;
1807 case ATH9K_CIPHER_AES_CCM:
1808 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001809 ath_print(common, ATH_DBG_ANY,
1810 "AES-CCM not supported by mac rev 0x%x\n",
1811 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001812 return false;
1813 }
Sujithf1dc5602008-10-29 10:16:30 +05301814 keyType = AR_KEYTABLE_TYPE_CCM;
1815 break;
1816 case ATH9K_CIPHER_TKIP:
1817 keyType = AR_KEYTABLE_TYPE_TKIP;
1818 if (ATH9K_IS_MIC_ENABLED(ah)
1819 && entry + 64 >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001820 ath_print(common, ATH_DBG_ANY,
1821 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001822 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001823 }
Sujithf1dc5602008-10-29 10:16:30 +05301824 break;
1825 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08001826 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001827 ath_print(common, ATH_DBG_ANY,
1828 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05301829 return false;
1830 }
Zhu Yie31a16d2009-05-21 21:47:03 +08001831 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05301832 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08001833 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301834 keyType = AR_KEYTABLE_TYPE_104;
1835 else
1836 keyType = AR_KEYTABLE_TYPE_128;
1837 break;
1838 case ATH9K_CIPHER_CLR:
1839 keyType = AR_KEYTABLE_TYPE_CLR;
1840 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001841 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001842 ath_print(common, ATH_DBG_FATAL,
1843 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001844 return false;
1845 }
Sujithf1dc5602008-10-29 10:16:30 +05301846
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001847 key0 = get_unaligned_le32(k->kv_val + 0);
1848 key1 = get_unaligned_le16(k->kv_val + 4);
1849 key2 = get_unaligned_le32(k->kv_val + 6);
1850 key3 = get_unaligned_le16(k->kv_val + 10);
1851 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08001852 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301853 key4 &= 0xff;
1854
Jouni Malinen672903b2009-03-02 15:06:31 +02001855 /*
1856 * Note: Key cache registers access special memory area that requires
1857 * two 32-bit writes to actually update the values in the internal
1858 * memory. Consequently, the exact order and pairs used here must be
1859 * maintained.
1860 */
1861
Sujithf1dc5602008-10-29 10:16:30 +05301862 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1863 u16 micentry = entry + 64;
1864
Jouni Malinen672903b2009-03-02 15:06:31 +02001865 /*
1866 * Write inverted key[47:0] first to avoid Michael MIC errors
1867 * on frames that could be sent or received at the same time.
1868 * The correct key will be written in the end once everything
1869 * else is ready.
1870 */
Sujithf1dc5602008-10-29 10:16:30 +05301871 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
1872 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001873
1874 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301875 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1876 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001877
1878 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301879 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1880 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02001881
1882 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301883 (void) ath9k_hw_keysetmac(ah, entry, mac);
1884
Sujith2660b812009-02-09 13:27:26 +05301885 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02001886 /*
1887 * TKIP uses two key cache entries:
1888 * Michael MIC TX/RX keys in the same key cache entry
1889 * (idx = main index + 64):
1890 * key0 [31:0] = RX key [31:0]
1891 * key1 [15:0] = TX key [31:16]
1892 * key1 [31:16] = reserved
1893 * key2 [31:0] = RX key [63:32]
1894 * key3 [15:0] = TX key [15:0]
1895 * key3 [31:16] = reserved
1896 * key4 [31:0] = TX key [63:32]
1897 */
Sujithf1dc5602008-10-29 10:16:30 +05301898 u32 mic0, mic1, mic2, mic3, mic4;
1899
1900 mic0 = get_unaligned_le32(k->kv_mic + 0);
1901 mic2 = get_unaligned_le32(k->kv_mic + 4);
1902 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
1903 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
1904 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001905
1906 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05301907 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1908 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001909
1910 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301911 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1912 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001913
1914 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301915 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
1916 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1917 AR_KEYTABLE_TYPE_CLR);
1918
1919 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001920 /*
1921 * TKIP uses four key cache entries (two for group
1922 * keys):
1923 * Michael MIC TX/RX keys are in different key cache
1924 * entries (idx = main index + 64 for TX and
1925 * main index + 32 + 96 for RX):
1926 * key0 [31:0] = TX/RX MIC key [31:0]
1927 * key1 [31:0] = reserved
1928 * key2 [31:0] = TX/RX MIC key [63:32]
1929 * key3 [31:0] = reserved
1930 * key4 [31:0] = reserved
1931 *
1932 * Upper layer code will call this function separately
1933 * for TX and RX keys when these registers offsets are
1934 * used.
1935 */
Sujithf1dc5602008-10-29 10:16:30 +05301936 u32 mic0, mic2;
1937
1938 mic0 = get_unaligned_le32(k->kv_mic + 0);
1939 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001940
1941 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301942 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1943 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001944
1945 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05301946 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1947 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001948
1949 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301950 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
1951 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1952 AR_KEYTABLE_TYPE_CLR);
1953 }
Jouni Malinen672903b2009-03-02 15:06:31 +02001954
1955 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05301956 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
1957 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001958
1959 /*
1960 * Write the correct (un-inverted) key[47:0] last to enable
1961 * TKIP now that all other registers are set with correct
1962 * values.
1963 */
Sujithf1dc5602008-10-29 10:16:30 +05301964 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1965 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
1966 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001967 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301968 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1969 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001970
1971 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301972 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1973 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001974
1975 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301976 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1977 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
1978
Jouni Malinen672903b2009-03-02 15:06:31 +02001979 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301980 (void) ath9k_hw_keysetmac(ah, entry, mac);
1981 }
1982
Sujithf1dc5602008-10-29 10:16:30 +05301983 return true;
1984}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001985EXPORT_SYMBOL(ath9k_hw_set_keycache_entry);
Sujithf1dc5602008-10-29 10:16:30 +05301986
Sujithcbe61d82009-02-09 13:27:12 +05301987bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05301988{
Sujith2660b812009-02-09 13:27:26 +05301989 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05301990 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
1991 if (val & AR_KEYTABLE_VALID)
1992 return true;
1993 }
1994 return false;
1995}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001996EXPORT_SYMBOL(ath9k_hw_keyisvalid);
Sujithf1dc5602008-10-29 10:16:30 +05301997
1998/******************************/
1999/* Power Management (Chipset) */
2000/******************************/
2001
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04002002/*
2003 * Notify Power Mgt is disabled in self-generated frames.
2004 * If requested, force chip to sleep.
2005 */
Sujithcbe61d82009-02-09 13:27:12 +05302006static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302007{
2008 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2009 if (setChip) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04002010 /*
2011 * Clear the RTC force wake bit to allow the
2012 * mac to go to sleep.
2013 */
Sujithf1dc5602008-10-29 10:16:30 +05302014 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2015 AR_RTC_FORCE_WAKE_EN);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04002016 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302017 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2018
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04002019 /* Shutdown chip. Active low */
Sujith14b3af32010-03-17 14:25:18 +05302020 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05302021 REG_CLR_BIT(ah, (AR_RTC_RESET),
2022 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05302023 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002024}
2025
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04002026/*
2027 * Notify Power Management is enabled in self-generating
2028 * frames. If request, set power mode of chip to
2029 * auto/normal. Duration in units of 128us (1/8 TU).
2030 */
Sujithcbe61d82009-02-09 13:27:12 +05302031static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002032{
Sujithf1dc5602008-10-29 10:16:30 +05302033 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2034 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05302035 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002036
Sujithf1dc5602008-10-29 10:16:30 +05302037 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04002038 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05302039 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2040 AR_RTC_FORCE_WAKE_ON_INT);
2041 } else {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04002042 /*
2043 * Clear the RTC force wake bit to allow the
2044 * mac to go to sleep.
2045 */
Sujithf1dc5602008-10-29 10:16:30 +05302046 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2047 AR_RTC_FORCE_WAKE_EN);
2048 }
2049 }
2050}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002051
Sujithcbe61d82009-02-09 13:27:12 +05302052static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302053{
2054 u32 val;
2055 int i;
2056
2057 if (setChip) {
2058 if ((REG_READ(ah, AR_RTC_STATUS) &
2059 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2060 if (ath9k_hw_set_reset_reg(ah,
2061 ATH9K_RESET_POWER_ON) != true) {
2062 return false;
2063 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04002064 if (!AR_SREV_9300_20_OR_LATER(ah))
2065 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05302066 }
2067 if (AR_SREV_9100(ah))
2068 REG_SET_BIT(ah, AR_RTC_RESET,
2069 AR_RTC_RESET_EN);
2070
2071 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2072 AR_RTC_FORCE_WAKE_EN);
2073 udelay(50);
2074
2075 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2076 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2077 if (val == AR_RTC_STATUS_ON)
2078 break;
2079 udelay(50);
2080 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2081 AR_RTC_FORCE_WAKE_EN);
2082 }
2083 if (i == 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002084 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2085 "Failed to wakeup in %uus\n",
2086 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05302087 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002088 }
2089 }
2090
Sujithf1dc5602008-10-29 10:16:30 +05302091 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2092
2093 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002094}
2095
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002096bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302097{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002098 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05302099 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05302100 static const char *modes[] = {
2101 "AWAKE",
2102 "FULL-SLEEP",
2103 "NETWORK SLEEP",
2104 "UNDEFINED"
2105 };
Sujithf1dc5602008-10-29 10:16:30 +05302106
Gabor Juhoscbdec972009-07-24 17:27:22 +02002107 if (ah->power_mode == mode)
2108 return status;
2109
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002110 ath_print(common, ATH_DBG_RESET, "%s -> %s\n",
2111 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05302112
2113 switch (mode) {
2114 case ATH9K_PM_AWAKE:
2115 status = ath9k_hw_set_power_awake(ah, setChip);
2116 break;
2117 case ATH9K_PM_FULL_SLEEP:
2118 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05302119 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302120 break;
2121 case ATH9K_PM_NETWORK_SLEEP:
2122 ath9k_set_power_network_sleep(ah, setChip);
2123 break;
2124 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002125 ath_print(common, ATH_DBG_FATAL,
2126 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302127 return false;
2128 }
Sujith2660b812009-02-09 13:27:26 +05302129 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302130
2131 return status;
2132}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002133EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05302134
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002135/*
2136 * Helper for ASPM support.
2137 *
2138 * Disable PLL when in L0s as well as receiver clock when in L1.
2139 * This power saving option must be enabled through the SerDes.
2140 *
2141 * Programming the SerDes must go through the same 288 bit serial shift
2142 * register as the other analog registers. Hence the 9 writes.
2143 */
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04002144static void ar9002_hw_configpcipowersave(struct ath_hw *ah,
2145 int restore,
2146 int power_off)
Sujithf1dc5602008-10-29 10:16:30 +05302147{
Sujithf1dc5602008-10-29 10:16:30 +05302148 u8 i;
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302149 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05302150
Sujith2660b812009-02-09 13:27:26 +05302151 if (ah->is_pciexpress != true)
Sujithf1dc5602008-10-29 10:16:30 +05302152 return;
2153
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002154 /* Do not touch SerDes registers */
Sujith2660b812009-02-09 13:27:26 +05302155 if (ah->config.pcie_powersave_enable == 2)
Sujithf1dc5602008-10-29 10:16:30 +05302156 return;
2157
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002158 /* Nothing to do on restore for 11N */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302159 if (!restore) {
2160 if (AR_SREV_9280_20_OR_LATER(ah)) {
2161 /*
2162 * AR9280 2.0 or later chips use SerDes values from the
2163 * initvals.h initialized depending on chipset during
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04002164 * __ath9k_hw_init()
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302165 */
2166 for (i = 0; i < ah->iniPcieSerdes.ia_rows; i++) {
2167 REG_WRITE(ah, INI_RA(&ah->iniPcieSerdes, i, 0),
2168 INI_RA(&ah->iniPcieSerdes, i, 1));
2169 }
2170 } else if (AR_SREV_9280(ah) &&
2171 (ah->hw_version.macRev == AR_SREV_REVISION_9280_10)) {
2172 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
2173 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
Sujithf1dc5602008-10-29 10:16:30 +05302174
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302175 /* RX shut off when elecidle is asserted */
2176 REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
2177 REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
2178 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
2179
2180 /* Shut off CLKREQ active in L1 */
2181 if (ah->config.pcie_clock_req)
2182 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
2183 else
2184 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
2185
2186 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2187 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2188 REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
2189
2190 /* Load the new settings */
2191 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2192
2193 } else {
2194 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
2195 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
2196
2197 /* RX shut off when elecidle is asserted */
2198 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
2199 REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
2200 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
2201
2202 /*
2203 * Ignore ah->ah_config.pcie_clock_req setting for
2204 * pre-AR9280 11n
2205 */
2206 REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
2207
2208 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2209 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2210 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
2211
2212 /* Load the new settings */
2213 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
Sujithf1dc5602008-10-29 10:16:30 +05302214 }
Sujithf1dc5602008-10-29 10:16:30 +05302215
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302216 udelay(1000);
Sujithf1dc5602008-10-29 10:16:30 +05302217
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302218 /* set bit 19 to allow forcing of pcie core into L1 state */
2219 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
Sujithf1dc5602008-10-29 10:16:30 +05302220
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302221 /* Several PCIe massages to ensure proper behaviour */
2222 if (ah->config.pcie_waen) {
2223 val = ah->config.pcie_waen;
2224 if (!power_off)
2225 val &= (~AR_WA_D3_L1_DISABLE);
2226 } else {
2227 if (AR_SREV_9285(ah) || AR_SREV_9271(ah) ||
2228 AR_SREV_9287(ah)) {
2229 val = AR9285_WA_DEFAULT;
2230 if (!power_off)
2231 val &= (~AR_WA_D3_L1_DISABLE);
2232 } else if (AR_SREV_9280(ah)) {
2233 /*
2234 * On AR9280 chips bit 22 of 0x4004 needs to be
2235 * set otherwise card may disappear.
2236 */
2237 val = AR9280_WA_DEFAULT;
2238 if (!power_off)
2239 val &= (~AR_WA_D3_L1_DISABLE);
2240 } else
2241 val = AR_WA_DEFAULT;
2242 }
Sujithf1dc5602008-10-29 10:16:30 +05302243
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302244 REG_WRITE(ah, AR_WA, val);
Sujithf1dc5602008-10-29 10:16:30 +05302245 }
2246
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302247 if (power_off) {
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002248 /*
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302249 * Set PCIe workaround bits
2250 * bit 14 in WA register (disable L1) should only
2251 * be set when device enters D3 and be cleared
2252 * when device comes back to D0.
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002253 */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302254 if (ah->config.pcie_waen) {
2255 if (ah->config.pcie_waen & AR_WA_D3_L1_DISABLE)
2256 REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE);
2257 } else {
2258 if (((AR_SREV_9285(ah) || AR_SREV_9271(ah) ||
2259 AR_SREV_9287(ah)) &&
2260 (AR9285_WA_DEFAULT & AR_WA_D3_L1_DISABLE)) ||
2261 (AR_SREV_9280(ah) &&
2262 (AR9280_WA_DEFAULT & AR_WA_D3_L1_DISABLE))) {
2263 REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE);
2264 }
2265 }
Sujithf1dc5602008-10-29 10:16:30 +05302266 }
2267}
2268
2269/**********************/
2270/* Interrupt Handling */
2271/**********************/
2272
Sujithcbe61d82009-02-09 13:27:12 +05302273bool ath9k_hw_intrpend(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002274{
2275 u32 host_isr;
2276
2277 if (AR_SREV_9100(ah))
2278 return true;
2279
2280 host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
2281 if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
2282 return true;
2283
2284 host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
2285 if ((host_isr & AR_INTR_SYNC_DEFAULT)
2286 && (host_isr != AR_INTR_SPURIOUS))
2287 return true;
2288
2289 return false;
2290}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002291EXPORT_SYMBOL(ath9k_hw_intrpend);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002292
Sujithcbe61d82009-02-09 13:27:12 +05302293bool ath9k_hw_getisr(struct ath_hw *ah, enum ath9k_int *masked)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002294{
2295 u32 isr = 0;
2296 u32 mask2 = 0;
Sujith2660b812009-02-09 13:27:26 +05302297 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002298 u32 sync_cause = 0;
2299 bool fatal_int = false;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002300 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002301
2302 if (!AR_SREV_9100(ah)) {
2303 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
2304 if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
2305 == AR_RTC_STATUS_ON) {
2306 isr = REG_READ(ah, AR_ISR);
2307 }
2308 }
2309
Sujithf1dc5602008-10-29 10:16:30 +05302310 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
2311 AR_INTR_SYNC_DEFAULT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002312
2313 *masked = 0;
2314
2315 if (!isr && !sync_cause)
2316 return false;
2317 } else {
2318 *masked = 0;
2319 isr = REG_READ(ah, AR_ISR);
2320 }
2321
2322 if (isr) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002323 if (isr & AR_ISR_BCNMISC) {
2324 u32 isr2;
2325 isr2 = REG_READ(ah, AR_ISR_S2);
2326 if (isr2 & AR_ISR_S2_TIM)
2327 mask2 |= ATH9K_INT_TIM;
2328 if (isr2 & AR_ISR_S2_DTIM)
2329 mask2 |= ATH9K_INT_DTIM;
2330 if (isr2 & AR_ISR_S2_DTIMSYNC)
2331 mask2 |= ATH9K_INT_DTIMSYNC;
2332 if (isr2 & (AR_ISR_S2_CABEND))
2333 mask2 |= ATH9K_INT_CABEND;
2334 if (isr2 & AR_ISR_S2_GTT)
2335 mask2 |= ATH9K_INT_GTT;
2336 if (isr2 & AR_ISR_S2_CST)
2337 mask2 |= ATH9K_INT_CST;
Sujith4af9cf42009-02-12 10:06:47 +05302338 if (isr2 & AR_ISR_S2_TSFOOR)
2339 mask2 |= ATH9K_INT_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002340 }
2341
2342 isr = REG_READ(ah, AR_ISR_RAC);
2343 if (isr == 0xffffffff) {
2344 *masked = 0;
2345 return false;
2346 }
2347
2348 *masked = isr & ATH9K_INT_COMMON;
2349
Sujith0ce024c2009-12-14 14:57:00 +05302350 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002351 if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
2352 *masked |= ATH9K_INT_RX;
2353 }
2354
2355 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
2356 *masked |= ATH9K_INT_RX;
2357 if (isr &
2358 (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
2359 AR_ISR_TXEOL)) {
2360 u32 s0_s, s1_s;
2361
2362 *masked |= ATH9K_INT_TX;
2363
2364 s0_s = REG_READ(ah, AR_ISR_S0_S);
Sujith2660b812009-02-09 13:27:26 +05302365 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
2366 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002367
2368 s1_s = REG_READ(ah, AR_ISR_S1_S);
Sujith2660b812009-02-09 13:27:26 +05302369 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
2370 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002371 }
2372
2373 if (isr & AR_ISR_RXORN) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002374 ath_print(common, ATH_DBG_INTERRUPT,
2375 "receive FIFO overrun interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002376 }
2377
2378 if (!AR_SREV_9100(ah)) {
Sujith60b67f52008-08-07 10:52:38 +05302379 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002380 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
2381 if (isr5 & AR_ISR_S5_TIM_TIMER)
2382 *masked |= ATH9K_INT_TIM_TIMER;
2383 }
2384 }
2385
2386 *masked |= mask2;
2387 }
Sujithf1dc5602008-10-29 10:16:30 +05302388
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002389 if (AR_SREV_9100(ah))
2390 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302391
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302392 if (isr & AR_ISR_GENTMR) {
2393 u32 s5_s;
2394
2395 s5_s = REG_READ(ah, AR_ISR_S5_S);
2396 if (isr & AR_ISR_GENTMR) {
2397 ah->intr_gen_timer_trigger =
2398 MS(s5_s, AR_ISR_S5_GENTIMER_TRIG);
2399
2400 ah->intr_gen_timer_thresh =
2401 MS(s5_s, AR_ISR_S5_GENTIMER_THRESH);
2402
2403 if (ah->intr_gen_timer_trigger)
2404 *masked |= ATH9K_INT_GENTIMER;
2405
2406 }
2407 }
2408
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002409 if (sync_cause) {
2410 fatal_int =
2411 (sync_cause &
2412 (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
2413 ? true : false;
2414
2415 if (fatal_int) {
2416 if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002417 ath_print(common, ATH_DBG_ANY,
2418 "received PCI FATAL interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002419 }
2420 if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002421 ath_print(common, ATH_DBG_ANY,
2422 "received PCI PERR interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002423 }
Steven Luoa89bff92009-04-12 02:57:54 -07002424 *masked |= ATH9K_INT_FATAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002425 }
2426 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002427 ath_print(common, ATH_DBG_INTERRUPT,
2428 "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002429 REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
2430 REG_WRITE(ah, AR_RC, 0);
2431 *masked |= ATH9K_INT_FATAL;
2432 }
2433 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002434 ath_print(common, ATH_DBG_INTERRUPT,
2435 "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002436 }
2437
2438 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
2439 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
2440 }
Sujithf1dc5602008-10-29 10:16:30 +05302441
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002442 return true;
2443}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002444EXPORT_SYMBOL(ath9k_hw_getisr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002445
Sujithcbe61d82009-02-09 13:27:12 +05302446enum ath9k_int ath9k_hw_set_interrupts(struct ath_hw *ah, enum ath9k_int ints)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002447{
Pavel Roskin152d5302010-03-31 18:05:37 -04002448 enum ath9k_int omask = ah->imask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002449 u32 mask, mask2;
Sujith2660b812009-02-09 13:27:26 +05302450 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002451 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002452
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002453 ath_print(common, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002454
2455 if (omask & ATH9K_INT_GLOBAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002456 ath_print(common, ATH_DBG_INTERRUPT, "disable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002457 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
2458 (void) REG_READ(ah, AR_IER);
2459 if (!AR_SREV_9100(ah)) {
2460 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
2461 (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
2462
2463 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
2464 (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
2465 }
2466 }
2467
2468 mask = ints & ATH9K_INT_COMMON;
2469 mask2 = 0;
2470
2471 if (ints & ATH9K_INT_TX) {
Sujith2660b812009-02-09 13:27:26 +05302472 if (ah->txok_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002473 mask |= AR_IMR_TXOK;
Sujith2660b812009-02-09 13:27:26 +05302474 if (ah->txdesc_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002475 mask |= AR_IMR_TXDESC;
Sujith2660b812009-02-09 13:27:26 +05302476 if (ah->txerr_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002477 mask |= AR_IMR_TXERR;
Sujith2660b812009-02-09 13:27:26 +05302478 if (ah->txeol_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002479 mask |= AR_IMR_TXEOL;
2480 }
2481 if (ints & ATH9K_INT_RX) {
2482 mask |= AR_IMR_RXERR;
Sujith0ce024c2009-12-14 14:57:00 +05302483 if (ah->config.rx_intr_mitigation)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002484 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
2485 else
2486 mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
Sujith60b67f52008-08-07 10:52:38 +05302487 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002488 mask |= AR_IMR_GENTMR;
2489 }
2490
2491 if (ints & (ATH9K_INT_BMISC)) {
2492 mask |= AR_IMR_BCNMISC;
2493 if (ints & ATH9K_INT_TIM)
2494 mask2 |= AR_IMR_S2_TIM;
2495 if (ints & ATH9K_INT_DTIM)
2496 mask2 |= AR_IMR_S2_DTIM;
2497 if (ints & ATH9K_INT_DTIMSYNC)
2498 mask2 |= AR_IMR_S2_DTIMSYNC;
2499 if (ints & ATH9K_INT_CABEND)
Sujith4af9cf42009-02-12 10:06:47 +05302500 mask2 |= AR_IMR_S2_CABEND;
2501 if (ints & ATH9K_INT_TSFOOR)
2502 mask2 |= AR_IMR_S2_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002503 }
2504
2505 if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
2506 mask |= AR_IMR_BCNMISC;
2507 if (ints & ATH9K_INT_GTT)
2508 mask2 |= AR_IMR_S2_GTT;
2509 if (ints & ATH9K_INT_CST)
2510 mask2 |= AR_IMR_S2_CST;
2511 }
2512
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002513 ath_print(common, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002514 REG_WRITE(ah, AR_IMR, mask);
Pavel Roskin74bad5c2010-02-23 18:15:27 -05002515 ah->imrs2_reg &= ~(AR_IMR_S2_TIM | AR_IMR_S2_DTIM | AR_IMR_S2_DTIMSYNC |
2516 AR_IMR_S2_CABEND | AR_IMR_S2_CABTO |
2517 AR_IMR_S2_TSFOOR | AR_IMR_S2_GTT | AR_IMR_S2_CST);
2518 ah->imrs2_reg |= mask2;
2519 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002520
Sujith60b67f52008-08-07 10:52:38 +05302521 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002522 if (ints & ATH9K_INT_TIM_TIMER)
2523 REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
2524 else
2525 REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
2526 }
2527
2528 if (ints & ATH9K_INT_GLOBAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002529 ath_print(common, ATH_DBG_INTERRUPT, "enable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002530 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
2531 if (!AR_SREV_9100(ah)) {
2532 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
2533 AR_INTR_MAC_IRQ);
2534 REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
2535
2536
2537 REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
2538 AR_INTR_SYNC_DEFAULT);
2539 REG_WRITE(ah, AR_INTR_SYNC_MASK,
2540 AR_INTR_SYNC_DEFAULT);
2541 }
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002542 ath_print(common, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
2543 REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002544 }
2545
2546 return omask;
2547}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002548EXPORT_SYMBOL(ath9k_hw_set_interrupts);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002549
Sujithf1dc5602008-10-29 10:16:30 +05302550/*******************/
2551/* Beacon Handling */
2552/*******************/
2553
Sujithcbe61d82009-02-09 13:27:12 +05302554void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002555{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002556 int flags = 0;
2557
Sujith2660b812009-02-09 13:27:26 +05302558 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002559
Sujith2660b812009-02-09 13:27:26 +05302560 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08002561 case NL80211_IFTYPE_STATION:
2562 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002563 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
2564 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
2565 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
2566 flags |= AR_TBTT_TIMER_EN;
2567 break;
Colin McCabed97809d2008-12-01 13:38:55 -08002568 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04002569 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002570 REG_SET_BIT(ah, AR_TXCFG,
2571 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
2572 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
2573 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05302574 (ah->atim_window ? ah->
2575 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002576 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08002577 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002578 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
2579 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
2580 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05302581 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302582 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002583 REG_WRITE(ah, AR_NEXT_SWBA,
2584 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05302585 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302586 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002587 flags |=
2588 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
2589 break;
Colin McCabed97809d2008-12-01 13:38:55 -08002590 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002591 ath_print(ath9k_hw_common(ah), ATH_DBG_BEACON,
2592 "%s: unsupported opmode: %d\n",
2593 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08002594 return;
2595 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002596 }
2597
2598 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
2599 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
2600 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
2601 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
2602
2603 beacon_period &= ~ATH9K_BEACON_ENA;
2604 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002605 ath9k_hw_reset_tsf(ah);
2606 }
2607
2608 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
2609}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002610EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002611
Sujithcbe61d82009-02-09 13:27:12 +05302612void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302613 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002614{
2615 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05302616 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002617 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002618
2619 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
2620
2621 REG_WRITE(ah, AR_BEACON_PERIOD,
2622 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
2623 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
2624 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
2625
2626 REG_RMW_FIELD(ah, AR_RSSI_THR,
2627 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
2628
2629 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
2630
2631 if (bs->bs_sleepduration > beaconintval)
2632 beaconintval = bs->bs_sleepduration;
2633
2634 dtimperiod = bs->bs_dtimperiod;
2635 if (bs->bs_sleepduration > dtimperiod)
2636 dtimperiod = bs->bs_sleepduration;
2637
2638 if (beaconintval == dtimperiod)
2639 nextTbtt = bs->bs_nextdtim;
2640 else
2641 nextTbtt = bs->bs_nexttbtt;
2642
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002643 ath_print(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
2644 ath_print(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
2645 ath_print(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
2646 ath_print(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002647
2648 REG_WRITE(ah, AR_NEXT_DTIM,
2649 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
2650 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
2651
2652 REG_WRITE(ah, AR_SLEEP1,
2653 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
2654 | AR_SLEEP1_ASSUME_DTIM);
2655
Sujith60b67f52008-08-07 10:52:38 +05302656 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002657 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
2658 else
2659 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
2660
2661 REG_WRITE(ah, AR_SLEEP2,
2662 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
2663
2664 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
2665 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
2666
2667 REG_SET_BIT(ah, AR_TIMER_MODE,
2668 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
2669 AR_DTIM_TIMER_EN);
2670
Sujith4af9cf42009-02-12 10:06:47 +05302671 /* TSF Out of Range Threshold */
2672 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002673}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002674EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002675
Sujithf1dc5602008-10-29 10:16:30 +05302676/*******************/
2677/* HW Capabilities */
2678/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002679
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002680int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002681{
Sujith2660b812009-02-09 13:27:26 +05302682 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002683 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002684 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002685 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002686
Sujithf1dc5602008-10-29 10:16:30 +05302687 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002688
Sujithf74df6f2009-02-09 13:27:24 +05302689 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002690 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302691
Sujithf74df6f2009-02-09 13:27:24 +05302692 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05302693 if (AR_SREV_9285_10_OR_LATER(ah))
2694 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002695 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302696
Sujithf74df6f2009-02-09 13:27:24 +05302697 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05302698
Sujith2660b812009-02-09 13:27:26 +05302699 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05302700 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002701 if (regulatory->current_rd == 0x64 ||
2702 regulatory->current_rd == 0x65)
2703 regulatory->current_rd += 5;
2704 else if (regulatory->current_rd == 0x41)
2705 regulatory->current_rd = 0x43;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002706 ath_print(common, ATH_DBG_REGULATORY,
2707 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002708 }
Sujithdc2222a2008-08-14 13:26:55 +05302709
Sujithf74df6f2009-02-09 13:27:24 +05302710 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002711 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
2712 ath_print(common, ATH_DBG_FATAL,
2713 "no band has been marked as supported in EEPROM.\n");
2714 return -EINVAL;
2715 }
2716
Sujithf1dc5602008-10-29 10:16:30 +05302717 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002718
Sujithf1dc5602008-10-29 10:16:30 +05302719 if (eeval & AR5416_OPFLAGS_11A) {
2720 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05302721 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05302722 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
2723 set_bit(ATH9K_MODE_11NA_HT20,
2724 pCap->wireless_modes);
2725 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
2726 set_bit(ATH9K_MODE_11NA_HT40PLUS,
2727 pCap->wireless_modes);
2728 set_bit(ATH9K_MODE_11NA_HT40MINUS,
2729 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002730 }
2731 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002732 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002733
Sujithf1dc5602008-10-29 10:16:30 +05302734 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05302735 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05302736 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05302737 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
2738 set_bit(ATH9K_MODE_11NG_HT20,
2739 pCap->wireless_modes);
2740 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
2741 set_bit(ATH9K_MODE_11NG_HT40PLUS,
2742 pCap->wireless_modes);
2743 set_bit(ATH9K_MODE_11NG_HT40MINUS,
2744 pCap->wireless_modes);
2745 }
2746 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002747 }
Sujithf1dc5602008-10-29 10:16:30 +05302748
Sujithf74df6f2009-02-09 13:27:24 +05302749 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002750 /*
2751 * For AR9271 we will temporarilly uses the rx chainmax as read from
2752 * the EEPROM.
2753 */
Sujith8147f5d2009-02-20 15:13:23 +05302754 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002755 !(eeval & AR5416_OPFLAGS_11A) &&
2756 !(AR_SREV_9271(ah)))
2757 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05302758 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
2759 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002760 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05302761 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05302762
Sujithd535a422009-02-09 13:27:06 +05302763 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05302764 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05302765
2766 pCap->low_2ghz_chan = 2312;
2767 pCap->high_2ghz_chan = 2732;
2768
2769 pCap->low_5ghz_chan = 4920;
2770 pCap->high_5ghz_chan = 6100;
2771
2772 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
2773 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
2774 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
2775
2776 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
2777 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
2778 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
2779
Sujith2660b812009-02-09 13:27:26 +05302780 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05302781 pCap->hw_caps |= ATH9K_HW_CAP_HT;
2782 else
2783 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
2784
2785 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
2786 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
2787 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
2788 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
2789
2790 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
2791 pCap->total_queues =
2792 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
2793 else
2794 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
2795
2796 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
2797 pCap->keycache_size =
2798 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
2799 else
2800 pCap->keycache_size = AR_KEYTABLE_SIZE;
2801
2802 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -05002803
2804 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
2805 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
2806 else
2807 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
Sujithf1dc5602008-10-29 10:16:30 +05302808
Sujith5b5fa352010-03-17 14:25:15 +05302809 if (AR_SREV_9271(ah))
2810 pCap->num_gpio_pins = AR9271_NUM_GPIO;
2811 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302812 pCap->num_gpio_pins = AR9285_NUM_GPIO;
2813 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302814 pCap->num_gpio_pins = AR928X_NUM_GPIO;
2815 else
2816 pCap->num_gpio_pins = AR_NUM_GPIO;
2817
Sujithf1dc5602008-10-29 10:16:30 +05302818 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
2819 pCap->hw_caps |= ATH9K_HW_CAP_CST;
2820 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
2821 } else {
2822 pCap->rts_aggr_limit = (8 * 1024);
2823 }
2824
2825 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
2826
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302827#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05302828 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
2829 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
2830 ah->rfkill_gpio =
2831 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
2832 ah->rfkill_polarity =
2833 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05302834
2835 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
2836 }
2837#endif
Vivek Natarajanbde748a2010-04-05 14:48:05 +05302838 if (AR_SREV_9271(ah))
2839 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
2840 else
2841 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05302842
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302843 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302844 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
2845 else
2846 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
2847
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002848 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05302849 pCap->reg_cap =
2850 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2851 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
2852 AR_EEPROM_EEREGCAP_EN_KK_U2 |
2853 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
2854 } else {
2855 pCap->reg_cap =
2856 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2857 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
2858 }
2859
Senthil Balasubramanianebb90cf2009-09-18 15:07:33 +05302860 /* Advertise midband for AR5416 with FCC midband set in eeprom */
2861 if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
2862 AR_SREV_5416(ah))
2863 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
Sujithf1dc5602008-10-29 10:16:30 +05302864
2865 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302866 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302867 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302868 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302869
Vasanthakumar Thiagarajanfe129462009-09-09 15:25:50 +05302870 if (AR_SREV_9280_10_OR_LATER(ah) &&
Luis R. Rodrigueza36cfbc2009-09-09 16:05:32 -07002871 ath9k_hw_btcoex_supported(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002872 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
2873 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302874
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302875 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002876 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
2877 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302878 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002879 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302880 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302881 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002882 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05302883 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002884
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002885 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002886 pCap->hw_caps |= ATH9K_HW_CAP_EDMA;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002887 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
2888 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
2889 pCap->rx_status_len = sizeof(struct ar9003_rxs);
2890 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002891
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002892 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002893}
2894
Sujithcbe61d82009-02-09 13:27:12 +05302895bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05302896 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002897{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002898 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302899 switch (type) {
2900 case ATH9K_CAP_CIPHER:
2901 switch (capability) {
2902 case ATH9K_CIPHER_AES_CCM:
2903 case ATH9K_CIPHER_AES_OCB:
2904 case ATH9K_CIPHER_TKIP:
2905 case ATH9K_CIPHER_WEP:
2906 case ATH9K_CIPHER_MIC:
2907 case ATH9K_CIPHER_CLR:
2908 return true;
2909 default:
2910 return false;
2911 }
2912 case ATH9K_CAP_TKIP_MIC:
2913 switch (capability) {
2914 case 0:
2915 return true;
2916 case 1:
Sujith2660b812009-02-09 13:27:26 +05302917 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05302918 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
2919 false;
2920 }
2921 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05302922 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05302923 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05302924 case ATH9K_CAP_MCAST_KEYSRCH:
2925 switch (capability) {
2926 case 0:
2927 return true;
2928 case 1:
2929 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
2930 return false;
2931 } else {
Sujith2660b812009-02-09 13:27:26 +05302932 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05302933 AR_STA_ID1_MCAST_KSRCH) ? true :
2934 false;
2935 }
2936 }
2937 return false;
Sujithf1dc5602008-10-29 10:16:30 +05302938 case ATH9K_CAP_TXPOW:
2939 switch (capability) {
2940 case 0:
2941 return 0;
2942 case 1:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002943 *result = regulatory->power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05302944 return 0;
2945 case 2:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002946 *result = regulatory->max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05302947 return 0;
2948 case 3:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002949 *result = regulatory->tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05302950 return 0;
2951 }
2952 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05302953 case ATH9K_CAP_DS:
2954 return (AR_SREV_9280_20_OR_LATER(ah) &&
2955 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
2956 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05302957 default:
2958 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002959 }
Sujithf1dc5602008-10-29 10:16:30 +05302960}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002961EXPORT_SYMBOL(ath9k_hw_getcapability);
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002962
Sujithcbe61d82009-02-09 13:27:12 +05302963bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05302964 u32 capability, u32 setting, int *status)
2965{
Sujithf1dc5602008-10-29 10:16:30 +05302966 switch (type) {
2967 case ATH9K_CAP_TKIP_MIC:
2968 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302969 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05302970 AR_STA_ID1_CRPT_MIC_ENABLE;
2971 else
Sujith2660b812009-02-09 13:27:26 +05302972 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05302973 ~AR_STA_ID1_CRPT_MIC_ENABLE;
2974 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302975 case ATH9K_CAP_MCAST_KEYSRCH:
2976 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302977 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05302978 else
Sujith2660b812009-02-09 13:27:26 +05302979 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05302980 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302981 default:
2982 return false;
2983 }
2984}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002985EXPORT_SYMBOL(ath9k_hw_setcapability);
Sujithf1dc5602008-10-29 10:16:30 +05302986
2987/****************************/
2988/* GPIO / RFKILL / Antennae */
2989/****************************/
2990
Sujithcbe61d82009-02-09 13:27:12 +05302991static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302992 u32 gpio, u32 type)
2993{
2994 int addr;
2995 u32 gpio_shift, tmp;
2996
2997 if (gpio > 11)
2998 addr = AR_GPIO_OUTPUT_MUX3;
2999 else if (gpio > 5)
3000 addr = AR_GPIO_OUTPUT_MUX2;
3001 else
3002 addr = AR_GPIO_OUTPUT_MUX1;
3003
3004 gpio_shift = (gpio % 6) * 5;
3005
3006 if (AR_SREV_9280_20_OR_LATER(ah)
3007 || (addr != AR_GPIO_OUTPUT_MUX1)) {
3008 REG_RMW(ah, addr, (type << gpio_shift),
3009 (0x1f << gpio_shift));
3010 } else {
3011 tmp = REG_READ(ah, addr);
3012 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
3013 tmp &= ~(0x1f << gpio_shift);
3014 tmp |= (type << gpio_shift);
3015 REG_WRITE(ah, addr, tmp);
3016 }
3017}
3018
Sujithcbe61d82009-02-09 13:27:12 +05303019void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303020{
3021 u32 gpio_shift;
3022
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07003023 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05303024
3025 gpio_shift = gpio << 1;
3026
3027 REG_RMW(ah,
3028 AR_GPIO_OE_OUT,
3029 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
3030 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3031}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003032EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05303033
Sujithcbe61d82009-02-09 13:27:12 +05303034u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303035{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303036#define MS_REG_READ(x, y) \
3037 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
3038
Sujith2660b812009-02-09 13:27:26 +05303039 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05303040 return 0xffffffff;
3041
Felix Fietkau783dfca2010-04-15 17:38:11 -04003042 if (AR_SREV_9300_20_OR_LATER(ah))
3043 return MS_REG_READ(AR9300, gpio) != 0;
3044 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05303045 return MS_REG_READ(AR9271, gpio) != 0;
3046 else if (AR_SREV_9287_10_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05303047 return MS_REG_READ(AR9287, gpio) != 0;
3048 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303049 return MS_REG_READ(AR9285, gpio) != 0;
3050 else if (AR_SREV_9280_10_OR_LATER(ah))
3051 return MS_REG_READ(AR928X, gpio) != 0;
3052 else
3053 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05303054}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003055EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05303056
Sujithcbe61d82009-02-09 13:27:12 +05303057void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05303058 u32 ah_signal_type)
3059{
3060 u32 gpio_shift;
3061
3062 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
3063
3064 gpio_shift = 2 * gpio;
3065
3066 REG_RMW(ah,
3067 AR_GPIO_OE_OUT,
3068 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
3069 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3070}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003071EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05303072
Sujithcbe61d82009-02-09 13:27:12 +05303073void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05303074{
Sujith5b5fa352010-03-17 14:25:15 +05303075 if (AR_SREV_9271(ah))
3076 val = ~val;
3077
Sujithf1dc5602008-10-29 10:16:30 +05303078 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
3079 AR_GPIO_BIT(gpio));
3080}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003081EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05303082
Sujithcbe61d82009-02-09 13:27:12 +05303083u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303084{
3085 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
3086}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003087EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05303088
Sujithcbe61d82009-02-09 13:27:12 +05303089void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05303090{
3091 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
3092}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003093EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05303094
Sujithf1dc5602008-10-29 10:16:30 +05303095/*********************/
3096/* General Operation */
3097/*********************/
3098
Sujithcbe61d82009-02-09 13:27:12 +05303099u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303100{
3101 u32 bits = REG_READ(ah, AR_RX_FILTER);
3102 u32 phybits = REG_READ(ah, AR_PHY_ERR);
3103
3104 if (phybits & AR_PHY_ERR_RADAR)
3105 bits |= ATH9K_RX_FILTER_PHYRADAR;
3106 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
3107 bits |= ATH9K_RX_FILTER_PHYERR;
3108
3109 return bits;
3110}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003111EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303112
Sujithcbe61d82009-02-09 13:27:12 +05303113void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05303114{
3115 u32 phybits;
3116
Sujith7ea310b2009-09-03 12:08:43 +05303117 REG_WRITE(ah, AR_RX_FILTER, bits);
3118
Sujithf1dc5602008-10-29 10:16:30 +05303119 phybits = 0;
3120 if (bits & ATH9K_RX_FILTER_PHYRADAR)
3121 phybits |= AR_PHY_ERR_RADAR;
3122 if (bits & ATH9K_RX_FILTER_PHYERR)
3123 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
3124 REG_WRITE(ah, AR_PHY_ERR, phybits);
3125
3126 if (phybits)
3127 REG_WRITE(ah, AR_RXCFG,
3128 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
3129 else
3130 REG_WRITE(ah, AR_RXCFG,
3131 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
3132}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003133EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303134
Sujithcbe61d82009-02-09 13:27:12 +05303135bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303136{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05303137 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
3138 return false;
3139
3140 ath9k_hw_init_pll(ah, NULL);
3141 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303142}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003143EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05303144
Sujithcbe61d82009-02-09 13:27:12 +05303145bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303146{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07003147 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05303148 return false;
3149
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05303150 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
3151 return false;
3152
3153 ath9k_hw_init_pll(ah, NULL);
3154 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303155}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003156EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05303157
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003158void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05303159{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003160 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05303161 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08003162 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05303163
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003164 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05303165
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003166 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003167 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003168 channel->max_antenna_gain * 2,
3169 channel->max_power * 2,
3170 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003171 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05303172}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003173EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05303174
Sujithcbe61d82009-02-09 13:27:12 +05303175void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05303176{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07003177 memcpy(ath9k_hw_common(ah)->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05303178}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003179EXPORT_SYMBOL(ath9k_hw_setmac);
Sujithf1dc5602008-10-29 10:16:30 +05303180
Sujithcbe61d82009-02-09 13:27:12 +05303181void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303182{
Sujith2660b812009-02-09 13:27:26 +05303183 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05303184}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003185EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05303186
Sujithcbe61d82009-02-09 13:27:12 +05303187void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05303188{
3189 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
3190 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
3191}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003192EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303193
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07003194void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303195{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07003196 struct ath_common *common = ath9k_hw_common(ah);
3197
3198 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
3199 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
3200 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05303201}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003202EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05303203
Sujithcbe61d82009-02-09 13:27:12 +05303204u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303205{
3206 u64 tsf;
3207
3208 tsf = REG_READ(ah, AR_TSF_U32);
3209 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
3210
3211 return tsf;
3212}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003213EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05303214
Sujithcbe61d82009-02-09 13:27:12 +05303215void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003216{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003217 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01003218 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003219}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003220EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003221
Sujithcbe61d82009-02-09 13:27:12 +05303222void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303223{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003224 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
3225 AH_TSF_WRITE_TIMEOUT))
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003226 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
3227 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003228
Sujithf1dc5602008-10-29 10:16:30 +05303229 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003230}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003231EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003232
Sujith54e4cec2009-08-07 09:45:09 +05303233void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003234{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003235 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303236 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003237 else
Sujith2660b812009-02-09 13:27:26 +05303238 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003239}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003240EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003241
Luis R. Rodriguez30cbd422009-11-03 16:10:46 -08003242/*
3243 * Extend 15-bit time stamp from rx descriptor to
3244 * a full 64-bit TSF using the current h/w TSF.
3245*/
3246u64 ath9k_hw_extend_tsf(struct ath_hw *ah, u32 rstamp)
3247{
3248 u64 tsf;
3249
3250 tsf = ath9k_hw_gettsf64(ah);
3251 if ((tsf & 0x7fff) < rstamp)
3252 tsf -= 0x8000;
3253 return (tsf & ~0x7fff) | rstamp;
3254}
3255EXPORT_SYMBOL(ath9k_hw_extend_tsf);
3256
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003257void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003258{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003259 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05303260 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003261
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003262 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05303263 macmode = AR_2040_JOINED_RX_CLEAR;
3264 else
3265 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003266
Sujithf1dc5602008-10-29 10:16:30 +05303267 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003268}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303269
3270/* HW Generic timers configuration */
3271
3272static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
3273{
3274 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3275 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3276 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3277 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3278 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3279 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3280 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3281 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3282 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
3283 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
3284 AR_NDP2_TIMER_MODE, 0x0002},
3285 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
3286 AR_NDP2_TIMER_MODE, 0x0004},
3287 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
3288 AR_NDP2_TIMER_MODE, 0x0008},
3289 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
3290 AR_NDP2_TIMER_MODE, 0x0010},
3291 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
3292 AR_NDP2_TIMER_MODE, 0x0020},
3293 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
3294 AR_NDP2_TIMER_MODE, 0x0040},
3295 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
3296 AR_NDP2_TIMER_MODE, 0x0080}
3297};
3298
3299/* HW generic timer primitives */
3300
3301/* compute and clear index of rightmost 1 */
3302static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
3303{
3304 u32 b;
3305
3306 b = *mask;
3307 b &= (0-b);
3308 *mask &= ~b;
3309 b *= debruijn32;
3310 b >>= 27;
3311
3312 return timer_table->gen_timer_index[b];
3313}
3314
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05303315u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303316{
3317 return REG_READ(ah, AR_TSF_L32);
3318}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003319EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303320
3321struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
3322 void (*trigger)(void *),
3323 void (*overflow)(void *),
3324 void *arg,
3325 u8 timer_index)
3326{
3327 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3328 struct ath_gen_timer *timer;
3329
3330 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
3331
3332 if (timer == NULL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003333 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
3334 "Failed to allocate memory"
3335 "for hw timer[%d]\n", timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303336 return NULL;
3337 }
3338
3339 /* allocate a hardware generic timer slot */
3340 timer_table->timers[timer_index] = timer;
3341 timer->index = timer_index;
3342 timer->trigger = trigger;
3343 timer->overflow = overflow;
3344 timer->arg = arg;
3345
3346 return timer;
3347}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003348EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303349
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07003350void ath9k_hw_gen_timer_start(struct ath_hw *ah,
3351 struct ath_gen_timer *timer,
3352 u32 timer_next,
3353 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303354{
3355 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3356 u32 tsf;
3357
3358 BUG_ON(!timer_period);
3359
3360 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
3361
3362 tsf = ath9k_hw_gettsf32(ah);
3363
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003364 ath_print(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
3365 "curent tsf %x period %x"
3366 "timer_next %x\n", tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303367
3368 /*
3369 * Pull timer_next forward if the current TSF already passed it
3370 * because of software latency
3371 */
3372 if (timer_next < tsf)
3373 timer_next = tsf + timer_period;
3374
3375 /*
3376 * Program generic timer registers
3377 */
3378 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
3379 timer_next);
3380 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
3381 timer_period);
3382 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
3383 gen_tmr_configuration[timer->index].mode_mask);
3384
3385 /* Enable both trigger and thresh interrupt masks */
3386 REG_SET_BIT(ah, AR_IMR_S5,
3387 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
3388 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303389}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003390EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303391
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07003392void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303393{
3394 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3395
3396 if ((timer->index < AR_FIRST_NDP_TIMER) ||
3397 (timer->index >= ATH_MAX_GEN_TIMER)) {
3398 return;
3399 }
3400
3401 /* Clear generic timer enable bits. */
3402 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
3403 gen_tmr_configuration[timer->index].mode_mask);
3404
3405 /* Disable both trigger and thresh interrupt masks */
3406 REG_CLR_BIT(ah, AR_IMR_S5,
3407 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
3408 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
3409
3410 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303411}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003412EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303413
3414void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
3415{
3416 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3417
3418 /* free the hardware generic timer slot */
3419 timer_table->timers[timer->index] = NULL;
3420 kfree(timer);
3421}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003422EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303423
3424/*
3425 * Generic Timer Interrupts handling
3426 */
3427void ath_gen_timer_isr(struct ath_hw *ah)
3428{
3429 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3430 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003431 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303432 u32 trigger_mask, thresh_mask, index;
3433
3434 /* get hardware generic timer interrupt status */
3435 trigger_mask = ah->intr_gen_timer_trigger;
3436 thresh_mask = ah->intr_gen_timer_thresh;
3437 trigger_mask &= timer_table->timer_mask.val;
3438 thresh_mask &= timer_table->timer_mask.val;
3439
3440 trigger_mask &= ~thresh_mask;
3441
3442 while (thresh_mask) {
3443 index = rightmost_index(timer_table, &thresh_mask);
3444 timer = timer_table->timers[index];
3445 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003446 ath_print(common, ATH_DBG_HWTIMER,
3447 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303448 timer->overflow(timer->arg);
3449 }
3450
3451 while (trigger_mask) {
3452 index = rightmost_index(timer_table, &trigger_mask);
3453 timer = timer_table->timers[index];
3454 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003455 ath_print(common, ATH_DBG_HWTIMER,
3456 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303457 timer->trigger(timer->arg);
3458 }
3459}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003460EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003461
Sujith05020d22010-03-17 14:25:23 +05303462/********/
3463/* HTC */
3464/********/
3465
3466void ath9k_hw_htc_resetinit(struct ath_hw *ah)
3467{
3468 ah->htc_reset_init = true;
3469}
3470EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
3471
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003472static struct {
3473 u32 version;
3474 const char * name;
3475} ath_mac_bb_names[] = {
3476 /* Devices with external radios */
3477 { AR_SREV_VERSION_5416_PCI, "5416" },
3478 { AR_SREV_VERSION_5416_PCIE, "5418" },
3479 { AR_SREV_VERSION_9100, "9100" },
3480 { AR_SREV_VERSION_9160, "9160" },
3481 /* Single-chip solutions */
3482 { AR_SREV_VERSION_9280, "9280" },
3483 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04003484 { AR_SREV_VERSION_9287, "9287" },
3485 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003486};
3487
3488/* For devices with external radios */
3489static struct {
3490 u16 version;
3491 const char * name;
3492} ath_rf_names[] = {
3493 { 0, "5133" },
3494 { AR_RAD5133_SREV_MAJOR, "5133" },
3495 { AR_RAD5122_SREV_MAJOR, "5122" },
3496 { AR_RAD2133_SREV_MAJOR, "2133" },
3497 { AR_RAD2122_SREV_MAJOR, "2122" }
3498};
3499
3500/*
3501 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
3502 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003503static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003504{
3505 int i;
3506
3507 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
3508 if (ath_mac_bb_names[i].version == mac_bb_version) {
3509 return ath_mac_bb_names[i].name;
3510 }
3511 }
3512
3513 return "????";
3514}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003515
3516/*
3517 * Return the RF name. "????" is returned if the RF is unknown.
3518 * Used for devices with external radios.
3519 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003520static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003521{
3522 int i;
3523
3524 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
3525 if (ath_rf_names[i].version == rf_version) {
3526 return ath_rf_names[i].name;
3527 }
3528 }
3529
3530 return "????";
3531}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003532
3533void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
3534{
3535 int used;
3536
3537 /* chipsets >= AR9280 are single-chip */
3538 if (AR_SREV_9280_10_OR_LATER(ah)) {
3539 used = snprintf(hw_name, len,
3540 "Atheros AR%s Rev:%x",
3541 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3542 ah->hw_version.macRev);
3543 }
3544 else {
3545 used = snprintf(hw_name, len,
3546 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
3547 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3548 ah->hw_version.macRev,
3549 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
3550 AR_RADIO_SREV_MAJOR)),
3551 ah->hw_version.phyRev);
3552 }
3553
3554 hw_name[used] = '\0';
3555}
3556EXPORT_SYMBOL(ath9k_hw_name);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04003557
3558/* Sets up the AR5008/AR9001/AR9002 hardware familiy callbacks */
3559static void ar9002_hw_attach_ops(struct ath_hw *ah)
3560{
3561 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
3562 struct ath_hw_ops *ops = ath9k_hw_ops(ah);
3563
3564 priv_ops->init_cal_settings = ar9002_hw_init_cal_settings;
3565 priv_ops->init_mode_regs = ar9002_hw_init_mode_regs;
3566 priv_ops->macversion_supported = ar9002_hw_macversion_supported;
3567
3568 ops->config_pci_powersave = ar9002_hw_configpcipowersave;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04003569
Luis R. Rodriguez8525f282010-04-15 17:38:19 -04003570 ar5008_hw_attach_phy_ops(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04003571 if (AR_SREV_9280_10_OR_LATER(ah))
3572 ar9002_hw_attach_phy_ops(ah);
Vasanthakumar Thiagarajanae3bb6d2010-04-15 17:38:27 -04003573
3574 ar9002_hw_attach_mac_ops(ah);
Luis R. Rodriguez8525f282010-04-15 17:38:19 -04003575}
3576
3577/* Sets up the AR9003 hardware familiy callbacks */
3578static void ar9003_hw_attach_ops(struct ath_hw *ah)
3579{
Luis R. Rodriguez61accab2010-04-15 17:38:21 -04003580 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
3581
3582 priv_ops->macversion_supported = ar9003_hw_macversion_supported;
3583
Luis R. Rodriguez8525f282010-04-15 17:38:19 -04003584 ar9003_hw_attach_phy_ops(ah);
Vasanthakumar Thiagarajanae3bb6d2010-04-15 17:38:27 -04003585
3586 ar9003_hw_attach_mac_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04003587}