blob: 01706d9cfc56e36a07f9d93a68fa84b7abab8158 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Luis R. Rodriguezb3950e62010-04-15 17:39:03 -04002 * Copyright (c) 2008-2010 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include <linux/io.h>
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
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080024#define ATH9K_CLOCK_RATE_CCK 22
25#define ATH9K_CLOCK_RATE_5GHZ_OFDM 40
26#define ATH9K_CLOCK_RATE_2GHZ_OFDM 44
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070027
Sujithcbe61d82009-02-09 13:27:12 +053028static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070029
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040030MODULE_AUTHOR("Atheros Communications");
31MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
32MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
33MODULE_LICENSE("Dual BSD/GPL");
34
35static int __init ath9k_init(void)
36{
37 return 0;
38}
39module_init(ath9k_init);
40
41static void __exit ath9k_exit(void)
42{
43 return;
44}
45module_exit(ath9k_exit);
46
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040047/* Private hardware callbacks */
48
49static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
50{
51 ath9k_hw_private_ops(ah)->init_cal_settings(ah);
52}
53
54static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
55{
56 ath9k_hw_private_ops(ah)->init_mode_regs(ah);
57}
58
59static bool ath9k_hw_macversion_supported(struct ath_hw *ah)
60{
61 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
62
63 return priv_ops->macversion_supported(ah->hw_version.macVersion);
64}
65
Luis R. Rodriguez64773962010-04-15 17:38:17 -040066static u32 ath9k_hw_compute_pll_control(struct ath_hw *ah,
67 struct ath9k_channel *chan)
68{
69 return ath9k_hw_private_ops(ah)->compute_pll_control(ah, chan);
70}
71
Luis R. Rodriguez991312d2010-04-15 17:39:05 -040072static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
73{
74 if (!ath9k_hw_private_ops(ah)->init_mode_gain_regs)
75 return;
76
77 ath9k_hw_private_ops(ah)->init_mode_gain_regs(ah);
78}
79
Sujithf1dc5602008-10-29 10:16:30 +053080/********************/
81/* Helper Functions */
82/********************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070083
Sujithcbe61d82009-02-09 13:27:12 +053084static u32 ath9k_hw_mac_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053085{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070086 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053087
Sujith2660b812009-02-09 13:27:26 +053088 if (!ah->curchan) /* should really check for CCK instead */
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080089 return usecs *ATH9K_CLOCK_RATE_CCK;
90 if (conf->channel->band == IEEE80211_BAND_2GHZ)
91 return usecs *ATH9K_CLOCK_RATE_2GHZ_OFDM;
92 return usecs *ATH9K_CLOCK_RATE_5GHZ_OFDM;
Sujithf1dc5602008-10-29 10:16:30 +053093}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070094
Sujithcbe61d82009-02-09 13:27:12 +053095static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053096{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070097 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053098
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080099 if (conf_is_ht40(conf))
Sujithf1dc5602008-10-29 10:16:30 +0530100 return ath9k_hw_mac_clks(ah, usecs) * 2;
101 else
102 return ath9k_hw_mac_clks(ah, usecs);
103}
104
Sujith0caa7b12009-02-16 13:23:20 +0530105bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700106{
107 int i;
108
Sujith0caa7b12009-02-16 13:23:20 +0530109 BUG_ON(timeout < AH_TIME_QUANTUM);
110
111 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700112 if ((REG_READ(ah, reg) & mask) == val)
113 return true;
114
115 udelay(AH_TIME_QUANTUM);
116 }
Sujith04bd46382008-11-28 22:18:05 +0530117
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700118 ath_print(ath9k_hw_common(ah), ATH_DBG_ANY,
119 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
120 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +0530121
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700122 return false;
123}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400124EXPORT_SYMBOL(ath9k_hw_wait);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700125
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700126u32 ath9k_hw_reverse_bits(u32 val, u32 n)
127{
128 u32 retval;
129 int i;
130
131 for (i = 0, retval = 0; i < n; i++) {
132 retval = (retval << 1) | (val & 1);
133 val >>= 1;
134 }
135 return retval;
136}
137
Sujithcbe61d82009-02-09 13:27:12 +0530138bool ath9k_get_channel_edges(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530139 u16 flags, u16 *low,
140 u16 *high)
141{
Sujith2660b812009-02-09 13:27:26 +0530142 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530143
144 if (flags & CHANNEL_5GHZ) {
145 *low = pCap->low_5ghz_chan;
146 *high = pCap->high_5ghz_chan;
147 return true;
148 }
149 if ((flags & CHANNEL_2GHZ)) {
150 *low = pCap->low_2ghz_chan;
151 *high = pCap->high_2ghz_chan;
152 return true;
153 }
154 return false;
155}
156
Sujithcbe61d82009-02-09 13:27:12 +0530157u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Felix Fietkau545750d2009-11-23 22:21:01 +0100158 u8 phy, int kbps,
Sujithf1dc5602008-10-29 10:16:30 +0530159 u32 frameLen, u16 rateix,
160 bool shortPreamble)
161{
162 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
Sujithf1dc5602008-10-29 10:16:30 +0530163
164 if (kbps == 0)
165 return 0;
166
Felix Fietkau545750d2009-11-23 22:21:01 +0100167 switch (phy) {
Sujith46d14a52008-11-18 09:08:13 +0530168 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530169 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Felix Fietkau545750d2009-11-23 22:21:01 +0100170 if (shortPreamble)
Sujithf1dc5602008-10-29 10:16:30 +0530171 phyTime >>= 1;
172 numBits = frameLen << 3;
173 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
174 break;
Sujith46d14a52008-11-18 09:08:13 +0530175 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530176 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530177 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
178 numBits = OFDM_PLCP_BITS + (frameLen << 3);
179 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
180 txTime = OFDM_SIFS_TIME_QUARTER
181 + OFDM_PREAMBLE_TIME_QUARTER
182 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530183 } else if (ah->curchan &&
184 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530185 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
186 numBits = OFDM_PLCP_BITS + (frameLen << 3);
187 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
188 txTime = OFDM_SIFS_TIME_HALF +
189 OFDM_PREAMBLE_TIME_HALF
190 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
191 } else {
192 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
193 numBits = OFDM_PLCP_BITS + (frameLen << 3);
194 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
195 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
196 + (numSymbols * OFDM_SYMBOL_TIME);
197 }
198 break;
199 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700200 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
Felix Fietkau545750d2009-11-23 22:21:01 +0100201 "Unknown phy %u (rate ix %u)\n", phy, rateix);
Sujithf1dc5602008-10-29 10:16:30 +0530202 txTime = 0;
203 break;
204 }
205
206 return txTime;
207}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400208EXPORT_SYMBOL(ath9k_hw_computetxtime);
Sujithf1dc5602008-10-29 10:16:30 +0530209
Sujithcbe61d82009-02-09 13:27:12 +0530210void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530211 struct ath9k_channel *chan,
212 struct chan_centers *centers)
213{
214 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530215
216 if (!IS_CHAN_HT40(chan)) {
217 centers->ctl_center = centers->ext_center =
218 centers->synth_center = chan->channel;
219 return;
220 }
221
222 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
223 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
224 centers->synth_center =
225 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
226 extoff = 1;
227 } else {
228 centers->synth_center =
229 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
230 extoff = -1;
231 }
232
233 centers->ctl_center =
234 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700235 /* 25 MHz spacing is supported by hw but not on upper layers */
Sujithf1dc5602008-10-29 10:16:30 +0530236 centers->ext_center =
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700237 centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
Sujithf1dc5602008-10-29 10:16:30 +0530238}
239
240/******************/
241/* Chip Revisions */
242/******************/
243
Sujithcbe61d82009-02-09 13:27:12 +0530244static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530245{
246 u32 val;
247
248 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
249
250 if (val == 0xFF) {
251 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530252 ah->hw_version.macVersion =
253 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
254 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Sujith2660b812009-02-09 13:27:26 +0530255 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530256 } else {
257 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530258 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530259
Sujithd535a422009-02-09 13:27:06 +0530260 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530261
Sujithd535a422009-02-09 13:27:06 +0530262 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530263 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530264 }
265}
266
Sujithcbe61d82009-02-09 13:27:12 +0530267static int ath9k_hw_get_radiorev(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530268{
269 u32 val;
270 int i;
271
272 REG_WRITE(ah, AR_PHY(0x36), 0x00007058);
273
274 for (i = 0; i < 8; i++)
275 REG_WRITE(ah, AR_PHY(0x20), 0x00010000);
276 val = (REG_READ(ah, AR_PHY(256)) >> 24) & 0xff;
277 val = ((val & 0xf0) >> 4) | ((val & 0x0f) << 4);
278
279 return ath9k_hw_reverse_bits(val, 8);
280}
281
282/************************************/
283/* HW Attach, Detach, Init Routines */
284/************************************/
285
Sujithcbe61d82009-02-09 13:27:12 +0530286static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530287{
Sujithfeed0292009-01-29 11:37:35 +0530288 if (AR_SREV_9100(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530289 return;
290
291 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
292 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
293 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
294 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
295 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
296 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
297 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
298 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
299 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
300
301 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
302}
303
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400304/* This should work for all families including legacy */
Sujithcbe61d82009-02-09 13:27:12 +0530305static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530306{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700307 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400308 u32 regAddr[2] = { AR_STA_ID0 };
Sujithf1dc5602008-10-29 10:16:30 +0530309 u32 regHold[2];
310 u32 patternData[4] = { 0x55555555,
311 0xaaaaaaaa,
312 0x66666666,
313 0x99999999 };
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400314 int i, j, loop_max;
Sujithf1dc5602008-10-29 10:16:30 +0530315
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400316 if (!AR_SREV_9300_20_OR_LATER(ah)) {
317 loop_max = 2;
318 regAddr[1] = AR_PHY_BASE + (8 << 2);
319 } else
320 loop_max = 1;
321
322 for (i = 0; i < loop_max; i++) {
Sujithf1dc5602008-10-29 10:16:30 +0530323 u32 addr = regAddr[i];
324 u32 wrData, rdData;
325
326 regHold[i] = REG_READ(ah, addr);
327 for (j = 0; j < 0x100; j++) {
328 wrData = (j << 16) | j;
329 REG_WRITE(ah, addr, wrData);
330 rdData = REG_READ(ah, addr);
331 if (rdData != wrData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700332 ath_print(common, ATH_DBG_FATAL,
333 "address test failed "
334 "addr: 0x%08x - wr:0x%08x != "
335 "rd:0x%08x\n",
336 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530337 return false;
338 }
339 }
340 for (j = 0; j < 4; j++) {
341 wrData = patternData[j];
342 REG_WRITE(ah, addr, wrData);
343 rdData = REG_READ(ah, addr);
344 if (wrData != rdData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700345 ath_print(common, ATH_DBG_FATAL,
346 "address test failed "
347 "addr: 0x%08x - wr:0x%08x != "
348 "rd:0x%08x\n",
349 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530350 return false;
351 }
352 }
353 REG_WRITE(ah, regAddr[i], regHold[i]);
354 }
355 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530356
Sujithf1dc5602008-10-29 10:16:30 +0530357 return true;
358}
359
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700360static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700361{
362 int i;
363
Sujith2660b812009-02-09 13:27:26 +0530364 ah->config.dma_beacon_response_time = 2;
365 ah->config.sw_beacon_response_time = 10;
366 ah->config.additional_swba_backoff = 0;
367 ah->config.ack_6mb = 0x0;
368 ah->config.cwm_ignore_extcca = 0;
369 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530370 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530371 ah->config.pcie_waen = 0;
372 ah->config.analog_shiftreg = 1;
Sujith2660b812009-02-09 13:27:26 +0530373 ah->config.ofdm_trig_low = 200;
374 ah->config.ofdm_trig_high = 500;
375 ah->config.cck_trig_high = 200;
376 ah->config.cck_trig_low = 100;
Luis R. Rodriguez31a0bd32010-04-15 17:38:22 -0400377
378 /*
379 * For now ANI is disabled for AR9003, it is still
380 * being tested.
381 */
382 if (!AR_SREV_9300_20_OR_LATER(ah))
383 ah->config.enable_ani = 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700384
385 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530386 ah->config.spurchans[i][0] = AR_NO_SPUR;
387 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700388 }
389
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500390 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
391 ah->config.ht_enable = 1;
392 else
393 ah->config.ht_enable = 0;
394
Sujith0ce024c2009-12-14 14:57:00 +0530395 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400396
397 /*
398 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
399 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
400 * This means we use it for all AR5416 devices, and the few
401 * minor PCI AR9280 devices out there.
402 *
403 * Serialization is required because these devices do not handle
404 * well the case of two concurrent reads/writes due to the latency
405 * involved. During one read/write another read/write can be issued
406 * on another CPU while the previous read/write may still be working
407 * on our hardware, if we hit this case the hardware poops in a loop.
408 * We prevent this by serializing reads and writes.
409 *
410 * This issue is not present on PCI-Express devices or pre-AR5416
411 * devices (legacy, 802.11abg).
412 */
413 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700414 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700415}
416
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700417static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700418{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700419 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
420
421 regulatory->country_code = CTRY_DEFAULT;
422 regulatory->power_limit = MAX_RATE_POWER;
423 regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
424
Sujithd535a422009-02-09 13:27:06 +0530425 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530426 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700427
428 ah->ah_flags = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700429 if (!AR_SREV_9100(ah))
430 ah->ah_flags = AH_USE_EEPROM;
431
Sujith2660b812009-02-09 13:27:26 +0530432 ah->atim_window = 0;
Sujith2660b812009-02-09 13:27:26 +0530433 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
434 ah->beacon_interval = 100;
435 ah->enable_32kHz_clock = DONT_USE_32KHZ;
436 ah->slottime = (u32) -1;
Sujith2660b812009-02-09 13:27:26 +0530437 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200438 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700439}
440
Sujithcbe61d82009-02-09 13:27:12 +0530441static int ath9k_hw_rf_claim(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700442{
443 u32 val;
444
445 REG_WRITE(ah, AR_PHY(0), 0x00000007);
446
447 val = ath9k_hw_get_radiorev(ah);
448 switch (val & AR_RADIO_SREV_MAJOR) {
449 case 0:
450 val = AR_RAD5133_SREV_MAJOR;
451 break;
452 case AR_RAD5133_SREV_MAJOR:
453 case AR_RAD5122_SREV_MAJOR:
454 case AR_RAD2133_SREV_MAJOR:
455 case AR_RAD2122_SREV_MAJOR:
456 break;
457 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700458 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
459 "Radio Chip Rev 0x%02X not supported\n",
460 val & AR_RADIO_SREV_MAJOR);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700461 return -EOPNOTSUPP;
462 }
463
Sujithd535a422009-02-09 13:27:06 +0530464 ah->hw_version.analog5GhzRev = val;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700465
466 return 0;
467}
468
Sujithcbe61d82009-02-09 13:27:12 +0530469static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700470{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700471 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530472 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700473 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530474 u16 eeval;
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400475 u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700476
Sujithf1dc5602008-10-29 10:16:30 +0530477 sum = 0;
478 for (i = 0; i < 3; i++) {
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400479 eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
Sujithf1dc5602008-10-29 10:16:30 +0530480 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700481 common->macaddr[2 * i] = eeval >> 8;
482 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700483 }
Sujithd8baa932009-03-30 15:28:25 +0530484 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530485 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700486
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700487 return 0;
488}
489
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700490static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700491{
492 int ecode;
493
Sujith527d4852010-03-17 14:25:16 +0530494 if (!AR_SREV_9271(ah)) {
495 if (!ath9k_hw_chip_test(ah))
496 return -ENODEV;
497 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700498
499 ecode = ath9k_hw_rf_claim(ah);
500 if (ecode != 0)
501 return ecode;
502
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700503 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700504 if (ecode != 0)
505 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530506
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700507 ath_print(ath9k_hw_common(ah), ATH_DBG_CONFIG,
508 "Eeprom VER: %d, REV: %d\n",
509 ah->eep_ops->get_eeprom_ver(ah),
510 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530511
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400512 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
513 if (ecode) {
514 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
515 "Failed allocating banks for "
516 "external radio\n");
517 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400518 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700519
520 if (!AR_SREV_9100(ah)) {
521 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700522 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700523 }
Sujithf1dc5602008-10-29 10:16:30 +0530524
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700525 return 0;
526}
527
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100528static void ath9k_hw_init_eeprom_fix(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700529{
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400530 struct base_eep_header *pBase = &(ah->eeprom.def.baseEepHeader);
531 struct ath_common *common = ath9k_hw_common(ah);
Sujith06d0f062009-02-12 10:06:45 +0530532
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400533 ah->need_an_top2_fixup = (ah->hw_version.devid == AR9280_DEVID_PCI) &&
Senthil Balasubramanian939ad862010-04-15 17:38:50 -0400534 !AR_SREV_9285(ah) && !AR_SREV_9271(ah) &&
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400535 ((pBase->version & 0xff) > 0x0a) &&
536 (pBase->pwdclkind == 0);
Sujith06d0f062009-02-12 10:06:45 +0530537
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400538 if (ah->need_an_top2_fixup)
539 ath_print(common, ATH_DBG_EEPROM,
540 "needs fixup for AR_AN_TOP2 register\n");
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700541}
542
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400543static void ath9k_hw_attach_ops(struct ath_hw *ah)
544{
545 if (AR_SREV_9300_20_OR_LATER(ah))
546 ar9003_hw_attach_ops(ah);
547 else
548 ar9002_hw_attach_ops(ah);
549}
550
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400551/* Called for all hardware families */
552static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700553{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700554 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700555 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700556
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400557 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
558 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700559
560 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700561 ath_print(common, ATH_DBG_FATAL,
562 "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700563 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700564 }
565
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400566 ath9k_hw_init_defaults(ah);
567 ath9k_hw_init_config(ah);
568
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400569 ath9k_hw_attach_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400570
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700571 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700572 ath_print(common, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700573 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700574 }
575
576 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
577 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
578 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
579 ah->config.serialize_regmode =
580 SER_REG_MODE_ON;
581 } else {
582 ah->config.serialize_regmode =
583 SER_REG_MODE_OFF;
584 }
585 }
586
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700587 ath_print(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700588 ah->config.serialize_regmode);
589
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500590 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
591 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
592 else
593 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
594
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400595 if (!ath9k_hw_macversion_supported(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700596 ath_print(common, ATH_DBG_FATAL,
597 "Mac Chip Rev 0x%02x.%x is not supported by "
598 "this driver\n", ah->hw_version.macVersion,
599 ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700600 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700601 }
602
Luis R. Rodriguez0df13da2010-04-15 17:38:59 -0400603 if (AR_SREV_9271(ah) || AR_SREV_9100(ah))
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400604 ah->is_pciexpress = false;
605
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700606 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700607 ath9k_hw_init_cal_settings(ah);
608
609 ah->ani_function = ATH9K_ANI_ALL;
Luis R. Rodriguez31a0bd32010-04-15 17:38:22 -0400610 if (AR_SREV_9280_10_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700611 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
612
613 ath9k_hw_init_mode_regs(ah);
614
615 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530616 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700617 else
618 ath9k_hw_disablepcie(ah);
619
Luis R. Rodriguezd8f492b2010-04-15 17:39:04 -0400620 if (!AR_SREV_9300_20_OR_LATER(ah))
621 ar9002_hw_cck_chan14_spread(ah);
Sujith193cd452009-09-18 15:04:07 +0530622
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700623 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700624 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700625 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700626
627 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100628 r = ath9k_hw_fill_cap_info(ah);
629 if (r)
630 return r;
631
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100632 ath9k_hw_init_eeprom_fix(ah);
Sujithf6688cd2008-12-07 21:43:10 +0530633
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700634 r = ath9k_hw_init_macaddr(ah);
635 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700636 ath_print(common, ATH_DBG_FATAL,
637 "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700638 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700639 }
640
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400641 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530642 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700643 else
Sujith2660b812009-02-09 13:27:26 +0530644 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700645
Felix Fietkau641d9922010-04-15 17:38:49 -0400646 if (AR_SREV_9300_20_OR_LATER(ah))
647 ar9003_hw_set_nf_limits(ah);
648
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700649 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700650
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400651 common->state = ATH_HW_INITIALIZED;
652
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700653 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700654}
655
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400656int ath9k_hw_init(struct ath_hw *ah)
657{
658 int ret;
659 struct ath_common *common = ath9k_hw_common(ah);
660
661 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
662 switch (ah->hw_version.devid) {
663 case AR5416_DEVID_PCI:
664 case AR5416_DEVID_PCIE:
665 case AR5416_AR9100_DEVID:
666 case AR9160_DEVID_PCI:
667 case AR9280_DEVID_PCI:
668 case AR9280_DEVID_PCIE:
669 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400670 case AR9287_DEVID_PCI:
671 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400672 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400673 case AR9300_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400674 break;
675 default:
676 if (common->bus_ops->ath_bus_type == ATH_USB)
677 break;
678 ath_print(common, ATH_DBG_FATAL,
679 "Hardware device ID 0x%04x not supported\n",
680 ah->hw_version.devid);
681 return -EOPNOTSUPP;
682 }
683
684 ret = __ath9k_hw_init(ah);
685 if (ret) {
686 ath_print(common, ATH_DBG_FATAL,
687 "Unable to initialize hardware; "
688 "initialization status: %d\n", ret);
689 return ret;
690 }
691
692 return 0;
693}
694EXPORT_SYMBOL(ath9k_hw_init);
695
Sujithcbe61d82009-02-09 13:27:12 +0530696static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530697{
698 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
699 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
700
701 REG_WRITE(ah, AR_QOS_NO_ACK,
702 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
703 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
704 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
705
706 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
707 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
708 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
709 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
710 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
711}
712
Sujithcbe61d82009-02-09 13:27:12 +0530713static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530714 struct ath9k_channel *chan)
715{
Luis R. Rodriguez64773962010-04-15 17:38:17 -0400716 u32 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530717
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100718 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530719
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400720 /* Switch the core clock for ar9271 to 117Mhz */
721 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530722 udelay(500);
723 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400724 }
725
Sujithf1dc5602008-10-29 10:16:30 +0530726 udelay(RTC_PLL_SETTLE_DELAY);
727
728 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
729}
730
Sujithcbe61d82009-02-09 13:27:12 +0530731static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800732 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530733{
Pavel Roskin152d5302010-03-31 18:05:37 -0400734 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530735 AR_IMR_TXURN |
736 AR_IMR_RXERR |
737 AR_IMR_RXORN |
738 AR_IMR_BCNMISC;
739
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400740 if (AR_SREV_9300_20_OR_LATER(ah)) {
741 imr_reg |= AR_IMR_RXOK_HP;
742 if (ah->config.rx_intr_mitigation)
743 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
744 else
745 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530746
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400747 } else {
748 if (ah->config.rx_intr_mitigation)
749 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
750 else
751 imr_reg |= AR_IMR_RXOK;
752 }
753
754 if (ah->config.tx_intr_mitigation)
755 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
756 else
757 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530758
Colin McCabed97809d2008-12-01 13:38:55 -0800759 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -0400760 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +0530761
Pavel Roskin152d5302010-03-31 18:05:37 -0400762 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500763 ah->imrs2_reg |= AR_IMR_S2_GTT;
764 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530765
766 if (!AR_SREV_9100(ah)) {
767 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
768 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
769 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
770 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400771
772 if (AR_SREV_9300_20_OR_LATER(ah)) {
773 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
774 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
775 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
776 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
777 }
Sujithf1dc5602008-10-29 10:16:30 +0530778}
779
Felix Fietkau0005baf2010-01-15 02:33:40 +0100780static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530781{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100782 u32 val = ath9k_hw_mac_to_clks(ah, us);
783 val = min(val, (u32) 0xFFFF);
784 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530785}
786
Felix Fietkau0005baf2010-01-15 02:33:40 +0100787static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530788{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100789 u32 val = ath9k_hw_mac_to_clks(ah, us);
790 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
791 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
792}
793
794static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
795{
796 u32 val = ath9k_hw_mac_to_clks(ah, us);
797 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
798 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530799}
800
Sujithcbe61d82009-02-09 13:27:12 +0530801static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +0530802{
Sujithf1dc5602008-10-29 10:16:30 +0530803 if (tu > 0xFFFF) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700804 ath_print(ath9k_hw_common(ah), ATH_DBG_XMIT,
805 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +0530806 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +0530807 return false;
808 } else {
809 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +0530810 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +0530811 return true;
812 }
813}
814
Felix Fietkau0005baf2010-01-15 02:33:40 +0100815void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530816{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100817 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
818 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +0100819 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100820 int sifstime;
821
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700822 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
823 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +0530824
Sujith2660b812009-02-09 13:27:26 +0530825 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +0530826 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +0530827 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100828
829 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
830 sifstime = 16;
831 else
832 sifstime = 10;
833
Felix Fietkaue239d852010-01-15 02:34:58 +0100834 /* As defined by IEEE 802.11-2007 17.3.8.6 */
835 slottime = ah->slottime + 3 * ah->coverage_class;
836 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +0100837
838 /*
839 * Workaround for early ACK timeouts, add an offset to match the
840 * initval's 64us ack timeout value.
841 * This was initially only meant to work around an issue with delayed
842 * BA frames in some implementations, but it has been found to fix ACK
843 * timeout issues in other cases as well.
844 */
845 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
846 acktimeout += 64 - sifstime - ah->slottime;
847
Felix Fietkaue239d852010-01-15 02:34:58 +0100848 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100849 ath9k_hw_set_ack_timeout(ah, acktimeout);
850 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +0530851 if (ah->globaltxtimeout != (u32) -1)
852 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +0530853}
Felix Fietkau0005baf2010-01-15 02:33:40 +0100854EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +0530855
Sujith285f2dd2010-01-08 10:36:07 +0530856void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700857{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400858 struct ath_common *common = ath9k_hw_common(ah);
859
Sujith736b3a22010-03-17 14:25:24 +0530860 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400861 goto free_hw;
862
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700863 if (!AR_SREV_9100(ah))
Luis R. Rodrigueze70c0cf2009-08-03 12:24:51 -0700864 ath9k_hw_ani_disable(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700865
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700866 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400867
868free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400869 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700870}
Sujith285f2dd2010-01-08 10:36:07 +0530871EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700872
Sujithf1dc5602008-10-29 10:16:30 +0530873/*******/
874/* INI */
875/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700876
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400877u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -0400878{
879 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
880
881 if (IS_CHAN_B(chan))
882 ctl |= CTL_11B;
883 else if (IS_CHAN_G(chan))
884 ctl |= CTL_11G;
885 else
886 ctl |= CTL_11A;
887
888 return ctl;
889}
890
Sujithf1dc5602008-10-29 10:16:30 +0530891/****************************************/
892/* Reset and Channel Switching Routines */
893/****************************************/
894
Sujithcbe61d82009-02-09 13:27:12 +0530895static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530896{
897 u32 regval;
898
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400899 /*
900 * set AHB_MODE not to do cacheline prefetches
901 */
Sujithf1dc5602008-10-29 10:16:30 +0530902 regval = REG_READ(ah, AR_AHB_MODE);
903 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
904
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400905 /*
906 * let mac dma reads be in 128 byte chunks
907 */
Sujithf1dc5602008-10-29 10:16:30 +0530908 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
909 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
910
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400911 /*
912 * Restore TX Trigger Level to its pre-reset value.
913 * The initial value depends on whether aggregation is enabled, and is
914 * adjusted whenever underruns are detected.
915 */
Sujith2660b812009-02-09 13:27:26 +0530916 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +0530917
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400918 /*
919 * let mac dma writes be in 128 byte chunks
920 */
Sujithf1dc5602008-10-29 10:16:30 +0530921 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
922 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
923
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400924 /*
925 * Setup receive FIFO threshold to hold off TX activities
926 */
Sujithf1dc5602008-10-29 10:16:30 +0530927 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
928
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400929 /*
930 * reduce the number of usable entries in PCU TXBUF to avoid
931 * wrap around issues.
932 */
Sujithf1dc5602008-10-29 10:16:30 +0530933 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400934 /* For AR9285 the number of Fifos are reduced to half.
935 * So set the usable tx buf size also to half to
936 * avoid data/delimiter underruns
937 */
Sujithf1dc5602008-10-29 10:16:30 +0530938 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
939 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400940 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +0530941 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
942 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
943 }
944}
945
Sujithcbe61d82009-02-09 13:27:12 +0530946static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530947{
948 u32 val;
949
950 val = REG_READ(ah, AR_STA_ID1);
951 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
952 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -0800953 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +0530954 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
955 | AR_STA_ID1_KSRCH_MODE);
956 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
957 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800958 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400959 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +0530960 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
961 | AR_STA_ID1_KSRCH_MODE);
962 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
963 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800964 case NL80211_IFTYPE_STATION:
965 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +0530966 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
967 break;
968 }
969}
970
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400971void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
972 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700973{
974 u32 coef_exp, coef_man;
975
976 for (coef_exp = 31; coef_exp > 0; coef_exp--)
977 if ((coef_scaled >> coef_exp) & 0x1)
978 break;
979
980 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
981
982 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
983
984 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
985 *coef_exponent = coef_exp - 16;
986}
987
Sujithcbe61d82009-02-09 13:27:12 +0530988static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +0530989{
990 u32 rst_flags;
991 u32 tmpReg;
992
Sujith70768492009-02-16 13:23:12 +0530993 if (AR_SREV_9100(ah)) {
994 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
995 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
996 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
997 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
998 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
999 }
1000
Sujithf1dc5602008-10-29 10:16:30 +05301001 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1002 AR_RTC_FORCE_WAKE_ON_INT);
1003
1004 if (AR_SREV_9100(ah)) {
1005 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1006 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1007 } else {
1008 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1009 if (tmpReg &
1010 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1011 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001012 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301013 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001014
1015 val = AR_RC_HOSTIF;
1016 if (!AR_SREV_9300_20_OR_LATER(ah))
1017 val |= AR_RC_AHB;
1018 REG_WRITE(ah, AR_RC, val);
1019
1020 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301021 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301022
1023 rst_flags = AR_RTC_RC_MAC_WARM;
1024 if (type == ATH9K_RESET_COLD)
1025 rst_flags |= AR_RTC_RC_MAC_COLD;
1026 }
1027
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001028 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujithf1dc5602008-10-29 10:16:30 +05301029 udelay(50);
1030
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001031 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301032 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001033 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1034 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301035 return false;
1036 }
1037
1038 if (!AR_SREV_9100(ah))
1039 REG_WRITE(ah, AR_RC, 0);
1040
Sujithf1dc5602008-10-29 10:16:30 +05301041 if (AR_SREV_9100(ah))
1042 udelay(50);
1043
1044 return true;
1045}
1046
Sujithcbe61d82009-02-09 13:27:12 +05301047static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301048{
1049 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1050 AR_RTC_FORCE_WAKE_ON_INT);
1051
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001052 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301053 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1054
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001055 REG_WRITE(ah, AR_RTC_RESET, 0);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301056
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001057 if (!AR_SREV_9300_20_OR_LATER(ah))
1058 udelay(2);
1059
1060 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301061 REG_WRITE(ah, AR_RC, 0);
1062
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001063 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301064
1065 if (!ath9k_hw_wait(ah,
1066 AR_RTC_STATUS,
1067 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301068 AR_RTC_STATUS_ON,
1069 AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001070 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1071 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301072 return false;
1073 }
1074
1075 ath9k_hw_read_revisions(ah);
1076
1077 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1078}
1079
Sujithcbe61d82009-02-09 13:27:12 +05301080static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301081{
1082 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1083 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1084
1085 switch (type) {
1086 case ATH9K_RESET_POWER_ON:
1087 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301088 case ATH9K_RESET_WARM:
1089 case ATH9K_RESET_COLD:
1090 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301091 default:
1092 return false;
1093 }
1094}
1095
Sujithcbe61d82009-02-09 13:27:12 +05301096static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301097 struct ath9k_channel *chan)
1098{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301099 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301100 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1101 return false;
1102 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301103 return false;
1104
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001105 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301106 return false;
1107
Sujith2660b812009-02-09 13:27:26 +05301108 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301109 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301110 ath9k_hw_set_rfmode(ah, chan);
1111
1112 return true;
1113}
1114
Sujithcbe61d82009-02-09 13:27:12 +05301115static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001116 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301117{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001118 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001119 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001120 struct ieee80211_channel *channel = chan->chan;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001121 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001122 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301123
1124 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1125 if (ath9k_hw_numtxpending(ah, qnum)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001126 ath_print(common, ATH_DBG_QUEUE,
1127 "Transmit frames pending on "
1128 "queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301129 return false;
1130 }
1131 }
1132
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001133 if (!ath9k_hw_rfbus_req(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001134 ath_print(common, ATH_DBG_FATAL,
1135 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301136 return false;
1137 }
1138
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001139 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301140
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001141 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001142 if (r) {
1143 ath_print(common, ATH_DBG_FATAL,
1144 "Failed to set channel\n");
1145 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301146 }
1147
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001148 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001149 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301150 channel->max_antenna_gain * 2,
1151 channel->max_power * 2,
1152 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001153 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301154
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001155 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301156
1157 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1158 ath9k_hw_set_delta_slope(ah, chan);
1159
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001160 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301161
1162 if (!chan->oneTimeCalsDone)
1163 chan->oneTimeCalsDone = true;
1164
1165 return true;
1166}
1167
Sujithcbe61d82009-02-09 13:27:12 +05301168int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001169 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001170{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001171 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001172 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301173 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001174 u32 saveDefAntenna;
1175 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301176 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001177 int i, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001178
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001179 ah->txchainmask = common->tx_chainmask;
1180 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001181
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001182 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001183 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001184
Vasanthakumar Thiagarajan9ebef7992009-09-17 09:26:44 +05301185 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001186 ath9k_hw_getnf(ah, curchan);
1187
1188 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301189 (ah->chip_fullsleep != true) &&
1190 (ah->curchan != NULL) &&
1191 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001192 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301193 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Vasanthakumar Thiagarajan0a475cc2009-09-17 09:27:10 +05301194 !(AR_SREV_9280(ah) || IS_CHAN_A_5MHZ_SPACED(chan) ||
1195 IS_CHAN_A_5MHZ_SPACED(ah->curchan))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001196
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001197 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301198 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001199 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001200 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001201 }
1202 }
1203
1204 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1205 if (saveDefAntenna == 0)
1206 saveDefAntenna = 1;
1207
1208 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1209
Sujith46fe7822009-09-17 09:25:25 +05301210 /* For chips on which RTC reset is done, save TSF before it gets cleared */
1211 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1212 tsf = ath9k_hw_gettsf64(ah);
1213
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001214 saveLedState = REG_READ(ah, AR_CFG_LED) &
1215 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1216 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1217
1218 ath9k_hw_mark_phy_inactive(ah);
1219
Sujith05020d22010-03-17 14:25:23 +05301220 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001221 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1222 REG_WRITE(ah,
1223 AR9271_RESET_POWER_DOWN_CONTROL,
1224 AR9271_RADIO_RF_RST);
1225 udelay(50);
1226 }
1227
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001228 if (!ath9k_hw_chip_reset(ah, chan)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001229 ath_print(common, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001230 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001231 }
1232
Sujith05020d22010-03-17 14:25:23 +05301233 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001234 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1235 ah->htc_reset_init = false;
1236 REG_WRITE(ah,
1237 AR9271_RESET_POWER_DOWN_CONTROL,
1238 AR9271_GATE_MAC_CTL);
1239 udelay(50);
1240 }
1241
Sujith46fe7822009-09-17 09:25:25 +05301242 /* Restore TSF */
1243 if (tsf && AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1244 ath9k_hw_settsf64(ah, tsf);
1245
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301246 if (AR_SREV_9280_10_OR_LATER(ah))
1247 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001248
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001249 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001250 if (r)
1251 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001252
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001253 /* Setup MFP options for CCMP */
1254 if (AR_SREV_9280_20_OR_LATER(ah)) {
1255 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1256 * frames when constructing CCMP AAD. */
1257 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1258 0xc7ff);
1259 ah->sw_mgmt_crypto = false;
1260 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1261 /* Disable hardware crypto for management frames */
1262 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1263 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1264 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1265 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1266 ah->sw_mgmt_crypto = true;
1267 } else
1268 ah->sw_mgmt_crypto = true;
1269
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001270 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1271 ath9k_hw_set_delta_slope(ah, chan);
1272
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001273 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301274 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001275
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001276 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1277 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001278 | macStaId1
1279 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301280 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301281 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301282 | ah->sta_id1_defaults);
1283 ath9k_hw_set_operating_mode(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001284
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001285 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001286
1287 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
1288
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001289 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001290
1291 REG_WRITE(ah, AR_ISR, ~0);
1292
1293 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1294
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001295 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001296 if (r)
1297 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001298
1299 for (i = 0; i < AR_NUM_DCU; i++)
1300 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1301
Sujith2660b812009-02-09 13:27:26 +05301302 ah->intr_txqs = 0;
1303 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001304 ath9k_hw_resettxqueue(ah, i);
1305
Sujith2660b812009-02-09 13:27:26 +05301306 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001307 ath9k_hw_init_qos(ah);
1308
Sujith2660b812009-02-09 13:27:26 +05301309 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301310 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301311
Felix Fietkau0005baf2010-01-15 02:33:40 +01001312 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001313
Vivek Natarajan326bebb2009-08-14 11:33:36 +05301314 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301315 REG_WRITE(ah, AR_D_GBL_IFS_SIFS,
1316 AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR);
1317 REG_WRITE(ah, AR_D_GBL_IFS_SLOT,
1318 AR_D_GBL_IFS_SLOT_ASYNC_FIFO_DUR);
1319 REG_WRITE(ah, AR_D_GBL_IFS_EIFS,
1320 AR_D_GBL_IFS_EIFS_ASYNC_FIFO_DUR);
1321
1322 REG_WRITE(ah, AR_TIME_OUT, AR_TIME_OUT_ACK_CTS_ASYNC_FIFO_DUR);
1323 REG_WRITE(ah, AR_USEC, AR_USEC_ASYNC_FIFO_DUR);
1324
1325 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
1326 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
1327 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
1328 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
1329 }
Vivek Natarajan326bebb2009-08-14 11:33:36 +05301330 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301331 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1332 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
1333 }
1334
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001335 REG_WRITE(ah, AR_STA_ID1,
1336 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
1337
1338 ath9k_hw_set_dma(ah);
1339
1340 REG_WRITE(ah, AR_OBS, 8);
1341
Sujith0ce024c2009-12-14 14:57:00 +05301342 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001343 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1344 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1345 }
1346
1347 ath9k_hw_init_bb(ah, chan);
1348
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001349 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001350 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001351
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001352 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001353 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1354
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001355 /*
1356 * For big endian systems turn on swapping for descriptors
1357 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001358 if (AR_SREV_9100(ah)) {
1359 u32 mask;
1360 mask = REG_READ(ah, AR_CFG);
1361 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001362 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301363 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001364 } else {
1365 mask =
1366 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1367 REG_WRITE(ah, AR_CFG, mask);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001368 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301369 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001370 }
1371 } else {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001372 /* Configure AR9271 target WLAN */
1373 if (AR_SREV_9271(ah))
1374 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001375#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001376 else
1377 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001378#endif
1379 }
1380
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001381 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301382 ath9k_hw_btcoex_enable(ah);
1383
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001384 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001385}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001386EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001387
Sujithf1dc5602008-10-29 10:16:30 +05301388/************************/
1389/* Key Cache Management */
1390/************************/
1391
Sujithcbe61d82009-02-09 13:27:12 +05301392bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001393{
Sujithf1dc5602008-10-29 10:16:30 +05301394 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001395
Sujith2660b812009-02-09 13:27:26 +05301396 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001397 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1398 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001399 return false;
1400 }
1401
Sujithf1dc5602008-10-29 10:16:30 +05301402 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001403
Sujithf1dc5602008-10-29 10:16:30 +05301404 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
1405 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
1406 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
1407 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
1408 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
1409 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
1410 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
1411 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
1412
1413 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1414 u16 micentry = entry + 64;
1415
1416 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
1417 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
1418 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
1419 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
1420
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001421 }
1422
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001423 return true;
1424}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001425EXPORT_SYMBOL(ath9k_hw_keyreset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001426
Sujithcbe61d82009-02-09 13:27:12 +05301427bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001428{
Sujithf1dc5602008-10-29 10:16:30 +05301429 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001430
Sujith2660b812009-02-09 13:27:26 +05301431 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001432 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1433 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001434 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001435 }
1436
Sujithf1dc5602008-10-29 10:16:30 +05301437 if (mac != NULL) {
1438 macHi = (mac[5] << 8) | mac[4];
1439 macLo = (mac[3] << 24) |
1440 (mac[2] << 16) |
1441 (mac[1] << 8) |
1442 mac[0];
1443 macLo >>= 1;
1444 macLo |= (macHi & 1) << 31;
1445 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001446 } else {
Sujithf1dc5602008-10-29 10:16:30 +05301447 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001448 }
Sujithf1dc5602008-10-29 10:16:30 +05301449 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
1450 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001451
1452 return true;
1453}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001454EXPORT_SYMBOL(ath9k_hw_keysetmac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001455
Sujithcbe61d82009-02-09 13:27:12 +05301456bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05301457 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001458 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001459{
Sujith2660b812009-02-09 13:27:26 +05301460 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001461 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301462 u32 key0, key1, key2, key3, key4;
1463 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001464
Sujithf1dc5602008-10-29 10:16:30 +05301465 if (entry >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001466 ath_print(common, ATH_DBG_FATAL,
1467 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05301468 return false;
1469 }
1470
1471 switch (k->kv_type) {
1472 case ATH9K_CIPHER_AES_OCB:
1473 keyType = AR_KEYTABLE_TYPE_AES;
1474 break;
1475 case ATH9K_CIPHER_AES_CCM:
1476 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001477 ath_print(common, ATH_DBG_ANY,
1478 "AES-CCM not supported by mac rev 0x%x\n",
1479 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001480 return false;
1481 }
Sujithf1dc5602008-10-29 10:16:30 +05301482 keyType = AR_KEYTABLE_TYPE_CCM;
1483 break;
1484 case ATH9K_CIPHER_TKIP:
1485 keyType = AR_KEYTABLE_TYPE_TKIP;
1486 if (ATH9K_IS_MIC_ENABLED(ah)
1487 && entry + 64 >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001488 ath_print(common, ATH_DBG_ANY,
1489 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001490 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001491 }
Sujithf1dc5602008-10-29 10:16:30 +05301492 break;
1493 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08001494 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001495 ath_print(common, ATH_DBG_ANY,
1496 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05301497 return false;
1498 }
Zhu Yie31a16d2009-05-21 21:47:03 +08001499 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05301500 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08001501 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301502 keyType = AR_KEYTABLE_TYPE_104;
1503 else
1504 keyType = AR_KEYTABLE_TYPE_128;
1505 break;
1506 case ATH9K_CIPHER_CLR:
1507 keyType = AR_KEYTABLE_TYPE_CLR;
1508 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001509 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001510 ath_print(common, ATH_DBG_FATAL,
1511 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001512 return false;
1513 }
Sujithf1dc5602008-10-29 10:16:30 +05301514
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001515 key0 = get_unaligned_le32(k->kv_val + 0);
1516 key1 = get_unaligned_le16(k->kv_val + 4);
1517 key2 = get_unaligned_le32(k->kv_val + 6);
1518 key3 = get_unaligned_le16(k->kv_val + 10);
1519 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08001520 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301521 key4 &= 0xff;
1522
Jouni Malinen672903b2009-03-02 15:06:31 +02001523 /*
1524 * Note: Key cache registers access special memory area that requires
1525 * two 32-bit writes to actually update the values in the internal
1526 * memory. Consequently, the exact order and pairs used here must be
1527 * maintained.
1528 */
1529
Sujithf1dc5602008-10-29 10:16:30 +05301530 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1531 u16 micentry = entry + 64;
1532
Jouni Malinen672903b2009-03-02 15:06:31 +02001533 /*
1534 * Write inverted key[47:0] first to avoid Michael MIC errors
1535 * on frames that could be sent or received at the same time.
1536 * The correct key will be written in the end once everything
1537 * else is ready.
1538 */
Sujithf1dc5602008-10-29 10:16:30 +05301539 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
1540 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001541
1542 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301543 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1544 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001545
1546 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301547 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1548 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02001549
1550 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301551 (void) ath9k_hw_keysetmac(ah, entry, mac);
1552
Sujith2660b812009-02-09 13:27:26 +05301553 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02001554 /*
1555 * TKIP uses two key cache entries:
1556 * Michael MIC TX/RX keys in the same key cache entry
1557 * (idx = main index + 64):
1558 * key0 [31:0] = RX key [31:0]
1559 * key1 [15:0] = TX key [31:16]
1560 * key1 [31:16] = reserved
1561 * key2 [31:0] = RX key [63:32]
1562 * key3 [15:0] = TX key [15:0]
1563 * key3 [31:16] = reserved
1564 * key4 [31:0] = TX key [63:32]
1565 */
Sujithf1dc5602008-10-29 10:16:30 +05301566 u32 mic0, mic1, mic2, mic3, mic4;
1567
1568 mic0 = get_unaligned_le32(k->kv_mic + 0);
1569 mic2 = get_unaligned_le32(k->kv_mic + 4);
1570 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
1571 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
1572 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001573
1574 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05301575 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1576 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001577
1578 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301579 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1580 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001581
1582 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301583 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
1584 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1585 AR_KEYTABLE_TYPE_CLR);
1586
1587 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001588 /*
1589 * TKIP uses four key cache entries (two for group
1590 * keys):
1591 * Michael MIC TX/RX keys are in different key cache
1592 * entries (idx = main index + 64 for TX and
1593 * main index + 32 + 96 for RX):
1594 * key0 [31:0] = TX/RX MIC key [31:0]
1595 * key1 [31:0] = reserved
1596 * key2 [31:0] = TX/RX MIC key [63:32]
1597 * key3 [31:0] = reserved
1598 * key4 [31:0] = reserved
1599 *
1600 * Upper layer code will call this function separately
1601 * for TX and RX keys when these registers offsets are
1602 * used.
1603 */
Sujithf1dc5602008-10-29 10:16:30 +05301604 u32 mic0, mic2;
1605
1606 mic0 = get_unaligned_le32(k->kv_mic + 0);
1607 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001608
1609 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301610 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1611 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001612
1613 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05301614 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1615 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001616
1617 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301618 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
1619 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1620 AR_KEYTABLE_TYPE_CLR);
1621 }
Jouni Malinen672903b2009-03-02 15:06:31 +02001622
1623 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05301624 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
1625 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001626
1627 /*
1628 * Write the correct (un-inverted) key[47:0] last to enable
1629 * TKIP now that all other registers are set with correct
1630 * values.
1631 */
Sujithf1dc5602008-10-29 10:16:30 +05301632 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1633 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
1634 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001635 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301636 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1637 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001638
1639 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301640 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1641 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001642
1643 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301644 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1645 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
1646
Jouni Malinen672903b2009-03-02 15:06:31 +02001647 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301648 (void) ath9k_hw_keysetmac(ah, entry, mac);
1649 }
1650
Sujithf1dc5602008-10-29 10:16:30 +05301651 return true;
1652}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001653EXPORT_SYMBOL(ath9k_hw_set_keycache_entry);
Sujithf1dc5602008-10-29 10:16:30 +05301654
Sujithcbe61d82009-02-09 13:27:12 +05301655bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05301656{
Sujith2660b812009-02-09 13:27:26 +05301657 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05301658 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
1659 if (val & AR_KEYTABLE_VALID)
1660 return true;
1661 }
1662 return false;
1663}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001664EXPORT_SYMBOL(ath9k_hw_keyisvalid);
Sujithf1dc5602008-10-29 10:16:30 +05301665
1666/******************************/
1667/* Power Management (Chipset) */
1668/******************************/
1669
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001670/*
1671 * Notify Power Mgt is disabled in self-generated frames.
1672 * If requested, force chip to sleep.
1673 */
Sujithcbe61d82009-02-09 13:27:12 +05301674static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301675{
1676 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1677 if (setChip) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001678 /*
1679 * Clear the RTC force wake bit to allow the
1680 * mac to go to sleep.
1681 */
Sujithf1dc5602008-10-29 10:16:30 +05301682 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1683 AR_RTC_FORCE_WAKE_EN);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001684 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301685 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1686
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001687 /* Shutdown chip. Active low */
Sujith14b3af32010-03-17 14:25:18 +05301688 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05301689 REG_CLR_BIT(ah, (AR_RTC_RESET),
1690 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301691 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001692}
1693
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001694/*
1695 * Notify Power Management is enabled in self-generating
1696 * frames. If request, set power mode of chip to
1697 * auto/normal. Duration in units of 128us (1/8 TU).
1698 */
Sujithcbe61d82009-02-09 13:27:12 +05301699static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001700{
Sujithf1dc5602008-10-29 10:16:30 +05301701 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1702 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05301703 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001704
Sujithf1dc5602008-10-29 10:16:30 +05301705 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001706 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05301707 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1708 AR_RTC_FORCE_WAKE_ON_INT);
1709 } else {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001710 /*
1711 * Clear the RTC force wake bit to allow the
1712 * mac to go to sleep.
1713 */
Sujithf1dc5602008-10-29 10:16:30 +05301714 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1715 AR_RTC_FORCE_WAKE_EN);
1716 }
1717 }
1718}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001719
Sujithcbe61d82009-02-09 13:27:12 +05301720static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301721{
1722 u32 val;
1723 int i;
1724
1725 if (setChip) {
1726 if ((REG_READ(ah, AR_RTC_STATUS) &
1727 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
1728 if (ath9k_hw_set_reset_reg(ah,
1729 ATH9K_RESET_POWER_ON) != true) {
1730 return false;
1731 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04001732 if (!AR_SREV_9300_20_OR_LATER(ah))
1733 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05301734 }
1735 if (AR_SREV_9100(ah))
1736 REG_SET_BIT(ah, AR_RTC_RESET,
1737 AR_RTC_RESET_EN);
1738
1739 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1740 AR_RTC_FORCE_WAKE_EN);
1741 udelay(50);
1742
1743 for (i = POWER_UP_TIME / 50; i > 0; i--) {
1744 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
1745 if (val == AR_RTC_STATUS_ON)
1746 break;
1747 udelay(50);
1748 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1749 AR_RTC_FORCE_WAKE_EN);
1750 }
1751 if (i == 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001752 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1753 "Failed to wakeup in %uus\n",
1754 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05301755 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001756 }
1757 }
1758
Sujithf1dc5602008-10-29 10:16:30 +05301759 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1760
1761 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001762}
1763
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001764bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05301765{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001766 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05301767 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05301768 static const char *modes[] = {
1769 "AWAKE",
1770 "FULL-SLEEP",
1771 "NETWORK SLEEP",
1772 "UNDEFINED"
1773 };
Sujithf1dc5602008-10-29 10:16:30 +05301774
Gabor Juhoscbdec972009-07-24 17:27:22 +02001775 if (ah->power_mode == mode)
1776 return status;
1777
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001778 ath_print(common, ATH_DBG_RESET, "%s -> %s\n",
1779 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05301780
1781 switch (mode) {
1782 case ATH9K_PM_AWAKE:
1783 status = ath9k_hw_set_power_awake(ah, setChip);
1784 break;
1785 case ATH9K_PM_FULL_SLEEP:
1786 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05301787 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05301788 break;
1789 case ATH9K_PM_NETWORK_SLEEP:
1790 ath9k_set_power_network_sleep(ah, setChip);
1791 break;
1792 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001793 ath_print(common, ATH_DBG_FATAL,
1794 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05301795 return false;
1796 }
Sujith2660b812009-02-09 13:27:26 +05301797 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05301798
1799 return status;
1800}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001801EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05301802
Sujithf1dc5602008-10-29 10:16:30 +05301803/*******************/
1804/* Beacon Handling */
1805/*******************/
1806
Sujithcbe61d82009-02-09 13:27:12 +05301807void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001808{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001809 int flags = 0;
1810
Sujith2660b812009-02-09 13:27:26 +05301811 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001812
Sujith2660b812009-02-09 13:27:26 +05301813 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001814 case NL80211_IFTYPE_STATION:
1815 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001816 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1817 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
1818 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
1819 flags |= AR_TBTT_TIMER_EN;
1820 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001821 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001822 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001823 REG_SET_BIT(ah, AR_TXCFG,
1824 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
1825 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
1826 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05301827 (ah->atim_window ? ah->
1828 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001829 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08001830 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001831 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1832 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
1833 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301834 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301835 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001836 REG_WRITE(ah, AR_NEXT_SWBA,
1837 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301838 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301839 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001840 flags |=
1841 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
1842 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001843 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001844 ath_print(ath9k_hw_common(ah), ATH_DBG_BEACON,
1845 "%s: unsupported opmode: %d\n",
1846 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08001847 return;
1848 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001849 }
1850
1851 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1852 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1853 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
1854 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
1855
1856 beacon_period &= ~ATH9K_BEACON_ENA;
1857 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001858 ath9k_hw_reset_tsf(ah);
1859 }
1860
1861 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
1862}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001863EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001864
Sujithcbe61d82009-02-09 13:27:12 +05301865void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301866 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001867{
1868 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05301869 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001870 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001871
1872 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
1873
1874 REG_WRITE(ah, AR_BEACON_PERIOD,
1875 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1876 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
1877 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1878
1879 REG_RMW_FIELD(ah, AR_RSSI_THR,
1880 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
1881
1882 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
1883
1884 if (bs->bs_sleepduration > beaconintval)
1885 beaconintval = bs->bs_sleepduration;
1886
1887 dtimperiod = bs->bs_dtimperiod;
1888 if (bs->bs_sleepduration > dtimperiod)
1889 dtimperiod = bs->bs_sleepduration;
1890
1891 if (beaconintval == dtimperiod)
1892 nextTbtt = bs->bs_nextdtim;
1893 else
1894 nextTbtt = bs->bs_nexttbtt;
1895
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001896 ath_print(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
1897 ath_print(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
1898 ath_print(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
1899 ath_print(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001900
1901 REG_WRITE(ah, AR_NEXT_DTIM,
1902 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
1903 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
1904
1905 REG_WRITE(ah, AR_SLEEP1,
1906 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
1907 | AR_SLEEP1_ASSUME_DTIM);
1908
Sujith60b67f52008-08-07 10:52:38 +05301909 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001910 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
1911 else
1912 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
1913
1914 REG_WRITE(ah, AR_SLEEP2,
1915 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
1916
1917 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
1918 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
1919
1920 REG_SET_BIT(ah, AR_TIMER_MODE,
1921 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
1922 AR_DTIM_TIMER_EN);
1923
Sujith4af9cf42009-02-12 10:06:47 +05301924 /* TSF Out of Range Threshold */
1925 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001926}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001927EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001928
Sujithf1dc5602008-10-29 10:16:30 +05301929/*******************/
1930/* HW Capabilities */
1931/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001932
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001933int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001934{
Sujith2660b812009-02-09 13:27:26 +05301935 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001936 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001937 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001938 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001939
Sujithf1dc5602008-10-29 10:16:30 +05301940 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001941
Sujithf74df6f2009-02-09 13:27:24 +05301942 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001943 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301944
Sujithf74df6f2009-02-09 13:27:24 +05301945 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05301946 if (AR_SREV_9285_10_OR_LATER(ah))
1947 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001948 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301949
Sujithf74df6f2009-02-09 13:27:24 +05301950 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05301951
Sujith2660b812009-02-09 13:27:26 +05301952 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05301953 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001954 if (regulatory->current_rd == 0x64 ||
1955 regulatory->current_rd == 0x65)
1956 regulatory->current_rd += 5;
1957 else if (regulatory->current_rd == 0x41)
1958 regulatory->current_rd = 0x43;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001959 ath_print(common, ATH_DBG_REGULATORY,
1960 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001961 }
Sujithdc2222a2008-08-14 13:26:55 +05301962
Sujithf74df6f2009-02-09 13:27:24 +05301963 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001964 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
1965 ath_print(common, ATH_DBG_FATAL,
1966 "no band has been marked as supported in EEPROM.\n");
1967 return -EINVAL;
1968 }
1969
Sujithf1dc5602008-10-29 10:16:30 +05301970 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001971
Sujithf1dc5602008-10-29 10:16:30 +05301972 if (eeval & AR5416_OPFLAGS_11A) {
1973 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05301974 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05301975 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
1976 set_bit(ATH9K_MODE_11NA_HT20,
1977 pCap->wireless_modes);
1978 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
1979 set_bit(ATH9K_MODE_11NA_HT40PLUS,
1980 pCap->wireless_modes);
1981 set_bit(ATH9K_MODE_11NA_HT40MINUS,
1982 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001983 }
1984 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001985 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001986
Sujithf1dc5602008-10-29 10:16:30 +05301987 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05301988 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05301989 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05301990 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
1991 set_bit(ATH9K_MODE_11NG_HT20,
1992 pCap->wireless_modes);
1993 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
1994 set_bit(ATH9K_MODE_11NG_HT40PLUS,
1995 pCap->wireless_modes);
1996 set_bit(ATH9K_MODE_11NG_HT40MINUS,
1997 pCap->wireless_modes);
1998 }
1999 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002000 }
Sujithf1dc5602008-10-29 10:16:30 +05302001
Sujithf74df6f2009-02-09 13:27:24 +05302002 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002003 /*
2004 * For AR9271 we will temporarilly uses the rx chainmax as read from
2005 * the EEPROM.
2006 */
Sujith8147f5d2009-02-20 15:13:23 +05302007 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002008 !(eeval & AR5416_OPFLAGS_11A) &&
2009 !(AR_SREV_9271(ah)))
2010 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05302011 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
2012 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002013 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05302014 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05302015
Sujithd535a422009-02-09 13:27:06 +05302016 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05302017 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05302018
2019 pCap->low_2ghz_chan = 2312;
2020 pCap->high_2ghz_chan = 2732;
2021
2022 pCap->low_5ghz_chan = 4920;
2023 pCap->high_5ghz_chan = 6100;
2024
2025 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
2026 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
2027 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
2028
2029 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
2030 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
2031 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
2032
Sujith2660b812009-02-09 13:27:26 +05302033 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05302034 pCap->hw_caps |= ATH9K_HW_CAP_HT;
2035 else
2036 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
2037
2038 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
2039 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
2040 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
2041 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
2042
2043 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
2044 pCap->total_queues =
2045 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
2046 else
2047 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
2048
2049 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
2050 pCap->keycache_size =
2051 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
2052 else
2053 pCap->keycache_size = AR_KEYTABLE_SIZE;
2054
2055 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -05002056
2057 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
2058 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
2059 else
2060 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
Sujithf1dc5602008-10-29 10:16:30 +05302061
Sujith5b5fa352010-03-17 14:25:15 +05302062 if (AR_SREV_9271(ah))
2063 pCap->num_gpio_pins = AR9271_NUM_GPIO;
2064 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302065 pCap->num_gpio_pins = AR9285_NUM_GPIO;
2066 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302067 pCap->num_gpio_pins = AR928X_NUM_GPIO;
2068 else
2069 pCap->num_gpio_pins = AR_NUM_GPIO;
2070
Sujithf1dc5602008-10-29 10:16:30 +05302071 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
2072 pCap->hw_caps |= ATH9K_HW_CAP_CST;
2073 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
2074 } else {
2075 pCap->rts_aggr_limit = (8 * 1024);
2076 }
2077
2078 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
2079
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302080#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05302081 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
2082 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
2083 ah->rfkill_gpio =
2084 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
2085 ah->rfkill_polarity =
2086 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05302087
2088 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
2089 }
2090#endif
Vivek Natarajanbde748a2010-04-05 14:48:05 +05302091 if (AR_SREV_9271(ah))
2092 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
2093 else
2094 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05302095
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302096 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302097 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
2098 else
2099 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
2100
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002101 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05302102 pCap->reg_cap =
2103 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2104 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
2105 AR_EEPROM_EEREGCAP_EN_KK_U2 |
2106 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
2107 } else {
2108 pCap->reg_cap =
2109 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2110 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
2111 }
2112
Senthil Balasubramanianebb90cf2009-09-18 15:07:33 +05302113 /* Advertise midband for AR5416 with FCC midband set in eeprom */
2114 if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
2115 AR_SREV_5416(ah))
2116 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
Sujithf1dc5602008-10-29 10:16:30 +05302117
2118 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302119 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302120 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302121 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302122
Vasanthakumar Thiagarajanfe129462009-09-09 15:25:50 +05302123 if (AR_SREV_9280_10_OR_LATER(ah) &&
Luis R. Rodrigueza36cfbc2009-09-09 16:05:32 -07002124 ath9k_hw_btcoex_supported(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002125 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
2126 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302127
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302128 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002129 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
2130 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302131 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002132 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302133 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302134 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002135 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05302136 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002137
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002138 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002139 pCap->hw_caps |= ATH9K_HW_CAP_EDMA;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002140 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
2141 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
2142 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002143 pCap->tx_desc_len = sizeof(struct ar9003_txc);
2144 } else {
2145 pCap->tx_desc_len = sizeof(struct ath_desc);
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002146 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002147
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002148 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002149}
2150
Sujithcbe61d82009-02-09 13:27:12 +05302151bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05302152 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002153{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002154 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302155 switch (type) {
2156 case ATH9K_CAP_CIPHER:
2157 switch (capability) {
2158 case ATH9K_CIPHER_AES_CCM:
2159 case ATH9K_CIPHER_AES_OCB:
2160 case ATH9K_CIPHER_TKIP:
2161 case ATH9K_CIPHER_WEP:
2162 case ATH9K_CIPHER_MIC:
2163 case ATH9K_CIPHER_CLR:
2164 return true;
2165 default:
2166 return false;
2167 }
2168 case ATH9K_CAP_TKIP_MIC:
2169 switch (capability) {
2170 case 0:
2171 return true;
2172 case 1:
Sujith2660b812009-02-09 13:27:26 +05302173 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05302174 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
2175 false;
2176 }
2177 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05302178 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05302179 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05302180 case ATH9K_CAP_MCAST_KEYSRCH:
2181 switch (capability) {
2182 case 0:
2183 return true;
2184 case 1:
2185 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
2186 return false;
2187 } else {
Sujith2660b812009-02-09 13:27:26 +05302188 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05302189 AR_STA_ID1_MCAST_KSRCH) ? true :
2190 false;
2191 }
2192 }
2193 return false;
Sujithf1dc5602008-10-29 10:16:30 +05302194 case ATH9K_CAP_TXPOW:
2195 switch (capability) {
2196 case 0:
2197 return 0;
2198 case 1:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002199 *result = regulatory->power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05302200 return 0;
2201 case 2:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002202 *result = regulatory->max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05302203 return 0;
2204 case 3:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002205 *result = regulatory->tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05302206 return 0;
2207 }
2208 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05302209 case ATH9K_CAP_DS:
2210 return (AR_SREV_9280_20_OR_LATER(ah) &&
2211 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
2212 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05302213 default:
2214 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002215 }
Sujithf1dc5602008-10-29 10:16:30 +05302216}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002217EXPORT_SYMBOL(ath9k_hw_getcapability);
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002218
Sujithcbe61d82009-02-09 13:27:12 +05302219bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05302220 u32 capability, u32 setting, int *status)
2221{
Sujithf1dc5602008-10-29 10:16:30 +05302222 switch (type) {
2223 case ATH9K_CAP_TKIP_MIC:
2224 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302225 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05302226 AR_STA_ID1_CRPT_MIC_ENABLE;
2227 else
Sujith2660b812009-02-09 13:27:26 +05302228 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05302229 ~AR_STA_ID1_CRPT_MIC_ENABLE;
2230 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302231 case ATH9K_CAP_MCAST_KEYSRCH:
2232 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302233 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05302234 else
Sujith2660b812009-02-09 13:27:26 +05302235 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05302236 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302237 default:
2238 return false;
2239 }
2240}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002241EXPORT_SYMBOL(ath9k_hw_setcapability);
Sujithf1dc5602008-10-29 10:16:30 +05302242
2243/****************************/
2244/* GPIO / RFKILL / Antennae */
2245/****************************/
2246
Sujithcbe61d82009-02-09 13:27:12 +05302247static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302248 u32 gpio, u32 type)
2249{
2250 int addr;
2251 u32 gpio_shift, tmp;
2252
2253 if (gpio > 11)
2254 addr = AR_GPIO_OUTPUT_MUX3;
2255 else if (gpio > 5)
2256 addr = AR_GPIO_OUTPUT_MUX2;
2257 else
2258 addr = AR_GPIO_OUTPUT_MUX1;
2259
2260 gpio_shift = (gpio % 6) * 5;
2261
2262 if (AR_SREV_9280_20_OR_LATER(ah)
2263 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2264 REG_RMW(ah, addr, (type << gpio_shift),
2265 (0x1f << gpio_shift));
2266 } else {
2267 tmp = REG_READ(ah, addr);
2268 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2269 tmp &= ~(0x1f << gpio_shift);
2270 tmp |= (type << gpio_shift);
2271 REG_WRITE(ah, addr, tmp);
2272 }
2273}
2274
Sujithcbe61d82009-02-09 13:27:12 +05302275void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302276{
2277 u32 gpio_shift;
2278
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002279 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302280
2281 gpio_shift = gpio << 1;
2282
2283 REG_RMW(ah,
2284 AR_GPIO_OE_OUT,
2285 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2286 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2287}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002288EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302289
Sujithcbe61d82009-02-09 13:27:12 +05302290u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302291{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302292#define MS_REG_READ(x, y) \
2293 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2294
Sujith2660b812009-02-09 13:27:26 +05302295 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302296 return 0xffffffff;
2297
Felix Fietkau783dfca2010-04-15 17:38:11 -04002298 if (AR_SREV_9300_20_OR_LATER(ah))
2299 return MS_REG_READ(AR9300, gpio) != 0;
2300 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05302301 return MS_REG_READ(AR9271, gpio) != 0;
2302 else if (AR_SREV_9287_10_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302303 return MS_REG_READ(AR9287, gpio) != 0;
2304 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302305 return MS_REG_READ(AR9285, gpio) != 0;
2306 else if (AR_SREV_9280_10_OR_LATER(ah))
2307 return MS_REG_READ(AR928X, gpio) != 0;
2308 else
2309 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05302310}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002311EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302312
Sujithcbe61d82009-02-09 13:27:12 +05302313void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05302314 u32 ah_signal_type)
2315{
2316 u32 gpio_shift;
2317
2318 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
2319
2320 gpio_shift = 2 * gpio;
2321
2322 REG_RMW(ah,
2323 AR_GPIO_OE_OUT,
2324 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2325 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2326}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002327EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05302328
Sujithcbe61d82009-02-09 13:27:12 +05302329void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302330{
Sujith5b5fa352010-03-17 14:25:15 +05302331 if (AR_SREV_9271(ah))
2332 val = ~val;
2333
Sujithf1dc5602008-10-29 10:16:30 +05302334 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2335 AR_GPIO_BIT(gpio));
2336}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002337EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302338
Sujithcbe61d82009-02-09 13:27:12 +05302339u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302340{
2341 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
2342}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002343EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302344
Sujithcbe61d82009-02-09 13:27:12 +05302345void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302346{
2347 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2348}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002349EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302350
Sujithf1dc5602008-10-29 10:16:30 +05302351/*********************/
2352/* General Operation */
2353/*********************/
2354
Sujithcbe61d82009-02-09 13:27:12 +05302355u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302356{
2357 u32 bits = REG_READ(ah, AR_RX_FILTER);
2358 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2359
2360 if (phybits & AR_PHY_ERR_RADAR)
2361 bits |= ATH9K_RX_FILTER_PHYRADAR;
2362 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2363 bits |= ATH9K_RX_FILTER_PHYERR;
2364
2365 return bits;
2366}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002367EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302368
Sujithcbe61d82009-02-09 13:27:12 +05302369void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302370{
2371 u32 phybits;
2372
Sujith7ea310b2009-09-03 12:08:43 +05302373 REG_WRITE(ah, AR_RX_FILTER, bits);
2374
Sujithf1dc5602008-10-29 10:16:30 +05302375 phybits = 0;
2376 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2377 phybits |= AR_PHY_ERR_RADAR;
2378 if (bits & ATH9K_RX_FILTER_PHYERR)
2379 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2380 REG_WRITE(ah, AR_PHY_ERR, phybits);
2381
2382 if (phybits)
2383 REG_WRITE(ah, AR_RXCFG,
2384 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
2385 else
2386 REG_WRITE(ah, AR_RXCFG,
2387 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
2388}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002389EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302390
Sujithcbe61d82009-02-09 13:27:12 +05302391bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302392{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302393 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2394 return false;
2395
2396 ath9k_hw_init_pll(ah, NULL);
2397 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302398}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002399EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302400
Sujithcbe61d82009-02-09 13:27:12 +05302401bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302402{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002403 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302404 return false;
2405
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302406 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2407 return false;
2408
2409 ath9k_hw_init_pll(ah, NULL);
2410 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302411}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002412EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302413
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002414void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05302415{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002416 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05302417 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002418 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05302419
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002420 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05302421
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002422 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002423 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002424 channel->max_antenna_gain * 2,
2425 channel->max_power * 2,
2426 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002427 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05302428}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002429EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302430
Sujithcbe61d82009-02-09 13:27:12 +05302431void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05302432{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002433 memcpy(ath9k_hw_common(ah)->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05302434}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002435EXPORT_SYMBOL(ath9k_hw_setmac);
Sujithf1dc5602008-10-29 10:16:30 +05302436
Sujithcbe61d82009-02-09 13:27:12 +05302437void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302438{
Sujith2660b812009-02-09 13:27:26 +05302439 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302440}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002441EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302442
Sujithcbe61d82009-02-09 13:27:12 +05302443void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302444{
2445 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2446 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2447}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002448EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302449
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002450void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302451{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002452 struct ath_common *common = ath9k_hw_common(ah);
2453
2454 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2455 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2456 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302457}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002458EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302459
Sujithcbe61d82009-02-09 13:27:12 +05302460u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302461{
2462 u64 tsf;
2463
2464 tsf = REG_READ(ah, AR_TSF_U32);
2465 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
2466
2467 return tsf;
2468}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002469EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302470
Sujithcbe61d82009-02-09 13:27:12 +05302471void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002472{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002473 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002474 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002475}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002476EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002477
Sujithcbe61d82009-02-09 13:27:12 +05302478void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302479{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002480 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2481 AH_TSF_WRITE_TIMEOUT))
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002482 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
2483 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002484
Sujithf1dc5602008-10-29 10:16:30 +05302485 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002486}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002487EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002488
Sujith54e4cec2009-08-07 09:45:09 +05302489void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002490{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002491 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302492 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002493 else
Sujith2660b812009-02-09 13:27:26 +05302494 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002495}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002496EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002497
Luis R. Rodriguez30cbd422009-11-03 16:10:46 -08002498/*
2499 * Extend 15-bit time stamp from rx descriptor to
2500 * a full 64-bit TSF using the current h/w TSF.
2501*/
2502u64 ath9k_hw_extend_tsf(struct ath_hw *ah, u32 rstamp)
2503{
2504 u64 tsf;
2505
2506 tsf = ath9k_hw_gettsf64(ah);
2507 if ((tsf & 0x7fff) < rstamp)
2508 tsf -= 0x8000;
2509 return (tsf & ~0x7fff) | rstamp;
2510}
2511EXPORT_SYMBOL(ath9k_hw_extend_tsf);
2512
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002513void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002514{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002515 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05302516 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002517
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002518 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05302519 macmode = AR_2040_JOINED_RX_CLEAR;
2520 else
2521 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002522
Sujithf1dc5602008-10-29 10:16:30 +05302523 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002524}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302525
2526/* HW Generic timers configuration */
2527
2528static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2529{
2530 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2531 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2532 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2533 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2534 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2535 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2536 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2537 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2538 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2539 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2540 AR_NDP2_TIMER_MODE, 0x0002},
2541 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2542 AR_NDP2_TIMER_MODE, 0x0004},
2543 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2544 AR_NDP2_TIMER_MODE, 0x0008},
2545 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2546 AR_NDP2_TIMER_MODE, 0x0010},
2547 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2548 AR_NDP2_TIMER_MODE, 0x0020},
2549 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2550 AR_NDP2_TIMER_MODE, 0x0040},
2551 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2552 AR_NDP2_TIMER_MODE, 0x0080}
2553};
2554
2555/* HW generic timer primitives */
2556
2557/* compute and clear index of rightmost 1 */
2558static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
2559{
2560 u32 b;
2561
2562 b = *mask;
2563 b &= (0-b);
2564 *mask &= ~b;
2565 b *= debruijn32;
2566 b >>= 27;
2567
2568 return timer_table->gen_timer_index[b];
2569}
2570
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05302571u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302572{
2573 return REG_READ(ah, AR_TSF_L32);
2574}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002575EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302576
2577struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2578 void (*trigger)(void *),
2579 void (*overflow)(void *),
2580 void *arg,
2581 u8 timer_index)
2582{
2583 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2584 struct ath_gen_timer *timer;
2585
2586 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
2587
2588 if (timer == NULL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002589 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2590 "Failed to allocate memory"
2591 "for hw timer[%d]\n", timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302592 return NULL;
2593 }
2594
2595 /* allocate a hardware generic timer slot */
2596 timer_table->timers[timer_index] = timer;
2597 timer->index = timer_index;
2598 timer->trigger = trigger;
2599 timer->overflow = overflow;
2600 timer->arg = arg;
2601
2602 return timer;
2603}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002604EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302605
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002606void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2607 struct ath_gen_timer *timer,
2608 u32 timer_next,
2609 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302610{
2611 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2612 u32 tsf;
2613
2614 BUG_ON(!timer_period);
2615
2616 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
2617
2618 tsf = ath9k_hw_gettsf32(ah);
2619
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002620 ath_print(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
2621 "curent tsf %x period %x"
2622 "timer_next %x\n", tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302623
2624 /*
2625 * Pull timer_next forward if the current TSF already passed it
2626 * because of software latency
2627 */
2628 if (timer_next < tsf)
2629 timer_next = tsf + timer_period;
2630
2631 /*
2632 * Program generic timer registers
2633 */
2634 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2635 timer_next);
2636 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2637 timer_period);
2638 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2639 gen_tmr_configuration[timer->index].mode_mask);
2640
2641 /* Enable both trigger and thresh interrupt masks */
2642 REG_SET_BIT(ah, AR_IMR_S5,
2643 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2644 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302645}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002646EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302647
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002648void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302649{
2650 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2651
2652 if ((timer->index < AR_FIRST_NDP_TIMER) ||
2653 (timer->index >= ATH_MAX_GEN_TIMER)) {
2654 return;
2655 }
2656
2657 /* Clear generic timer enable bits. */
2658 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2659 gen_tmr_configuration[timer->index].mode_mask);
2660
2661 /* Disable both trigger and thresh interrupt masks */
2662 REG_CLR_BIT(ah, AR_IMR_S5,
2663 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2664 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2665
2666 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302667}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002668EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302669
2670void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
2671{
2672 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2673
2674 /* free the hardware generic timer slot */
2675 timer_table->timers[timer->index] = NULL;
2676 kfree(timer);
2677}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002678EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302679
2680/*
2681 * Generic Timer Interrupts handling
2682 */
2683void ath_gen_timer_isr(struct ath_hw *ah)
2684{
2685 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2686 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002687 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302688 u32 trigger_mask, thresh_mask, index;
2689
2690 /* get hardware generic timer interrupt status */
2691 trigger_mask = ah->intr_gen_timer_trigger;
2692 thresh_mask = ah->intr_gen_timer_thresh;
2693 trigger_mask &= timer_table->timer_mask.val;
2694 thresh_mask &= timer_table->timer_mask.val;
2695
2696 trigger_mask &= ~thresh_mask;
2697
2698 while (thresh_mask) {
2699 index = rightmost_index(timer_table, &thresh_mask);
2700 timer = timer_table->timers[index];
2701 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002702 ath_print(common, ATH_DBG_HWTIMER,
2703 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302704 timer->overflow(timer->arg);
2705 }
2706
2707 while (trigger_mask) {
2708 index = rightmost_index(timer_table, &trigger_mask);
2709 timer = timer_table->timers[index];
2710 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002711 ath_print(common, ATH_DBG_HWTIMER,
2712 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302713 timer->trigger(timer->arg);
2714 }
2715}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002716EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002717
Sujith05020d22010-03-17 14:25:23 +05302718/********/
2719/* HTC */
2720/********/
2721
2722void ath9k_hw_htc_resetinit(struct ath_hw *ah)
2723{
2724 ah->htc_reset_init = true;
2725}
2726EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
2727
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002728static struct {
2729 u32 version;
2730 const char * name;
2731} ath_mac_bb_names[] = {
2732 /* Devices with external radios */
2733 { AR_SREV_VERSION_5416_PCI, "5416" },
2734 { AR_SREV_VERSION_5416_PCIE, "5418" },
2735 { AR_SREV_VERSION_9100, "9100" },
2736 { AR_SREV_VERSION_9160, "9160" },
2737 /* Single-chip solutions */
2738 { AR_SREV_VERSION_9280, "9280" },
2739 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04002740 { AR_SREV_VERSION_9287, "9287" },
2741 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002742};
2743
2744/* For devices with external radios */
2745static struct {
2746 u16 version;
2747 const char * name;
2748} ath_rf_names[] = {
2749 { 0, "5133" },
2750 { AR_RAD5133_SREV_MAJOR, "5133" },
2751 { AR_RAD5122_SREV_MAJOR, "5122" },
2752 { AR_RAD2133_SREV_MAJOR, "2133" },
2753 { AR_RAD2122_SREV_MAJOR, "2122" }
2754};
2755
2756/*
2757 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2758 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002759static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002760{
2761 int i;
2762
2763 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2764 if (ath_mac_bb_names[i].version == mac_bb_version) {
2765 return ath_mac_bb_names[i].name;
2766 }
2767 }
2768
2769 return "????";
2770}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002771
2772/*
2773 * Return the RF name. "????" is returned if the RF is unknown.
2774 * Used for devices with external radios.
2775 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002776static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002777{
2778 int i;
2779
2780 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2781 if (ath_rf_names[i].version == rf_version) {
2782 return ath_rf_names[i].name;
2783 }
2784 }
2785
2786 return "????";
2787}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002788
2789void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
2790{
2791 int used;
2792
2793 /* chipsets >= AR9280 are single-chip */
2794 if (AR_SREV_9280_10_OR_LATER(ah)) {
2795 used = snprintf(hw_name, len,
2796 "Atheros AR%s Rev:%x",
2797 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2798 ah->hw_version.macRev);
2799 }
2800 else {
2801 used = snprintf(hw_name, len,
2802 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
2803 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2804 ah->hw_version.macRev,
2805 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
2806 AR_RADIO_SREV_MAJOR)),
2807 ah->hw_version.phyRev);
2808 }
2809
2810 hw_name[used] = '\0';
2811}
2812EXPORT_SYMBOL(ath9k_hw_name);