blob: d074cc0a23191b25fb906461a17c5082c46e3b86 [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. Rodriguezf078f202008-08-04 00:16:41 -0700475
Sujithf1dc5602008-10-29 10:16:30 +0530476 sum = 0;
477 for (i = 0; i < 3; i++) {
Sujithf74df6f2009-02-09 13:27:24 +0530478 eeval = ah->eep_ops->get_eeprom(ah, AR_EEPROM_MAC(i));
Sujithf1dc5602008-10-29 10:16:30 +0530479 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700480 common->macaddr[2 * i] = eeval >> 8;
481 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700482 }
Sujithd8baa932009-03-30 15:28:25 +0530483 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530484 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700485
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700486 return 0;
487}
488
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700489static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700490{
491 int ecode;
492
Sujith527d4852010-03-17 14:25:16 +0530493 if (!AR_SREV_9271(ah)) {
494 if (!ath9k_hw_chip_test(ah))
495 return -ENODEV;
496 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700497
498 ecode = ath9k_hw_rf_claim(ah);
499 if (ecode != 0)
500 return ecode;
501
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700502 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700503 if (ecode != 0)
504 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530505
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700506 ath_print(ath9k_hw_common(ah), ATH_DBG_CONFIG,
507 "Eeprom VER: %d, REV: %d\n",
508 ah->eep_ops->get_eeprom_ver(ah),
509 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530510
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400511 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
512 if (ecode) {
513 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
514 "Failed allocating banks for "
515 "external radio\n");
516 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400517 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700518
519 if (!AR_SREV_9100(ah)) {
520 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700521 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700522 }
Sujithf1dc5602008-10-29 10:16:30 +0530523
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700524 return 0;
525}
526
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100527static void ath9k_hw_init_eeprom_fix(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700528{
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400529 struct base_eep_header *pBase = &(ah->eeprom.def.baseEepHeader);
530 struct ath_common *common = ath9k_hw_common(ah);
Sujith06d0f062009-02-12 10:06:45 +0530531
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400532 ah->need_an_top2_fixup = (ah->hw_version.devid == AR9280_DEVID_PCI) &&
Senthil Balasubramanian939ad862010-04-15 17:38:50 -0400533 !AR_SREV_9285(ah) && !AR_SREV_9271(ah) &&
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400534 ((pBase->version & 0xff) > 0x0a) &&
535 (pBase->pwdclkind == 0);
Sujith06d0f062009-02-12 10:06:45 +0530536
Pavel Roskin2eb46d92010-04-07 01:33:33 -0400537 if (ah->need_an_top2_fixup)
538 ath_print(common, ATH_DBG_EEPROM,
539 "needs fixup for AR_AN_TOP2 register\n");
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700540}
541
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400542static void ath9k_hw_attach_ops(struct ath_hw *ah)
543{
544 if (AR_SREV_9300_20_OR_LATER(ah))
545 ar9003_hw_attach_ops(ah);
546 else
547 ar9002_hw_attach_ops(ah);
548}
549
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400550/* Called for all hardware families */
551static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700552{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700553 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700554 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700555
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400556 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
557 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700558
559 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700560 ath_print(common, ATH_DBG_FATAL,
561 "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700562 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700563 }
564
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400565 ath9k_hw_init_defaults(ah);
566 ath9k_hw_init_config(ah);
567
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400568 ath9k_hw_attach_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400569
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700570 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700571 ath_print(common, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700572 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700573 }
574
575 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
576 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
577 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
578 ah->config.serialize_regmode =
579 SER_REG_MODE_ON;
580 } else {
581 ah->config.serialize_regmode =
582 SER_REG_MODE_OFF;
583 }
584 }
585
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700586 ath_print(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700587 ah->config.serialize_regmode);
588
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500589 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
590 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
591 else
592 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
593
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400594 if (!ath9k_hw_macversion_supported(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700595 ath_print(common, ATH_DBG_FATAL,
596 "Mac Chip Rev 0x%02x.%x is not supported by "
597 "this driver\n", ah->hw_version.macVersion,
598 ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700599 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700600 }
601
Luis R. Rodriguez0df13da2010-04-15 17:38:59 -0400602 if (AR_SREV_9271(ah) || AR_SREV_9100(ah))
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400603 ah->is_pciexpress = false;
604
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700605 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700606 ath9k_hw_init_cal_settings(ah);
607
608 ah->ani_function = ATH9K_ANI_ALL;
Luis R. Rodriguez31a0bd32010-04-15 17:38:22 -0400609 if (AR_SREV_9280_10_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700610 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
611
612 ath9k_hw_init_mode_regs(ah);
613
614 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530615 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700616 else
617 ath9k_hw_disablepcie(ah);
618
Luis R. Rodriguezd8f492b2010-04-15 17:39:04 -0400619 if (!AR_SREV_9300_20_OR_LATER(ah))
620 ar9002_hw_cck_chan14_spread(ah);
Sujith193cd452009-09-18 15:04:07 +0530621
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700622 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700623 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700624 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700625
626 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100627 r = ath9k_hw_fill_cap_info(ah);
628 if (r)
629 return r;
630
Felix Fietkauaa8bc9e2010-01-23 20:04:18 +0100631 ath9k_hw_init_eeprom_fix(ah);
Sujithf6688cd2008-12-07 21:43:10 +0530632
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700633 r = ath9k_hw_init_macaddr(ah);
634 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700635 ath_print(common, ATH_DBG_FATAL,
636 "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700637 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700638 }
639
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400640 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530641 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700642 else
Sujith2660b812009-02-09 13:27:26 +0530643 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700644
Felix Fietkau641d9922010-04-15 17:38:49 -0400645 if (AR_SREV_9300_20_OR_LATER(ah))
646 ar9003_hw_set_nf_limits(ah);
647
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700648 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700649
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400650 common->state = ATH_HW_INITIALIZED;
651
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700652 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700653}
654
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400655int ath9k_hw_init(struct ath_hw *ah)
656{
657 int ret;
658 struct ath_common *common = ath9k_hw_common(ah);
659
660 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
661 switch (ah->hw_version.devid) {
662 case AR5416_DEVID_PCI:
663 case AR5416_DEVID_PCIE:
664 case AR5416_AR9100_DEVID:
665 case AR9160_DEVID_PCI:
666 case AR9280_DEVID_PCI:
667 case AR9280_DEVID_PCIE:
668 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400669 case AR9287_DEVID_PCI:
670 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400671 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400672 case AR9300_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400673 break;
674 default:
675 if (common->bus_ops->ath_bus_type == ATH_USB)
676 break;
677 ath_print(common, ATH_DBG_FATAL,
678 "Hardware device ID 0x%04x not supported\n",
679 ah->hw_version.devid);
680 return -EOPNOTSUPP;
681 }
682
683 ret = __ath9k_hw_init(ah);
684 if (ret) {
685 ath_print(common, ATH_DBG_FATAL,
686 "Unable to initialize hardware; "
687 "initialization status: %d\n", ret);
688 return ret;
689 }
690
691 return 0;
692}
693EXPORT_SYMBOL(ath9k_hw_init);
694
Sujithcbe61d82009-02-09 13:27:12 +0530695static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530696{
697 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
698 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
699
700 REG_WRITE(ah, AR_QOS_NO_ACK,
701 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
702 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
703 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
704
705 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
706 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
707 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
708 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
709 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
710}
711
Sujithcbe61d82009-02-09 13:27:12 +0530712static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530713 struct ath9k_channel *chan)
714{
Luis R. Rodriguez64773962010-04-15 17:38:17 -0400715 u32 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530716
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100717 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530718
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400719 /* Switch the core clock for ar9271 to 117Mhz */
720 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530721 udelay(500);
722 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400723 }
724
Sujithf1dc5602008-10-29 10:16:30 +0530725 udelay(RTC_PLL_SETTLE_DELAY);
726
727 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
728}
729
Sujithcbe61d82009-02-09 13:27:12 +0530730static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800731 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530732{
Pavel Roskin152d5302010-03-31 18:05:37 -0400733 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530734 AR_IMR_TXURN |
735 AR_IMR_RXERR |
736 AR_IMR_RXORN |
737 AR_IMR_BCNMISC;
738
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400739 if (AR_SREV_9300_20_OR_LATER(ah)) {
740 imr_reg |= AR_IMR_RXOK_HP;
741 if (ah->config.rx_intr_mitigation)
742 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
743 else
744 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530745
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400746 } else {
747 if (ah->config.rx_intr_mitigation)
748 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
749 else
750 imr_reg |= AR_IMR_RXOK;
751 }
752
753 if (ah->config.tx_intr_mitigation)
754 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
755 else
756 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530757
Colin McCabed97809d2008-12-01 13:38:55 -0800758 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -0400759 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +0530760
Pavel Roskin152d5302010-03-31 18:05:37 -0400761 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500762 ah->imrs2_reg |= AR_IMR_S2_GTT;
763 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530764
765 if (!AR_SREV_9100(ah)) {
766 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
767 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
768 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
769 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400770
771 if (AR_SREV_9300_20_OR_LATER(ah)) {
772 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
773 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
774 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
775 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
776 }
Sujithf1dc5602008-10-29 10:16:30 +0530777}
778
Felix Fietkau0005baf2010-01-15 02:33:40 +0100779static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530780{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100781 u32 val = ath9k_hw_mac_to_clks(ah, us);
782 val = min(val, (u32) 0xFFFF);
783 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530784}
785
Felix Fietkau0005baf2010-01-15 02:33:40 +0100786static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530787{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100788 u32 val = ath9k_hw_mac_to_clks(ah, us);
789 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
790 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
791}
792
793static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
794{
795 u32 val = ath9k_hw_mac_to_clks(ah, us);
796 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
797 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530798}
799
Sujithcbe61d82009-02-09 13:27:12 +0530800static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +0530801{
Sujithf1dc5602008-10-29 10:16:30 +0530802 if (tu > 0xFFFF) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700803 ath_print(ath9k_hw_common(ah), ATH_DBG_XMIT,
804 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +0530805 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +0530806 return false;
807 } else {
808 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +0530809 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +0530810 return true;
811 }
812}
813
Felix Fietkau0005baf2010-01-15 02:33:40 +0100814void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530815{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100816 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
817 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +0100818 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100819 int sifstime;
820
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700821 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
822 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +0530823
Sujith2660b812009-02-09 13:27:26 +0530824 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +0530825 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +0530826 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100827
828 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
829 sifstime = 16;
830 else
831 sifstime = 10;
832
Felix Fietkaue239d852010-01-15 02:34:58 +0100833 /* As defined by IEEE 802.11-2007 17.3.8.6 */
834 slottime = ah->slottime + 3 * ah->coverage_class;
835 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +0100836
837 /*
838 * Workaround for early ACK timeouts, add an offset to match the
839 * initval's 64us ack timeout value.
840 * This was initially only meant to work around an issue with delayed
841 * BA frames in some implementations, but it has been found to fix ACK
842 * timeout issues in other cases as well.
843 */
844 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
845 acktimeout += 64 - sifstime - ah->slottime;
846
Felix Fietkaue239d852010-01-15 02:34:58 +0100847 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100848 ath9k_hw_set_ack_timeout(ah, acktimeout);
849 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +0530850 if (ah->globaltxtimeout != (u32) -1)
851 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +0530852}
Felix Fietkau0005baf2010-01-15 02:33:40 +0100853EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +0530854
Sujith285f2dd2010-01-08 10:36:07 +0530855void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700856{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400857 struct ath_common *common = ath9k_hw_common(ah);
858
Sujith736b3a22010-03-17 14:25:24 +0530859 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400860 goto free_hw;
861
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700862 if (!AR_SREV_9100(ah))
Luis R. Rodrigueze70c0cf2009-08-03 12:24:51 -0700863 ath9k_hw_ani_disable(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700864
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700865 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400866
867free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400868 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700869}
Sujith285f2dd2010-01-08 10:36:07 +0530870EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700871
Sujithf1dc5602008-10-29 10:16:30 +0530872/*******/
873/* INI */
874/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700875
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400876u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -0400877{
878 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
879
880 if (IS_CHAN_B(chan))
881 ctl |= CTL_11B;
882 else if (IS_CHAN_G(chan))
883 ctl |= CTL_11G;
884 else
885 ctl |= CTL_11A;
886
887 return ctl;
888}
889
Sujithf1dc5602008-10-29 10:16:30 +0530890/****************************************/
891/* Reset and Channel Switching Routines */
892/****************************************/
893
Sujithcbe61d82009-02-09 13:27:12 +0530894static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530895{
896 u32 regval;
897
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400898 /*
899 * set AHB_MODE not to do cacheline prefetches
900 */
Sujithf1dc5602008-10-29 10:16:30 +0530901 regval = REG_READ(ah, AR_AHB_MODE);
902 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
903
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400904 /*
905 * let mac dma reads be in 128 byte chunks
906 */
Sujithf1dc5602008-10-29 10:16:30 +0530907 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
908 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
909
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400910 /*
911 * Restore TX Trigger Level to its pre-reset value.
912 * The initial value depends on whether aggregation is enabled, and is
913 * adjusted whenever underruns are detected.
914 */
Sujith2660b812009-02-09 13:27:26 +0530915 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +0530916
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400917 /*
918 * let mac dma writes be in 128 byte chunks
919 */
Sujithf1dc5602008-10-29 10:16:30 +0530920 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
921 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
922
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400923 /*
924 * Setup receive FIFO threshold to hold off TX activities
925 */
Sujithf1dc5602008-10-29 10:16:30 +0530926 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
927
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400928 /*
929 * reduce the number of usable entries in PCU TXBUF to avoid
930 * wrap around issues.
931 */
Sujithf1dc5602008-10-29 10:16:30 +0530932 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400933 /* For AR9285 the number of Fifos are reduced to half.
934 * So set the usable tx buf size also to half to
935 * avoid data/delimiter underruns
936 */
Sujithf1dc5602008-10-29 10:16:30 +0530937 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
938 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400939 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +0530940 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
941 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
942 }
943}
944
Sujithcbe61d82009-02-09 13:27:12 +0530945static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530946{
947 u32 val;
948
949 val = REG_READ(ah, AR_STA_ID1);
950 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
951 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -0800952 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +0530953 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
954 | AR_STA_ID1_KSRCH_MODE);
955 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
956 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800957 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400958 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +0530959 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
960 | AR_STA_ID1_KSRCH_MODE);
961 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
962 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800963 case NL80211_IFTYPE_STATION:
964 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +0530965 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
966 break;
967 }
968}
969
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400970void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
971 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700972{
973 u32 coef_exp, coef_man;
974
975 for (coef_exp = 31; coef_exp > 0; coef_exp--)
976 if ((coef_scaled >> coef_exp) & 0x1)
977 break;
978
979 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
980
981 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
982
983 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
984 *coef_exponent = coef_exp - 16;
985}
986
Sujithcbe61d82009-02-09 13:27:12 +0530987static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +0530988{
989 u32 rst_flags;
990 u32 tmpReg;
991
Sujith70768492009-02-16 13:23:12 +0530992 if (AR_SREV_9100(ah)) {
993 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
994 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
995 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
996 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
997 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
998 }
999
Sujithf1dc5602008-10-29 10:16:30 +05301000 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1001 AR_RTC_FORCE_WAKE_ON_INT);
1002
1003 if (AR_SREV_9100(ah)) {
1004 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1005 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1006 } else {
1007 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1008 if (tmpReg &
1009 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1010 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001011 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301012 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001013
1014 val = AR_RC_HOSTIF;
1015 if (!AR_SREV_9300_20_OR_LATER(ah))
1016 val |= AR_RC_AHB;
1017 REG_WRITE(ah, AR_RC, val);
1018
1019 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301020 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301021
1022 rst_flags = AR_RTC_RC_MAC_WARM;
1023 if (type == ATH9K_RESET_COLD)
1024 rst_flags |= AR_RTC_RC_MAC_COLD;
1025 }
1026
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001027 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujithf1dc5602008-10-29 10:16:30 +05301028 udelay(50);
1029
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001030 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301031 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001032 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1033 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301034 return false;
1035 }
1036
1037 if (!AR_SREV_9100(ah))
1038 REG_WRITE(ah, AR_RC, 0);
1039
Sujithf1dc5602008-10-29 10:16:30 +05301040 if (AR_SREV_9100(ah))
1041 udelay(50);
1042
1043 return true;
1044}
1045
Sujithcbe61d82009-02-09 13:27:12 +05301046static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301047{
1048 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1049 AR_RTC_FORCE_WAKE_ON_INT);
1050
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001051 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301052 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1053
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001054 REG_WRITE(ah, AR_RTC_RESET, 0);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301055
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001056 if (!AR_SREV_9300_20_OR_LATER(ah))
1057 udelay(2);
1058
1059 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301060 REG_WRITE(ah, AR_RC, 0);
1061
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001062 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301063
1064 if (!ath9k_hw_wait(ah,
1065 AR_RTC_STATUS,
1066 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301067 AR_RTC_STATUS_ON,
1068 AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001069 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1070 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301071 return false;
1072 }
1073
1074 ath9k_hw_read_revisions(ah);
1075
1076 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1077}
1078
Sujithcbe61d82009-02-09 13:27:12 +05301079static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301080{
1081 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1082 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1083
1084 switch (type) {
1085 case ATH9K_RESET_POWER_ON:
1086 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301087 case ATH9K_RESET_WARM:
1088 case ATH9K_RESET_COLD:
1089 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301090 default:
1091 return false;
1092 }
1093}
1094
Sujithcbe61d82009-02-09 13:27:12 +05301095static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301096 struct ath9k_channel *chan)
1097{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301098 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301099 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1100 return false;
1101 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301102 return false;
1103
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001104 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301105 return false;
1106
Sujith2660b812009-02-09 13:27:26 +05301107 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301108 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301109 ath9k_hw_set_rfmode(ah, chan);
1110
1111 return true;
1112}
1113
Sujithcbe61d82009-02-09 13:27:12 +05301114static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001115 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301116{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001117 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001118 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001119 struct ieee80211_channel *channel = chan->chan;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001120 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001121 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301122
1123 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1124 if (ath9k_hw_numtxpending(ah, qnum)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001125 ath_print(common, ATH_DBG_QUEUE,
1126 "Transmit frames pending on "
1127 "queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301128 return false;
1129 }
1130 }
1131
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001132 if (!ath9k_hw_rfbus_req(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001133 ath_print(common, ATH_DBG_FATAL,
1134 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301135 return false;
1136 }
1137
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001138 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301139
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001140 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001141 if (r) {
1142 ath_print(common, ATH_DBG_FATAL,
1143 "Failed to set channel\n");
1144 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301145 }
1146
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001147 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001148 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301149 channel->max_antenna_gain * 2,
1150 channel->max_power * 2,
1151 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001152 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301153
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001154 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301155
1156 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1157 ath9k_hw_set_delta_slope(ah, chan);
1158
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001159 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301160
1161 if (!chan->oneTimeCalsDone)
1162 chan->oneTimeCalsDone = true;
1163
1164 return true;
1165}
1166
Sujithcbe61d82009-02-09 13:27:12 +05301167int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001168 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001169{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001170 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001171 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301172 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001173 u32 saveDefAntenna;
1174 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301175 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001176 int i, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001177
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001178 ah->txchainmask = common->tx_chainmask;
1179 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001180
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001181 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001182 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001183
Vasanthakumar Thiagarajan9ebef7992009-09-17 09:26:44 +05301184 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001185 ath9k_hw_getnf(ah, curchan);
1186
1187 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301188 (ah->chip_fullsleep != true) &&
1189 (ah->curchan != NULL) &&
1190 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001191 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301192 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Vasanthakumar Thiagarajan0a475cc2009-09-17 09:27:10 +05301193 !(AR_SREV_9280(ah) || IS_CHAN_A_5MHZ_SPACED(chan) ||
1194 IS_CHAN_A_5MHZ_SPACED(ah->curchan))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001195
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001196 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301197 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001198 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001199 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001200 }
1201 }
1202
1203 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1204 if (saveDefAntenna == 0)
1205 saveDefAntenna = 1;
1206
1207 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1208
Sujith46fe7822009-09-17 09:25:25 +05301209 /* For chips on which RTC reset is done, save TSF before it gets cleared */
1210 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1211 tsf = ath9k_hw_gettsf64(ah);
1212
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001213 saveLedState = REG_READ(ah, AR_CFG_LED) &
1214 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1215 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1216
1217 ath9k_hw_mark_phy_inactive(ah);
1218
Sujith05020d22010-03-17 14:25:23 +05301219 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001220 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1221 REG_WRITE(ah,
1222 AR9271_RESET_POWER_DOWN_CONTROL,
1223 AR9271_RADIO_RF_RST);
1224 udelay(50);
1225 }
1226
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001227 if (!ath9k_hw_chip_reset(ah, chan)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001228 ath_print(common, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001229 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001230 }
1231
Sujith05020d22010-03-17 14:25:23 +05301232 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001233 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1234 ah->htc_reset_init = false;
1235 REG_WRITE(ah,
1236 AR9271_RESET_POWER_DOWN_CONTROL,
1237 AR9271_GATE_MAC_CTL);
1238 udelay(50);
1239 }
1240
Sujith46fe7822009-09-17 09:25:25 +05301241 /* Restore TSF */
1242 if (tsf && AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1243 ath9k_hw_settsf64(ah, tsf);
1244
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301245 if (AR_SREV_9280_10_OR_LATER(ah))
1246 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001247
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001248 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001249 if (r)
1250 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001251
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001252 /* Setup MFP options for CCMP */
1253 if (AR_SREV_9280_20_OR_LATER(ah)) {
1254 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1255 * frames when constructing CCMP AAD. */
1256 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1257 0xc7ff);
1258 ah->sw_mgmt_crypto = false;
1259 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1260 /* Disable hardware crypto for management frames */
1261 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1262 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1263 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1264 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1265 ah->sw_mgmt_crypto = true;
1266 } else
1267 ah->sw_mgmt_crypto = true;
1268
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001269 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1270 ath9k_hw_set_delta_slope(ah, chan);
1271
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001272 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301273 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001274
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001275 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1276 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001277 | macStaId1
1278 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301279 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301280 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301281 | ah->sta_id1_defaults);
1282 ath9k_hw_set_operating_mode(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001283
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001284 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001285
1286 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
1287
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001288 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001289
1290 REG_WRITE(ah, AR_ISR, ~0);
1291
1292 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1293
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001294 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001295 if (r)
1296 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001297
1298 for (i = 0; i < AR_NUM_DCU; i++)
1299 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1300
Sujith2660b812009-02-09 13:27:26 +05301301 ah->intr_txqs = 0;
1302 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001303 ath9k_hw_resettxqueue(ah, i);
1304
Sujith2660b812009-02-09 13:27:26 +05301305 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001306 ath9k_hw_init_qos(ah);
1307
Sujith2660b812009-02-09 13:27:26 +05301308 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301309 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301310
Felix Fietkau0005baf2010-01-15 02:33:40 +01001311 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001312
Vivek Natarajan326bebb2009-08-14 11:33:36 +05301313 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301314 REG_WRITE(ah, AR_D_GBL_IFS_SIFS,
1315 AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR);
1316 REG_WRITE(ah, AR_D_GBL_IFS_SLOT,
1317 AR_D_GBL_IFS_SLOT_ASYNC_FIFO_DUR);
1318 REG_WRITE(ah, AR_D_GBL_IFS_EIFS,
1319 AR_D_GBL_IFS_EIFS_ASYNC_FIFO_DUR);
1320
1321 REG_WRITE(ah, AR_TIME_OUT, AR_TIME_OUT_ACK_CTS_ASYNC_FIFO_DUR);
1322 REG_WRITE(ah, AR_USEC, AR_USEC_ASYNC_FIFO_DUR);
1323
1324 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
1325 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
1326 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
1327 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
1328 }
Vivek Natarajan326bebb2009-08-14 11:33:36 +05301329 if (AR_SREV_9287_12_OR_LATER(ah)) {
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301330 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1331 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
1332 }
1333
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001334 REG_WRITE(ah, AR_STA_ID1,
1335 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
1336
1337 ath9k_hw_set_dma(ah);
1338
1339 REG_WRITE(ah, AR_OBS, 8);
1340
Sujith0ce024c2009-12-14 14:57:00 +05301341 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001342 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1343 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1344 }
1345
1346 ath9k_hw_init_bb(ah, chan);
1347
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001348 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001349 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001350
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001351 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001352 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1353
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001354 /*
1355 * For big endian systems turn on swapping for descriptors
1356 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001357 if (AR_SREV_9100(ah)) {
1358 u32 mask;
1359 mask = REG_READ(ah, AR_CFG);
1360 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001361 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301362 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001363 } else {
1364 mask =
1365 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1366 REG_WRITE(ah, AR_CFG, mask);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001367 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301368 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001369 }
1370 } else {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001371 /* Configure AR9271 target WLAN */
1372 if (AR_SREV_9271(ah))
1373 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001374#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001375 else
1376 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001377#endif
1378 }
1379
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001380 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301381 ath9k_hw_btcoex_enable(ah);
1382
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001383 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001384}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001385EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001386
Sujithf1dc5602008-10-29 10:16:30 +05301387/************************/
1388/* Key Cache Management */
1389/************************/
1390
Sujithcbe61d82009-02-09 13:27:12 +05301391bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001392{
Sujithf1dc5602008-10-29 10:16:30 +05301393 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001394
Sujith2660b812009-02-09 13:27:26 +05301395 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001396 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1397 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001398 return false;
1399 }
1400
Sujithf1dc5602008-10-29 10:16:30 +05301401 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001402
Sujithf1dc5602008-10-29 10:16:30 +05301403 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
1404 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
1405 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
1406 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
1407 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
1408 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
1409 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
1410 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
1411
1412 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1413 u16 micentry = entry + 64;
1414
1415 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
1416 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
1417 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
1418 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
1419
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001420 }
1421
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001422 return true;
1423}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001424EXPORT_SYMBOL(ath9k_hw_keyreset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001425
Sujithcbe61d82009-02-09 13:27:12 +05301426bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001427{
Sujithf1dc5602008-10-29 10:16:30 +05301428 u32 macHi, macLo;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001429
Sujith2660b812009-02-09 13:27:26 +05301430 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001431 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1432 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001433 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001434 }
1435
Sujithf1dc5602008-10-29 10:16:30 +05301436 if (mac != NULL) {
1437 macHi = (mac[5] << 8) | mac[4];
1438 macLo = (mac[3] << 24) |
1439 (mac[2] << 16) |
1440 (mac[1] << 8) |
1441 mac[0];
1442 macLo >>= 1;
1443 macLo |= (macHi & 1) << 31;
1444 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001445 } else {
Sujithf1dc5602008-10-29 10:16:30 +05301446 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001447 }
Sujithf1dc5602008-10-29 10:16:30 +05301448 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
1449 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001450
1451 return true;
1452}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001453EXPORT_SYMBOL(ath9k_hw_keysetmac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001454
Sujithcbe61d82009-02-09 13:27:12 +05301455bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05301456 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001457 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001458{
Sujith2660b812009-02-09 13:27:26 +05301459 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001460 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301461 u32 key0, key1, key2, key3, key4;
1462 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001463
Sujithf1dc5602008-10-29 10:16:30 +05301464 if (entry >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001465 ath_print(common, ATH_DBG_FATAL,
1466 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05301467 return false;
1468 }
1469
1470 switch (k->kv_type) {
1471 case ATH9K_CIPHER_AES_OCB:
1472 keyType = AR_KEYTABLE_TYPE_AES;
1473 break;
1474 case ATH9K_CIPHER_AES_CCM:
1475 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001476 ath_print(common, ATH_DBG_ANY,
1477 "AES-CCM not supported by mac rev 0x%x\n",
1478 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001479 return false;
1480 }
Sujithf1dc5602008-10-29 10:16:30 +05301481 keyType = AR_KEYTABLE_TYPE_CCM;
1482 break;
1483 case ATH9K_CIPHER_TKIP:
1484 keyType = AR_KEYTABLE_TYPE_TKIP;
1485 if (ATH9K_IS_MIC_ENABLED(ah)
1486 && entry + 64 >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001487 ath_print(common, ATH_DBG_ANY,
1488 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001489 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001490 }
Sujithf1dc5602008-10-29 10:16:30 +05301491 break;
1492 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08001493 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001494 ath_print(common, ATH_DBG_ANY,
1495 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05301496 return false;
1497 }
Zhu Yie31a16d2009-05-21 21:47:03 +08001498 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05301499 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08001500 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301501 keyType = AR_KEYTABLE_TYPE_104;
1502 else
1503 keyType = AR_KEYTABLE_TYPE_128;
1504 break;
1505 case ATH9K_CIPHER_CLR:
1506 keyType = AR_KEYTABLE_TYPE_CLR;
1507 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001508 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001509 ath_print(common, ATH_DBG_FATAL,
1510 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001511 return false;
1512 }
Sujithf1dc5602008-10-29 10:16:30 +05301513
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001514 key0 = get_unaligned_le32(k->kv_val + 0);
1515 key1 = get_unaligned_le16(k->kv_val + 4);
1516 key2 = get_unaligned_le32(k->kv_val + 6);
1517 key3 = get_unaligned_le16(k->kv_val + 10);
1518 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08001519 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301520 key4 &= 0xff;
1521
Jouni Malinen672903b2009-03-02 15:06:31 +02001522 /*
1523 * Note: Key cache registers access special memory area that requires
1524 * two 32-bit writes to actually update the values in the internal
1525 * memory. Consequently, the exact order and pairs used here must be
1526 * maintained.
1527 */
1528
Sujithf1dc5602008-10-29 10:16:30 +05301529 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1530 u16 micentry = entry + 64;
1531
Jouni Malinen672903b2009-03-02 15:06:31 +02001532 /*
1533 * Write inverted key[47:0] first to avoid Michael MIC errors
1534 * on frames that could be sent or received at the same time.
1535 * The correct key will be written in the end once everything
1536 * else is ready.
1537 */
Sujithf1dc5602008-10-29 10:16:30 +05301538 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
1539 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001540
1541 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301542 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1543 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001544
1545 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301546 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1547 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02001548
1549 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301550 (void) ath9k_hw_keysetmac(ah, entry, mac);
1551
Sujith2660b812009-02-09 13:27:26 +05301552 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02001553 /*
1554 * TKIP uses two key cache entries:
1555 * Michael MIC TX/RX keys in the same key cache entry
1556 * (idx = main index + 64):
1557 * key0 [31:0] = RX key [31:0]
1558 * key1 [15:0] = TX key [31:16]
1559 * key1 [31:16] = reserved
1560 * key2 [31:0] = RX key [63:32]
1561 * key3 [15:0] = TX key [15:0]
1562 * key3 [31:16] = reserved
1563 * key4 [31:0] = TX key [63:32]
1564 */
Sujithf1dc5602008-10-29 10:16:30 +05301565 u32 mic0, mic1, mic2, mic3, mic4;
1566
1567 mic0 = get_unaligned_le32(k->kv_mic + 0);
1568 mic2 = get_unaligned_le32(k->kv_mic + 4);
1569 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
1570 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
1571 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001572
1573 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05301574 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1575 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001576
1577 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301578 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1579 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001580
1581 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301582 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
1583 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1584 AR_KEYTABLE_TYPE_CLR);
1585
1586 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001587 /*
1588 * TKIP uses four key cache entries (two for group
1589 * keys):
1590 * Michael MIC TX/RX keys are in different key cache
1591 * entries (idx = main index + 64 for TX and
1592 * main index + 32 + 96 for RX):
1593 * key0 [31:0] = TX/RX MIC key [31:0]
1594 * key1 [31:0] = reserved
1595 * key2 [31:0] = TX/RX MIC key [63:32]
1596 * key3 [31:0] = reserved
1597 * key4 [31:0] = reserved
1598 *
1599 * Upper layer code will call this function separately
1600 * for TX and RX keys when these registers offsets are
1601 * used.
1602 */
Sujithf1dc5602008-10-29 10:16:30 +05301603 u32 mic0, mic2;
1604
1605 mic0 = get_unaligned_le32(k->kv_mic + 0);
1606 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001607
1608 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301609 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1610 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001611
1612 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05301613 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1614 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001615
1616 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301617 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
1618 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1619 AR_KEYTABLE_TYPE_CLR);
1620 }
Jouni Malinen672903b2009-03-02 15:06:31 +02001621
1622 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05301623 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
1624 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001625
1626 /*
1627 * Write the correct (un-inverted) key[47:0] last to enable
1628 * TKIP now that all other registers are set with correct
1629 * values.
1630 */
Sujithf1dc5602008-10-29 10:16:30 +05301631 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1632 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
1633 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001634 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301635 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1636 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001637
1638 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301639 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1640 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001641
1642 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301643 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1644 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
1645
Jouni Malinen672903b2009-03-02 15:06:31 +02001646 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301647 (void) ath9k_hw_keysetmac(ah, entry, mac);
1648 }
1649
Sujithf1dc5602008-10-29 10:16:30 +05301650 return true;
1651}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001652EXPORT_SYMBOL(ath9k_hw_set_keycache_entry);
Sujithf1dc5602008-10-29 10:16:30 +05301653
Sujithcbe61d82009-02-09 13:27:12 +05301654bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05301655{
Sujith2660b812009-02-09 13:27:26 +05301656 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05301657 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
1658 if (val & AR_KEYTABLE_VALID)
1659 return true;
1660 }
1661 return false;
1662}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001663EXPORT_SYMBOL(ath9k_hw_keyisvalid);
Sujithf1dc5602008-10-29 10:16:30 +05301664
1665/******************************/
1666/* Power Management (Chipset) */
1667/******************************/
1668
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001669/*
1670 * Notify Power Mgt is disabled in self-generated frames.
1671 * If requested, force chip to sleep.
1672 */
Sujithcbe61d82009-02-09 13:27:12 +05301673static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301674{
1675 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1676 if (setChip) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001677 /*
1678 * Clear the RTC force wake bit to allow the
1679 * mac to go to sleep.
1680 */
Sujithf1dc5602008-10-29 10:16:30 +05301681 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1682 AR_RTC_FORCE_WAKE_EN);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001683 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301684 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1685
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001686 /* Shutdown chip. Active low */
Sujith14b3af32010-03-17 14:25:18 +05301687 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05301688 REG_CLR_BIT(ah, (AR_RTC_RESET),
1689 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301690 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001691}
1692
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001693/*
1694 * Notify Power Management is enabled in self-generating
1695 * frames. If request, set power mode of chip to
1696 * auto/normal. Duration in units of 128us (1/8 TU).
1697 */
Sujithcbe61d82009-02-09 13:27:12 +05301698static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001699{
Sujithf1dc5602008-10-29 10:16:30 +05301700 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1701 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05301702 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001703
Sujithf1dc5602008-10-29 10:16:30 +05301704 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001705 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05301706 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1707 AR_RTC_FORCE_WAKE_ON_INT);
1708 } else {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001709 /*
1710 * Clear the RTC force wake bit to allow the
1711 * mac to go to sleep.
1712 */
Sujithf1dc5602008-10-29 10:16:30 +05301713 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1714 AR_RTC_FORCE_WAKE_EN);
1715 }
1716 }
1717}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001718
Sujithcbe61d82009-02-09 13:27:12 +05301719static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301720{
1721 u32 val;
1722 int i;
1723
1724 if (setChip) {
1725 if ((REG_READ(ah, AR_RTC_STATUS) &
1726 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
1727 if (ath9k_hw_set_reset_reg(ah,
1728 ATH9K_RESET_POWER_ON) != true) {
1729 return false;
1730 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04001731 if (!AR_SREV_9300_20_OR_LATER(ah))
1732 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05301733 }
1734 if (AR_SREV_9100(ah))
1735 REG_SET_BIT(ah, AR_RTC_RESET,
1736 AR_RTC_RESET_EN);
1737
1738 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1739 AR_RTC_FORCE_WAKE_EN);
1740 udelay(50);
1741
1742 for (i = POWER_UP_TIME / 50; i > 0; i--) {
1743 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
1744 if (val == AR_RTC_STATUS_ON)
1745 break;
1746 udelay(50);
1747 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1748 AR_RTC_FORCE_WAKE_EN);
1749 }
1750 if (i == 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001751 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1752 "Failed to wakeup in %uus\n",
1753 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05301754 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001755 }
1756 }
1757
Sujithf1dc5602008-10-29 10:16:30 +05301758 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1759
1760 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001761}
1762
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001763bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05301764{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001765 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05301766 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05301767 static const char *modes[] = {
1768 "AWAKE",
1769 "FULL-SLEEP",
1770 "NETWORK SLEEP",
1771 "UNDEFINED"
1772 };
Sujithf1dc5602008-10-29 10:16:30 +05301773
Gabor Juhoscbdec972009-07-24 17:27:22 +02001774 if (ah->power_mode == mode)
1775 return status;
1776
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001777 ath_print(common, ATH_DBG_RESET, "%s -> %s\n",
1778 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05301779
1780 switch (mode) {
1781 case ATH9K_PM_AWAKE:
1782 status = ath9k_hw_set_power_awake(ah, setChip);
1783 break;
1784 case ATH9K_PM_FULL_SLEEP:
1785 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05301786 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05301787 break;
1788 case ATH9K_PM_NETWORK_SLEEP:
1789 ath9k_set_power_network_sleep(ah, setChip);
1790 break;
1791 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001792 ath_print(common, ATH_DBG_FATAL,
1793 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05301794 return false;
1795 }
Sujith2660b812009-02-09 13:27:26 +05301796 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05301797
1798 return status;
1799}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001800EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05301801
Sujithf1dc5602008-10-29 10:16:30 +05301802/*******************/
1803/* Beacon Handling */
1804/*******************/
1805
Sujithcbe61d82009-02-09 13:27:12 +05301806void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001807{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001808 int flags = 0;
1809
Sujith2660b812009-02-09 13:27:26 +05301810 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001811
Sujith2660b812009-02-09 13:27:26 +05301812 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001813 case NL80211_IFTYPE_STATION:
1814 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001815 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1816 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
1817 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
1818 flags |= AR_TBTT_TIMER_EN;
1819 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001820 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001821 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001822 REG_SET_BIT(ah, AR_TXCFG,
1823 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
1824 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
1825 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05301826 (ah->atim_window ? ah->
1827 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001828 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08001829 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001830 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1831 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
1832 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301833 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301834 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001835 REG_WRITE(ah, AR_NEXT_SWBA,
1836 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301837 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301838 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001839 flags |=
1840 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
1841 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001842 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001843 ath_print(ath9k_hw_common(ah), ATH_DBG_BEACON,
1844 "%s: unsupported opmode: %d\n",
1845 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08001846 return;
1847 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001848 }
1849
1850 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1851 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1852 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
1853 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
1854
1855 beacon_period &= ~ATH9K_BEACON_ENA;
1856 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001857 ath9k_hw_reset_tsf(ah);
1858 }
1859
1860 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
1861}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001862EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001863
Sujithcbe61d82009-02-09 13:27:12 +05301864void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301865 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001866{
1867 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05301868 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001869 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001870
1871 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
1872
1873 REG_WRITE(ah, AR_BEACON_PERIOD,
1874 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1875 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
1876 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1877
1878 REG_RMW_FIELD(ah, AR_RSSI_THR,
1879 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
1880
1881 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
1882
1883 if (bs->bs_sleepduration > beaconintval)
1884 beaconintval = bs->bs_sleepduration;
1885
1886 dtimperiod = bs->bs_dtimperiod;
1887 if (bs->bs_sleepduration > dtimperiod)
1888 dtimperiod = bs->bs_sleepduration;
1889
1890 if (beaconintval == dtimperiod)
1891 nextTbtt = bs->bs_nextdtim;
1892 else
1893 nextTbtt = bs->bs_nexttbtt;
1894
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001895 ath_print(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
1896 ath_print(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
1897 ath_print(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
1898 ath_print(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001899
1900 REG_WRITE(ah, AR_NEXT_DTIM,
1901 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
1902 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
1903
1904 REG_WRITE(ah, AR_SLEEP1,
1905 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
1906 | AR_SLEEP1_ASSUME_DTIM);
1907
Sujith60b67f52008-08-07 10:52:38 +05301908 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001909 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
1910 else
1911 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
1912
1913 REG_WRITE(ah, AR_SLEEP2,
1914 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
1915
1916 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
1917 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
1918
1919 REG_SET_BIT(ah, AR_TIMER_MODE,
1920 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
1921 AR_DTIM_TIMER_EN);
1922
Sujith4af9cf42009-02-12 10:06:47 +05301923 /* TSF Out of Range Threshold */
1924 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001925}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001926EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001927
Sujithf1dc5602008-10-29 10:16:30 +05301928/*******************/
1929/* HW Capabilities */
1930/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001931
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001932int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001933{
Sujith2660b812009-02-09 13:27:26 +05301934 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001935 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001936 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001937 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001938
Sujithf1dc5602008-10-29 10:16:30 +05301939 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001940
Sujithf74df6f2009-02-09 13:27:24 +05301941 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001942 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301943
Sujithf74df6f2009-02-09 13:27:24 +05301944 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05301945 if (AR_SREV_9285_10_OR_LATER(ah))
1946 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001947 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301948
Sujithf74df6f2009-02-09 13:27:24 +05301949 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05301950
Sujith2660b812009-02-09 13:27:26 +05301951 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05301952 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001953 if (regulatory->current_rd == 0x64 ||
1954 regulatory->current_rd == 0x65)
1955 regulatory->current_rd += 5;
1956 else if (regulatory->current_rd == 0x41)
1957 regulatory->current_rd = 0x43;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001958 ath_print(common, ATH_DBG_REGULATORY,
1959 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001960 }
Sujithdc2222a2008-08-14 13:26:55 +05301961
Sujithf74df6f2009-02-09 13:27:24 +05301962 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001963 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
1964 ath_print(common, ATH_DBG_FATAL,
1965 "no band has been marked as supported in EEPROM.\n");
1966 return -EINVAL;
1967 }
1968
Sujithf1dc5602008-10-29 10:16:30 +05301969 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001970
Sujithf1dc5602008-10-29 10:16:30 +05301971 if (eeval & AR5416_OPFLAGS_11A) {
1972 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05301973 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05301974 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
1975 set_bit(ATH9K_MODE_11NA_HT20,
1976 pCap->wireless_modes);
1977 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
1978 set_bit(ATH9K_MODE_11NA_HT40PLUS,
1979 pCap->wireless_modes);
1980 set_bit(ATH9K_MODE_11NA_HT40MINUS,
1981 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001982 }
1983 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001984 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001985
Sujithf1dc5602008-10-29 10:16:30 +05301986 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05301987 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05301988 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05301989 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
1990 set_bit(ATH9K_MODE_11NG_HT20,
1991 pCap->wireless_modes);
1992 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
1993 set_bit(ATH9K_MODE_11NG_HT40PLUS,
1994 pCap->wireless_modes);
1995 set_bit(ATH9K_MODE_11NG_HT40MINUS,
1996 pCap->wireless_modes);
1997 }
1998 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07001999 }
Sujithf1dc5602008-10-29 10:16:30 +05302000
Sujithf74df6f2009-02-09 13:27:24 +05302001 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002002 /*
2003 * For AR9271 we will temporarilly uses the rx chainmax as read from
2004 * the EEPROM.
2005 */
Sujith8147f5d2009-02-20 15:13:23 +05302006 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002007 !(eeval & AR5416_OPFLAGS_11A) &&
2008 !(AR_SREV_9271(ah)))
2009 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05302010 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
2011 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002012 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05302013 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05302014
Sujithd535a422009-02-09 13:27:06 +05302015 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05302016 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05302017
2018 pCap->low_2ghz_chan = 2312;
2019 pCap->high_2ghz_chan = 2732;
2020
2021 pCap->low_5ghz_chan = 4920;
2022 pCap->high_5ghz_chan = 6100;
2023
2024 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
2025 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
2026 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
2027
2028 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
2029 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
2030 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
2031
Sujith2660b812009-02-09 13:27:26 +05302032 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05302033 pCap->hw_caps |= ATH9K_HW_CAP_HT;
2034 else
2035 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
2036
2037 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
2038 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
2039 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
2040 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
2041
2042 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
2043 pCap->total_queues =
2044 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
2045 else
2046 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
2047
2048 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
2049 pCap->keycache_size =
2050 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
2051 else
2052 pCap->keycache_size = AR_KEYTABLE_SIZE;
2053
2054 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -05002055
2056 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
2057 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
2058 else
2059 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
Sujithf1dc5602008-10-29 10:16:30 +05302060
Sujith5b5fa352010-03-17 14:25:15 +05302061 if (AR_SREV_9271(ah))
2062 pCap->num_gpio_pins = AR9271_NUM_GPIO;
2063 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302064 pCap->num_gpio_pins = AR9285_NUM_GPIO;
2065 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302066 pCap->num_gpio_pins = AR928X_NUM_GPIO;
2067 else
2068 pCap->num_gpio_pins = AR_NUM_GPIO;
2069
Sujithf1dc5602008-10-29 10:16:30 +05302070 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
2071 pCap->hw_caps |= ATH9K_HW_CAP_CST;
2072 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
2073 } else {
2074 pCap->rts_aggr_limit = (8 * 1024);
2075 }
2076
2077 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
2078
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302079#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05302080 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
2081 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
2082 ah->rfkill_gpio =
2083 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
2084 ah->rfkill_polarity =
2085 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05302086
2087 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
2088 }
2089#endif
Vivek Natarajanbde748a2010-04-05 14:48:05 +05302090 if (AR_SREV_9271(ah))
2091 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
2092 else
2093 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05302094
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302095 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302096 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
2097 else
2098 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
2099
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002100 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05302101 pCap->reg_cap =
2102 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2103 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
2104 AR_EEPROM_EEREGCAP_EN_KK_U2 |
2105 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
2106 } else {
2107 pCap->reg_cap =
2108 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2109 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
2110 }
2111
Senthil Balasubramanianebb90cf2009-09-18 15:07:33 +05302112 /* Advertise midband for AR5416 with FCC midband set in eeprom */
2113 if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
2114 AR_SREV_5416(ah))
2115 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
Sujithf1dc5602008-10-29 10:16:30 +05302116
2117 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302118 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302119 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302120 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302121
Vasanthakumar Thiagarajanfe129462009-09-09 15:25:50 +05302122 if (AR_SREV_9280_10_OR_LATER(ah) &&
Luis R. Rodrigueza36cfbc2009-09-09 16:05:32 -07002123 ath9k_hw_btcoex_supported(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002124 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
2125 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302126
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302127 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002128 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
2129 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302130 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002131 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302132 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302133 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002134 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05302135 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002136
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002137 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002138 pCap->hw_caps |= ATH9K_HW_CAP_EDMA;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002139 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
2140 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
2141 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002142 pCap->tx_desc_len = sizeof(struct ar9003_txc);
2143 } else {
2144 pCap->tx_desc_len = sizeof(struct ath_desc);
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002145 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002146
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002147 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002148}
2149
Sujithcbe61d82009-02-09 13:27:12 +05302150bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05302151 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002152{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002153 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302154 switch (type) {
2155 case ATH9K_CAP_CIPHER:
2156 switch (capability) {
2157 case ATH9K_CIPHER_AES_CCM:
2158 case ATH9K_CIPHER_AES_OCB:
2159 case ATH9K_CIPHER_TKIP:
2160 case ATH9K_CIPHER_WEP:
2161 case ATH9K_CIPHER_MIC:
2162 case ATH9K_CIPHER_CLR:
2163 return true;
2164 default:
2165 return false;
2166 }
2167 case ATH9K_CAP_TKIP_MIC:
2168 switch (capability) {
2169 case 0:
2170 return true;
2171 case 1:
Sujith2660b812009-02-09 13:27:26 +05302172 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05302173 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
2174 false;
2175 }
2176 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05302177 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05302178 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05302179 case ATH9K_CAP_MCAST_KEYSRCH:
2180 switch (capability) {
2181 case 0:
2182 return true;
2183 case 1:
2184 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
2185 return false;
2186 } else {
Sujith2660b812009-02-09 13:27:26 +05302187 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05302188 AR_STA_ID1_MCAST_KSRCH) ? true :
2189 false;
2190 }
2191 }
2192 return false;
Sujithf1dc5602008-10-29 10:16:30 +05302193 case ATH9K_CAP_TXPOW:
2194 switch (capability) {
2195 case 0:
2196 return 0;
2197 case 1:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002198 *result = regulatory->power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05302199 return 0;
2200 case 2:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002201 *result = regulatory->max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05302202 return 0;
2203 case 3:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002204 *result = regulatory->tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05302205 return 0;
2206 }
2207 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05302208 case ATH9K_CAP_DS:
2209 return (AR_SREV_9280_20_OR_LATER(ah) &&
2210 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
2211 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05302212 default:
2213 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002214 }
Sujithf1dc5602008-10-29 10:16:30 +05302215}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002216EXPORT_SYMBOL(ath9k_hw_getcapability);
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002217
Sujithcbe61d82009-02-09 13:27:12 +05302218bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05302219 u32 capability, u32 setting, int *status)
2220{
Sujithf1dc5602008-10-29 10:16:30 +05302221 switch (type) {
2222 case ATH9K_CAP_TKIP_MIC:
2223 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302224 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05302225 AR_STA_ID1_CRPT_MIC_ENABLE;
2226 else
Sujith2660b812009-02-09 13:27:26 +05302227 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05302228 ~AR_STA_ID1_CRPT_MIC_ENABLE;
2229 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302230 case ATH9K_CAP_MCAST_KEYSRCH:
2231 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302232 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05302233 else
Sujith2660b812009-02-09 13:27:26 +05302234 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05302235 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302236 default:
2237 return false;
2238 }
2239}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002240EXPORT_SYMBOL(ath9k_hw_setcapability);
Sujithf1dc5602008-10-29 10:16:30 +05302241
2242/****************************/
2243/* GPIO / RFKILL / Antennae */
2244/****************************/
2245
Sujithcbe61d82009-02-09 13:27:12 +05302246static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302247 u32 gpio, u32 type)
2248{
2249 int addr;
2250 u32 gpio_shift, tmp;
2251
2252 if (gpio > 11)
2253 addr = AR_GPIO_OUTPUT_MUX3;
2254 else if (gpio > 5)
2255 addr = AR_GPIO_OUTPUT_MUX2;
2256 else
2257 addr = AR_GPIO_OUTPUT_MUX1;
2258
2259 gpio_shift = (gpio % 6) * 5;
2260
2261 if (AR_SREV_9280_20_OR_LATER(ah)
2262 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2263 REG_RMW(ah, addr, (type << gpio_shift),
2264 (0x1f << gpio_shift));
2265 } else {
2266 tmp = REG_READ(ah, addr);
2267 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2268 tmp &= ~(0x1f << gpio_shift);
2269 tmp |= (type << gpio_shift);
2270 REG_WRITE(ah, addr, tmp);
2271 }
2272}
2273
Sujithcbe61d82009-02-09 13:27:12 +05302274void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302275{
2276 u32 gpio_shift;
2277
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002278 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302279
2280 gpio_shift = gpio << 1;
2281
2282 REG_RMW(ah,
2283 AR_GPIO_OE_OUT,
2284 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2285 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2286}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002287EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302288
Sujithcbe61d82009-02-09 13:27:12 +05302289u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302290{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302291#define MS_REG_READ(x, y) \
2292 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2293
Sujith2660b812009-02-09 13:27:26 +05302294 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302295 return 0xffffffff;
2296
Felix Fietkau783dfca2010-04-15 17:38:11 -04002297 if (AR_SREV_9300_20_OR_LATER(ah))
2298 return MS_REG_READ(AR9300, gpio) != 0;
2299 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05302300 return MS_REG_READ(AR9271, gpio) != 0;
2301 else if (AR_SREV_9287_10_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302302 return MS_REG_READ(AR9287, gpio) != 0;
2303 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302304 return MS_REG_READ(AR9285, gpio) != 0;
2305 else if (AR_SREV_9280_10_OR_LATER(ah))
2306 return MS_REG_READ(AR928X, gpio) != 0;
2307 else
2308 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05302309}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002310EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302311
Sujithcbe61d82009-02-09 13:27:12 +05302312void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05302313 u32 ah_signal_type)
2314{
2315 u32 gpio_shift;
2316
2317 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
2318
2319 gpio_shift = 2 * gpio;
2320
2321 REG_RMW(ah,
2322 AR_GPIO_OE_OUT,
2323 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2324 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2325}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002326EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05302327
Sujithcbe61d82009-02-09 13:27:12 +05302328void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302329{
Sujith5b5fa352010-03-17 14:25:15 +05302330 if (AR_SREV_9271(ah))
2331 val = ~val;
2332
Sujithf1dc5602008-10-29 10:16:30 +05302333 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2334 AR_GPIO_BIT(gpio));
2335}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002336EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302337
Sujithcbe61d82009-02-09 13:27:12 +05302338u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302339{
2340 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
2341}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002342EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302343
Sujithcbe61d82009-02-09 13:27:12 +05302344void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302345{
2346 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2347}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002348EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302349
Sujithf1dc5602008-10-29 10:16:30 +05302350/*********************/
2351/* General Operation */
2352/*********************/
2353
Sujithcbe61d82009-02-09 13:27:12 +05302354u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302355{
2356 u32 bits = REG_READ(ah, AR_RX_FILTER);
2357 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2358
2359 if (phybits & AR_PHY_ERR_RADAR)
2360 bits |= ATH9K_RX_FILTER_PHYRADAR;
2361 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2362 bits |= ATH9K_RX_FILTER_PHYERR;
2363
2364 return bits;
2365}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002366EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302367
Sujithcbe61d82009-02-09 13:27:12 +05302368void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302369{
2370 u32 phybits;
2371
Sujith7ea310b2009-09-03 12:08:43 +05302372 REG_WRITE(ah, AR_RX_FILTER, bits);
2373
Sujithf1dc5602008-10-29 10:16:30 +05302374 phybits = 0;
2375 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2376 phybits |= AR_PHY_ERR_RADAR;
2377 if (bits & ATH9K_RX_FILTER_PHYERR)
2378 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2379 REG_WRITE(ah, AR_PHY_ERR, phybits);
2380
2381 if (phybits)
2382 REG_WRITE(ah, AR_RXCFG,
2383 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
2384 else
2385 REG_WRITE(ah, AR_RXCFG,
2386 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
2387}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002388EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302389
Sujithcbe61d82009-02-09 13:27:12 +05302390bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302391{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302392 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2393 return false;
2394
2395 ath9k_hw_init_pll(ah, NULL);
2396 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302397}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002398EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302399
Sujithcbe61d82009-02-09 13:27:12 +05302400bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302401{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002402 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302403 return false;
2404
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302405 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2406 return false;
2407
2408 ath9k_hw_init_pll(ah, NULL);
2409 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302410}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002411EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302412
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002413void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05302414{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002415 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05302416 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002417 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05302418
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002419 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05302420
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002421 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002422 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002423 channel->max_antenna_gain * 2,
2424 channel->max_power * 2,
2425 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002426 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05302427}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002428EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302429
Sujithcbe61d82009-02-09 13:27:12 +05302430void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05302431{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002432 memcpy(ath9k_hw_common(ah)->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05302433}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002434EXPORT_SYMBOL(ath9k_hw_setmac);
Sujithf1dc5602008-10-29 10:16:30 +05302435
Sujithcbe61d82009-02-09 13:27:12 +05302436void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302437{
Sujith2660b812009-02-09 13:27:26 +05302438 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302439}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002440EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302441
Sujithcbe61d82009-02-09 13:27:12 +05302442void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302443{
2444 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2445 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2446}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002447EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302448
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002449void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302450{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002451 struct ath_common *common = ath9k_hw_common(ah);
2452
2453 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2454 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2455 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302456}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002457EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302458
Sujithcbe61d82009-02-09 13:27:12 +05302459u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302460{
2461 u64 tsf;
2462
2463 tsf = REG_READ(ah, AR_TSF_U32);
2464 tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
2465
2466 return tsf;
2467}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002468EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302469
Sujithcbe61d82009-02-09 13:27:12 +05302470void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002471{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002472 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002473 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002474}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002475EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002476
Sujithcbe61d82009-02-09 13:27:12 +05302477void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302478{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002479 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2480 AH_TSF_WRITE_TIMEOUT))
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002481 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
2482 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002483
Sujithf1dc5602008-10-29 10:16:30 +05302484 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002485}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002486EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002487
Sujith54e4cec2009-08-07 09:45:09 +05302488void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002489{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002490 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302491 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002492 else
Sujith2660b812009-02-09 13:27:26 +05302493 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002494}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002495EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002496
Luis R. Rodriguez30cbd422009-11-03 16:10:46 -08002497/*
2498 * Extend 15-bit time stamp from rx descriptor to
2499 * a full 64-bit TSF using the current h/w TSF.
2500*/
2501u64 ath9k_hw_extend_tsf(struct ath_hw *ah, u32 rstamp)
2502{
2503 u64 tsf;
2504
2505 tsf = ath9k_hw_gettsf64(ah);
2506 if ((tsf & 0x7fff) < rstamp)
2507 tsf -= 0x8000;
2508 return (tsf & ~0x7fff) | rstamp;
2509}
2510EXPORT_SYMBOL(ath9k_hw_extend_tsf);
2511
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002512void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002513{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002514 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05302515 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002516
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002517 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05302518 macmode = AR_2040_JOINED_RX_CLEAR;
2519 else
2520 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002521
Sujithf1dc5602008-10-29 10:16:30 +05302522 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002523}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302524
2525/* HW Generic timers configuration */
2526
2527static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2528{
2529 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
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_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2538 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2539 AR_NDP2_TIMER_MODE, 0x0002},
2540 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2541 AR_NDP2_TIMER_MODE, 0x0004},
2542 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2543 AR_NDP2_TIMER_MODE, 0x0008},
2544 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2545 AR_NDP2_TIMER_MODE, 0x0010},
2546 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2547 AR_NDP2_TIMER_MODE, 0x0020},
2548 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2549 AR_NDP2_TIMER_MODE, 0x0040},
2550 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2551 AR_NDP2_TIMER_MODE, 0x0080}
2552};
2553
2554/* HW generic timer primitives */
2555
2556/* compute and clear index of rightmost 1 */
2557static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
2558{
2559 u32 b;
2560
2561 b = *mask;
2562 b &= (0-b);
2563 *mask &= ~b;
2564 b *= debruijn32;
2565 b >>= 27;
2566
2567 return timer_table->gen_timer_index[b];
2568}
2569
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05302570u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302571{
2572 return REG_READ(ah, AR_TSF_L32);
2573}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002574EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302575
2576struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2577 void (*trigger)(void *),
2578 void (*overflow)(void *),
2579 void *arg,
2580 u8 timer_index)
2581{
2582 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2583 struct ath_gen_timer *timer;
2584
2585 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
2586
2587 if (timer == NULL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002588 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2589 "Failed to allocate memory"
2590 "for hw timer[%d]\n", timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302591 return NULL;
2592 }
2593
2594 /* allocate a hardware generic timer slot */
2595 timer_table->timers[timer_index] = timer;
2596 timer->index = timer_index;
2597 timer->trigger = trigger;
2598 timer->overflow = overflow;
2599 timer->arg = arg;
2600
2601 return timer;
2602}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002603EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302604
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002605void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2606 struct ath_gen_timer *timer,
2607 u32 timer_next,
2608 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302609{
2610 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2611 u32 tsf;
2612
2613 BUG_ON(!timer_period);
2614
2615 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
2616
2617 tsf = ath9k_hw_gettsf32(ah);
2618
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002619 ath_print(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
2620 "curent tsf %x period %x"
2621 "timer_next %x\n", tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302622
2623 /*
2624 * Pull timer_next forward if the current TSF already passed it
2625 * because of software latency
2626 */
2627 if (timer_next < tsf)
2628 timer_next = tsf + timer_period;
2629
2630 /*
2631 * Program generic timer registers
2632 */
2633 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2634 timer_next);
2635 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2636 timer_period);
2637 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2638 gen_tmr_configuration[timer->index].mode_mask);
2639
2640 /* Enable both trigger and thresh interrupt masks */
2641 REG_SET_BIT(ah, AR_IMR_S5,
2642 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2643 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302644}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002645EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302646
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002647void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302648{
2649 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2650
2651 if ((timer->index < AR_FIRST_NDP_TIMER) ||
2652 (timer->index >= ATH_MAX_GEN_TIMER)) {
2653 return;
2654 }
2655
2656 /* Clear generic timer enable bits. */
2657 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2658 gen_tmr_configuration[timer->index].mode_mask);
2659
2660 /* Disable both trigger and thresh interrupt masks */
2661 REG_CLR_BIT(ah, AR_IMR_S5,
2662 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2663 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2664
2665 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302666}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002667EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302668
2669void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
2670{
2671 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2672
2673 /* free the hardware generic timer slot */
2674 timer_table->timers[timer->index] = NULL;
2675 kfree(timer);
2676}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002677EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302678
2679/*
2680 * Generic Timer Interrupts handling
2681 */
2682void ath_gen_timer_isr(struct ath_hw *ah)
2683{
2684 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2685 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002686 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302687 u32 trigger_mask, thresh_mask, index;
2688
2689 /* get hardware generic timer interrupt status */
2690 trigger_mask = ah->intr_gen_timer_trigger;
2691 thresh_mask = ah->intr_gen_timer_thresh;
2692 trigger_mask &= timer_table->timer_mask.val;
2693 thresh_mask &= timer_table->timer_mask.val;
2694
2695 trigger_mask &= ~thresh_mask;
2696
2697 while (thresh_mask) {
2698 index = rightmost_index(timer_table, &thresh_mask);
2699 timer = timer_table->timers[index];
2700 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002701 ath_print(common, ATH_DBG_HWTIMER,
2702 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302703 timer->overflow(timer->arg);
2704 }
2705
2706 while (trigger_mask) {
2707 index = rightmost_index(timer_table, &trigger_mask);
2708 timer = timer_table->timers[index];
2709 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002710 ath_print(common, ATH_DBG_HWTIMER,
2711 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302712 timer->trigger(timer->arg);
2713 }
2714}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002715EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002716
Sujith05020d22010-03-17 14:25:23 +05302717/********/
2718/* HTC */
2719/********/
2720
2721void ath9k_hw_htc_resetinit(struct ath_hw *ah)
2722{
2723 ah->htc_reset_init = true;
2724}
2725EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
2726
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002727static struct {
2728 u32 version;
2729 const char * name;
2730} ath_mac_bb_names[] = {
2731 /* Devices with external radios */
2732 { AR_SREV_VERSION_5416_PCI, "5416" },
2733 { AR_SREV_VERSION_5416_PCIE, "5418" },
2734 { AR_SREV_VERSION_9100, "9100" },
2735 { AR_SREV_VERSION_9160, "9160" },
2736 /* Single-chip solutions */
2737 { AR_SREV_VERSION_9280, "9280" },
2738 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04002739 { AR_SREV_VERSION_9287, "9287" },
2740 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002741};
2742
2743/* For devices with external radios */
2744static struct {
2745 u16 version;
2746 const char * name;
2747} ath_rf_names[] = {
2748 { 0, "5133" },
2749 { AR_RAD5133_SREV_MAJOR, "5133" },
2750 { AR_RAD5122_SREV_MAJOR, "5122" },
2751 { AR_RAD2133_SREV_MAJOR, "2133" },
2752 { AR_RAD2122_SREV_MAJOR, "2122" }
2753};
2754
2755/*
2756 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2757 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002758static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002759{
2760 int i;
2761
2762 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2763 if (ath_mac_bb_names[i].version == mac_bb_version) {
2764 return ath_mac_bb_names[i].name;
2765 }
2766 }
2767
2768 return "????";
2769}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002770
2771/*
2772 * Return the RF name. "????" is returned if the RF is unknown.
2773 * Used for devices with external radios.
2774 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002775static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002776{
2777 int i;
2778
2779 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2780 if (ath_rf_names[i].version == rf_version) {
2781 return ath_rf_names[i].name;
2782 }
2783 }
2784
2785 return "????";
2786}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002787
2788void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
2789{
2790 int used;
2791
2792 /* chipsets >= AR9280 are single-chip */
2793 if (AR_SREV_9280_10_OR_LATER(ah)) {
2794 used = snprintf(hw_name, len,
2795 "Atheros AR%s Rev:%x",
2796 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2797 ah->hw_version.macRev);
2798 }
2799 else {
2800 used = snprintf(hw_name, len,
2801 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
2802 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2803 ah->hw_version.macRev,
2804 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
2805 AR_RADIO_SREV_MAJOR)),
2806 ah->hw_version.phyRev);
2807 }
2808
2809 hw_name[used] = '\0';
2810}
2811EXPORT_SYMBOL(ath9k_hw_name);