blob: 8bd718c0123844bf128cb8d068f4dea99af36ab4 [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 }
Sujith04bd46382008-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
Sujithcbe61d82009-02-09 13:27:12 +0530300static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530301{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700302 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530303 u32 regAddr[2] = { AR_STA_ID0, AR_PHY_BASE + (8 << 2) };
304 u32 regHold[2];
305 u32 patternData[4] = { 0x55555555,
306 0xaaaaaaaa,
307 0x66666666,
308 0x99999999 };
309 int i, j;
310
311 for (i = 0; i < 2; i++) {
312 u32 addr = regAddr[i];
313 u32 wrData, rdData;
314
315 regHold[i] = REG_READ(ah, addr);
316 for (j = 0; j < 0x100; j++) {
317 wrData = (j << 16) | j;
318 REG_WRITE(ah, addr, wrData);
319 rdData = REG_READ(ah, addr);
320 if (rdData != wrData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700321 ath_print(common, ATH_DBG_FATAL,
322 "address test failed "
323 "addr: 0x%08x - wr:0x%08x != "
324 "rd:0x%08x\n",
325 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530326 return false;
327 }
328 }
329 for (j = 0; j < 4; j++) {
330 wrData = patternData[j];
331 REG_WRITE(ah, addr, wrData);
332 rdData = REG_READ(ah, addr);
333 if (wrData != rdData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700334 ath_print(common, ATH_DBG_FATAL,
335 "address test failed "
336 "addr: 0x%08x - wr:0x%08x != "
337 "rd:0x%08x\n",
338 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530339 return false;
340 }
341 }
342 REG_WRITE(ah, regAddr[i], regHold[i]);
343 }
344 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530345
Sujithf1dc5602008-10-29 10:16:30 +0530346 return true;
347}
348
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700349static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700350{
351 int i;
352
Sujith2660b812009-02-09 13:27:26 +0530353 ah->config.dma_beacon_response_time = 2;
354 ah->config.sw_beacon_response_time = 10;
355 ah->config.additional_swba_backoff = 0;
356 ah->config.ack_6mb = 0x0;
357 ah->config.cwm_ignore_extcca = 0;
358 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530359 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530360 ah->config.pcie_waen = 0;
361 ah->config.analog_shiftreg = 1;
Sujith2660b812009-02-09 13:27:26 +0530362 ah->config.ofdm_trig_low = 200;
363 ah->config.ofdm_trig_high = 500;
364 ah->config.cck_trig_high = 200;
365 ah->config.cck_trig_low = 100;
Luis R. Rodriguez31a0bd32010-04-15 17:38:22 -0400366
367 /*
368 * For now ANI is disabled for AR9003, it is still
369 * being tested.
370 */
371 if (!AR_SREV_9300_20_OR_LATER(ah))
372 ah->config.enable_ani = 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700373
374 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530375 ah->config.spurchans[i][0] = AR_NO_SPUR;
376 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700377 }
378
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500379 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
380 ah->config.ht_enable = 1;
381 else
382 ah->config.ht_enable = 0;
383
Sujith0ce024c2009-12-14 14:57:00 +0530384 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400385
386 /*
387 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
388 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
389 * This means we use it for all AR5416 devices, and the few
390 * minor PCI AR9280 devices out there.
391 *
392 * Serialization is required because these devices do not handle
393 * well the case of two concurrent reads/writes due to the latency
394 * involved. During one read/write another read/write can be issued
395 * on another CPU while the previous read/write may still be working
396 * on our hardware, if we hit this case the hardware poops in a loop.
397 * We prevent this by serializing reads and writes.
398 *
399 * This issue is not present on PCI-Express devices or pre-AR5416
400 * devices (legacy, 802.11abg).
401 */
402 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700403 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700404}
405
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700406static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700407{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700408 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
409
410 regulatory->country_code = CTRY_DEFAULT;
411 regulatory->power_limit = MAX_RATE_POWER;
412 regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
413
Sujithd535a422009-02-09 13:27:06 +0530414 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530415 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700416
417 ah->ah_flags = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700418 if (!AR_SREV_9100(ah))
419 ah->ah_flags = AH_USE_EEPROM;
420
Sujith2660b812009-02-09 13:27:26 +0530421 ah->atim_window = 0;
Sujith2660b812009-02-09 13:27:26 +0530422 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
423 ah->beacon_interval = 100;
424 ah->enable_32kHz_clock = DONT_USE_32KHZ;
425 ah->slottime = (u32) -1;
Sujith2660b812009-02-09 13:27:26 +0530426 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200427 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700428}
429
Sujithcbe61d82009-02-09 13:27:12 +0530430static int ath9k_hw_rf_claim(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700431{
432 u32 val;
433
434 REG_WRITE(ah, AR_PHY(0), 0x00000007);
435
436 val = ath9k_hw_get_radiorev(ah);
437 switch (val & AR_RADIO_SREV_MAJOR) {
438 case 0:
439 val = AR_RAD5133_SREV_MAJOR;
440 break;
441 case AR_RAD5133_SREV_MAJOR:
442 case AR_RAD5122_SREV_MAJOR:
443 case AR_RAD2133_SREV_MAJOR:
444 case AR_RAD2122_SREV_MAJOR:
445 break;
446 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700447 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
448 "Radio Chip Rev 0x%02X not supported\n",
449 val & AR_RADIO_SREV_MAJOR);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700450 return -EOPNOTSUPP;
451 }
452
Sujithd535a422009-02-09 13:27:06 +0530453 ah->hw_version.analog5GhzRev = val;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700454
455 return 0;
456}
457
Sujithcbe61d82009-02-09 13:27:12 +0530458static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700459{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700460 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530461 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700462 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530463 u16 eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700464
Sujithf1dc5602008-10-29 10:16:30 +0530465 sum = 0;
466 for (i = 0; i < 3; i++) {
Sujithf74df6f2009-02-09 13:27:24 +0530467 eeval = ah->eep_ops->get_eeprom(ah, AR_EEPROM_MAC(i));
Sujithf1dc5602008-10-29 10:16:30 +0530468 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700469 common->macaddr[2 * i] = eeval >> 8;
470 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700471 }
Sujithd8baa932009-03-30 15:28:25 +0530472 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530473 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700474
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700475 return 0;
476}
477
Sujithcbe61d82009-02-09 13:27:12 +0530478static void ath9k_hw_init_rxgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530479{
480 u32 rxgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530481
Sujithf74df6f2009-02-09 13:27:24 +0530482 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_17) {
483 rxgain_type = ah->eep_ops->get_eeprom(ah, EEP_RXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530484
485 if (rxgain_type == AR5416_EEP_RXGAIN_13DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530486 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530487 ar9280Modes_backoff_13db_rxgain_9280_2,
488 ARRAY_SIZE(ar9280Modes_backoff_13db_rxgain_9280_2), 6);
489 else if (rxgain_type == AR5416_EEP_RXGAIN_23DB_BACKOFF)
Sujith2660b812009-02-09 13:27:26 +0530490 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530491 ar9280Modes_backoff_23db_rxgain_9280_2,
492 ARRAY_SIZE(ar9280Modes_backoff_23db_rxgain_9280_2), 6);
493 else
Sujith2660b812009-02-09 13:27:26 +0530494 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530495 ar9280Modes_original_rxgain_9280_2,
496 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530497 } else {
Sujith2660b812009-02-09 13:27:26 +0530498 INIT_INI_ARRAY(&ah->iniModesRxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530499 ar9280Modes_original_rxgain_9280_2,
500 ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530501 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530502}
503
Sujithcbe61d82009-02-09 13:27:12 +0530504static void ath9k_hw_init_txgain_ini(struct ath_hw *ah)
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530505{
506 u32 txgain_type;
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530507
Sujithf74df6f2009-02-09 13:27:24 +0530508 if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_19) {
509 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530510
511 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER)
Sujith2660b812009-02-09 13:27:26 +0530512 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530513 ar9280Modes_high_power_tx_gain_9280_2,
514 ARRAY_SIZE(ar9280Modes_high_power_tx_gain_9280_2), 6);
515 else
Sujith2660b812009-02-09 13:27:26 +0530516 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530517 ar9280Modes_original_tx_gain_9280_2,
518 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530519 } else {
Sujith2660b812009-02-09 13:27:26 +0530520 INIT_INI_ARRAY(&ah->iniModesTxGain,
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530521 ar9280Modes_original_tx_gain_9280_2,
522 ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
Sujithcbe61d82009-02-09 13:27:12 +0530523 }
Senthil Balasubramanian9f804202008-11-13 17:58:41 +0530524}
525
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700526static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700527{
528 int ecode;
529
Sujith527d4852010-03-17 14:25:16 +0530530 if (!AR_SREV_9271(ah)) {
531 if (!ath9k_hw_chip_test(ah))
532 return -ENODEV;
533 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700534
535 ecode = ath9k_hw_rf_claim(ah);
536 if (ecode != 0)
537 return ecode;
538
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700539 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700540 if (ecode != 0)
541 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530542
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700543 ath_print(ath9k_hw_common(ah), ATH_DBG_CONFIG,
544 "Eeprom VER: %d, REV: %d\n",
545 ah->eep_ops->get_eeprom_ver(ah),
546 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530547
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400548 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
549 if (ecode) {
550 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
551 "Failed allocating banks for "
552 "external radio\n");
553 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400554 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700555
556 if (!AR_SREV_9100(ah)) {
557 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700558 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700559 }
Sujithf1dc5602008-10-29 10:16:30 +0530560
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700561 return 0;
562}
563
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400564static bool ar9002_hw_macversion_supported(u32 macversion)
Luis R. Rodriguezf9d4a662009-08-03 12:24:41 -0700565{
566 switch (macversion) {
567 case AR_SREV_VERSION_5416_PCI:
568 case AR_SREV_VERSION_5416_PCIE:
569 case AR_SREV_VERSION_9160:
570 case AR_SREV_VERSION_9100:
571 case AR_SREV_VERSION_9280:
572 case AR_SREV_VERSION_9285:
573 case AR_SREV_VERSION_9287:
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400574 case AR_SREV_VERSION_9271:
Luis R. Rodriguez7976b422009-09-23 23:07:02 -0400575 return true;
Luis R. Rodriguezf9d4a662009-08-03 12:24:41 -0700576 default:
577 break;
578 }
579 return false;
580}
581
Luis R. Rodriguez61accab2010-04-15 17:38:21 -0400582static bool ar9003_hw_macversion_supported(u32 macversion)
583{
584 switch (macversion) {
585 case AR_SREV_VERSION_9300:
586 return true;
587 default:
588 break;
589 }
590 return false;
591}
592
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400593static void ar9002_hw_init_cal_settings(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700594{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700595 if (AR_SREV_9160_10_OR_LATER(ah)) {
596 if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530597 ah->iq_caldata.calData = &iq_cal_single_sample;
598 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700599 &adc_gain_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530600 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700601 &adc_dc_cal_single_sample;
Sujith2660b812009-02-09 13:27:26 +0530602 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700603 &adc_init_dc_cal;
604 } else {
Sujith2660b812009-02-09 13:27:26 +0530605 ah->iq_caldata.calData = &iq_cal_multi_sample;
606 ah->adcgain_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700607 &adc_gain_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530608 ah->adcdc_caldata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700609 &adc_dc_cal_multi_sample;
Sujith2660b812009-02-09 13:27:26 +0530610 ah->adcdc_calinitdata.calData =
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700611 &adc_init_dc_cal;
612 }
Sujith2660b812009-02-09 13:27:26 +0530613 ah->supp_cals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700614 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700615}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700616
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400617static void ar9002_hw_init_mode_regs(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700618{
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400619 if (AR_SREV_9271(ah)) {
Luis R. Rodriguez85643282009-10-19 02:33:33 -0400620 INIT_INI_ARRAY(&ah->iniModes, ar9271Modes_9271,
621 ARRAY_SIZE(ar9271Modes_9271), 6);
622 INIT_INI_ARRAY(&ah->iniCommon, ar9271Common_9271,
623 ARRAY_SIZE(ar9271Common_9271), 2);
Sujith70807e92010-03-17 14:25:14 +0530624 INIT_INI_ARRAY(&ah->iniCommon_normal_cck_fir_coeff_9271,
625 ar9271Common_normal_cck_fir_coeff_9271,
626 ARRAY_SIZE(ar9271Common_normal_cck_fir_coeff_9271), 2);
627 INIT_INI_ARRAY(&ah->iniCommon_japan_2484_cck_fir_coeff_9271,
628 ar9271Common_japan_2484_cck_fir_coeff_9271,
629 ARRAY_SIZE(ar9271Common_japan_2484_cck_fir_coeff_9271), 2);
Luis R. Rodriguez85643282009-10-19 02:33:33 -0400630 INIT_INI_ARRAY(&ah->iniModes_9271_1_0_only,
631 ar9271Modes_9271_1_0_only,
632 ARRAY_SIZE(ar9271Modes_9271_1_0_only), 6);
Sujith70807e92010-03-17 14:25:14 +0530633 INIT_INI_ARRAY(&ah->iniModes_9271_ANI_reg, ar9271Modes_9271_ANI_reg,
634 ARRAY_SIZE(ar9271Modes_9271_ANI_reg), 6);
635 INIT_INI_ARRAY(&ah->iniModes_high_power_tx_gain_9271,
636 ar9271Modes_high_power_tx_gain_9271,
637 ARRAY_SIZE(ar9271Modes_high_power_tx_gain_9271), 6);
638 INIT_INI_ARRAY(&ah->iniModes_normal_power_tx_gain_9271,
639 ar9271Modes_normal_power_tx_gain_9271,
640 ARRAY_SIZE(ar9271Modes_normal_power_tx_gain_9271), 6);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400641 return;
642 }
643
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530644 if (AR_SREV_9287_11_OR_LATER(ah)) {
645 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_1,
646 ARRAY_SIZE(ar9287Modes_9287_1_1), 6);
647 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_1,
648 ARRAY_SIZE(ar9287Common_9287_1_1), 2);
649 if (ah->config.pcie_clock_req)
650 INIT_INI_ARRAY(&ah->iniPcieSerdes,
651 ar9287PciePhy_clkreq_off_L1_9287_1_1,
652 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_1), 2);
653 else
654 INIT_INI_ARRAY(&ah->iniPcieSerdes,
655 ar9287PciePhy_clkreq_always_on_L1_9287_1_1,
656 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_1),
657 2);
658 } else if (AR_SREV_9287_10_OR_LATER(ah)) {
659 INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_0,
660 ARRAY_SIZE(ar9287Modes_9287_1_0), 6);
661 INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_0,
662 ARRAY_SIZE(ar9287Common_9287_1_0), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700663
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530664 if (ah->config.pcie_clock_req)
665 INIT_INI_ARRAY(&ah->iniPcieSerdes,
666 ar9287PciePhy_clkreq_off_L1_9287_1_0,
667 ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_0), 2);
668 else
669 INIT_INI_ARRAY(&ah->iniPcieSerdes,
670 ar9287PciePhy_clkreq_always_on_L1_9287_1_0,
671 ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_0),
672 2);
673 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
674
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530675
Sujith2660b812009-02-09 13:27:26 +0530676 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530677 ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530678 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285_1_2,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530679 ARRAY_SIZE(ar9285Common_9285_1_2), 2);
680
Sujith2660b812009-02-09 13:27:26 +0530681 if (ah->config.pcie_clock_req) {
682 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530683 ar9285PciePhy_clkreq_off_L1_9285_1_2,
684 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 2);
685 } else {
Sujith2660b812009-02-09 13:27:26 +0530686 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530687 ar9285PciePhy_clkreq_always_on_L1_9285_1_2,
688 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
689 2);
690 }
691 } else if (AR_SREV_9285_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530692 INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530693 ARRAY_SIZE(ar9285Modes_9285), 6);
Sujith2660b812009-02-09 13:27:26 +0530694 INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530695 ARRAY_SIZE(ar9285Common_9285), 2);
696
Sujith2660b812009-02-09 13:27:26 +0530697 if (ah->config.pcie_clock_req) {
698 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530699 ar9285PciePhy_clkreq_off_L1_9285,
700 ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 2);
701 } else {
Sujith2660b812009-02-09 13:27:26 +0530702 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530703 ar9285PciePhy_clkreq_always_on_L1_9285,
704 ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
705 }
706 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530707 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700708 ARRAY_SIZE(ar9280Modes_9280_2), 6);
Sujith2660b812009-02-09 13:27:26 +0530709 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280_2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700710 ARRAY_SIZE(ar9280Common_9280_2), 2);
711
Sujith2660b812009-02-09 13:27:26 +0530712 if (ah->config.pcie_clock_req) {
713 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530714 ar9280PciePhy_clkreq_off_L1_9280,
715 ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700716 } else {
Sujith2660b812009-02-09 13:27:26 +0530717 INIT_INI_ARRAY(&ah->iniPcieSerdes,
Sujithf1dc5602008-10-29 10:16:30 +0530718 ar9280PciePhy_clkreq_always_on_L1_9280,
719 ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700720 }
Sujith2660b812009-02-09 13:27:26 +0530721 INIT_INI_ARRAY(&ah->iniModesAdditional,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700722 ar9280Modes_fast_clock_9280_2,
Sujithf1dc5602008-10-29 10:16:30 +0530723 ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700724 } else if (AR_SREV_9280_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530725 INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700726 ARRAY_SIZE(ar9280Modes_9280), 6);
Sujith2660b812009-02-09 13:27:26 +0530727 INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700728 ARRAY_SIZE(ar9280Common_9280), 2);
729 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530730 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700731 ARRAY_SIZE(ar5416Modes_9160), 6);
Sujith2660b812009-02-09 13:27:26 +0530732 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700733 ARRAY_SIZE(ar5416Common_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530734 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700735 ARRAY_SIZE(ar5416Bank0_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530736 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700737 ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530738 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700739 ARRAY_SIZE(ar5416Bank1_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530740 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700741 ARRAY_SIZE(ar5416Bank2_9160), 2);
Sujith2660b812009-02-09 13:27:26 +0530742 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700743 ARRAY_SIZE(ar5416Bank3_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530744 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700745 ARRAY_SIZE(ar5416Bank6_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530746 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700747 ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
Sujith2660b812009-02-09 13:27:26 +0530748 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700749 ARRAY_SIZE(ar5416Bank7_9160), 2);
750 if (AR_SREV_9160_11(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530751 INIT_INI_ARRAY(&ah->iniAddac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700752 ar5416Addac_91601_1,
753 ARRAY_SIZE(ar5416Addac_91601_1), 2);
754 } else {
Sujith2660b812009-02-09 13:27:26 +0530755 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9160,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700756 ARRAY_SIZE(ar5416Addac_9160), 2);
757 }
758 } else if (AR_SREV_9100_OR_LATER(ah)) {
Sujith2660b812009-02-09 13:27:26 +0530759 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700760 ARRAY_SIZE(ar5416Modes_9100), 6);
Sujith2660b812009-02-09 13:27:26 +0530761 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700762 ARRAY_SIZE(ar5416Common_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530763 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700764 ARRAY_SIZE(ar5416Bank0_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530765 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700766 ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530767 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700768 ARRAY_SIZE(ar5416Bank1_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530769 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700770 ARRAY_SIZE(ar5416Bank2_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530771 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700772 ARRAY_SIZE(ar5416Bank3_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530773 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700774 ARRAY_SIZE(ar5416Bank6_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530775 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700776 ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
Sujith2660b812009-02-09 13:27:26 +0530777 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700778 ARRAY_SIZE(ar5416Bank7_9100), 2);
Sujith2660b812009-02-09 13:27:26 +0530779 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9100,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700780 ARRAY_SIZE(ar5416Addac_9100), 2);
781 } else {
Sujith2660b812009-02-09 13:27:26 +0530782 INIT_INI_ARRAY(&ah->iniModes, ar5416Modes,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700783 ARRAY_SIZE(ar5416Modes), 6);
Sujith2660b812009-02-09 13:27:26 +0530784 INIT_INI_ARRAY(&ah->iniCommon, ar5416Common,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700785 ARRAY_SIZE(ar5416Common), 2);
Sujith2660b812009-02-09 13:27:26 +0530786 INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700787 ARRAY_SIZE(ar5416Bank0), 2);
Sujith2660b812009-02-09 13:27:26 +0530788 INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700789 ARRAY_SIZE(ar5416BB_RfGain), 3);
Sujith2660b812009-02-09 13:27:26 +0530790 INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700791 ARRAY_SIZE(ar5416Bank1), 2);
Sujith2660b812009-02-09 13:27:26 +0530792 INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700793 ARRAY_SIZE(ar5416Bank2), 2);
Sujith2660b812009-02-09 13:27:26 +0530794 INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700795 ARRAY_SIZE(ar5416Bank3), 3);
Sujith2660b812009-02-09 13:27:26 +0530796 INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700797 ARRAY_SIZE(ar5416Bank6), 3);
Sujith2660b812009-02-09 13:27:26 +0530798 INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700799 ARRAY_SIZE(ar5416Bank6TPC), 3);
Sujith2660b812009-02-09 13:27:26 +0530800 INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700801 ARRAY_SIZE(ar5416Bank7), 2);
Sujith2660b812009-02-09 13:27:26 +0530802 INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700803 ARRAY_SIZE(ar5416Addac), 2);
804 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700805}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700806
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700807static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
808{
Vivek Natarajanb37fa872009-09-23 16:27:27 +0530809 if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530810 INIT_INI_ARRAY(&ah->iniModesRxGain,
811 ar9287Modes_rx_gain_9287_1_1,
812 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_1), 6);
813 else if (AR_SREV_9287_10(ah))
814 INIT_INI_ARRAY(&ah->iniModesRxGain,
815 ar9287Modes_rx_gain_9287_1_0,
816 ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_0), 6);
817 else if (AR_SREV_9280_20(ah))
818 ath9k_hw_init_rxgain_ini(ah);
819
Vivek Natarajanb37fa872009-09-23 16:27:27 +0530820 if (AR_SREV_9287_11_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +0530821 INIT_INI_ARRAY(&ah->iniModesTxGain,
822 ar9287Modes_tx_gain_9287_1_1,
823 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_1), 6);
824 } else if (AR_SREV_9287_10(ah)) {
825 INIT_INI_ARRAY(&ah->iniModesTxGain,
826 ar9287Modes_tx_gain_9287_1_0,
827 ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_0), 6);
828 } else if (AR_SREV_9280_20(ah)) {
829 ath9k_hw_init_txgain_ini(ah);
830 } else if (AR_SREV_9285_12_OR_LATER(ah)) {
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530831 u32 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
832
833 /* txgain table */
834 if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER) {
Vivek Natarajan53bc7aa2010-04-05 14:48:04 +0530835 if (AR_SREV_9285E_20(ah)) {
836 INIT_INI_ARRAY(&ah->iniModesTxGain,
837 ar9285Modes_XE2_0_high_power,
838 ARRAY_SIZE(
839 ar9285Modes_XE2_0_high_power), 6);
840 } else {
841 INIT_INI_ARRAY(&ah->iniModesTxGain,
842 ar9285Modes_high_power_tx_gain_9285_1_2,
843 ARRAY_SIZE(
844 ar9285Modes_high_power_tx_gain_9285_1_2), 6);
845 }
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530846 } else {
Vivek Natarajan53bc7aa2010-04-05 14:48:04 +0530847 if (AR_SREV_9285E_20(ah)) {
848 INIT_INI_ARRAY(&ah->iniModesTxGain,
849 ar9285Modes_XE2_0_normal_power,
850 ARRAY_SIZE(
851 ar9285Modes_XE2_0_normal_power), 6);
852 } else {
853 INIT_INI_ARRAY(&ah->iniModesTxGain,
854 ar9285Modes_original_tx_gain_9285_1_2,
855 ARRAY_SIZE(
856 ar9285Modes_original_tx_gain_9285_1_2), 6);
857 }
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530858 }
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530859 }
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700860}
Senthil Balasubramanian4e845162009-03-06 11:24:10 +0530861
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100862static void ath9k_hw_init_eeprom_fix(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700863{
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400864 struct base_eep_header *pBase = &(ah->eeprom.def.baseEepHeader);
865 struct ath_common *common = ath9k_hw_common(ah);
Sujith06d0f062009-02-12 10:06:45 +0530866
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400867 ah->need_an_top2_fixup = (ah->hw_version.devid == AR9280_DEVID_PCI) &&
868 (ah->eep_map != EEP_MAP_4KBITS) &&
869 ((pBase->version & 0xff) > 0x0a) &&
870 (pBase->pwdclkind == 0);
Sujith06d0f062009-02-12 10:06:45 +0530871
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400872 if (ah->need_an_top2_fixup)
873 ath_print(common, ATH_DBG_EEPROM,
874 "needs fixup for AR_AN_TOP2 register\n");
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700875}
876
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400877static void ath9k_hw_attach_ops(struct ath_hw *ah)
878{
879 if (AR_SREV_9300_20_OR_LATER(ah))
880 ar9003_hw_attach_ops(ah);
881 else
882 ar9002_hw_attach_ops(ah);
883}
884
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400885/* Called for all hardware families */
886static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700887{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700888 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700889 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700890
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400891 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
892 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700893
894 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700895 ath_print(common, ATH_DBG_FATAL,
896 "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700897 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700898 }
899
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400900 ath9k_hw_init_defaults(ah);
901 ath9k_hw_init_config(ah);
902
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400903 ath9k_hw_attach_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400904
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700905 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700906 ath_print(common, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700907 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700908 }
909
910 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
911 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
912 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
913 ah->config.serialize_regmode =
914 SER_REG_MODE_ON;
915 } else {
916 ah->config.serialize_regmode =
917 SER_REG_MODE_OFF;
918 }
919 }
920
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700921 ath_print(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700922 ah->config.serialize_regmode);
923
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500924 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
925 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
926 else
927 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
928
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400929 if (!ath9k_hw_macversion_supported(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700930 ath_print(common, ATH_DBG_FATAL,
931 "Mac Chip Rev 0x%02x.%x is not supported by "
932 "this driver\n", ah->hw_version.macVersion,
933 ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700934 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700935 }
936
937 if (AR_SREV_9100(ah)) {
938 ah->iq_caldata.calData = &iq_cal_multi_sample;
939 ah->supp_cals = IQ_MISMATCH_CAL;
940 ah->is_pciexpress = false;
941 }
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400942
943 if (AR_SREV_9271(ah))
944 ah->is_pciexpress = false;
945
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700946 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700947 ath9k_hw_init_cal_settings(ah);
948
949 ah->ani_function = ATH9K_ANI_ALL;
Luis R. Rodriguez31a0bd32010-04-15 17:38:22 -0400950 if (AR_SREV_9280_10_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700951 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
952
953 ath9k_hw_init_mode_regs(ah);
954
955 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530956 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700957 else
958 ath9k_hw_disablepcie(ah);
959
Sujith193cd452009-09-18 15:04:07 +0530960 /* Support for Japan ch.14 (2484) spread */
961 if (AR_SREV_9287_11_OR_LATER(ah)) {
962 INIT_INI_ARRAY(&ah->iniCckfirNormal,
963 ar9287Common_normal_cck_fir_coeff_92871_1,
964 ARRAY_SIZE(ar9287Common_normal_cck_fir_coeff_92871_1), 2);
965 INIT_INI_ARRAY(&ah->iniCckfirJapan2484,
966 ar9287Common_japan_2484_cck_fir_coeff_92871_1,
967 ARRAY_SIZE(ar9287Common_japan_2484_cck_fir_coeff_92871_1), 2);
968 }
969
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700970 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700971 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700972 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700973
974 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100975 r = ath9k_hw_fill_cap_info(ah);
976 if (r)
977 return r;
978
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100979 ath9k_hw_init_eeprom_fix(ah);
Sujithf6688cd2008-12-07 21:43:10 +0530980
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700981 r = ath9k_hw_init_macaddr(ah);
982 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700983 ath_print(common, ATH_DBG_FATAL,
984 "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700985 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700986 }
987
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400988 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530989 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700990 else
Sujith2660b812009-02-09 13:27:26 +0530991 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700992
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700993 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700994
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400995 common->state = ATH_HW_INITIALIZED;
996
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700997 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700998}
999
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04001000int ath9k_hw_init(struct ath_hw *ah)
1001{
1002 int ret;
1003 struct ath_common *common = ath9k_hw_common(ah);
1004
1005 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
1006 switch (ah->hw_version.devid) {
1007 case AR5416_DEVID_PCI:
1008 case AR5416_DEVID_PCIE:
1009 case AR5416_AR9100_DEVID:
1010 case AR9160_DEVID_PCI:
1011 case AR9280_DEVID_PCI:
1012 case AR9280_DEVID_PCIE:
1013 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -04001014 case AR9287_DEVID_PCI:
1015 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04001016 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -04001017 case AR9300_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04001018 break;
1019 default:
1020 if (common->bus_ops->ath_bus_type == ATH_USB)
1021 break;
1022 ath_print(common, ATH_DBG_FATAL,
1023 "Hardware device ID 0x%04x not supported\n",
1024 ah->hw_version.devid);
1025 return -EOPNOTSUPP;
1026 }
1027
1028 ret = __ath9k_hw_init(ah);
1029 if (ret) {
1030 ath_print(common, ATH_DBG_FATAL,
1031 "Unable to initialize hardware; "
1032 "initialization status: %d\n", ret);
1033 return ret;
1034 }
1035
1036 return 0;
1037}
1038EXPORT_SYMBOL(ath9k_hw_init);
1039
Sujithcbe61d82009-02-09 13:27:12 +05301040static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301041{
1042 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
1043 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
1044
1045 REG_WRITE(ah, AR_QOS_NO_ACK,
1046 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
1047 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
1048 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
1049
1050 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
1051 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
1052 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
1053 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
1054 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
1055}
1056
Sujithcbe61d82009-02-09 13:27:12 +05301057static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301058 struct ath9k_channel *chan)
1059{
Luis R. Rodriguez64773962010-04-15 17:38:17 -04001060 u32 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301061
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001062 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +05301063
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -04001064 /* Switch the core clock for ar9271 to 117Mhz */
1065 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +05301066 udelay(500);
1067 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -04001068 }
1069
Sujithf1dc5602008-10-29 10:16:30 +05301070 udelay(RTC_PLL_SETTLE_DELAY);
1071
1072 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
1073}
1074
Sujithcbe61d82009-02-09 13:27:12 +05301075static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -08001076 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301077{
Pavel Roskin152d5302010-03-31 18:05:37 -04001078 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +05301079 AR_IMR_TXURN |
1080 AR_IMR_RXERR |
1081 AR_IMR_RXORN |
1082 AR_IMR_BCNMISC;
1083
Sujith0ce024c2009-12-14 14:57:00 +05301084 if (ah->config.rx_intr_mitigation)
Pavel Roskin152d5302010-03-31 18:05:37 -04001085 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
Sujithf1dc5602008-10-29 10:16:30 +05301086 else
Pavel Roskin152d5302010-03-31 18:05:37 -04001087 imr_reg |= AR_IMR_RXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301088
Pavel Roskin152d5302010-03-31 18:05:37 -04001089 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +05301090
Colin McCabed97809d2008-12-01 13:38:55 -08001091 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -04001092 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +05301093
Pavel Roskin152d5302010-03-31 18:05:37 -04001094 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -05001095 ah->imrs2_reg |= AR_IMR_S2_GTT;
1096 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +05301097
1098 if (!AR_SREV_9100(ah)) {
1099 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
1100 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
1101 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
1102 }
1103}
1104
Felix Fietkau0005baf2010-01-15 02:33:40 +01001105static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +05301106{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001107 u32 val = ath9k_hw_mac_to_clks(ah, us);
1108 val = min(val, (u32) 0xFFFF);
1109 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +05301110}
1111
Felix Fietkau0005baf2010-01-15 02:33:40 +01001112static void ath9k_hw_set_ack_timeout(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) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
1116 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
1117}
1118
1119static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
1120{
1121 u32 val = ath9k_hw_mac_to_clks(ah, us);
1122 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
1123 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +05301124}
1125
Sujithcbe61d82009-02-09 13:27:12 +05301126static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +05301127{
Sujithf1dc5602008-10-29 10:16:30 +05301128 if (tu > 0xFFFF) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001129 ath_print(ath9k_hw_common(ah), ATH_DBG_XMIT,
1130 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +05301131 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +05301132 return false;
1133 } else {
1134 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +05301135 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +05301136 return true;
1137 }
1138}
1139
Felix Fietkau0005baf2010-01-15 02:33:40 +01001140void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301141{
Felix Fietkau0005baf2010-01-15 02:33:40 +01001142 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
1143 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +01001144 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +01001145 int sifstime;
1146
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001147 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
1148 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +05301149
Sujith2660b812009-02-09 13:27:26 +05301150 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +05301151 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +05301152 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001153
1154 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
1155 sifstime = 16;
1156 else
1157 sifstime = 10;
1158
Felix Fietkaue239d852010-01-15 02:34:58 +01001159 /* As defined by IEEE 802.11-2007 17.3.8.6 */
1160 slottime = ah->slottime + 3 * ah->coverage_class;
1161 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +01001162
1163 /*
1164 * Workaround for early ACK timeouts, add an offset to match the
1165 * initval's 64us ack timeout value.
1166 * This was initially only meant to work around an issue with delayed
1167 * BA frames in some implementations, but it has been found to fix ACK
1168 * timeout issues in other cases as well.
1169 */
1170 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
1171 acktimeout += 64 - sifstime - ah->slottime;
1172
Felix Fietkaue239d852010-01-15 02:34:58 +01001173 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001174 ath9k_hw_set_ack_timeout(ah, acktimeout);
1175 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +05301176 if (ah->globaltxtimeout != (u32) -1)
1177 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +05301178}
Felix Fietkau0005baf2010-01-15 02:33:40 +01001179EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +05301180
Sujith285f2dd2010-01-08 10:36:07 +05301181void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001182{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001183 struct ath_common *common = ath9k_hw_common(ah);
1184
Sujith736b3a22010-03-17 14:25:24 +05301185 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001186 goto free_hw;
1187
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001188 if (!AR_SREV_9100(ah))
Luis R. Rodrigueze70c0cf2009-08-03 12:24:51 -07001189 ath9k_hw_ani_disable(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001190
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001191 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001192
1193free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001194 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001195}
Sujith285f2dd2010-01-08 10:36:07 +05301196EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001197
Sujithf1dc5602008-10-29 10:16:30 +05301198/*******/
1199/* INI */
1200/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001201
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001202u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -04001203{
1204 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1205
1206 if (IS_CHAN_B(chan))
1207 ctl |= CTL_11B;
1208 else if (IS_CHAN_G(chan))
1209 ctl |= CTL_11G;
1210 else
1211 ctl |= CTL_11A;
1212
1213 return ctl;
1214}
1215
Sujithf1dc5602008-10-29 10:16:30 +05301216/****************************************/
1217/* Reset and Channel Switching Routines */
1218/****************************************/
1219
Sujithcbe61d82009-02-09 13:27:12 +05301220static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301221{
1222 u32 regval;
1223
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001224 /*
1225 * set AHB_MODE not to do cacheline prefetches
1226 */
Sujithf1dc5602008-10-29 10:16:30 +05301227 regval = REG_READ(ah, AR_AHB_MODE);
1228 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
1229
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001230 /*
1231 * let mac dma reads be in 128 byte chunks
1232 */
Sujithf1dc5602008-10-29 10:16:30 +05301233 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
1234 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
1235
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001236 /*
1237 * Restore TX Trigger Level to its pre-reset value.
1238 * The initial value depends on whether aggregation is enabled, and is
1239 * adjusted whenever underruns are detected.
1240 */
Sujith2660b812009-02-09 13:27:26 +05301241 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301242
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001243 /*
1244 * let mac dma writes be in 128 byte chunks
1245 */
Sujithf1dc5602008-10-29 10:16:30 +05301246 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
1247 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
1248
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001249 /*
1250 * Setup receive FIFO threshold to hold off TX activities
1251 */
Sujithf1dc5602008-10-29 10:16:30 +05301252 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1253
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001254 /*
1255 * reduce the number of usable entries in PCU TXBUF to avoid
1256 * wrap around issues.
1257 */
Sujithf1dc5602008-10-29 10:16:30 +05301258 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001259 /* For AR9285 the number of Fifos are reduced to half.
1260 * So set the usable tx buf size also to half to
1261 * avoid data/delimiter underruns
1262 */
Sujithf1dc5602008-10-29 10:16:30 +05301263 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1264 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001265 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +05301266 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1267 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1268 }
1269}
1270
Sujithcbe61d82009-02-09 13:27:12 +05301271static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301272{
1273 u32 val;
1274
1275 val = REG_READ(ah, AR_STA_ID1);
1276 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
1277 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001278 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +05301279 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
1280 | AR_STA_ID1_KSRCH_MODE);
1281 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1282 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001283 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001284 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +05301285 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
1286 | AR_STA_ID1_KSRCH_MODE);
1287 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1288 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001289 case NL80211_IFTYPE_STATION:
1290 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +05301291 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
1292 break;
1293 }
1294}
1295
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001296void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
1297 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001298{
1299 u32 coef_exp, coef_man;
1300
1301 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1302 if ((coef_scaled >> coef_exp) & 0x1)
1303 break;
1304
1305 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1306
1307 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1308
1309 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1310 *coef_exponent = coef_exp - 16;
1311}
1312
Sujithcbe61d82009-02-09 13:27:12 +05301313static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301314{
1315 u32 rst_flags;
1316 u32 tmpReg;
1317
Sujith70768492009-02-16 13:23:12 +05301318 if (AR_SREV_9100(ah)) {
1319 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1320 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1321 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1322 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1323 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1324 }
1325
Sujithf1dc5602008-10-29 10:16:30 +05301326 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1327 AR_RTC_FORCE_WAKE_ON_INT);
1328
1329 if (AR_SREV_9100(ah)) {
1330 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1331 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1332 } else {
1333 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1334 if (tmpReg &
1335 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1336 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001337 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301338 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001339
1340 val = AR_RC_HOSTIF;
1341 if (!AR_SREV_9300_20_OR_LATER(ah))
1342 val |= AR_RC_AHB;
1343 REG_WRITE(ah, AR_RC, val);
1344
1345 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301346 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301347
1348 rst_flags = AR_RTC_RC_MAC_WARM;
1349 if (type == ATH9K_RESET_COLD)
1350 rst_flags |= AR_RTC_RC_MAC_COLD;
1351 }
1352
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001353 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujithf1dc5602008-10-29 10:16:30 +05301354 udelay(50);
1355
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001356 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301357 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001358 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1359 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301360 return false;
1361 }
1362
1363 if (!AR_SREV_9100(ah))
1364 REG_WRITE(ah, AR_RC, 0);
1365
Sujithf1dc5602008-10-29 10:16:30 +05301366 if (AR_SREV_9100(ah))
1367 udelay(50);
1368
1369 return true;
1370}
1371
Sujithcbe61d82009-02-09 13:27:12 +05301372static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301373{
1374 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1375 AR_RTC_FORCE_WAKE_ON_INT);
1376
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001377 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301378 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1379
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001380 REG_WRITE(ah, AR_RTC_RESET, 0);
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301381 udelay(2);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301382
1383 if (!AR_SREV_9100(ah))
1384 REG_WRITE(ah, AR_RC, 0);
1385
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001386 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301387
1388 if (!ath9k_hw_wait(ah,
1389 AR_RTC_STATUS,
1390 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301391 AR_RTC_STATUS_ON,
1392 AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001393 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1394 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301395 return false;
1396 }
1397
1398 ath9k_hw_read_revisions(ah);
1399
1400 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1401}
1402
Sujithcbe61d82009-02-09 13:27:12 +05301403static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301404{
1405 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1406 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1407
1408 switch (type) {
1409 case ATH9K_RESET_POWER_ON:
1410 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301411 case ATH9K_RESET_WARM:
1412 case ATH9K_RESET_COLD:
1413 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301414 default:
1415 return false;
1416 }
1417}
1418
Sujithcbe61d82009-02-09 13:27:12 +05301419static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301420 struct ath9k_channel *chan)
1421{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301422 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301423 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1424 return false;
1425 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301426 return false;
1427
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001428 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301429 return false;
1430
Sujith2660b812009-02-09 13:27:26 +05301431 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301432 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301433 ath9k_hw_set_rfmode(ah, chan);
1434
1435 return true;
1436}
1437
Sujithcbe61d82009-02-09 13:27:12 +05301438static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001439 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301440{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001441 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001442 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001443 struct ieee80211_channel *channel = chan->chan;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001444 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001445 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301446
1447 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1448 if (ath9k_hw_numtxpending(ah, qnum)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001449 ath_print(common, ATH_DBG_QUEUE,
1450 "Transmit frames pending on "
1451 "queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301452 return false;
1453 }
1454 }
1455
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001456 if (!ath9k_hw_rfbus_req(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001457 ath_print(common, ATH_DBG_FATAL,
1458 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301459 return false;
1460 }
1461
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001462 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301463
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001464 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001465 if (r) {
1466 ath_print(common, ATH_DBG_FATAL,
1467 "Failed to set channel\n");
1468 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301469 }
1470
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001471 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001472 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301473 channel->max_antenna_gain * 2,
1474 channel->max_power * 2,
1475 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001476 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301477
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001478 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301479
1480 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1481 ath9k_hw_set_delta_slope(ah, chan);
1482
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001483 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301484
1485 if (!chan->oneTimeCalsDone)
1486 chan->oneTimeCalsDone = true;
1487
1488 return true;
1489}
1490
Sujithcbe61d82009-02-09 13:27:12 +05301491int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001492 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001493{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001494 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001495 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301496 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001497 u32 saveDefAntenna;
1498 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301499 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001500 int i, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001501
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001502 ah->txchainmask = common->tx_chainmask;
1503 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001504
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001505 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001506 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001507
Vasanthakumar Thiagarajan9ebef7992009-09-17 09:26:44 +05301508 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001509 ath9k_hw_getnf(ah, curchan);
1510
1511 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301512 (ah->chip_fullsleep != true) &&
1513 (ah->curchan != NULL) &&
1514 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001515 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301516 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Vasanthakumar Thiagarajan0a475cc2009-09-17 09:27:10 +05301517 !(AR_SREV_9280(ah) || IS_CHAN_A_5MHZ_SPACED(chan) ||
1518 IS_CHAN_A_5MHZ_SPACED(ah->curchan))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001519
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001520 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301521 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001522 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001523 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001524 }
1525 }
1526
1527 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1528 if (saveDefAntenna == 0)
1529 saveDefAntenna = 1;
1530
1531 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1532
Sujith46fe7822009-09-17 09:25:25 +05301533 /* For chips on which RTC reset is done, save TSF before it gets cleared */
1534 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1535 tsf = ath9k_hw_gettsf64(ah);
1536
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001537 saveLedState = REG_READ(ah, AR_CFG_LED) &
1538 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1539 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1540
1541 ath9k_hw_mark_phy_inactive(ah);
1542
Sujith05020d22010-03-17 14:25:23 +05301543 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001544 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1545 REG_WRITE(ah,
1546 AR9271_RESET_POWER_DOWN_CONTROL,
1547 AR9271_RADIO_RF_RST);
1548 udelay(50);
1549 }
1550
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001551 if (!ath9k_hw_chip_reset(ah, chan)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001552 ath_print(common, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001553 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001554 }
1555
Sujith05020d22010-03-17 14:25:23 +05301556 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001557 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1558 ah->htc_reset_init = false;
1559 REG_WRITE(ah,
1560 AR9271_RESET_POWER_DOWN_CONTROL,
1561 AR9271_GATE_MAC_CTL);
1562 udelay(50);
1563 }
1564
Sujith46fe7822009-09-17 09:25:25 +05301565 /* Restore TSF */
1566 if (tsf && AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1567 ath9k_hw_settsf64(ah, tsf);
1568
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301569 if (AR_SREV_9280_10_OR_LATER(ah))
1570 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001571
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001572 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001573 if (r)
1574 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001575
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001576 /* Setup MFP options for CCMP */
1577 if (AR_SREV_9280_20_OR_LATER(ah)) {
1578 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1579 * frames when constructing CCMP AAD. */
1580 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1581 0xc7ff);
1582 ah->sw_mgmt_crypto = false;
1583 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1584 /* Disable hardware crypto for management frames */
1585 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1586 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1587 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1588 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1589 ah->sw_mgmt_crypto = true;
1590 } else
1591 ah->sw_mgmt_crypto = true;
1592
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001593 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1594 ath9k_hw_set_delta_slope(ah, chan);
1595
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001596 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301597 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001598
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001599 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1600 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001601 | macStaId1
1602 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301603 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301604 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301605 | ah->sta_id1_defaults);
1606 ath9k_hw_set_operating_mode(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001607
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001608 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001609
1610 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
1611
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001612 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001613
1614 REG_WRITE(ah, AR_ISR, ~0);
1615
1616 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1617
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001618 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001619 if (r)
1620 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001621
1622 for (i = 0; i < AR_NUM_DCU; i++)
1623 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1624
Sujith2660b812009-02-09 13:27:26 +05301625 ah->intr_txqs = 0;
1626 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001627 ath9k_hw_resettxqueue(ah, i);
1628
Sujith2660b812009-02-09 13:27:26 +05301629 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001630 ath9k_hw_init_qos(ah);
1631
Sujith2660b812009-02-09 13:27:26 +05301632 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301633 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301634
Felix Fietkau0005baf2010-01-15 02:33:40 +01001635 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001636
Vivek Natarajan326bebb2009-08-14 11:33:36 +05301637 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301638 REG_WRITE(ah, AR_D_GBL_IFS_SIFS,
1639 AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR);
1640 REG_WRITE(ah, AR_D_GBL_IFS_SLOT,
1641 AR_D_GBL_IFS_SLOT_ASYNC_FIFO_DUR);
1642 REG_WRITE(ah, AR_D_GBL_IFS_EIFS,
1643 AR_D_GBL_IFS_EIFS_ASYNC_FIFO_DUR);
1644
1645 REG_WRITE(ah, AR_TIME_OUT, AR_TIME_OUT_ACK_CTS_ASYNC_FIFO_DUR);
1646 REG_WRITE(ah, AR_USEC, AR_USEC_ASYNC_FIFO_DUR);
1647
1648 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
1649 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
1650 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
1651 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
1652 }
Vivek Natarajan326bebb2009-08-14 11:33:36 +05301653 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301654 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1655 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
1656 }
1657
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001658 REG_WRITE(ah, AR_STA_ID1,
1659 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
1660
1661 ath9k_hw_set_dma(ah);
1662
1663 REG_WRITE(ah, AR_OBS, 8);
1664
Sujith0ce024c2009-12-14 14:57:00 +05301665 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001666 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1667 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1668 }
1669
1670 ath9k_hw_init_bb(ah, chan);
1671
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001672 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001673 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001674
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001675 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001676 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1677
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001678 /*
1679 * For big endian systems turn on swapping for descriptors
1680 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001681 if (AR_SREV_9100(ah)) {
1682 u32 mask;
1683 mask = REG_READ(ah, AR_CFG);
1684 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001685 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301686 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001687 } else {
1688 mask =
1689 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1690 REG_WRITE(ah, AR_CFG, mask);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001691 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301692 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001693 }
1694 } else {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001695 /* Configure AR9271 target WLAN */
1696 if (AR_SREV_9271(ah))
1697 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001698#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001699 else
1700 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001701#endif
1702 }
1703
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001704 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301705 ath9k_hw_btcoex_enable(ah);
1706
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001707 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001708}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001709EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001710
Sujithf1dc5602008-10-29 10:16:30 +05301711/************************/
1712/* Key Cache Management */
1713/************************/
1714
Sujithcbe61d82009-02-09 13:27:12 +05301715bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001716{
Sujithf1dc5602008-10-29 10:16:30 +05301717 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001718
Sujith2660b812009-02-09 13:27:26 +05301719 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001720 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1721 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001722 return false;
1723 }
1724
Sujithf1dc5602008-10-29 10:16:30 +05301725 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001726
Sujithf1dc5602008-10-29 10:16:30 +05301727 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
1728 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
1729 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
1730 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
1731 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
1732 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
1733 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
1734 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
1735
1736 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1737 u16 micentry = entry + 64;
1738
1739 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
1740 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
1741 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
1742 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
1743
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001744 }
1745
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001746 return true;
1747}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001748EXPORT_SYMBOL(ath9k_hw_keyreset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001749
Sujithcbe61d82009-02-09 13:27:12 +05301750bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001751{
Sujithf1dc5602008-10-29 10:16:30 +05301752 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001753
Sujith2660b812009-02-09 13:27:26 +05301754 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001755 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1756 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001757 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001758 }
1759
Sujithf1dc5602008-10-29 10:16:30 +05301760 if (mac != NULL) {
1761 macHi = (mac[5] << 8) | mac[4];
1762 macLo = (mac[3] << 24) |
1763 (mac[2] << 16) |
1764 (mac[1] << 8) |
1765 mac[0];
1766 macLo >>= 1;
1767 macLo |= (macHi & 1) << 31;
1768 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001769 } else {
Sujithf1dc5602008-10-29 10:16:30 +05301770 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001771 }
Sujithf1dc5602008-10-29 10:16:30 +05301772 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
1773 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001774
1775 return true;
1776}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001777EXPORT_SYMBOL(ath9k_hw_keysetmac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001778
Sujithcbe61d82009-02-09 13:27:12 +05301779bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05301780 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001781 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001782{
Sujith2660b812009-02-09 13:27:26 +05301783 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001784 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301785 u32 key0, key1, key2, key3, key4;
1786 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001787
Sujithf1dc5602008-10-29 10:16:30 +05301788 if (entry >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001789 ath_print(common, ATH_DBG_FATAL,
1790 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05301791 return false;
1792 }
1793
1794 switch (k->kv_type) {
1795 case ATH9K_CIPHER_AES_OCB:
1796 keyType = AR_KEYTABLE_TYPE_AES;
1797 break;
1798 case ATH9K_CIPHER_AES_CCM:
1799 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001800 ath_print(common, ATH_DBG_ANY,
1801 "AES-CCM not supported by mac rev 0x%x\n",
1802 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001803 return false;
1804 }
Sujithf1dc5602008-10-29 10:16:30 +05301805 keyType = AR_KEYTABLE_TYPE_CCM;
1806 break;
1807 case ATH9K_CIPHER_TKIP:
1808 keyType = AR_KEYTABLE_TYPE_TKIP;
1809 if (ATH9K_IS_MIC_ENABLED(ah)
1810 && entry + 64 >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001811 ath_print(common, ATH_DBG_ANY,
1812 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001813 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001814 }
Sujithf1dc5602008-10-29 10:16:30 +05301815 break;
1816 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08001817 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001818 ath_print(common, ATH_DBG_ANY,
1819 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05301820 return false;
1821 }
Zhu Yie31a16d2009-05-21 21:47:03 +08001822 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05301823 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08001824 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301825 keyType = AR_KEYTABLE_TYPE_104;
1826 else
1827 keyType = AR_KEYTABLE_TYPE_128;
1828 break;
1829 case ATH9K_CIPHER_CLR:
1830 keyType = AR_KEYTABLE_TYPE_CLR;
1831 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001832 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001833 ath_print(common, ATH_DBG_FATAL,
1834 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001835 return false;
1836 }
Sujithf1dc5602008-10-29 10:16:30 +05301837
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001838 key0 = get_unaligned_le32(k->kv_val + 0);
1839 key1 = get_unaligned_le16(k->kv_val + 4);
1840 key2 = get_unaligned_le32(k->kv_val + 6);
1841 key3 = get_unaligned_le16(k->kv_val + 10);
1842 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08001843 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301844 key4 &= 0xff;
1845
Jouni Malinen672903b2009-03-02 15:06:31 +02001846 /*
1847 * Note: Key cache registers access special memory area that requires
1848 * two 32-bit writes to actually update the values in the internal
1849 * memory. Consequently, the exact order and pairs used here must be
1850 * maintained.
1851 */
1852
Sujithf1dc5602008-10-29 10:16:30 +05301853 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1854 u16 micentry = entry + 64;
1855
Jouni Malinen672903b2009-03-02 15:06:31 +02001856 /*
1857 * Write inverted key[47:0] first to avoid Michael MIC errors
1858 * on frames that could be sent or received at the same time.
1859 * The correct key will be written in the end once everything
1860 * else is ready.
1861 */
Sujithf1dc5602008-10-29 10:16:30 +05301862 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
1863 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001864
1865 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301866 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1867 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001868
1869 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301870 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1871 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02001872
1873 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301874 (void) ath9k_hw_keysetmac(ah, entry, mac);
1875
Sujith2660b812009-02-09 13:27:26 +05301876 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02001877 /*
1878 * TKIP uses two key cache entries:
1879 * Michael MIC TX/RX keys in the same key cache entry
1880 * (idx = main index + 64):
1881 * key0 [31:0] = RX key [31:0]
1882 * key1 [15:0] = TX key [31:16]
1883 * key1 [31:16] = reserved
1884 * key2 [31:0] = RX key [63:32]
1885 * key3 [15:0] = TX key [15:0]
1886 * key3 [31:16] = reserved
1887 * key4 [31:0] = TX key [63:32]
1888 */
Sujithf1dc5602008-10-29 10:16:30 +05301889 u32 mic0, mic1, mic2, mic3, mic4;
1890
1891 mic0 = get_unaligned_le32(k->kv_mic + 0);
1892 mic2 = get_unaligned_le32(k->kv_mic + 4);
1893 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
1894 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
1895 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001896
1897 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05301898 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1899 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001900
1901 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301902 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1903 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001904
1905 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301906 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
1907 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1908 AR_KEYTABLE_TYPE_CLR);
1909
1910 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001911 /*
1912 * TKIP uses four key cache entries (two for group
1913 * keys):
1914 * Michael MIC TX/RX keys are in different key cache
1915 * entries (idx = main index + 64 for TX and
1916 * main index + 32 + 96 for RX):
1917 * key0 [31:0] = TX/RX MIC key [31:0]
1918 * key1 [31:0] = reserved
1919 * key2 [31:0] = TX/RX MIC key [63:32]
1920 * key3 [31:0] = reserved
1921 * key4 [31:0] = reserved
1922 *
1923 * Upper layer code will call this function separately
1924 * for TX and RX keys when these registers offsets are
1925 * used.
1926 */
Sujithf1dc5602008-10-29 10:16:30 +05301927 u32 mic0, mic2;
1928
1929 mic0 = get_unaligned_le32(k->kv_mic + 0);
1930 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001931
1932 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301933 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1934 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001935
1936 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05301937 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1938 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001939
1940 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301941 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
1942 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1943 AR_KEYTABLE_TYPE_CLR);
1944 }
Jouni Malinen672903b2009-03-02 15:06:31 +02001945
1946 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05301947 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
1948 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001949
1950 /*
1951 * Write the correct (un-inverted) key[47:0] last to enable
1952 * TKIP now that all other registers are set with correct
1953 * values.
1954 */
Sujithf1dc5602008-10-29 10:16:30 +05301955 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1956 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
1957 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001958 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301959 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1960 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001961
1962 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301963 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1964 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001965
1966 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301967 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1968 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
1969
Jouni Malinen672903b2009-03-02 15:06:31 +02001970 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301971 (void) ath9k_hw_keysetmac(ah, entry, mac);
1972 }
1973
Sujithf1dc5602008-10-29 10:16:30 +05301974 return true;
1975}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001976EXPORT_SYMBOL(ath9k_hw_set_keycache_entry);
Sujithf1dc5602008-10-29 10:16:30 +05301977
Sujithcbe61d82009-02-09 13:27:12 +05301978bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05301979{
Sujith2660b812009-02-09 13:27:26 +05301980 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05301981 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
1982 if (val & AR_KEYTABLE_VALID)
1983 return true;
1984 }
1985 return false;
1986}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001987EXPORT_SYMBOL(ath9k_hw_keyisvalid);
Sujithf1dc5602008-10-29 10:16:30 +05301988
1989/******************************/
1990/* Power Management (Chipset) */
1991/******************************/
1992
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001993/*
1994 * Notify Power Mgt is disabled in self-generated frames.
1995 * If requested, force chip to sleep.
1996 */
Sujithcbe61d82009-02-09 13:27:12 +05301997static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301998{
1999 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2000 if (setChip) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04002001 /*
2002 * Clear the RTC force wake bit to allow the
2003 * mac to go to sleep.
2004 */
Sujithf1dc5602008-10-29 10:16:30 +05302005 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2006 AR_RTC_FORCE_WAKE_EN);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04002007 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302008 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
2009
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04002010 /* Shutdown chip. Active low */
Sujith14b3af32010-03-17 14:25:18 +05302011 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05302012 REG_CLR_BIT(ah, (AR_RTC_RESET),
2013 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05302014 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002015}
2016
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04002017/*
2018 * Notify Power Management is enabled in self-generating
2019 * frames. If request, set power mode of chip to
2020 * auto/normal. Duration in units of 128us (1/8 TU).
2021 */
Sujithcbe61d82009-02-09 13:27:12 +05302022static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002023{
Sujithf1dc5602008-10-29 10:16:30 +05302024 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2025 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05302026 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002027
Sujithf1dc5602008-10-29 10:16:30 +05302028 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04002029 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05302030 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2031 AR_RTC_FORCE_WAKE_ON_INT);
2032 } else {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04002033 /*
2034 * Clear the RTC force wake bit to allow the
2035 * mac to go to sleep.
2036 */
Sujithf1dc5602008-10-29 10:16:30 +05302037 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2038 AR_RTC_FORCE_WAKE_EN);
2039 }
2040 }
2041}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002042
Sujithcbe61d82009-02-09 13:27:12 +05302043static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302044{
2045 u32 val;
2046 int i;
2047
2048 if (setChip) {
2049 if ((REG_READ(ah, AR_RTC_STATUS) &
2050 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
2051 if (ath9k_hw_set_reset_reg(ah,
2052 ATH9K_RESET_POWER_ON) != true) {
2053 return false;
2054 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04002055 if (!AR_SREV_9300_20_OR_LATER(ah))
2056 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05302057 }
2058 if (AR_SREV_9100(ah))
2059 REG_SET_BIT(ah, AR_RTC_RESET,
2060 AR_RTC_RESET_EN);
2061
2062 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2063 AR_RTC_FORCE_WAKE_EN);
2064 udelay(50);
2065
2066 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2067 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2068 if (val == AR_RTC_STATUS_ON)
2069 break;
2070 udelay(50);
2071 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2072 AR_RTC_FORCE_WAKE_EN);
2073 }
2074 if (i == 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002075 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2076 "Failed to wakeup in %uus\n",
2077 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05302078 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002079 }
2080 }
2081
Sujithf1dc5602008-10-29 10:16:30 +05302082 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2083
2084 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002085}
2086
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002087bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302088{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002089 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05302090 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05302091 static const char *modes[] = {
2092 "AWAKE",
2093 "FULL-SLEEP",
2094 "NETWORK SLEEP",
2095 "UNDEFINED"
2096 };
Sujithf1dc5602008-10-29 10:16:30 +05302097
Gabor Juhoscbdec972009-07-24 17:27:22 +02002098 if (ah->power_mode == mode)
2099 return status;
2100
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002101 ath_print(common, ATH_DBG_RESET, "%s -> %s\n",
2102 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05302103
2104 switch (mode) {
2105 case ATH9K_PM_AWAKE:
2106 status = ath9k_hw_set_power_awake(ah, setChip);
2107 break;
2108 case ATH9K_PM_FULL_SLEEP:
2109 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05302110 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302111 break;
2112 case ATH9K_PM_NETWORK_SLEEP:
2113 ath9k_set_power_network_sleep(ah, setChip);
2114 break;
2115 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002116 ath_print(common, ATH_DBG_FATAL,
2117 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302118 return false;
2119 }
Sujith2660b812009-02-09 13:27:26 +05302120 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302121
2122 return status;
2123}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002124EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05302125
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002126/*
2127 * Helper for ASPM support.
2128 *
2129 * Disable PLL when in L0s as well as receiver clock when in L1.
2130 * This power saving option must be enabled through the SerDes.
2131 *
2132 * Programming the SerDes must go through the same 288 bit serial shift
2133 * register as the other analog registers. Hence the 9 writes.
2134 */
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04002135static void ar9002_hw_configpcipowersave(struct ath_hw *ah,
2136 int restore,
2137 int power_off)
Sujithf1dc5602008-10-29 10:16:30 +05302138{
Sujithf1dc5602008-10-29 10:16:30 +05302139 u8 i;
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302140 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05302141
Sujith2660b812009-02-09 13:27:26 +05302142 if (ah->is_pciexpress != true)
Sujithf1dc5602008-10-29 10:16:30 +05302143 return;
2144
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002145 /* Do not touch SerDes registers */
Sujith2660b812009-02-09 13:27:26 +05302146 if (ah->config.pcie_powersave_enable == 2)
Sujithf1dc5602008-10-29 10:16:30 +05302147 return;
2148
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002149 /* Nothing to do on restore for 11N */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302150 if (!restore) {
2151 if (AR_SREV_9280_20_OR_LATER(ah)) {
2152 /*
2153 * AR9280 2.0 or later chips use SerDes values from the
2154 * initvals.h initialized depending on chipset during
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04002155 * __ath9k_hw_init()
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302156 */
2157 for (i = 0; i < ah->iniPcieSerdes.ia_rows; i++) {
2158 REG_WRITE(ah, INI_RA(&ah->iniPcieSerdes, i, 0),
2159 INI_RA(&ah->iniPcieSerdes, i, 1));
2160 }
2161 } else if (AR_SREV_9280(ah) &&
2162 (ah->hw_version.macRev == AR_SREV_REVISION_9280_10)) {
2163 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
2164 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
Sujithf1dc5602008-10-29 10:16:30 +05302165
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302166 /* RX shut off when elecidle is asserted */
2167 REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
2168 REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
2169 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
2170
2171 /* Shut off CLKREQ active in L1 */
2172 if (ah->config.pcie_clock_req)
2173 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
2174 else
2175 REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
2176
2177 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2178 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2179 REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
2180
2181 /* Load the new settings */
2182 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
2183
2184 } else {
2185 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
2186 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
2187
2188 /* RX shut off when elecidle is asserted */
2189 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
2190 REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
2191 REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
2192
2193 /*
2194 * Ignore ah->ah_config.pcie_clock_req setting for
2195 * pre-AR9280 11n
2196 */
2197 REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
2198
2199 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
2200 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
2201 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
2202
2203 /* Load the new settings */
2204 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
Sujithf1dc5602008-10-29 10:16:30 +05302205 }
Sujithf1dc5602008-10-29 10:16:30 +05302206
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302207 udelay(1000);
Sujithf1dc5602008-10-29 10:16:30 +05302208
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302209 /* set bit 19 to allow forcing of pcie core into L1 state */
2210 REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
Sujithf1dc5602008-10-29 10:16:30 +05302211
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302212 /* Several PCIe massages to ensure proper behaviour */
2213 if (ah->config.pcie_waen) {
2214 val = ah->config.pcie_waen;
2215 if (!power_off)
2216 val &= (~AR_WA_D3_L1_DISABLE);
2217 } else {
2218 if (AR_SREV_9285(ah) || AR_SREV_9271(ah) ||
2219 AR_SREV_9287(ah)) {
2220 val = AR9285_WA_DEFAULT;
2221 if (!power_off)
2222 val &= (~AR_WA_D3_L1_DISABLE);
2223 } else if (AR_SREV_9280(ah)) {
2224 /*
2225 * On AR9280 chips bit 22 of 0x4004 needs to be
2226 * set otherwise card may disappear.
2227 */
2228 val = AR9280_WA_DEFAULT;
2229 if (!power_off)
2230 val &= (~AR_WA_D3_L1_DISABLE);
2231 } else
2232 val = AR_WA_DEFAULT;
2233 }
Sujithf1dc5602008-10-29 10:16:30 +05302234
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302235 REG_WRITE(ah, AR_WA, val);
Sujithf1dc5602008-10-29 10:16:30 +05302236 }
2237
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302238 if (power_off) {
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002239 /*
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302240 * Set PCIe workaround bits
2241 * bit 14 in WA register (disable L1) should only
2242 * be set when device enters D3 and be cleared
2243 * when device comes back to D0.
Luis R. Rodriguez24c1a282009-02-10 15:35:22 -08002244 */
Vivek Natarajan93b1b372009-09-17 09:24:58 +05302245 if (ah->config.pcie_waen) {
2246 if (ah->config.pcie_waen & AR_WA_D3_L1_DISABLE)
2247 REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE);
2248 } else {
2249 if (((AR_SREV_9285(ah) || AR_SREV_9271(ah) ||
2250 AR_SREV_9287(ah)) &&
2251 (AR9285_WA_DEFAULT & AR_WA_D3_L1_DISABLE)) ||
2252 (AR_SREV_9280(ah) &&
2253 (AR9280_WA_DEFAULT & AR_WA_D3_L1_DISABLE))) {
2254 REG_SET_BIT(ah, AR_WA, AR_WA_D3_L1_DISABLE);
2255 }
2256 }
Sujithf1dc5602008-10-29 10:16:30 +05302257 }
2258}
2259
2260/**********************/
2261/* Interrupt Handling */
2262/**********************/
2263
Sujithcbe61d82009-02-09 13:27:12 +05302264bool ath9k_hw_intrpend(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002265{
2266 u32 host_isr;
2267
2268 if (AR_SREV_9100(ah))
2269 return true;
2270
2271 host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
2272 if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
2273 return true;
2274
2275 host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
2276 if ((host_isr & AR_INTR_SYNC_DEFAULT)
2277 && (host_isr != AR_INTR_SPURIOUS))
2278 return true;
2279
2280 return false;
2281}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002282EXPORT_SYMBOL(ath9k_hw_intrpend);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002283
Sujithcbe61d82009-02-09 13:27:12 +05302284bool ath9k_hw_getisr(struct ath_hw *ah, enum ath9k_int *masked)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002285{
2286 u32 isr = 0;
2287 u32 mask2 = 0;
Sujith2660b812009-02-09 13:27:26 +05302288 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002289 u32 sync_cause = 0;
2290 bool fatal_int = false;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002291 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002292
2293 if (!AR_SREV_9100(ah)) {
2294 if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
2295 if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
2296 == AR_RTC_STATUS_ON) {
2297 isr = REG_READ(ah, AR_ISR);
2298 }
2299 }
2300
Sujithf1dc5602008-10-29 10:16:30 +05302301 sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
2302 AR_INTR_SYNC_DEFAULT;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002303
2304 *masked = 0;
2305
2306 if (!isr && !sync_cause)
2307 return false;
2308 } else {
2309 *masked = 0;
2310 isr = REG_READ(ah, AR_ISR);
2311 }
2312
2313 if (isr) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002314 if (isr & AR_ISR_BCNMISC) {
2315 u32 isr2;
2316 isr2 = REG_READ(ah, AR_ISR_S2);
2317 if (isr2 & AR_ISR_S2_TIM)
2318 mask2 |= ATH9K_INT_TIM;
2319 if (isr2 & AR_ISR_S2_DTIM)
2320 mask2 |= ATH9K_INT_DTIM;
2321 if (isr2 & AR_ISR_S2_DTIMSYNC)
2322 mask2 |= ATH9K_INT_DTIMSYNC;
2323 if (isr2 & (AR_ISR_S2_CABEND))
2324 mask2 |= ATH9K_INT_CABEND;
2325 if (isr2 & AR_ISR_S2_GTT)
2326 mask2 |= ATH9K_INT_GTT;
2327 if (isr2 & AR_ISR_S2_CST)
2328 mask2 |= ATH9K_INT_CST;
Sujith4af9cf42009-02-12 10:06:47 +05302329 if (isr2 & AR_ISR_S2_TSFOOR)
2330 mask2 |= ATH9K_INT_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002331 }
2332
2333 isr = REG_READ(ah, AR_ISR_RAC);
2334 if (isr == 0xffffffff) {
2335 *masked = 0;
2336 return false;
2337 }
2338
2339 *masked = isr & ATH9K_INT_COMMON;
2340
Sujith0ce024c2009-12-14 14:57:00 +05302341 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002342 if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
2343 *masked |= ATH9K_INT_RX;
2344 }
2345
2346 if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
2347 *masked |= ATH9K_INT_RX;
2348 if (isr &
2349 (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
2350 AR_ISR_TXEOL)) {
2351 u32 s0_s, s1_s;
2352
2353 *masked |= ATH9K_INT_TX;
2354
2355 s0_s = REG_READ(ah, AR_ISR_S0_S);
Sujith2660b812009-02-09 13:27:26 +05302356 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
2357 ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002358
2359 s1_s = REG_READ(ah, AR_ISR_S1_S);
Sujith2660b812009-02-09 13:27:26 +05302360 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
2361 ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002362 }
2363
2364 if (isr & AR_ISR_RXORN) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002365 ath_print(common, ATH_DBG_INTERRUPT,
2366 "receive FIFO overrun interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002367 }
2368
2369 if (!AR_SREV_9100(ah)) {
Sujith60b67f52008-08-07 10:52:38 +05302370 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002371 u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
2372 if (isr5 & AR_ISR_S5_TIM_TIMER)
2373 *masked |= ATH9K_INT_TIM_TIMER;
2374 }
2375 }
2376
2377 *masked |= mask2;
2378 }
Sujithf1dc5602008-10-29 10:16:30 +05302379
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002380 if (AR_SREV_9100(ah))
2381 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302382
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302383 if (isr & AR_ISR_GENTMR) {
2384 u32 s5_s;
2385
2386 s5_s = REG_READ(ah, AR_ISR_S5_S);
2387 if (isr & AR_ISR_GENTMR) {
2388 ah->intr_gen_timer_trigger =
2389 MS(s5_s, AR_ISR_S5_GENTIMER_TRIG);
2390
2391 ah->intr_gen_timer_thresh =
2392 MS(s5_s, AR_ISR_S5_GENTIMER_THRESH);
2393
2394 if (ah->intr_gen_timer_trigger)
2395 *masked |= ATH9K_INT_GENTIMER;
2396
2397 }
2398 }
2399
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002400 if (sync_cause) {
2401 fatal_int =
2402 (sync_cause &
2403 (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
2404 ? true : false;
2405
2406 if (fatal_int) {
2407 if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002408 ath_print(common, ATH_DBG_ANY,
2409 "received PCI FATAL interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002410 }
2411 if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002412 ath_print(common, ATH_DBG_ANY,
2413 "received PCI PERR interrupt\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002414 }
Steven Luoa89bff92009-04-12 02:57:54 -07002415 *masked |= ATH9K_INT_FATAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002416 }
2417 if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002418 ath_print(common, ATH_DBG_INTERRUPT,
2419 "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002420 REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
2421 REG_WRITE(ah, AR_RC, 0);
2422 *masked |= ATH9K_INT_FATAL;
2423 }
2424 if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002425 ath_print(common, ATH_DBG_INTERRUPT,
2426 "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002427 }
2428
2429 REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
2430 (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
2431 }
Sujithf1dc5602008-10-29 10:16:30 +05302432
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002433 return true;
2434}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002435EXPORT_SYMBOL(ath9k_hw_getisr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002436
Sujithcbe61d82009-02-09 13:27:12 +05302437enum ath9k_int ath9k_hw_set_interrupts(struct ath_hw *ah, enum ath9k_int ints)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002438{
Pavel Roskin152d5302010-03-31 18:05:37 -04002439 enum ath9k_int omask = ah->imask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002440 u32 mask, mask2;
Sujith2660b812009-02-09 13:27:26 +05302441 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002442 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002443
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002444 ath_print(common, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002445
2446 if (omask & ATH9K_INT_GLOBAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002447 ath_print(common, ATH_DBG_INTERRUPT, "disable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002448 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
2449 (void) REG_READ(ah, AR_IER);
2450 if (!AR_SREV_9100(ah)) {
2451 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
2452 (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
2453
2454 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
2455 (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
2456 }
2457 }
2458
2459 mask = ints & ATH9K_INT_COMMON;
2460 mask2 = 0;
2461
2462 if (ints & ATH9K_INT_TX) {
Sujith2660b812009-02-09 13:27:26 +05302463 if (ah->txok_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002464 mask |= AR_IMR_TXOK;
Sujith2660b812009-02-09 13:27:26 +05302465 if (ah->txdesc_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002466 mask |= AR_IMR_TXDESC;
Sujith2660b812009-02-09 13:27:26 +05302467 if (ah->txerr_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002468 mask |= AR_IMR_TXERR;
Sujith2660b812009-02-09 13:27:26 +05302469 if (ah->txeol_interrupt_mask)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002470 mask |= AR_IMR_TXEOL;
2471 }
2472 if (ints & ATH9K_INT_RX) {
2473 mask |= AR_IMR_RXERR;
Sujith0ce024c2009-12-14 14:57:00 +05302474 if (ah->config.rx_intr_mitigation)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002475 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
2476 else
2477 mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
Sujith60b67f52008-08-07 10:52:38 +05302478 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002479 mask |= AR_IMR_GENTMR;
2480 }
2481
2482 if (ints & (ATH9K_INT_BMISC)) {
2483 mask |= AR_IMR_BCNMISC;
2484 if (ints & ATH9K_INT_TIM)
2485 mask2 |= AR_IMR_S2_TIM;
2486 if (ints & ATH9K_INT_DTIM)
2487 mask2 |= AR_IMR_S2_DTIM;
2488 if (ints & ATH9K_INT_DTIMSYNC)
2489 mask2 |= AR_IMR_S2_DTIMSYNC;
2490 if (ints & ATH9K_INT_CABEND)
Sujith4af9cf42009-02-12 10:06:47 +05302491 mask2 |= AR_IMR_S2_CABEND;
2492 if (ints & ATH9K_INT_TSFOOR)
2493 mask2 |= AR_IMR_S2_TSFOOR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002494 }
2495
2496 if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
2497 mask |= AR_IMR_BCNMISC;
2498 if (ints & ATH9K_INT_GTT)
2499 mask2 |= AR_IMR_S2_GTT;
2500 if (ints & ATH9K_INT_CST)
2501 mask2 |= AR_IMR_S2_CST;
2502 }
2503
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002504 ath_print(common, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002505 REG_WRITE(ah, AR_IMR, mask);
Pavel Roskin74bad5c2010-02-23 18:15:27 -05002506 ah->imrs2_reg &= ~(AR_IMR_S2_TIM | AR_IMR_S2_DTIM | AR_IMR_S2_DTIMSYNC |
2507 AR_IMR_S2_CABEND | AR_IMR_S2_CABTO |
2508 AR_IMR_S2_TSFOOR | AR_IMR_S2_GTT | AR_IMR_S2_CST);
2509 ah->imrs2_reg |= mask2;
2510 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002511
Sujith60b67f52008-08-07 10:52:38 +05302512 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002513 if (ints & ATH9K_INT_TIM_TIMER)
2514 REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
2515 else
2516 REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
2517 }
2518
2519 if (ints & ATH9K_INT_GLOBAL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002520 ath_print(common, ATH_DBG_INTERRUPT, "enable IER\n");
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002521 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
2522 if (!AR_SREV_9100(ah)) {
2523 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
2524 AR_INTR_MAC_IRQ);
2525 REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
2526
2527
2528 REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
2529 AR_INTR_SYNC_DEFAULT);
2530 REG_WRITE(ah, AR_INTR_SYNC_MASK,
2531 AR_INTR_SYNC_DEFAULT);
2532 }
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002533 ath_print(common, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
2534 REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002535 }
2536
2537 return omask;
2538}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002539EXPORT_SYMBOL(ath9k_hw_set_interrupts);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002540
Sujithf1dc5602008-10-29 10:16:30 +05302541/*******************/
2542/* Beacon Handling */
2543/*******************/
2544
Sujithcbe61d82009-02-09 13:27:12 +05302545void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002546{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002547 int flags = 0;
2548
Sujith2660b812009-02-09 13:27:26 +05302549 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002550
Sujith2660b812009-02-09 13:27:26 +05302551 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08002552 case NL80211_IFTYPE_STATION:
2553 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002554 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
2555 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
2556 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
2557 flags |= AR_TBTT_TIMER_EN;
2558 break;
Colin McCabed97809d2008-12-01 13:38:55 -08002559 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04002560 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002561 REG_SET_BIT(ah, AR_TXCFG,
2562 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
2563 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
2564 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05302565 (ah->atim_window ? ah->
2566 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002567 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08002568 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002569 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
2570 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
2571 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05302572 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302573 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002574 REG_WRITE(ah, AR_NEXT_SWBA,
2575 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05302576 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05302577 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002578 flags |=
2579 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
2580 break;
Colin McCabed97809d2008-12-01 13:38:55 -08002581 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002582 ath_print(ath9k_hw_common(ah), ATH_DBG_BEACON,
2583 "%s: unsupported opmode: %d\n",
2584 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08002585 return;
2586 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002587 }
2588
2589 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
2590 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
2591 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
2592 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
2593
2594 beacon_period &= ~ATH9K_BEACON_ENA;
2595 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002596 ath9k_hw_reset_tsf(ah);
2597 }
2598
2599 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
2600}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002601EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002602
Sujithcbe61d82009-02-09 13:27:12 +05302603void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302604 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002605{
2606 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05302607 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002608 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002609
2610 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
2611
2612 REG_WRITE(ah, AR_BEACON_PERIOD,
2613 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
2614 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
2615 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
2616
2617 REG_RMW_FIELD(ah, AR_RSSI_THR,
2618 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
2619
2620 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
2621
2622 if (bs->bs_sleepduration > beaconintval)
2623 beaconintval = bs->bs_sleepduration;
2624
2625 dtimperiod = bs->bs_dtimperiod;
2626 if (bs->bs_sleepduration > dtimperiod)
2627 dtimperiod = bs->bs_sleepduration;
2628
2629 if (beaconintval == dtimperiod)
2630 nextTbtt = bs->bs_nextdtim;
2631 else
2632 nextTbtt = bs->bs_nexttbtt;
2633
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002634 ath_print(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
2635 ath_print(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
2636 ath_print(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
2637 ath_print(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002638
2639 REG_WRITE(ah, AR_NEXT_DTIM,
2640 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
2641 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
2642
2643 REG_WRITE(ah, AR_SLEEP1,
2644 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
2645 | AR_SLEEP1_ASSUME_DTIM);
2646
Sujith60b67f52008-08-07 10:52:38 +05302647 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002648 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
2649 else
2650 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
2651
2652 REG_WRITE(ah, AR_SLEEP2,
2653 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
2654
2655 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
2656 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
2657
2658 REG_SET_BIT(ah, AR_TIMER_MODE,
2659 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
2660 AR_DTIM_TIMER_EN);
2661
Sujith4af9cf42009-02-12 10:06:47 +05302662 /* TSF Out of Range Threshold */
2663 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002664}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002665EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002666
Sujithf1dc5602008-10-29 10:16:30 +05302667/*******************/
2668/* HW Capabilities */
2669/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002670
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002671int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002672{
Sujith2660b812009-02-09 13:27:26 +05302673 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002674 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002675 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002676 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002677
Sujithf1dc5602008-10-29 10:16:30 +05302678 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002679
Sujithf74df6f2009-02-09 13:27:24 +05302680 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002681 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302682
Sujithf74df6f2009-02-09 13:27:24 +05302683 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05302684 if (AR_SREV_9285_10_OR_LATER(ah))
2685 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002686 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302687
Sujithf74df6f2009-02-09 13:27:24 +05302688 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05302689
Sujith2660b812009-02-09 13:27:26 +05302690 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05302691 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002692 if (regulatory->current_rd == 0x64 ||
2693 regulatory->current_rd == 0x65)
2694 regulatory->current_rd += 5;
2695 else if (regulatory->current_rd == 0x41)
2696 regulatory->current_rd = 0x43;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002697 ath_print(common, ATH_DBG_REGULATORY,
2698 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002699 }
Sujithdc2222a2008-08-14 13:26:55 +05302700
Sujithf74df6f2009-02-09 13:27:24 +05302701 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002702 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
2703 ath_print(common, ATH_DBG_FATAL,
2704 "no band has been marked as supported in EEPROM.\n");
2705 return -EINVAL;
2706 }
2707
Sujithf1dc5602008-10-29 10:16:30 +05302708 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002709
Sujithf1dc5602008-10-29 10:16:30 +05302710 if (eeval & AR5416_OPFLAGS_11A) {
2711 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05302712 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05302713 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
2714 set_bit(ATH9K_MODE_11NA_HT20,
2715 pCap->wireless_modes);
2716 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
2717 set_bit(ATH9K_MODE_11NA_HT40PLUS,
2718 pCap->wireless_modes);
2719 set_bit(ATH9K_MODE_11NA_HT40MINUS,
2720 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002721 }
2722 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002723 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002724
Sujithf1dc5602008-10-29 10:16:30 +05302725 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05302726 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05302727 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05302728 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
2729 set_bit(ATH9K_MODE_11NG_HT20,
2730 pCap->wireless_modes);
2731 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
2732 set_bit(ATH9K_MODE_11NG_HT40PLUS,
2733 pCap->wireless_modes);
2734 set_bit(ATH9K_MODE_11NG_HT40MINUS,
2735 pCap->wireless_modes);
2736 }
2737 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002738 }
Sujithf1dc5602008-10-29 10:16:30 +05302739
Sujithf74df6f2009-02-09 13:27:24 +05302740 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002741 /*
2742 * For AR9271 we will temporarilly uses the rx chainmax as read from
2743 * the EEPROM.
2744 */
Sujith8147f5d2009-02-20 15:13:23 +05302745 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002746 !(eeval & AR5416_OPFLAGS_11A) &&
2747 !(AR_SREV_9271(ah)))
2748 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05302749 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
2750 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002751 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05302752 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05302753
Sujithd535a422009-02-09 13:27:06 +05302754 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05302755 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05302756
2757 pCap->low_2ghz_chan = 2312;
2758 pCap->high_2ghz_chan = 2732;
2759
2760 pCap->low_5ghz_chan = 4920;
2761 pCap->high_5ghz_chan = 6100;
2762
2763 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
2764 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
2765 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
2766
2767 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
2768 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
2769 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
2770
Sujith2660b812009-02-09 13:27:26 +05302771 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05302772 pCap->hw_caps |= ATH9K_HW_CAP_HT;
2773 else
2774 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
2775
2776 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
2777 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
2778 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
2779 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
2780
2781 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
2782 pCap->total_queues =
2783 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
2784 else
2785 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
2786
2787 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
2788 pCap->keycache_size =
2789 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
2790 else
2791 pCap->keycache_size = AR_KEYTABLE_SIZE;
2792
2793 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -05002794
2795 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
2796 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
2797 else
2798 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
Sujithf1dc5602008-10-29 10:16:30 +05302799
Sujith5b5fa352010-03-17 14:25:15 +05302800 if (AR_SREV_9271(ah))
2801 pCap->num_gpio_pins = AR9271_NUM_GPIO;
2802 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302803 pCap->num_gpio_pins = AR9285_NUM_GPIO;
2804 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302805 pCap->num_gpio_pins = AR928X_NUM_GPIO;
2806 else
2807 pCap->num_gpio_pins = AR_NUM_GPIO;
2808
Sujithf1dc5602008-10-29 10:16:30 +05302809 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
2810 pCap->hw_caps |= ATH9K_HW_CAP_CST;
2811 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
2812 } else {
2813 pCap->rts_aggr_limit = (8 * 1024);
2814 }
2815
2816 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
2817
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302818#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05302819 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
2820 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
2821 ah->rfkill_gpio =
2822 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
2823 ah->rfkill_polarity =
2824 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05302825
2826 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
2827 }
2828#endif
Vivek Natarajanbde748a2010-04-05 14:48:05 +05302829 if (AR_SREV_9271(ah))
2830 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
2831 else
2832 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05302833
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302834 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302835 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
2836 else
2837 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
2838
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002839 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05302840 pCap->reg_cap =
2841 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2842 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
2843 AR_EEPROM_EEREGCAP_EN_KK_U2 |
2844 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
2845 } else {
2846 pCap->reg_cap =
2847 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2848 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
2849 }
2850
Senthil Balasubramanianebb90cf2009-09-18 15:07:33 +05302851 /* Advertise midband for AR5416 with FCC midband set in eeprom */
2852 if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
2853 AR_SREV_5416(ah))
2854 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
Sujithf1dc5602008-10-29 10:16:30 +05302855
2856 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302857 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302858 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302859 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302860
Vasanthakumar Thiagarajanfe129462009-09-09 15:25:50 +05302861 if (AR_SREV_9280_10_OR_LATER(ah) &&
Luis R. Rodrigueza36cfbc2009-09-09 16:05:32 -07002862 ath9k_hw_btcoex_supported(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002863 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
2864 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302865
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302866 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002867 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
2868 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302869 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002870 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302871 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302872 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002873 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05302874 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002875
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002876 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002877 pCap->hw_caps |= ATH9K_HW_CAP_EDMA;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002878 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
2879 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
2880 pCap->rx_status_len = sizeof(struct ar9003_rxs);
2881 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002882
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002883 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002884}
2885
Sujithcbe61d82009-02-09 13:27:12 +05302886bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05302887 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002888{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002889 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302890 switch (type) {
2891 case ATH9K_CAP_CIPHER:
2892 switch (capability) {
2893 case ATH9K_CIPHER_AES_CCM:
2894 case ATH9K_CIPHER_AES_OCB:
2895 case ATH9K_CIPHER_TKIP:
2896 case ATH9K_CIPHER_WEP:
2897 case ATH9K_CIPHER_MIC:
2898 case ATH9K_CIPHER_CLR:
2899 return true;
2900 default:
2901 return false;
2902 }
2903 case ATH9K_CAP_TKIP_MIC:
2904 switch (capability) {
2905 case 0:
2906 return true;
2907 case 1:
Sujith2660b812009-02-09 13:27:26 +05302908 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05302909 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
2910 false;
2911 }
2912 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05302913 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05302914 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05302915 case ATH9K_CAP_MCAST_KEYSRCH:
2916 switch (capability) {
2917 case 0:
2918 return true;
2919 case 1:
2920 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
2921 return false;
2922 } else {
Sujith2660b812009-02-09 13:27:26 +05302923 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05302924 AR_STA_ID1_MCAST_KSRCH) ? true :
2925 false;
2926 }
2927 }
2928 return false;
Sujithf1dc5602008-10-29 10:16:30 +05302929 case ATH9K_CAP_TXPOW:
2930 switch (capability) {
2931 case 0:
2932 return 0;
2933 case 1:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002934 *result = regulatory->power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05302935 return 0;
2936 case 2:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002937 *result = regulatory->max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05302938 return 0;
2939 case 3:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002940 *result = regulatory->tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05302941 return 0;
2942 }
2943 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05302944 case ATH9K_CAP_DS:
2945 return (AR_SREV_9280_20_OR_LATER(ah) &&
2946 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
2947 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05302948 default:
2949 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002950 }
Sujithf1dc5602008-10-29 10:16:30 +05302951}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002952EXPORT_SYMBOL(ath9k_hw_getcapability);
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002953
Sujithcbe61d82009-02-09 13:27:12 +05302954bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05302955 u32 capability, u32 setting, int *status)
2956{
Sujithf1dc5602008-10-29 10:16:30 +05302957 switch (type) {
2958 case ATH9K_CAP_TKIP_MIC:
2959 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302960 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05302961 AR_STA_ID1_CRPT_MIC_ENABLE;
2962 else
Sujith2660b812009-02-09 13:27:26 +05302963 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05302964 ~AR_STA_ID1_CRPT_MIC_ENABLE;
2965 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302966 case ATH9K_CAP_MCAST_KEYSRCH:
2967 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302968 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05302969 else
Sujith2660b812009-02-09 13:27:26 +05302970 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05302971 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302972 default:
2973 return false;
2974 }
2975}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002976EXPORT_SYMBOL(ath9k_hw_setcapability);
Sujithf1dc5602008-10-29 10:16:30 +05302977
2978/****************************/
2979/* GPIO / RFKILL / Antennae */
2980/****************************/
2981
Sujithcbe61d82009-02-09 13:27:12 +05302982static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302983 u32 gpio, u32 type)
2984{
2985 int addr;
2986 u32 gpio_shift, tmp;
2987
2988 if (gpio > 11)
2989 addr = AR_GPIO_OUTPUT_MUX3;
2990 else if (gpio > 5)
2991 addr = AR_GPIO_OUTPUT_MUX2;
2992 else
2993 addr = AR_GPIO_OUTPUT_MUX1;
2994
2995 gpio_shift = (gpio % 6) * 5;
2996
2997 if (AR_SREV_9280_20_OR_LATER(ah)
2998 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2999 REG_RMW(ah, addr, (type << gpio_shift),
3000 (0x1f << gpio_shift));
3001 } else {
3002 tmp = REG_READ(ah, addr);
3003 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
3004 tmp &= ~(0x1f << gpio_shift);
3005 tmp |= (type << gpio_shift);
3006 REG_WRITE(ah, addr, tmp);
3007 }
3008}
3009
Sujithcbe61d82009-02-09 13:27:12 +05303010void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303011{
3012 u32 gpio_shift;
3013
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07003014 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05303015
3016 gpio_shift = gpio << 1;
3017
3018 REG_RMW(ah,
3019 AR_GPIO_OE_OUT,
3020 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
3021 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3022}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003023EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05303024
Sujithcbe61d82009-02-09 13:27:12 +05303025u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05303026{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303027#define MS_REG_READ(x, y) \
3028 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
3029
Sujith2660b812009-02-09 13:27:26 +05303030 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05303031 return 0xffffffff;
3032
Felix Fietkau783dfca2010-04-15 17:38:11 -04003033 if (AR_SREV_9300_20_OR_LATER(ah))
3034 return MS_REG_READ(AR9300, gpio) != 0;
3035 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05303036 return MS_REG_READ(AR9271, gpio) != 0;
3037 else if (AR_SREV_9287_10_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05303038 return MS_REG_READ(AR9287, gpio) != 0;
3039 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05303040 return MS_REG_READ(AR9285, gpio) != 0;
3041 else if (AR_SREV_9280_10_OR_LATER(ah))
3042 return MS_REG_READ(AR928X, gpio) != 0;
3043 else
3044 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05303045}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003046EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05303047
Sujithcbe61d82009-02-09 13:27:12 +05303048void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05303049 u32 ah_signal_type)
3050{
3051 u32 gpio_shift;
3052
3053 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
3054
3055 gpio_shift = 2 * gpio;
3056
3057 REG_RMW(ah,
3058 AR_GPIO_OE_OUT,
3059 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
3060 (AR_GPIO_OE_OUT_DRV << gpio_shift));
3061}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003062EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05303063
Sujithcbe61d82009-02-09 13:27:12 +05303064void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05303065{
Sujith5b5fa352010-03-17 14:25:15 +05303066 if (AR_SREV_9271(ah))
3067 val = ~val;
3068
Sujithf1dc5602008-10-29 10:16:30 +05303069 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
3070 AR_GPIO_BIT(gpio));
3071}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003072EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05303073
Sujithcbe61d82009-02-09 13:27:12 +05303074u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303075{
3076 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
3077}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003078EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05303079
Sujithcbe61d82009-02-09 13:27:12 +05303080void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05303081{
3082 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
3083}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003084EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05303085
Sujithf1dc5602008-10-29 10:16:30 +05303086/*********************/
3087/* General Operation */
3088/*********************/
3089
Sujithcbe61d82009-02-09 13:27:12 +05303090u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303091{
3092 u32 bits = REG_READ(ah, AR_RX_FILTER);
3093 u32 phybits = REG_READ(ah, AR_PHY_ERR);
3094
3095 if (phybits & AR_PHY_ERR_RADAR)
3096 bits |= ATH9K_RX_FILTER_PHYRADAR;
3097 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
3098 bits |= ATH9K_RX_FILTER_PHYERR;
3099
3100 return bits;
3101}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003102EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303103
Sujithcbe61d82009-02-09 13:27:12 +05303104void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05303105{
3106 u32 phybits;
3107
Sujith7ea310b2009-09-03 12:08:43 +05303108 REG_WRITE(ah, AR_RX_FILTER, bits);
3109
Sujithf1dc5602008-10-29 10:16:30 +05303110 phybits = 0;
3111 if (bits & ATH9K_RX_FILTER_PHYRADAR)
3112 phybits |= AR_PHY_ERR_RADAR;
3113 if (bits & ATH9K_RX_FILTER_PHYERR)
3114 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
3115 REG_WRITE(ah, AR_PHY_ERR, phybits);
3116
3117 if (phybits)
3118 REG_WRITE(ah, AR_RXCFG,
3119 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
3120 else
3121 REG_WRITE(ah, AR_RXCFG,
3122 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
3123}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003124EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303125
Sujithcbe61d82009-02-09 13:27:12 +05303126bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303127{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05303128 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
3129 return false;
3130
3131 ath9k_hw_init_pll(ah, NULL);
3132 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303133}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003134EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05303135
Sujithcbe61d82009-02-09 13:27:12 +05303136bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303137{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07003138 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05303139 return false;
3140
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05303141 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
3142 return false;
3143
3144 ath9k_hw_init_pll(ah, NULL);
3145 return true;
Sujithf1dc5602008-10-29 10:16:30 +05303146}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003147EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05303148
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003149void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05303150{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003151 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05303152 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08003153 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05303154
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003155 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05303156
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003157 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003158 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07003159 channel->max_antenna_gain * 2,
3160 channel->max_power * 2,
3161 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07003162 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05303163}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003164EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05303165
Sujithcbe61d82009-02-09 13:27:12 +05303166void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05303167{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07003168 memcpy(ath9k_hw_common(ah)->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05303169}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003170EXPORT_SYMBOL(ath9k_hw_setmac);
Sujithf1dc5602008-10-29 10:16:30 +05303171
Sujithcbe61d82009-02-09 13:27:12 +05303172void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303173{
Sujith2660b812009-02-09 13:27:26 +05303174 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05303175}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003176EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05303177
Sujithcbe61d82009-02-09 13:27:12 +05303178void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05303179{
3180 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
3181 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
3182}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003183EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05303184
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07003185void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303186{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07003187 struct ath_common *common = ath9k_hw_common(ah);
3188
3189 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
3190 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
3191 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05303192}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003193EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05303194
Sujithcbe61d82009-02-09 13:27:12 +05303195u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303196{
3197 u64 tsf;
3198
3199 tsf = REG_READ(ah, AR_TSF_U32);
3200 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
3201
3202 return tsf;
3203}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003204EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05303205
Sujithcbe61d82009-02-09 13:27:12 +05303206void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003207{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003208 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01003209 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003210}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003211EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01003212
Sujithcbe61d82009-02-09 13:27:12 +05303213void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05303214{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003215 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
3216 AH_TSF_WRITE_TIMEOUT))
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003217 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
3218 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02003219
Sujithf1dc5602008-10-29 10:16:30 +05303220 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003221}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003222EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003223
Sujith54e4cec2009-08-07 09:45:09 +05303224void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003225{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003226 if (setting)
Sujith2660b812009-02-09 13:27:26 +05303227 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003228 else
Sujith2660b812009-02-09 13:27:26 +05303229 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003230}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003231EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003232
Luis R. Rodriguez30cbd422009-11-03 16:10:46 -08003233/*
3234 * Extend 15-bit time stamp from rx descriptor to
3235 * a full 64-bit TSF using the current h/w TSF.
3236*/
3237u64 ath9k_hw_extend_tsf(struct ath_hw *ah, u32 rstamp)
3238{
3239 u64 tsf;
3240
3241 tsf = ath9k_hw_gettsf64(ah);
3242 if ((tsf & 0x7fff) < rstamp)
3243 tsf -= 0x8000;
3244 return (tsf & ~0x7fff) | rstamp;
3245}
3246EXPORT_SYMBOL(ath9k_hw_extend_tsf);
3247
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003248void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003249{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003250 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05303251 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003252
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07003253 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05303254 macmode = AR_2040_JOINED_RX_CLEAR;
3255 else
3256 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003257
Sujithf1dc5602008-10-29 10:16:30 +05303258 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003259}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303260
3261/* HW Generic timers configuration */
3262
3263static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
3264{
3265 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3266 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3267 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3268 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3269 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3270 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3271 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3272 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
3273 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
3274 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
3275 AR_NDP2_TIMER_MODE, 0x0002},
3276 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
3277 AR_NDP2_TIMER_MODE, 0x0004},
3278 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
3279 AR_NDP2_TIMER_MODE, 0x0008},
3280 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
3281 AR_NDP2_TIMER_MODE, 0x0010},
3282 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
3283 AR_NDP2_TIMER_MODE, 0x0020},
3284 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
3285 AR_NDP2_TIMER_MODE, 0x0040},
3286 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
3287 AR_NDP2_TIMER_MODE, 0x0080}
3288};
3289
3290/* HW generic timer primitives */
3291
3292/* compute and clear index of rightmost 1 */
3293static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
3294{
3295 u32 b;
3296
3297 b = *mask;
3298 b &= (0-b);
3299 *mask &= ~b;
3300 b *= debruijn32;
3301 b >>= 27;
3302
3303 return timer_table->gen_timer_index[b];
3304}
3305
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05303306u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303307{
3308 return REG_READ(ah, AR_TSF_L32);
3309}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003310EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303311
3312struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
3313 void (*trigger)(void *),
3314 void (*overflow)(void *),
3315 void *arg,
3316 u8 timer_index)
3317{
3318 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3319 struct ath_gen_timer *timer;
3320
3321 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
3322
3323 if (timer == NULL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003324 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
3325 "Failed to allocate memory"
3326 "for hw timer[%d]\n", timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303327 return NULL;
3328 }
3329
3330 /* allocate a hardware generic timer slot */
3331 timer_table->timers[timer_index] = timer;
3332 timer->index = timer_index;
3333 timer->trigger = trigger;
3334 timer->overflow = overflow;
3335 timer->arg = arg;
3336
3337 return timer;
3338}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003339EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303340
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07003341void ath9k_hw_gen_timer_start(struct ath_hw *ah,
3342 struct ath_gen_timer *timer,
3343 u32 timer_next,
3344 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303345{
3346 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3347 u32 tsf;
3348
3349 BUG_ON(!timer_period);
3350
3351 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
3352
3353 tsf = ath9k_hw_gettsf32(ah);
3354
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003355 ath_print(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
3356 "curent tsf %x period %x"
3357 "timer_next %x\n", tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303358
3359 /*
3360 * Pull timer_next forward if the current TSF already passed it
3361 * because of software latency
3362 */
3363 if (timer_next < tsf)
3364 timer_next = tsf + timer_period;
3365
3366 /*
3367 * Program generic timer registers
3368 */
3369 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
3370 timer_next);
3371 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
3372 timer_period);
3373 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
3374 gen_tmr_configuration[timer->index].mode_mask);
3375
3376 /* Enable both trigger and thresh interrupt masks */
3377 REG_SET_BIT(ah, AR_IMR_S5,
3378 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
3379 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303380}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003381EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303382
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07003383void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303384{
3385 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3386
3387 if ((timer->index < AR_FIRST_NDP_TIMER) ||
3388 (timer->index >= ATH_MAX_GEN_TIMER)) {
3389 return;
3390 }
3391
3392 /* Clear generic timer enable bits. */
3393 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
3394 gen_tmr_configuration[timer->index].mode_mask);
3395
3396 /* Disable both trigger and thresh interrupt masks */
3397 REG_CLR_BIT(ah, AR_IMR_S5,
3398 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
3399 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
3400
3401 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303402}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003403EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303404
3405void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
3406{
3407 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3408
3409 /* free the hardware generic timer slot */
3410 timer_table->timers[timer->index] = NULL;
3411 kfree(timer);
3412}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003413EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303414
3415/*
3416 * Generic Timer Interrupts handling
3417 */
3418void ath_gen_timer_isr(struct ath_hw *ah)
3419{
3420 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3421 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003422 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303423 u32 trigger_mask, thresh_mask, index;
3424
3425 /* get hardware generic timer interrupt status */
3426 trigger_mask = ah->intr_gen_timer_trigger;
3427 thresh_mask = ah->intr_gen_timer_thresh;
3428 trigger_mask &= timer_table->timer_mask.val;
3429 thresh_mask &= timer_table->timer_mask.val;
3430
3431 trigger_mask &= ~thresh_mask;
3432
3433 while (thresh_mask) {
3434 index = rightmost_index(timer_table, &thresh_mask);
3435 timer = timer_table->timers[index];
3436 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003437 ath_print(common, ATH_DBG_HWTIMER,
3438 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303439 timer->overflow(timer->arg);
3440 }
3441
3442 while (trigger_mask) {
3443 index = rightmost_index(timer_table, &trigger_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 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303448 timer->trigger(timer->arg);
3449 }
3450}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003451EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003452
Sujith05020d22010-03-17 14:25:23 +05303453/********/
3454/* HTC */
3455/********/
3456
3457void ath9k_hw_htc_resetinit(struct ath_hw *ah)
3458{
3459 ah->htc_reset_init = true;
3460}
3461EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
3462
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003463static struct {
3464 u32 version;
3465 const char * name;
3466} ath_mac_bb_names[] = {
3467 /* Devices with external radios */
3468 { AR_SREV_VERSION_5416_PCI, "5416" },
3469 { AR_SREV_VERSION_5416_PCIE, "5418" },
3470 { AR_SREV_VERSION_9100, "9100" },
3471 { AR_SREV_VERSION_9160, "9160" },
3472 /* Single-chip solutions */
3473 { AR_SREV_VERSION_9280, "9280" },
3474 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04003475 { AR_SREV_VERSION_9287, "9287" },
3476 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003477};
3478
3479/* For devices with external radios */
3480static struct {
3481 u16 version;
3482 const char * name;
3483} ath_rf_names[] = {
3484 { 0, "5133" },
3485 { AR_RAD5133_SREV_MAJOR, "5133" },
3486 { AR_RAD5122_SREV_MAJOR, "5122" },
3487 { AR_RAD2133_SREV_MAJOR, "2133" },
3488 { AR_RAD2122_SREV_MAJOR, "2122" }
3489};
3490
3491/*
3492 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
3493 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003494static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003495{
3496 int i;
3497
3498 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
3499 if (ath_mac_bb_names[i].version == mac_bb_version) {
3500 return ath_mac_bb_names[i].name;
3501 }
3502 }
3503
3504 return "????";
3505}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003506
3507/*
3508 * Return the RF name. "????" is returned if the RF is unknown.
3509 * Used for devices with external radios.
3510 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003511static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003512{
3513 int i;
3514
3515 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
3516 if (ath_rf_names[i].version == rf_version) {
3517 return ath_rf_names[i].name;
3518 }
3519 }
3520
3521 return "????";
3522}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003523
3524void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
3525{
3526 int used;
3527
3528 /* chipsets >= AR9280 are single-chip */
3529 if (AR_SREV_9280_10_OR_LATER(ah)) {
3530 used = snprintf(hw_name, len,
3531 "Atheros AR%s Rev:%x",
3532 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3533 ah->hw_version.macRev);
3534 }
3535 else {
3536 used = snprintf(hw_name, len,
3537 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
3538 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3539 ah->hw_version.macRev,
3540 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
3541 AR_RADIO_SREV_MAJOR)),
3542 ah->hw_version.phyRev);
3543 }
3544
3545 hw_name[used] = '\0';
3546}
3547EXPORT_SYMBOL(ath9k_hw_name);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04003548
3549/* Sets up the AR5008/AR9001/AR9002 hardware familiy callbacks */
3550static void ar9002_hw_attach_ops(struct ath_hw *ah)
3551{
3552 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
3553 struct ath_hw_ops *ops = ath9k_hw_ops(ah);
3554
3555 priv_ops->init_cal_settings = ar9002_hw_init_cal_settings;
3556 priv_ops->init_mode_regs = ar9002_hw_init_mode_regs;
3557 priv_ops->macversion_supported = ar9002_hw_macversion_supported;
3558
3559 ops->config_pci_powersave = ar9002_hw_configpcipowersave;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04003560
Luis R. Rodriguez8525f282010-04-15 17:38:19 -04003561 ar5008_hw_attach_phy_ops(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04003562 if (AR_SREV_9280_10_OR_LATER(ah))
3563 ar9002_hw_attach_phy_ops(ah);
Luis R. Rodriguez8525f282010-04-15 17:38:19 -04003564}
3565
3566/* Sets up the AR9003 hardware familiy callbacks */
3567static void ar9003_hw_attach_ops(struct ath_hw *ah)
3568{
Luis R. Rodriguez61accab2010-04-15 17:38:21 -04003569 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
3570
3571 priv_ops->macversion_supported = ar9003_hw_macversion_supported;
3572
Luis R. Rodriguez8525f282010-04-15 17:38:19 -04003573 ar9003_hw_attach_phy_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -04003574}