blob: 780ecd8aff6e540f65aa69412567581f074def51 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2008-2011 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Paul Gortmaker9d9779e2011-07-03 15:21:01 -040019#include <linux/module.h>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070020#include <asm/unaligned.h>
21
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070022#include "hw.h"
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040023#include "hw-ops.h"
Luis R. Rodriguezcfe8cba2009-09-13 23:39:31 -070024#include "rc.h"
Luis R. Rodriguezb622a722010-04-15 17:39:28 -040025#include "ar9003_mac.h"
Sujith Manoharanf4701b52012-02-22 12:41:18 +053026#include "ar9003_mci.h"
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
Luis R. Rodriguez64773962010-04-15 17:38:17 -040059static u32 ath9k_hw_compute_pll_control(struct ath_hw *ah,
60 struct ath9k_channel *chan)
61{
62 return ath9k_hw_private_ops(ah)->compute_pll_control(ah, chan);
63}
64
Luis R. Rodriguez991312d2010-04-15 17:39:05 -040065static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
66{
67 if (!ath9k_hw_private_ops(ah)->init_mode_gain_regs)
68 return;
69
70 ath9k_hw_private_ops(ah)->init_mode_gain_regs(ah);
71}
72
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -040073static void ath9k_hw_ani_cache_ini_regs(struct ath_hw *ah)
74{
75 /* You will not have this callback if using the old ANI */
76 if (!ath9k_hw_private_ops(ah)->ani_cache_ini_regs)
77 return;
78
79 ath9k_hw_private_ops(ah)->ani_cache_ini_regs(ah);
80}
81
Sujithf1dc5602008-10-29 10:16:30 +053082/********************/
83/* Helper Functions */
84/********************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070085
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020086static void ath9k_hw_set_clockrate(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +053087{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070088 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020089 struct ath_common *common = ath9k_hw_common(ah);
90 unsigned int clockrate;
Sujithcbe61d82009-02-09 13:27:12 +053091
Felix Fietkau087b6ff2011-07-09 11:12:49 +070092 /* AR9287 v1.3+ uses async FIFO and runs the MAC at 117 MHz */
93 if (AR_SREV_9287(ah) && AR_SREV_9287_13_OR_LATER(ah))
94 clockrate = 117;
95 else if (!ah->curchan) /* should really check for CCK instead */
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020096 clockrate = ATH9K_CLOCK_RATE_CCK;
97 else if (conf->channel->band == IEEE80211_BAND_2GHZ)
98 clockrate = ATH9K_CLOCK_RATE_2GHZ_OFDM;
99 else if (ah->caps.hw_caps & ATH9K_HW_CAP_FASTCLOCK)
100 clockrate = ATH9K_CLOCK_FAST_RATE_5GHZ_OFDM;
Vasanthakumar Thiagarajane5553722010-04-26 15:04:33 -0400101 else
Felix Fietkaudfdac8a2010-10-08 22:13:51 +0200102 clockrate = ATH9K_CLOCK_RATE_5GHZ_OFDM;
103
104 if (conf_is_ht40(conf))
105 clockrate *= 2;
106
Felix Fietkau906c7202011-07-09 11:12:48 +0700107 if (ah->curchan) {
108 if (IS_CHAN_HALF_RATE(ah->curchan))
109 clockrate /= 2;
110 if (IS_CHAN_QUARTER_RATE(ah->curchan))
111 clockrate /= 4;
112 }
113
Felix Fietkaudfdac8a2010-10-08 22:13:51 +0200114 common->clockrate = clockrate;
Sujithf1dc5602008-10-29 10:16:30 +0530115}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700116
Sujithcbe61d82009-02-09 13:27:12 +0530117static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +0530118{
Felix Fietkaudfdac8a2010-10-08 22:13:51 +0200119 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +0530120
Felix Fietkaudfdac8a2010-10-08 22:13:51 +0200121 return usecs * common->clockrate;
Sujithf1dc5602008-10-29 10:16:30 +0530122}
123
Sujith0caa7b12009-02-16 13:23:20 +0530124bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700125{
126 int i;
127
Sujith0caa7b12009-02-16 13:23:20 +0530128 BUG_ON(timeout < AH_TIME_QUANTUM);
129
130 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700131 if ((REG_READ(ah, reg) & mask) == val)
132 return true;
133
134 udelay(AH_TIME_QUANTUM);
135 }
Sujith04bd46382008-11-28 22:18:05 +0530136
Joe Perchesd2182b62011-12-15 14:55:53 -0800137 ath_dbg(ath9k_hw_common(ah), ANY,
Joe Perches226afe62010-12-02 19:12:37 -0800138 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
139 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +0530140
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700141 return false;
142}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400143EXPORT_SYMBOL(ath9k_hw_wait);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700144
Felix Fietkaua9b6b252011-03-23 20:57:27 +0100145void ath9k_hw_write_array(struct ath_hw *ah, struct ar5416IniArray *array,
146 int column, unsigned int *writecnt)
147{
148 int r;
149
150 ENABLE_REGWRITE_BUFFER(ah);
151 for (r = 0; r < array->ia_rows; r++) {
152 REG_WRITE(ah, INI_RA(array, r, 0),
153 INI_RA(array, r, column));
154 DO_DELAY(*writecnt);
155 }
156 REGWRITE_BUFFER_FLUSH(ah);
157}
158
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700159u32 ath9k_hw_reverse_bits(u32 val, u32 n)
160{
161 u32 retval;
162 int i;
163
164 for (i = 0, retval = 0; i < n; i++) {
165 retval = (retval << 1) | (val & 1);
166 val >>= 1;
167 }
168 return retval;
169}
170
Sujithcbe61d82009-02-09 13:27:12 +0530171u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Felix Fietkau545750d2009-11-23 22:21:01 +0100172 u8 phy, int kbps,
Sujithf1dc5602008-10-29 10:16:30 +0530173 u32 frameLen, u16 rateix,
174 bool shortPreamble)
175{
176 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
Sujithf1dc5602008-10-29 10:16:30 +0530177
178 if (kbps == 0)
179 return 0;
180
Felix Fietkau545750d2009-11-23 22:21:01 +0100181 switch (phy) {
Sujith46d14a52008-11-18 09:08:13 +0530182 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530183 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Felix Fietkau545750d2009-11-23 22:21:01 +0100184 if (shortPreamble)
Sujithf1dc5602008-10-29 10:16:30 +0530185 phyTime >>= 1;
186 numBits = frameLen << 3;
187 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
188 break;
Sujith46d14a52008-11-18 09:08:13 +0530189 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530190 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530191 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
192 numBits = OFDM_PLCP_BITS + (frameLen << 3);
193 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
194 txTime = OFDM_SIFS_TIME_QUARTER
195 + OFDM_PREAMBLE_TIME_QUARTER
196 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530197 } else if (ah->curchan &&
198 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530199 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
200 numBits = OFDM_PLCP_BITS + (frameLen << 3);
201 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
202 txTime = OFDM_SIFS_TIME_HALF +
203 OFDM_PREAMBLE_TIME_HALF
204 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
205 } else {
206 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
207 numBits = OFDM_PLCP_BITS + (frameLen << 3);
208 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
209 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
210 + (numSymbols * OFDM_SYMBOL_TIME);
211 }
212 break;
213 default:
Joe Perches38002762010-12-02 19:12:36 -0800214 ath_err(ath9k_hw_common(ah),
215 "Unknown phy %u (rate ix %u)\n", phy, rateix);
Sujithf1dc5602008-10-29 10:16:30 +0530216 txTime = 0;
217 break;
218 }
219
220 return txTime;
221}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400222EXPORT_SYMBOL(ath9k_hw_computetxtime);
Sujithf1dc5602008-10-29 10:16:30 +0530223
Sujithcbe61d82009-02-09 13:27:12 +0530224void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530225 struct ath9k_channel *chan,
226 struct chan_centers *centers)
227{
228 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530229
230 if (!IS_CHAN_HT40(chan)) {
231 centers->ctl_center = centers->ext_center =
232 centers->synth_center = chan->channel;
233 return;
234 }
235
236 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
237 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
238 centers->synth_center =
239 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
240 extoff = 1;
241 } else {
242 centers->synth_center =
243 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
244 extoff = -1;
245 }
246
247 centers->ctl_center =
248 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700249 /* 25 MHz spacing is supported by hw but not on upper layers */
Sujithf1dc5602008-10-29 10:16:30 +0530250 centers->ext_center =
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700251 centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
Sujithf1dc5602008-10-29 10:16:30 +0530252}
253
254/******************/
255/* Chip Revisions */
256/******************/
257
Sujithcbe61d82009-02-09 13:27:12 +0530258static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530259{
260 u32 val;
261
Vasanthakumar Thiagarajanecb1d382011-04-19 19:29:18 +0530262 switch (ah->hw_version.devid) {
263 case AR5416_AR9100_DEVID:
264 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
265 break;
Gabor Juhos37625612011-06-21 11:23:23 +0200266 case AR9300_DEVID_AR9330:
267 ah->hw_version.macVersion = AR_SREV_VERSION_9330;
268 if (ah->get_mac_revision) {
269 ah->hw_version.macRev = ah->get_mac_revision();
270 } else {
271 val = REG_READ(ah, AR_SREV);
272 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
273 }
274 return;
Vasanthakumar Thiagarajanecb1d382011-04-19 19:29:18 +0530275 case AR9300_DEVID_AR9340:
276 ah->hw_version.macVersion = AR_SREV_VERSION_9340;
277 val = REG_READ(ah, AR_SREV);
278 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
279 return;
280 }
281
Sujithf1dc5602008-10-29 10:16:30 +0530282 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
283
284 if (val == 0xFF) {
285 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530286 ah->hw_version.macVersion =
287 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
288 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Mohammed Shafi Shajakhan76ed94b2011-09-30 11:31:28 +0530289
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +0530290 if (AR_SREV_9462(ah))
Mohammed Shafi Shajakhan76ed94b2011-09-30 11:31:28 +0530291 ah->is_pciexpress = true;
292 else
293 ah->is_pciexpress = (val &
294 AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530295 } else {
296 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530297 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530298
Sujithd535a422009-02-09 13:27:06 +0530299 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530300
Sujithd535a422009-02-09 13:27:06 +0530301 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530302 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530303 }
304}
305
Sujithf1dc5602008-10-29 10:16:30 +0530306/************************************/
307/* HW Attach, Detach, Init Routines */
308/************************************/
309
Sujithcbe61d82009-02-09 13:27:12 +0530310static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530311{
Felix Fietkau040b74f2010-12-12 00:51:07 +0100312 if (!AR_SREV_5416(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530313 return;
314
315 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
316 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
317 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
318 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
319 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
320 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
321 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
322 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
323 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
324
325 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
326}
327
Stanislaw Gruszkad4930082011-07-29 15:59:08 +0200328static void ath9k_hw_aspm_init(struct ath_hw *ah)
329{
330 struct ath_common *common = ath9k_hw_common(ah);
331
332 if (common->bus_ops->aspm_init)
333 common->bus_ops->aspm_init(common);
334}
335
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400336/* This should work for all families including legacy */
Sujithcbe61d82009-02-09 13:27:12 +0530337static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530338{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700339 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400340 u32 regAddr[2] = { AR_STA_ID0 };
Sujithf1dc5602008-10-29 10:16:30 +0530341 u32 regHold[2];
Joe Perches07b2fa52010-11-20 18:38:53 -0800342 static const u32 patternData[4] = {
343 0x55555555, 0xaaaaaaaa, 0x66666666, 0x99999999
344 };
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400345 int i, j, loop_max;
Sujithf1dc5602008-10-29 10:16:30 +0530346
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400347 if (!AR_SREV_9300_20_OR_LATER(ah)) {
348 loop_max = 2;
349 regAddr[1] = AR_PHY_BASE + (8 << 2);
350 } else
351 loop_max = 1;
352
353 for (i = 0; i < loop_max; i++) {
Sujithf1dc5602008-10-29 10:16:30 +0530354 u32 addr = regAddr[i];
355 u32 wrData, rdData;
356
357 regHold[i] = REG_READ(ah, addr);
358 for (j = 0; j < 0x100; j++) {
359 wrData = (j << 16) | j;
360 REG_WRITE(ah, addr, wrData);
361 rdData = REG_READ(ah, addr);
362 if (rdData != wrData) {
Joe Perches38002762010-12-02 19:12:36 -0800363 ath_err(common,
364 "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
365 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530366 return false;
367 }
368 }
369 for (j = 0; j < 4; j++) {
370 wrData = patternData[j];
371 REG_WRITE(ah, addr, wrData);
372 rdData = REG_READ(ah, addr);
373 if (wrData != rdData) {
Joe Perches38002762010-12-02 19:12:36 -0800374 ath_err(common,
375 "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
376 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530377 return false;
378 }
379 }
380 REG_WRITE(ah, regAddr[i], regHold[i]);
381 }
382 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530383
Sujithf1dc5602008-10-29 10:16:30 +0530384 return true;
385}
386
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700387static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700388{
389 int i;
390
Sujith2660b812009-02-09 13:27:26 +0530391 ah->config.dma_beacon_response_time = 2;
392 ah->config.sw_beacon_response_time = 10;
393 ah->config.additional_swba_backoff = 0;
394 ah->config.ack_6mb = 0x0;
395 ah->config.cwm_ignore_extcca = 0;
Sujith2660b812009-02-09 13:27:26 +0530396 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530397 ah->config.pcie_waen = 0;
398 ah->config.analog_shiftreg = 1;
Luis R. Rodriguez03c72512010-06-12 00:33:46 -0400399 ah->config.enable_ani = true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700400
401 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530402 ah->config.spurchans[i][0] = AR_NO_SPUR;
403 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700404 }
405
Luis R. Rodriguez6f481012011-01-20 17:47:39 -0800406 /* PAPRD needs some more work to be enabled */
407 ah->config.paprd_disable = 1;
408
Sujith0ce024c2009-12-14 14:57:00 +0530409 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez6a0ec302010-06-21 18:38:49 -0400410 ah->config.pcieSerDesWrite = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400411
412 /*
413 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
414 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
415 * This means we use it for all AR5416 devices, and the few
416 * minor PCI AR9280 devices out there.
417 *
418 * Serialization is required because these devices do not handle
419 * well the case of two concurrent reads/writes due to the latency
420 * involved. During one read/write another read/write can be issued
421 * on another CPU while the previous read/write may still be working
422 * on our hardware, if we hit this case the hardware poops in a loop.
423 * We prevent this by serializing reads and writes.
424 *
425 * This issue is not present on PCI-Express devices or pre-AR5416
426 * devices (legacy, 802.11abg).
427 */
428 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700429 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700430}
431
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700432static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700433{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700434 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
435
436 regulatory->country_code = CTRY_DEFAULT;
437 regulatory->power_limit = MAX_RATE_POWER;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700438
Sujithd535a422009-02-09 13:27:06 +0530439 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530440 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700441
Sujith2660b812009-02-09 13:27:26 +0530442 ah->atim_window = 0;
Felix Fietkau16f24112010-06-12 17:22:32 +0200443 ah->sta_id1_defaults =
444 AR_STA_ID1_CRPT_MIC_ENABLE |
445 AR_STA_ID1_MCAST_KSRCH;
Felix Fietkauf1717602011-03-19 13:55:41 +0100446 if (AR_SREV_9100(ah))
447 ah->sta_id1_defaults |= AR_STA_ID1_AR9100_BA_FIX;
Sujith2660b812009-02-09 13:27:26 +0530448 ah->enable_32kHz_clock = DONT_USE_32KHZ;
Rajkumar Manoharane3f2acc2011-08-27 11:22:59 +0530449 ah->slottime = ATH9K_SLOT_TIME_9;
Sujith2660b812009-02-09 13:27:26 +0530450 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200451 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700452}
453
Sujithcbe61d82009-02-09 13:27:12 +0530454static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700455{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700456 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530457 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700458 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530459 u16 eeval;
Joe Perches07b2fa52010-11-20 18:38:53 -0800460 static const u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700461
Sujithf1dc5602008-10-29 10:16:30 +0530462 sum = 0;
463 for (i = 0; i < 3; i++) {
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400464 eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
Sujithf1dc5602008-10-29 10:16:30 +0530465 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700466 common->macaddr[2 * i] = eeval >> 8;
467 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700468 }
Sujithd8baa932009-03-30 15:28:25 +0530469 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530470 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700471
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700472 return 0;
473}
474
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700475static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700476{
Sujith Manoharan6cae913d2011-01-04 13:16:37 +0530477 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700478 int ecode;
479
Sujith Manoharan6cae913d2011-01-04 13:16:37 +0530480 if (common->bus_ops->ath_bus_type != ATH_USB) {
Sujith527d4852010-03-17 14:25:16 +0530481 if (!ath9k_hw_chip_test(ah))
482 return -ENODEV;
483 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700484
Luis R. Rodriguezebd5a142010-04-15 17:39:18 -0400485 if (!AR_SREV_9300_20_OR_LATER(ah)) {
486 ecode = ar9002_hw_rf_claim(ah);
487 if (ecode != 0)
488 return ecode;
489 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700490
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700491 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700492 if (ecode != 0)
493 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530494
Joe Perchesd2182b62011-12-15 14:55:53 -0800495 ath_dbg(ath9k_hw_common(ah), CONFIG, "Eeprom VER: %d, REV: %d\n",
Joe Perches226afe62010-12-02 19:12:37 -0800496 ah->eep_ops->get_eeprom_ver(ah),
497 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530498
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400499 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
500 if (ecode) {
Joe Perches38002762010-12-02 19:12:36 -0800501 ath_err(ath9k_hw_common(ah),
502 "Failed allocating banks for external radio\n");
Rajkumar Manoharan48a7c3d2010-11-08 20:40:53 +0530503 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400504 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400505 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700506
Nikolay Martynov42794252011-12-02 22:39:16 -0500507 if (ah->config.enable_ani) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700508 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700509 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700510 }
Sujithf1dc5602008-10-29 10:16:30 +0530511
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700512 return 0;
513}
514
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400515static void ath9k_hw_attach_ops(struct ath_hw *ah)
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700516{
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400517 if (AR_SREV_9300_20_OR_LATER(ah))
518 ar9003_hw_attach_ops(ah);
519 else
520 ar9002_hw_attach_ops(ah);
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700521}
522
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400523/* Called for all hardware families */
524static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700525{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700526 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700527 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700528
Senthil Balasubramanianac45c122010-12-22 21:14:20 +0530529 ath9k_hw_read_revisions(ah);
530
Senthil Balasubramanian0a8d7cb2010-12-22 19:17:18 +0530531 /*
532 * Read back AR_WA into a permanent copy and set bits 14 and 17.
533 * We need to do this to avoid RMW of this register. We cannot
534 * read the reg when chip is asleep.
535 */
536 ah->WARegVal = REG_READ(ah, AR_WA);
537 ah->WARegVal |= (AR_WA_D3_L1_DISABLE |
538 AR_WA_ASPM_TIMER_BASED_DISABLE);
539
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700540 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Joe Perches38002762010-12-02 19:12:36 -0800541 ath_err(common, "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700542 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700543 }
544
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +0530545 if (AR_SREV_9462(ah))
Rajkumar Manoharaneec353c2011-10-13 10:49:13 +0530546 ah->WARegVal &= ~AR_WA_D3_L1_DISABLE;
547
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400548 ath9k_hw_init_defaults(ah);
549 ath9k_hw_init_config(ah);
550
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400551 ath9k_hw_attach_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400552
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700553 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Joe Perches38002762010-12-02 19:12:36 -0800554 ath_err(common, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700555 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700556 }
557
558 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
559 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
John W. Linville4c85ab12010-07-28 10:06:35 -0400560 ((AR_SREV_9160(ah) || AR_SREV_9280(ah)) &&
561 !ah->is_pciexpress)) {
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700562 ah->config.serialize_regmode =
563 SER_REG_MODE_ON;
564 } else {
565 ah->config.serialize_regmode =
566 SER_REG_MODE_OFF;
567 }
568 }
569
Joe Perchesd2182b62011-12-15 14:55:53 -0800570 ath_dbg(common, RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700571 ah->config.serialize_regmode);
572
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500573 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
574 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
575 else
576 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
577
Felix Fietkau6da5a722010-12-12 00:51:12 +0100578 switch (ah->hw_version.macVersion) {
579 case AR_SREV_VERSION_5416_PCI:
580 case AR_SREV_VERSION_5416_PCIE:
581 case AR_SREV_VERSION_9160:
582 case AR_SREV_VERSION_9100:
583 case AR_SREV_VERSION_9280:
584 case AR_SREV_VERSION_9285:
585 case AR_SREV_VERSION_9287:
586 case AR_SREV_VERSION_9271:
587 case AR_SREV_VERSION_9300:
Gabor Juhos2c8e5932011-06-21 11:23:21 +0200588 case AR_SREV_VERSION_9330:
Felix Fietkau6da5a722010-12-12 00:51:12 +0100589 case AR_SREV_VERSION_9485:
Vasanthakumar Thiagarajanbca04682011-04-19 19:29:20 +0530590 case AR_SREV_VERSION_9340:
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +0530591 case AR_SREV_VERSION_9462:
Felix Fietkau6da5a722010-12-12 00:51:12 +0100592 break;
593 default:
Joe Perches38002762010-12-02 19:12:36 -0800594 ath_err(common,
595 "Mac Chip Rev 0x%02x.%x is not supported by this driver\n",
596 ah->hw_version.macVersion, ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700597 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700598 }
599
Gabor Juhos2c8e5932011-06-21 11:23:21 +0200600 if (AR_SREV_9271(ah) || AR_SREV_9100(ah) || AR_SREV_9340(ah) ||
601 AR_SREV_9330(ah))
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400602 ah->is_pciexpress = false;
603
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700604 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700605 ath9k_hw_init_cal_settings(ah);
606
607 ah->ani_function = ATH9K_ANI_ALL;
Felix Fietkau7a370812010-09-22 12:34:52 +0200608 if (AR_SREV_9280_20_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700609 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400610 if (!AR_SREV_9300_20_OR_LATER(ah))
611 ah->ani_function &= ~ATH9K_ANI_MRC_CCK;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700612
Nikolay Martynov4f17c482011-12-06 21:57:17 -0500613 /* disable ANI for 9340 */
614 if (AR_SREV_9340(ah))
Nikolay Martynov42794252011-12-02 22:39:16 -0500615 ah->config.enable_ani = false;
616
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700617 ath9k_hw_init_mode_regs(ah);
618
Stanislaw Gruszka69ce6742011-08-05 13:10:34 +0200619 if (!ah->is_pciexpress)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700620 ath9k_hw_disablepcie(ah);
621
Luis R. Rodriguezd8f492b2010-04-15 17:39:04 -0400622 if (!AR_SREV_9300_20_OR_LATER(ah))
623 ar9002_hw_cck_chan14_spread(ah);
Sujith193cd452009-09-18 15:04:07 +0530624
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700625 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700626 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700627 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700628
629 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100630 r = ath9k_hw_fill_cap_info(ah);
631 if (r)
632 return r;
633
Stanislaw Gruszka69ce6742011-08-05 13:10:34 +0200634 if (ah->is_pciexpress)
635 ath9k_hw_aspm_init(ah);
636
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700637 r = ath9k_hw_init_macaddr(ah);
638 if (r) {
Joe Perches38002762010-12-02 19:12:36 -0800639 ath_err(common, "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700640 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700641 }
642
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400643 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530644 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700645 else
Sujith2660b812009-02-09 13:27:26 +0530646 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700647
Gabor Juhos88e641d2011-06-21 11:23:30 +0200648 if (AR_SREV_9330(ah))
649 ah->bb_watchdog_timeout_ms = 85;
650 else
651 ah->bb_watchdog_timeout_ms = 25;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700652
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400653 common->state = ATH_HW_INITIALIZED;
654
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700655 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700656}
657
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400658int ath9k_hw_init(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530659{
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400660 int ret;
661 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530662
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400663 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
664 switch (ah->hw_version.devid) {
665 case AR5416_DEVID_PCI:
666 case AR5416_DEVID_PCIE:
667 case AR5416_AR9100_DEVID:
668 case AR9160_DEVID_PCI:
669 case AR9280_DEVID_PCI:
670 case AR9280_DEVID_PCIE:
671 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400672 case AR9287_DEVID_PCI:
673 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400674 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400675 case AR9300_DEVID_PCIE:
Vasanthakumar Thiagarajan3050c912010-12-06 04:27:36 -0800676 case AR9300_DEVID_AR9485_PCIE:
Gabor Juhos999a7a82011-06-21 11:23:52 +0200677 case AR9300_DEVID_AR9330:
Vasanthakumar Thiagarajanbca04682011-04-19 19:29:20 +0530678 case AR9300_DEVID_AR9340:
Luis R. Rodriguez5a63ef02011-08-24 15:36:08 -0700679 case AR9300_DEVID_AR9580:
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +0530680 case AR9300_DEVID_AR9462:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400681 break;
682 default:
683 if (common->bus_ops->ath_bus_type == ATH_USB)
684 break;
Joe Perches38002762010-12-02 19:12:36 -0800685 ath_err(common, "Hardware device ID 0x%04x not supported\n",
686 ah->hw_version.devid);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400687 return -EOPNOTSUPP;
688 }
Sujithf1dc5602008-10-29 10:16:30 +0530689
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400690 ret = __ath9k_hw_init(ah);
691 if (ret) {
Joe Perches38002762010-12-02 19:12:36 -0800692 ath_err(common,
693 "Unable to initialize hardware; initialization status: %d\n",
694 ret);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400695 return ret;
696 }
Sujithf1dc5602008-10-29 10:16:30 +0530697
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400698 return 0;
Sujithf1dc5602008-10-29 10:16:30 +0530699}
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400700EXPORT_SYMBOL(ath9k_hw_init);
Sujithf1dc5602008-10-29 10:16:30 +0530701
Sujithcbe61d82009-02-09 13:27:12 +0530702static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530703{
Sujith7d0d0df2010-04-16 11:53:57 +0530704 ENABLE_REGWRITE_BUFFER(ah);
705
Sujithf1dc5602008-10-29 10:16:30 +0530706 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
707 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
708
709 REG_WRITE(ah, AR_QOS_NO_ACK,
710 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
711 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
712 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
713
714 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
715 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
716 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
717 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
718 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
Sujith7d0d0df2010-04-16 11:53:57 +0530719
720 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530721}
722
Senthil Balasubramanianb84628e2011-04-22 11:32:12 +0530723u32 ar9003_get_pll_sqsum_dvc(struct ath_hw *ah)
Vivek Natarajanb1415812011-01-27 14:45:07 +0530724{
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100725 REG_CLR_BIT(ah, PLL3, PLL3_DO_MEAS_MASK);
726 udelay(100);
727 REG_SET_BIT(ah, PLL3, PLL3_DO_MEAS_MASK);
728
729 while ((REG_READ(ah, PLL4) & PLL4_MEAS_DONE) == 0)
Vivek Natarajanb1415812011-01-27 14:45:07 +0530730 udelay(100);
Vivek Natarajanb1415812011-01-27 14:45:07 +0530731
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100732 return (REG_READ(ah, PLL3) & SQSUM_DVC_MASK) >> 3;
Vivek Natarajanb1415812011-01-27 14:45:07 +0530733}
734EXPORT_SYMBOL(ar9003_get_pll_sqsum_dvc);
735
Sujithcbe61d82009-02-09 13:27:12 +0530736static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530737 struct ath9k_channel *chan)
738{
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800739 u32 pll;
740
Vivek Natarajan22983c32011-01-27 14:45:09 +0530741 if (AR_SREV_9485(ah)) {
Vivek Natarajan22983c32011-01-27 14:45:09 +0530742
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530743 /* program BB PLL ki and kd value, ki=0x4, kd=0x40 */
744 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
745 AR_CH0_BB_DPLL2_PLL_PWD, 0x1);
746 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
747 AR_CH0_DPLL2_KD, 0x40);
748 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
749 AR_CH0_DPLL2_KI, 0x4);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530750
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530751 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
752 AR_CH0_BB_DPLL1_REFDIV, 0x5);
753 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
754 AR_CH0_BB_DPLL1_NINI, 0x58);
755 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
756 AR_CH0_BB_DPLL1_NFRAC, 0x0);
757
758 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
759 AR_CH0_BB_DPLL2_OUTDIV, 0x1);
760 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
761 AR_CH0_BB_DPLL2_LOCAL_PLL, 0x1);
762 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
763 AR_CH0_BB_DPLL2_EN_NEGTRIG, 0x1);
764
765 /* program BB PLL phase_shift to 0x6 */
766 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL3,
767 AR_CH0_BB_DPLL3_PHASE_SHIFT, 0x6);
768
769 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
770 AR_CH0_BB_DPLL2_PLL_PWD, 0x0);
Vivek Natarajan75e03512011-03-10 11:05:42 +0530771 udelay(1000);
Gabor Juhosa5415d62011-06-21 11:23:29 +0200772 } else if (AR_SREV_9330(ah)) {
773 u32 ddr_dpll2, pll_control2, kd;
774
775 if (ah->is_clk_25mhz) {
776 ddr_dpll2 = 0x18e82f01;
777 pll_control2 = 0xe04a3d;
778 kd = 0x1d;
779 } else {
780 ddr_dpll2 = 0x19e82f01;
781 pll_control2 = 0x886666;
782 kd = 0x3d;
783 }
784
785 /* program DDR PLL ki and kd value */
786 REG_WRITE(ah, AR_CH0_DDR_DPLL2, ddr_dpll2);
787
788 /* program DDR PLL phase_shift */
789 REG_RMW_FIELD(ah, AR_CH0_DDR_DPLL3,
790 AR_CH0_DPLL3_PHASE_SHIFT, 0x1);
791
792 REG_WRITE(ah, AR_RTC_PLL_CONTROL, 0x1142c);
793 udelay(1000);
794
795 /* program refdiv, nint, frac to RTC register */
796 REG_WRITE(ah, AR_RTC_PLL_CONTROL2, pll_control2);
797
798 /* program BB PLL kd and ki value */
799 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2, AR_CH0_DPLL2_KD, kd);
800 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2, AR_CH0_DPLL2_KI, 0x06);
801
802 /* program BB PLL phase_shift */
803 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL3,
804 AR_CH0_BB_DPLL3_PHASE_SHIFT, 0x1);
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530805 } else if (AR_SREV_9340(ah)) {
806 u32 regval, pll2_divint, pll2_divfrac, refdiv;
807
808 REG_WRITE(ah, AR_RTC_PLL_CONTROL, 0x1142c);
809 udelay(1000);
810
811 REG_SET_BIT(ah, AR_PHY_PLL_MODE, 0x1 << 16);
812 udelay(100);
813
814 if (ah->is_clk_25mhz) {
815 pll2_divint = 0x54;
816 pll2_divfrac = 0x1eb85;
817 refdiv = 3;
818 } else {
819 pll2_divint = 88;
820 pll2_divfrac = 0;
821 refdiv = 5;
822 }
823
824 regval = REG_READ(ah, AR_PHY_PLL_MODE);
825 regval |= (0x1 << 16);
826 REG_WRITE(ah, AR_PHY_PLL_MODE, regval);
827 udelay(100);
828
829 REG_WRITE(ah, AR_PHY_PLL_CONTROL, (refdiv << 27) |
830 (pll2_divint << 18) | pll2_divfrac);
831 udelay(100);
832
833 regval = REG_READ(ah, AR_PHY_PLL_MODE);
834 regval = (regval & 0x80071fff) | (0x1 << 30) | (0x1 << 13) |
835 (0x4 << 26) | (0x18 << 19);
836 REG_WRITE(ah, AR_PHY_PLL_MODE, regval);
837 REG_WRITE(ah, AR_PHY_PLL_MODE,
838 REG_READ(ah, AR_PHY_PLL_MODE) & 0xfffeffff);
839 udelay(1000);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530840 }
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800841
842 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530843
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100844 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530845
Gabor Juhosa5415d62011-06-21 11:23:29 +0200846 if (AR_SREV_9485(ah) || AR_SREV_9340(ah) || AR_SREV_9330(ah))
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530847 udelay(1000);
848
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400849 /* Switch the core clock for ar9271 to 117Mhz */
850 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530851 udelay(500);
852 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400853 }
854
Sujithf1dc5602008-10-29 10:16:30 +0530855 udelay(RTC_PLL_SETTLE_DELAY);
856
857 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530858
859 if (AR_SREV_9340(ah)) {
860 if (ah->is_clk_25mhz) {
861 REG_WRITE(ah, AR_RTC_DERIVED_CLK, 0x17c << 1);
862 REG_WRITE(ah, AR_SLP32_MODE, 0x0010f3d7);
863 REG_WRITE(ah, AR_SLP32_INC, 0x0001e7ae);
864 } else {
865 REG_WRITE(ah, AR_RTC_DERIVED_CLK, 0x261 << 1);
866 REG_WRITE(ah, AR_SLP32_MODE, 0x0010f400);
867 REG_WRITE(ah, AR_SLP32_INC, 0x0001e800);
868 }
869 udelay(100);
870 }
Sujithf1dc5602008-10-29 10:16:30 +0530871}
872
Sujithcbe61d82009-02-09 13:27:12 +0530873static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800874 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530875{
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530876 u32 sync_default = AR_INTR_SYNC_DEFAULT;
Pavel Roskin152d5302010-03-31 18:05:37 -0400877 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530878 AR_IMR_TXURN |
879 AR_IMR_RXERR |
880 AR_IMR_RXORN |
881 AR_IMR_BCNMISC;
882
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530883 if (AR_SREV_9340(ah))
884 sync_default &= ~AR_INTR_SYNC_HOST1_FATAL;
885
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400886 if (AR_SREV_9300_20_OR_LATER(ah)) {
887 imr_reg |= AR_IMR_RXOK_HP;
888 if (ah->config.rx_intr_mitigation)
889 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
890 else
891 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530892
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400893 } else {
894 if (ah->config.rx_intr_mitigation)
895 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
896 else
897 imr_reg |= AR_IMR_RXOK;
898 }
899
900 if (ah->config.tx_intr_mitigation)
901 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
902 else
903 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530904
Colin McCabed97809d2008-12-01 13:38:55 -0800905 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -0400906 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +0530907
Sujith7d0d0df2010-04-16 11:53:57 +0530908 ENABLE_REGWRITE_BUFFER(ah);
909
Pavel Roskin152d5302010-03-31 18:05:37 -0400910 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500911 ah->imrs2_reg |= AR_IMR_S2_GTT;
912 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530913
914 if (!AR_SREV_9100(ah)) {
915 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530916 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, sync_default);
Sujithf1dc5602008-10-29 10:16:30 +0530917 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
918 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400919
Sujith7d0d0df2010-04-16 11:53:57 +0530920 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530921
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400922 if (AR_SREV_9300_20_OR_LATER(ah)) {
923 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
924 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
925 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
926 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
927 }
Sujithf1dc5602008-10-29 10:16:30 +0530928}
929
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700930static void ath9k_hw_set_sifs_time(struct ath_hw *ah, u32 us)
931{
932 u32 val = ath9k_hw_mac_to_clks(ah, us - 2);
933 val = min(val, (u32) 0xFFFF);
934 REG_WRITE(ah, AR_D_GBL_IFS_SIFS, val);
935}
936
Felix Fietkau0005baf2010-01-15 02:33:40 +0100937static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530938{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100939 u32 val = ath9k_hw_mac_to_clks(ah, us);
940 val = min(val, (u32) 0xFFFF);
941 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530942}
943
Felix Fietkau0005baf2010-01-15 02:33:40 +0100944static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530945{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100946 u32 val = ath9k_hw_mac_to_clks(ah, us);
947 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
948 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
949}
950
951static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
952{
953 u32 val = ath9k_hw_mac_to_clks(ah, us);
954 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
955 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530956}
957
Sujithcbe61d82009-02-09 13:27:12 +0530958static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +0530959{
Sujithf1dc5602008-10-29 10:16:30 +0530960 if (tu > 0xFFFF) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800961 ath_dbg(ath9k_hw_common(ah), XMIT, "bad global tx timeout %u\n",
962 tu);
Sujith2660b812009-02-09 13:27:26 +0530963 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +0530964 return false;
965 } else {
966 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +0530967 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +0530968 return true;
969 }
970}
971
Felix Fietkau0005baf2010-01-15 02:33:40 +0100972void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530973{
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700974 struct ath_common *common = ath9k_hw_common(ah);
975 struct ieee80211_conf *conf = &common->hw->conf;
976 const struct ath9k_channel *chan = ah->curchan;
Felix Fietkauadb50662011-08-28 01:52:10 +0200977 int acktimeout, ctstimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +0100978 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100979 int sifstime;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700980 int rx_lat = 0, tx_lat = 0, eifs = 0;
981 u32 reg;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100982
Joe Perchesd2182b62011-12-15 14:55:53 -0800983 ath_dbg(ath9k_hw_common(ah), RESET, "ah->misc_mode 0x%x\n",
Joe Perches226afe62010-12-02 19:12:37 -0800984 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +0530985
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700986 if (!chan)
987 return;
988
Sujith2660b812009-02-09 13:27:26 +0530989 if (ah->misc_mode != 0)
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100990 REG_SET_BIT(ah, AR_PCU_MISC, ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100991
Rajkumar Manoharan81a91d52011-08-31 10:47:30 +0530992 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
993 rx_lat = 41;
994 else
995 rx_lat = 37;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700996 tx_lat = 54;
997
998 if (IS_CHAN_HALF_RATE(chan)) {
999 eifs = 175;
1000 rx_lat *= 2;
1001 tx_lat *= 2;
1002 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
1003 tx_lat += 11;
1004
1005 slottime = 13;
1006 sifstime = 32;
1007 } else if (IS_CHAN_QUARTER_RATE(chan)) {
1008 eifs = 340;
Rajkumar Manoharan81a91d52011-08-31 10:47:30 +05301009 rx_lat = (rx_lat * 4) - 1;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001010 tx_lat *= 4;
1011 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
1012 tx_lat += 22;
1013
1014 slottime = 21;
1015 sifstime = 64;
1016 } else {
Rajkumar Manoharana7be0392011-08-27 12:13:21 +05301017 if (AR_SREV_9287(ah) && AR_SREV_9287_13_OR_LATER(ah)) {
1018 eifs = AR_D_GBL_IFS_EIFS_ASYNC_FIFO;
1019 reg = AR_USEC_ASYNC_FIFO;
1020 } else {
1021 eifs = REG_READ(ah, AR_D_GBL_IFS_EIFS)/
1022 common->clockrate;
1023 reg = REG_READ(ah, AR_USEC);
1024 }
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001025 rx_lat = MS(reg, AR_USEC_RX_LAT);
1026 tx_lat = MS(reg, AR_USEC_TX_LAT);
1027
1028 slottime = ah->slottime;
1029 if (IS_CHAN_5GHZ(chan))
1030 sifstime = 16;
1031 else
1032 sifstime = 10;
1033 }
Felix Fietkau0005baf2010-01-15 02:33:40 +01001034
Felix Fietkaue239d852010-01-15 02:34:58 +01001035 /* As defined by IEEE 802.11-2007 17.3.8.6 */
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001036 acktimeout = slottime + sifstime + 3 * ah->coverage_class;
Felix Fietkauadb50662011-08-28 01:52:10 +02001037 ctstimeout = acktimeout;
Felix Fietkau42c45682010-02-11 18:07:19 +01001038
1039 /*
1040 * Workaround for early ACK timeouts, add an offset to match the
Felix Fietkau55a2bb42012-02-05 21:15:18 +01001041 * initval's 64us ack timeout value. Use 48us for the CTS timeout.
Felix Fietkau42c45682010-02-11 18:07:19 +01001042 * This was initially only meant to work around an issue with delayed
1043 * BA frames in some implementations, but it has been found to fix ACK
1044 * timeout issues in other cases as well.
1045 */
Felix Fietkau55a2bb42012-02-05 21:15:18 +01001046 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ) {
Felix Fietkau42c45682010-02-11 18:07:19 +01001047 acktimeout += 64 - sifstime - ah->slottime;
Felix Fietkau55a2bb42012-02-05 21:15:18 +01001048 ctstimeout += 48 - sifstime - ah->slottime;
1049 }
1050
Felix Fietkau42c45682010-02-11 18:07:19 +01001051
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001052 ath9k_hw_set_sifs_time(ah, sifstime);
1053 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001054 ath9k_hw_set_ack_timeout(ah, acktimeout);
Felix Fietkauadb50662011-08-28 01:52:10 +02001055 ath9k_hw_set_cts_timeout(ah, ctstimeout);
Sujith2660b812009-02-09 13:27:26 +05301056 if (ah->globaltxtimeout != (u32) -1)
1057 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001058
1059 REG_WRITE(ah, AR_D_GBL_IFS_EIFS, ath9k_hw_mac_to_clks(ah, eifs));
1060 REG_RMW(ah, AR_USEC,
1061 (common->clockrate - 1) |
1062 SM(rx_lat, AR_USEC_RX_LAT) |
1063 SM(tx_lat, AR_USEC_TX_LAT),
1064 AR_USEC_TX_LAT | AR_USEC_RX_LAT | AR_USEC_USEC);
1065
Sujithf1dc5602008-10-29 10:16:30 +05301066}
Felix Fietkau0005baf2010-01-15 02:33:40 +01001067EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +05301068
Sujith285f2dd2010-01-08 10:36:07 +05301069void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001070{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001071 struct ath_common *common = ath9k_hw_common(ah);
1072
Sujith736b3a22010-03-17 14:25:24 +05301073 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001074 goto free_hw;
1075
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001076 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001077
1078free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001079 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001080}
Sujith285f2dd2010-01-08 10:36:07 +05301081EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001082
Sujithf1dc5602008-10-29 10:16:30 +05301083/*******/
1084/* INI */
1085/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001086
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001087u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -04001088{
1089 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1090
1091 if (IS_CHAN_B(chan))
1092 ctl |= CTL_11B;
1093 else if (IS_CHAN_G(chan))
1094 ctl |= CTL_11G;
1095 else
1096 ctl |= CTL_11A;
1097
1098 return ctl;
1099}
1100
Sujithf1dc5602008-10-29 10:16:30 +05301101/****************************************/
1102/* Reset and Channel Switching Routines */
1103/****************************************/
1104
Sujithcbe61d82009-02-09 13:27:12 +05301105static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301106{
Felix Fietkau57b32222010-04-15 17:39:22 -04001107 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301108
Sujith7d0d0df2010-04-16 11:53:57 +05301109 ENABLE_REGWRITE_BUFFER(ah);
1110
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001111 /*
1112 * set AHB_MODE not to do cacheline prefetches
1113 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001114 if (!AR_SREV_9300_20_OR_LATER(ah))
1115 REG_SET_BIT(ah, AR_AHB_MODE, AR_AHB_PREFETCH_RD_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301116
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001117 /*
1118 * let mac dma reads be in 128 byte chunks
1119 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001120 REG_RMW(ah, AR_TXCFG, AR_TXCFG_DMASZ_128B, AR_TXCFG_DMASZ_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301121
Sujith7d0d0df2010-04-16 11:53:57 +05301122 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301123
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001124 /*
1125 * Restore TX Trigger Level to its pre-reset value.
1126 * The initial value depends on whether aggregation is enabled, and is
1127 * adjusted whenever underruns are detected.
1128 */
Felix Fietkau57b32222010-04-15 17:39:22 -04001129 if (!AR_SREV_9300_20_OR_LATER(ah))
1130 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301131
Sujith7d0d0df2010-04-16 11:53:57 +05301132 ENABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301133
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001134 /*
1135 * let mac dma writes be in 128 byte chunks
1136 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001137 REG_RMW(ah, AR_RXCFG, AR_RXCFG_DMASZ_128B, AR_RXCFG_DMASZ_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301138
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001139 /*
1140 * Setup receive FIFO threshold to hold off TX activities
1141 */
Sujithf1dc5602008-10-29 10:16:30 +05301142 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1143
Felix Fietkau57b32222010-04-15 17:39:22 -04001144 if (AR_SREV_9300_20_OR_LATER(ah)) {
1145 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
1146 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
1147
1148 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
1149 ah->caps.rx_status_len);
1150 }
1151
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001152 /*
1153 * reduce the number of usable entries in PCU TXBUF to avoid
1154 * wrap around issues.
1155 */
Sujithf1dc5602008-10-29 10:16:30 +05301156 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001157 /* For AR9285 the number of Fifos are reduced to half.
1158 * So set the usable tx buf size also to half to
1159 * avoid data/delimiter underruns
1160 */
Sujithf1dc5602008-10-29 10:16:30 +05301161 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1162 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001163 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +05301164 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1165 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1166 }
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -04001167
Sujith7d0d0df2010-04-16 11:53:57 +05301168 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301169
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -04001170 if (AR_SREV_9300_20_OR_LATER(ah))
1171 ath9k_hw_reset_txstatus_ring(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301172}
1173
Sujithcbe61d82009-02-09 13:27:12 +05301174static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301175{
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001176 u32 mask = AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC;
1177 u32 set = AR_STA_ID1_KSRCH_MODE;
Sujithf1dc5602008-10-29 10:16:30 +05301178
Sujithf1dc5602008-10-29 10:16:30 +05301179 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001180 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001181 case NL80211_IFTYPE_MESH_POINT:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001182 set |= AR_STA_ID1_ADHOC;
Sujithf1dc5602008-10-29 10:16:30 +05301183 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1184 break;
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001185 case NL80211_IFTYPE_AP:
1186 set |= AR_STA_ID1_STA_AP;
1187 /* fall through */
Colin McCabed97809d2008-12-01 13:38:55 -08001188 case NL80211_IFTYPE_STATION:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001189 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
Sujithf1dc5602008-10-29 10:16:30 +05301190 break;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301191 default:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001192 if (!ah->is_monitoring)
1193 set = 0;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301194 break;
Sujithf1dc5602008-10-29 10:16:30 +05301195 }
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001196 REG_RMW(ah, AR_STA_ID1, set, mask);
Sujithf1dc5602008-10-29 10:16:30 +05301197}
1198
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001199void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
1200 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001201{
1202 u32 coef_exp, coef_man;
1203
1204 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1205 if ((coef_scaled >> coef_exp) & 0x1)
1206 break;
1207
1208 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1209
1210 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1211
1212 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1213 *coef_exponent = coef_exp - 16;
1214}
1215
Sujithcbe61d82009-02-09 13:27:12 +05301216static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301217{
1218 u32 rst_flags;
1219 u32 tmpReg;
1220
Sujith70768492009-02-16 13:23:12 +05301221 if (AR_SREV_9100(ah)) {
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001222 REG_RMW_FIELD(ah, AR_RTC_DERIVED_CLK,
1223 AR_RTC_DERIVED_CLK_PERIOD, 1);
Sujith70768492009-02-16 13:23:12 +05301224 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1225 }
1226
Sujith7d0d0df2010-04-16 11:53:57 +05301227 ENABLE_REGWRITE_BUFFER(ah);
1228
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001229 if (AR_SREV_9300_20_OR_LATER(ah)) {
1230 REG_WRITE(ah, AR_WA, ah->WARegVal);
1231 udelay(10);
1232 }
1233
Sujithf1dc5602008-10-29 10:16:30 +05301234 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1235 AR_RTC_FORCE_WAKE_ON_INT);
1236
1237 if (AR_SREV_9100(ah)) {
1238 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1239 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1240 } else {
1241 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1242 if (tmpReg &
1243 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1244 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001245 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301246 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001247
1248 val = AR_RC_HOSTIF;
1249 if (!AR_SREV_9300_20_OR_LATER(ah))
1250 val |= AR_RC_AHB;
1251 REG_WRITE(ah, AR_RC, val);
1252
1253 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301254 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301255
1256 rst_flags = AR_RTC_RC_MAC_WARM;
1257 if (type == ATH9K_RESET_COLD)
1258 rst_flags |= AR_RTC_RC_MAC_COLD;
1259 }
1260
Gabor Juhos7d95847c2011-06-21 11:23:51 +02001261 if (AR_SREV_9330(ah)) {
1262 int npend = 0;
1263 int i;
1264
1265 /* AR9330 WAR:
1266 * call external reset function to reset WMAC if:
1267 * - doing a cold reset
1268 * - we have pending frames in the TX queues
1269 */
1270
1271 for (i = 0; i < AR_NUM_QCU; i++) {
1272 npend = ath9k_hw_numtxpending(ah, i);
1273 if (npend)
1274 break;
1275 }
1276
1277 if (ah->external_reset &&
1278 (npend || type == ATH9K_RESET_COLD)) {
1279 int reset_err = 0;
1280
Joe Perchesd2182b62011-12-15 14:55:53 -08001281 ath_dbg(ath9k_hw_common(ah), RESET,
Gabor Juhos7d95847c2011-06-21 11:23:51 +02001282 "reset MAC via external reset\n");
1283
1284 reset_err = ah->external_reset();
1285 if (reset_err) {
1286 ath_err(ath9k_hw_common(ah),
1287 "External reset failed, err=%d\n",
1288 reset_err);
1289 return false;
1290 }
1291
1292 REG_WRITE(ah, AR_RTC_RESET, 1);
1293 }
1294 }
1295
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001296 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujith7d0d0df2010-04-16 11:53:57 +05301297
1298 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301299
Sujithf1dc5602008-10-29 10:16:30 +05301300 udelay(50);
1301
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001302 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301303 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001304 ath_dbg(ath9k_hw_common(ah), RESET, "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301305 return false;
1306 }
1307
1308 if (!AR_SREV_9100(ah))
1309 REG_WRITE(ah, AR_RC, 0);
1310
Sujithf1dc5602008-10-29 10:16:30 +05301311 if (AR_SREV_9100(ah))
1312 udelay(50);
1313
1314 return true;
1315}
1316
Sujithcbe61d82009-02-09 13:27:12 +05301317static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301318{
Sujith7d0d0df2010-04-16 11:53:57 +05301319 ENABLE_REGWRITE_BUFFER(ah);
1320
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001321 if (AR_SREV_9300_20_OR_LATER(ah)) {
1322 REG_WRITE(ah, AR_WA, ah->WARegVal);
1323 udelay(10);
1324 }
1325
Sujithf1dc5602008-10-29 10:16:30 +05301326 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1327 AR_RTC_FORCE_WAKE_ON_INT);
1328
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001329 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301330 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1331
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001332 REG_WRITE(ah, AR_RTC_RESET, 0);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301333
Sujith7d0d0df2010-04-16 11:53:57 +05301334 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301335
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001336 if (!AR_SREV_9300_20_OR_LATER(ah))
1337 udelay(2);
1338
1339 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301340 REG_WRITE(ah, AR_RC, 0);
1341
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001342 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301343
1344 if (!ath9k_hw_wait(ah,
1345 AR_RTC_STATUS,
1346 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301347 AR_RTC_STATUS_ON,
1348 AH_WAIT_TIMEOUT)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001349 ath_dbg(ath9k_hw_common(ah), RESET, "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301350 return false;
1351 }
1352
Sujithf1dc5602008-10-29 10:16:30 +05301353 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1354}
1355
Sujithcbe61d82009-02-09 13:27:12 +05301356static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301357{
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301358 bool ret = false;
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301359
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001360 if (AR_SREV_9300_20_OR_LATER(ah)) {
1361 REG_WRITE(ah, AR_WA, ah->WARegVal);
1362 udelay(10);
1363 }
1364
Sujithf1dc5602008-10-29 10:16:30 +05301365 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1366 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1367
1368 switch (type) {
1369 case ATH9K_RESET_POWER_ON:
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301370 ret = ath9k_hw_set_reset_power_on(ah);
1371 break;
Sujithf1dc5602008-10-29 10:16:30 +05301372 case ATH9K_RESET_WARM:
1373 case ATH9K_RESET_COLD:
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301374 ret = ath9k_hw_set_reset(ah, type);
1375 break;
Sujithf1dc5602008-10-29 10:16:30 +05301376 default:
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301377 break;
Sujithf1dc5602008-10-29 10:16:30 +05301378 }
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301379
1380 if (ah->caps.hw_caps & ATH9K_HW_CAP_MCI)
1381 REG_WRITE(ah, AR_RTC_KEEP_AWAKE, 0x2);
1382
1383 return ret;
Sujithf1dc5602008-10-29 10:16:30 +05301384}
1385
Sujithcbe61d82009-02-09 13:27:12 +05301386static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301387 struct ath9k_channel *chan)
1388{
Felix Fietkau9c083af2012-03-03 15:17:02 +01001389 int reset_type = ATH9K_RESET_WARM;
1390
1391 if (AR_SREV_9280(ah)) {
1392 if (ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1393 reset_type = ATH9K_RESET_POWER_ON;
1394 else
1395 reset_type = ATH9K_RESET_COLD;
1396 }
1397
1398 if (!ath9k_hw_set_reset_reg(ah, reset_type))
Sujithf1dc5602008-10-29 10:16:30 +05301399 return false;
1400
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001401 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301402 return false;
1403
Sujith2660b812009-02-09 13:27:26 +05301404 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301405 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301406 ath9k_hw_set_rfmode(ah, chan);
1407
1408 return true;
1409}
1410
Sujithcbe61d82009-02-09 13:27:12 +05301411static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001412 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301413{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001414 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001415 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001416 int r;
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301417 bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
1418 bool band_switch, mode_diff;
1419 u8 ini_reloaded;
1420
1421 band_switch = (chan->channelFlags & (CHANNEL_2GHZ | CHANNEL_5GHZ)) !=
1422 (ah->curchan->channelFlags & (CHANNEL_2GHZ |
1423 CHANNEL_5GHZ));
1424 mode_diff = (chan->chanmode != ah->curchan->chanmode);
Sujithf1dc5602008-10-29 10:16:30 +05301425
1426 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1427 if (ath9k_hw_numtxpending(ah, qnum)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001428 ath_dbg(common, QUEUE,
Joe Perches226afe62010-12-02 19:12:37 -08001429 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301430 return false;
1431 }
1432 }
1433
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001434 if (!ath9k_hw_rfbus_req(ah)) {
Joe Perches38002762010-12-02 19:12:36 -08001435 ath_err(common, "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301436 return false;
1437 }
1438
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301439 if (edma && (band_switch || mode_diff)) {
1440 ath9k_hw_mark_phy_inactive(ah);
1441 udelay(5);
1442
1443 ath9k_hw_init_pll(ah, NULL);
1444
1445 if (ath9k_hw_fast_chan_change(ah, chan, &ini_reloaded)) {
1446 ath_err(common, "Failed to do fast channel change\n");
1447 return false;
1448 }
1449 }
1450
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001451 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301452
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001453 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001454 if (r) {
Joe Perches38002762010-12-02 19:12:36 -08001455 ath_err(common, "Failed to set channel\n");
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001456 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301457 }
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001458 ath9k_hw_set_clockrate(ah);
Felix Fietkauca2c68c2011-10-08 20:06:20 +02001459 ath9k_hw_apply_txpower(ah, chan);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001460 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301461
1462 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1463 ath9k_hw_set_delta_slope(ah, chan);
1464
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001465 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301466
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301467 if (edma && (band_switch || mode_diff)) {
Rajkumar Manoharana126ff52011-10-13 11:00:42 +05301468 ah->ah_flags |= AH_FASTCC;
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301469 if (band_switch || ini_reloaded)
1470 ah->eep_ops->set_board_values(ah, chan);
1471
1472 ath9k_hw_init_bb(ah, chan);
1473
1474 if (band_switch || ini_reloaded)
1475 ath9k_hw_init_cal(ah, chan);
Rajkumar Manoharana126ff52011-10-13 11:00:42 +05301476 ah->ah_flags &= ~AH_FASTCC;
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301477 }
1478
Sujithf1dc5602008-10-29 10:16:30 +05301479 return true;
1480}
1481
Felix Fietkau691680b2011-03-19 13:55:38 +01001482static void ath9k_hw_apply_gpio_override(struct ath_hw *ah)
1483{
1484 u32 gpio_mask = ah->gpio_mask;
1485 int i;
1486
1487 for (i = 0; gpio_mask; i++, gpio_mask >>= 1) {
1488 if (!(gpio_mask & 1))
1489 continue;
1490
1491 ath9k_hw_cfg_output(ah, i, AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1492 ath9k_hw_set_gpio(ah, i, !!(ah->gpio_val & BIT(i)));
1493 }
1494}
1495
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001496bool ath9k_hw_check_alive(struct ath_hw *ah)
Johannes Berg3b319aa2009-06-13 14:50:26 +05301497{
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001498 int count = 50;
1499 u32 reg;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301500
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001501 if (AR_SREV_9285_12_OR_LATER(ah))
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001502 return true;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301503
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001504 do {
1505 reg = REG_READ(ah, AR_OBS_BUS_1);
1506
1507 if ((reg & 0x7E7FFFEF) == 0x00702400)
1508 continue;
1509
1510 switch (reg & 0x7E000B00) {
1511 case 0x1E000000:
1512 case 0x52000B00:
1513 case 0x18000B00:
1514 continue;
1515 default:
1516 return true;
1517 }
1518 } while (count-- > 0);
1519
1520 return false;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301521}
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001522EXPORT_SYMBOL(ath9k_hw_check_alive);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301523
Sujith Manoharancaed6572012-03-14 14:40:46 +05301524/*
1525 * Fast channel change:
1526 * (Change synthesizer based on channel freq without resetting chip)
1527 *
1528 * Don't do FCC when
1529 * - Flag is not set
1530 * - Chip is just coming out of full sleep
1531 * - Channel to be set is same as current channel
1532 * - Channel flags are different, (eg.,moving from 2GHz to 5GHz channel)
1533 */
1534static int ath9k_hw_do_fastcc(struct ath_hw *ah, struct ath9k_channel *chan)
1535{
1536 struct ath_common *common = ath9k_hw_common(ah);
1537 int ret;
1538
1539 if (AR_SREV_9280(ah) && common->bus_ops->ath_bus_type == ATH_PCI)
1540 goto fail;
1541
1542 if (ah->chip_fullsleep)
1543 goto fail;
1544
1545 if (!ah->curchan)
1546 goto fail;
1547
1548 if (chan->channel == ah->curchan->channel)
1549 goto fail;
1550
1551 if ((chan->channelFlags & CHANNEL_ALL) !=
1552 (ah->curchan->channelFlags & CHANNEL_ALL))
1553 goto fail;
1554
1555 if (!ath9k_hw_check_alive(ah))
1556 goto fail;
1557
1558 /*
1559 * For AR9462, make sure that calibration data for
1560 * re-using are present.
1561 */
1562 if (AR_SREV_9462(ah) && (!ah->caldata ||
1563 !ah->caldata->done_txiqcal_once ||
1564 !ah->caldata->done_txclcal_once ||
1565 !ah->caldata->rtt_hist.num_readings))
1566 goto fail;
1567
1568 ath_dbg(common, RESET, "FastChannelChange for %d -> %d\n",
1569 ah->curchan->channel, chan->channel);
1570
1571 ret = ath9k_hw_channel_change(ah, chan);
1572 if (!ret)
1573 goto fail;
1574
1575 ath9k_hw_loadnf(ah, ah->curchan);
1576 ath9k_hw_start_nfcal(ah, true);
1577
1578 if ((ah->caps.hw_caps & ATH9K_HW_CAP_MCI) && ar9003_mci_is_ready(ah))
1579 ar9003_mci_2g5g_switch(ah, true);
1580
1581 if (AR_SREV_9271(ah))
1582 ar9002_hw_load_ani_reg(ah, chan);
1583
1584 return 0;
1585fail:
1586 return -EINVAL;
1587}
1588
Sujithcbe61d82009-02-09 13:27:12 +05301589int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Sujith Manoharancaed6572012-03-14 14:40:46 +05301590 struct ath9k_hw_cal_data *caldata, bool fastcc)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001591{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001592 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001593 u32 saveLedState;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001594 u32 saveDefAntenna;
1595 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301596 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001597 int i, r;
Sujith Manoharancaed6572012-03-14 14:40:46 +05301598 bool start_mci_reset = false;
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301599 bool mci = !!(ah->caps.hw_caps & ATH9K_HW_CAP_MCI);
1600 bool save_fullsleep = ah->chip_fullsleep;
1601
1602 if (mci) {
Sujith Manoharan528e5d32012-02-22 12:41:12 +05301603 start_mci_reset = ar9003_mci_start_reset(ah, chan);
1604 if (start_mci_reset)
1605 return 0;
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301606 }
1607
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001608 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001609 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001610
Sujith Manoharancaed6572012-03-14 14:40:46 +05301611 if (ah->curchan && !ah->chip_fullsleep)
1612 ath9k_hw_getnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001613
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001614 ah->caldata = caldata;
1615 if (caldata &&
1616 (chan->channel != caldata->channel ||
1617 (chan->channelFlags & ~CHANNEL_CW_INT) !=
1618 (caldata->channelFlags & ~CHANNEL_CW_INT))) {
1619 /* Operating channel changed, reset channel calibration data */
1620 memset(caldata, 0, sizeof(*caldata));
1621 ath9k_init_nfcal_hist_buffer(ah, chan);
1622 }
Felix Fietkauf23fba42011-07-28 14:08:56 +02001623 ah->noise = ath9k_hw_getchan_noise(ah, chan);
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001624
Sujith Manoharancaed6572012-03-14 14:40:46 +05301625 if (fastcc) {
1626 r = ath9k_hw_do_fastcc(ah, chan);
1627 if (!r)
1628 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001629 }
1630
Sujith Manoharan528e5d32012-02-22 12:41:12 +05301631 if (mci)
1632 ar9003_mci_stop_bt(ah, save_fullsleep);
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301633
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001634 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1635 if (saveDefAntenna == 0)
1636 saveDefAntenna = 1;
1637
1638 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1639
Sujith46fe7822009-09-17 09:25:25 +05301640 /* For chips on which RTC reset is done, save TSF before it gets cleared */
Felix Fietkauf860d522010-06-30 02:07:48 +02001641 if (AR_SREV_9100(ah) ||
1642 (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)))
Sujith46fe7822009-09-17 09:25:25 +05301643 tsf = ath9k_hw_gettsf64(ah);
1644
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001645 saveLedState = REG_READ(ah, AR_CFG_LED) &
1646 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1647 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1648
1649 ath9k_hw_mark_phy_inactive(ah);
1650
Vasanthakumar Thiagarajan45ef6a02010-12-15 07:30:53 -08001651 ah->paprd_table_write_done = false;
1652
Sujith05020d22010-03-17 14:25:23 +05301653 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001654 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1655 REG_WRITE(ah,
1656 AR9271_RESET_POWER_DOWN_CONTROL,
1657 AR9271_RADIO_RF_RST);
1658 udelay(50);
1659 }
1660
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001661 if (!ath9k_hw_chip_reset(ah, chan)) {
Joe Perches38002762010-12-02 19:12:36 -08001662 ath_err(common, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001663 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001664 }
1665
Sujith05020d22010-03-17 14:25:23 +05301666 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001667 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1668 ah->htc_reset_init = false;
1669 REG_WRITE(ah,
1670 AR9271_RESET_POWER_DOWN_CONTROL,
1671 AR9271_GATE_MAC_CTL);
1672 udelay(50);
1673 }
1674
Sujith46fe7822009-09-17 09:25:25 +05301675 /* Restore TSF */
Felix Fietkauf860d522010-06-30 02:07:48 +02001676 if (tsf)
Sujith46fe7822009-09-17 09:25:25 +05301677 ath9k_hw_settsf64(ah, tsf);
1678
Felix Fietkau7a370812010-09-22 12:34:52 +02001679 if (AR_SREV_9280_20_OR_LATER(ah))
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301680 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001681
Sujithe9141f72010-06-01 15:14:10 +05301682 if (!AR_SREV_9300_20_OR_LATER(ah))
1683 ar9002_hw_enable_async_fifo(ah);
1684
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001685 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001686 if (r)
1687 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001688
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301689 if (mci)
1690 ar9003_mci_reset(ah, false, IS_CHAN_2GHZ(chan), save_fullsleep);
1691
Felix Fietkauf860d522010-06-30 02:07:48 +02001692 /*
1693 * Some AR91xx SoC devices frequently fail to accept TSF writes
1694 * right after the chip reset. When that happens, write a new
1695 * value after the initvals have been applied, with an offset
1696 * based on measured time difference
1697 */
1698 if (AR_SREV_9100(ah) && (ath9k_hw_gettsf64(ah) < tsf)) {
1699 tsf += 1500;
1700 ath9k_hw_settsf64(ah, tsf);
1701 }
1702
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001703 /* Setup MFP options for CCMP */
1704 if (AR_SREV_9280_20_OR_LATER(ah)) {
1705 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1706 * frames when constructing CCMP AAD. */
1707 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1708 0xc7ff);
1709 ah->sw_mgmt_crypto = false;
1710 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1711 /* Disable hardware crypto for management frames */
1712 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1713 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1714 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1715 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1716 ah->sw_mgmt_crypto = true;
1717 } else
1718 ah->sw_mgmt_crypto = true;
1719
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001720 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1721 ath9k_hw_set_delta_slope(ah, chan);
1722
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001723 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301724 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001725
Sujith7d0d0df2010-04-16 11:53:57 +05301726 ENABLE_REGWRITE_BUFFER(ah);
1727
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001728 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1729 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001730 | macStaId1
1731 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301732 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301733 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301734 | ah->sta_id1_defaults);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001735 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001736 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001737 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001738 REG_WRITE(ah, AR_ISR, ~0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001739 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1740
Sujith7d0d0df2010-04-16 11:53:57 +05301741 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301742
Sujith Manoharan00e00032011-01-26 21:59:05 +05301743 ath9k_hw_set_operating_mode(ah, ah->opmode);
1744
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001745 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001746 if (r)
1747 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001748
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001749 ath9k_hw_set_clockrate(ah);
1750
Sujith7d0d0df2010-04-16 11:53:57 +05301751 ENABLE_REGWRITE_BUFFER(ah);
1752
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001753 for (i = 0; i < AR_NUM_DCU; i++)
1754 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1755
Sujith7d0d0df2010-04-16 11:53:57 +05301756 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301757
Sujith2660b812009-02-09 13:27:26 +05301758 ah->intr_txqs = 0;
Felix Fietkauf4c607d2011-03-23 20:57:28 +01001759 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001760 ath9k_hw_resettxqueue(ah, i);
1761
Sujith2660b812009-02-09 13:27:26 +05301762 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001763 ath9k_hw_ani_cache_ini_regs(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001764 ath9k_hw_init_qos(ah);
1765
Sujith2660b812009-02-09 13:27:26 +05301766 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Felix Fietkau55821322010-12-17 00:57:01 +01001767 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301768
Felix Fietkau0005baf2010-01-15 02:33:40 +01001769 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001770
Felix Fietkaufe2b6af2011-07-09 11:12:51 +07001771 if (AR_SREV_9287(ah) && AR_SREV_9287_13_OR_LATER(ah)) {
1772 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
1773 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
1774 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
1775 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
1776 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1777 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301778 }
1779
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001780 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PRESERVE_SEQNUM);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001781
1782 ath9k_hw_set_dma(ah);
1783
1784 REG_WRITE(ah, AR_OBS, 8);
1785
Sujith0ce024c2009-12-14 14:57:00 +05301786 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001787 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1788 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1789 }
1790
Vasanthakumar Thiagarajan7f62a132010-04-15 17:39:19 -04001791 if (ah->config.tx_intr_mitigation) {
1792 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
1793 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
1794 }
1795
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001796 ath9k_hw_init_bb(ah, chan);
1797
Rajkumar Manoharan77a5a662011-10-13 11:00:37 +05301798 if (caldata) {
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301799 caldata->done_txiqcal_once = false;
Rajkumar Manoharan77a5a662011-10-13 11:00:37 +05301800 caldata->done_txclcal_once = false;
Rajkumar Manoharan324c74a2011-10-13 11:00:41 +05301801 caldata->rtt_hist.num_readings = 0;
Rajkumar Manoharan77a5a662011-10-13 11:00:37 +05301802 }
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001803 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001804 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001805
Rajkumar Manoharan93348922011-10-25 16:47:36 +05301806 ath9k_hw_loadnf(ah, chan);
1807 ath9k_hw_start_nfcal(ah, true);
1808
Sujith Manoharan528e5d32012-02-22 12:41:12 +05301809 if (mci && ar9003_mci_end_reset(ah, chan, caldata))
1810 return -EIO;
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301811
Sujith7d0d0df2010-04-16 11:53:57 +05301812 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001813
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001814 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001815 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1816
Sujith7d0d0df2010-04-16 11:53:57 +05301817 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301818
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001819 /*
1820 * For big endian systems turn on swapping for descriptors
1821 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001822 if (AR_SREV_9100(ah)) {
1823 u32 mask;
1824 mask = REG_READ(ah, AR_CFG);
1825 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001826 ath_dbg(common, RESET, "CFG Byte Swap Set 0x%x\n",
1827 mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001828 } else {
1829 mask =
1830 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1831 REG_WRITE(ah, AR_CFG, mask);
Joe Perchesd2182b62011-12-15 14:55:53 -08001832 ath_dbg(common, RESET, "Setting CFG 0x%x\n",
1833 REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001834 }
1835 } else {
Sujithcbba8cd2010-06-02 15:53:31 +05301836 if (common->bus_ops->ath_bus_type == ATH_USB) {
1837 /* Configure AR9271 target WLAN */
1838 if (AR_SREV_9271(ah))
1839 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
1840 else
1841 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1842 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001843#ifdef __BIG_ENDIAN
Gabor Juhos4033bda2011-06-21 11:23:35 +02001844 else if (AR_SREV_9330(ah) || AR_SREV_9340(ah))
Vasanthakumar Thiagarajan2be7bfe2011-04-19 19:29:14 +05301845 REG_RMW(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB, 0);
1846 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001847 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001848#endif
1849 }
1850
Sujith Manoharandbccdd12012-02-22 17:55:47 +05301851 if (ath9k_hw_btcoex_is_enabled(ah))
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301852 ath9k_hw_btcoex_enable(ah);
1853
Sujith Manoharan528e5d32012-02-22 12:41:12 +05301854 if (mci)
1855 ar9003_mci_check_bt(ah);
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301856
Rajkumar Manoharan51ac8cb2011-05-20 17:52:13 +05301857 if (AR_SREV_9300_20_OR_LATER(ah)) {
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001858 ar9003_hw_bb_watchdog_config(ah);
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001859
Rajkumar Manoharan51ac8cb2011-05-20 17:52:13 +05301860 ar9003_hw_disable_phy_restart(ah);
1861 }
1862
Felix Fietkau691680b2011-03-19 13:55:38 +01001863 ath9k_hw_apply_gpio_override(ah);
1864
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001865 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001866}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001867EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001868
Sujithf1dc5602008-10-29 10:16:30 +05301869/******************************/
1870/* Power Management (Chipset) */
1871/******************************/
1872
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001873/*
1874 * Notify Power Mgt is disabled in self-generated frames.
1875 * If requested, force chip to sleep.
1876 */
Sujithcbe61d82009-02-09 13:27:12 +05301877static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301878{
1879 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1880 if (setChip) {
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05301881 if (AR_SREV_9462(ah)) {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301882 REG_WRITE(ah, AR_TIMER_MODE,
1883 REG_READ(ah, AR_TIMER_MODE) & 0xFFFFFF00);
1884 REG_WRITE(ah, AR_NDP2_TIMER_MODE, REG_READ(ah,
1885 AR_NDP2_TIMER_MODE) & 0xFFFFFF00);
1886 REG_WRITE(ah, AR_SLP32_INC,
1887 REG_READ(ah, AR_SLP32_INC) & 0xFFF00000);
1888 /* xxx Required for WLAN only case ? */
1889 REG_WRITE(ah, AR_MCI_INTERRUPT_RX_MSG_EN, 0);
1890 udelay(100);
1891 }
1892
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001893 /*
1894 * Clear the RTC force wake bit to allow the
1895 * mac to go to sleep.
1896 */
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301897 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN);
1898
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05301899 if (AR_SREV_9462(ah))
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301900 udelay(100);
1901
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001902 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301903 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1904
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001905 /* Shutdown chip. Active low */
Sujith Manoharanc91ec462012-02-22 12:40:03 +05301906 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah)) {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301907 REG_CLR_BIT(ah, AR_RTC_RESET, AR_RTC_RESET_EN);
1908 udelay(2);
1909 }
Sujithf1dc5602008-10-29 10:16:30 +05301910 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001911
1912 /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */
Rafael J. Wysockia7322812011-11-26 23:37:43 +01001913 if (AR_SREV_9300_20_OR_LATER(ah))
1914 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001915}
1916
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001917/*
1918 * Notify Power Management is enabled in self-generating
1919 * frames. If request, set power mode of chip to
1920 * auto/normal. Duration in units of 128us (1/8 TU).
1921 */
Sujithcbe61d82009-02-09 13:27:12 +05301922static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001923{
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301924 u32 val;
1925
Sujithf1dc5602008-10-29 10:16:30 +05301926 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1927 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05301928 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001929
Sujithf1dc5602008-10-29 10:16:30 +05301930 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001931 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05301932 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1933 AR_RTC_FORCE_WAKE_ON_INT);
1934 } else {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301935
1936 /* When chip goes into network sleep, it could be waken
1937 * up by MCI_INT interrupt caused by BT's HW messages
1938 * (LNA_xxx, CONT_xxx) which chould be in a very fast
1939 * rate (~100us). This will cause chip to leave and
1940 * re-enter network sleep mode frequently, which in
1941 * consequence will have WLAN MCI HW to generate lots of
1942 * SYS_WAKING and SYS_SLEEPING messages which will make
1943 * BT CPU to busy to process.
1944 */
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05301945 if (AR_SREV_9462(ah)) {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301946 val = REG_READ(ah, AR_MCI_INTERRUPT_RX_MSG_EN) &
1947 ~AR_MCI_INTERRUPT_RX_HW_MSG_MASK;
1948 REG_WRITE(ah, AR_MCI_INTERRUPT_RX_MSG_EN, val);
1949 }
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001950 /*
1951 * Clear the RTC force wake bit to allow the
1952 * mac to go to sleep.
1953 */
Sujithf1dc5602008-10-29 10:16:30 +05301954 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1955 AR_RTC_FORCE_WAKE_EN);
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301956
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05301957 if (AR_SREV_9462(ah))
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301958 udelay(30);
Sujithf1dc5602008-10-29 10:16:30 +05301959 }
1960 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001961
1962 /* Clear Bit 14 of AR_WA after putting chip into Net Sleep mode. */
1963 if (AR_SREV_9300_20_OR_LATER(ah))
1964 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Sujithf1dc5602008-10-29 10:16:30 +05301965}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001966
Sujithcbe61d82009-02-09 13:27:12 +05301967static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301968{
1969 u32 val;
1970 int i;
1971
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001972 /* Set Bits 14 and 17 of AR_WA before powering on the chip. */
1973 if (AR_SREV_9300_20_OR_LATER(ah)) {
1974 REG_WRITE(ah, AR_WA, ah->WARegVal);
1975 udelay(10);
1976 }
1977
Sujithf1dc5602008-10-29 10:16:30 +05301978 if (setChip) {
1979 if ((REG_READ(ah, AR_RTC_STATUS) &
1980 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
1981 if (ath9k_hw_set_reset_reg(ah,
1982 ATH9K_RESET_POWER_ON) != true) {
1983 return false;
1984 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04001985 if (!AR_SREV_9300_20_OR_LATER(ah))
1986 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05301987 }
1988 if (AR_SREV_9100(ah))
1989 REG_SET_BIT(ah, AR_RTC_RESET,
1990 AR_RTC_RESET_EN);
1991
1992 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1993 AR_RTC_FORCE_WAKE_EN);
1994 udelay(50);
1995
1996 for (i = POWER_UP_TIME / 50; i > 0; i--) {
1997 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
1998 if (val == AR_RTC_STATUS_ON)
1999 break;
2000 udelay(50);
2001 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2002 AR_RTC_FORCE_WAKE_EN);
2003 }
2004 if (i == 0) {
Joe Perches38002762010-12-02 19:12:36 -08002005 ath_err(ath9k_hw_common(ah),
2006 "Failed to wakeup in %uus\n",
2007 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05302008 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002009 }
2010 }
2011
Sujithf1dc5602008-10-29 10:16:30 +05302012 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2013
2014 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002015}
2016
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002017bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302018{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002019 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05302020 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05302021 static const char *modes[] = {
2022 "AWAKE",
2023 "FULL-SLEEP",
2024 "NETWORK SLEEP",
2025 "UNDEFINED"
2026 };
Sujithf1dc5602008-10-29 10:16:30 +05302027
Gabor Juhoscbdec972009-07-24 17:27:22 +02002028 if (ah->power_mode == mode)
2029 return status;
2030
Joe Perchesd2182b62011-12-15 14:55:53 -08002031 ath_dbg(common, RESET, "%s -> %s\n",
Joe Perches226afe62010-12-02 19:12:37 -08002032 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05302033
2034 switch (mode) {
2035 case ATH9K_PM_AWAKE:
2036 status = ath9k_hw_set_power_awake(ah, setChip);
Mohammed Shafi Shajakhan10109112011-11-30 10:41:24 +05302037
2038 if (ah->caps.hw_caps & ATH9K_HW_CAP_MCI)
2039 REG_WRITE(ah, AR_RTC_KEEP_AWAKE, 0x2);
2040
Sujithf1dc5602008-10-29 10:16:30 +05302041 break;
2042 case ATH9K_PM_FULL_SLEEP:
Sujith Manoharand1ca8b82012-02-22 12:41:01 +05302043 if (ah->caps.hw_caps & ATH9K_HW_CAP_MCI)
2044 ar9003_mci_set_full_sleep(ah);
Mohammed Shafi Shajakhan10109112011-11-30 10:41:24 +05302045
Sujithf1dc5602008-10-29 10:16:30 +05302046 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05302047 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302048 break;
2049 case ATH9K_PM_NETWORK_SLEEP:
Mohammed Shafi Shajakhan10109112011-11-30 10:41:24 +05302050
2051 if (ah->caps.hw_caps & ATH9K_HW_CAP_MCI)
2052 REG_WRITE(ah, AR_RTC_KEEP_AWAKE, 0x2);
2053
Sujithf1dc5602008-10-29 10:16:30 +05302054 ath9k_set_power_network_sleep(ah, setChip);
2055 break;
2056 default:
Joe Perches38002762010-12-02 19:12:36 -08002057 ath_err(common, "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302058 return false;
2059 }
Sujith2660b812009-02-09 13:27:26 +05302060 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302061
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08002062 /*
2063 * XXX: If this warning never comes up after a while then
2064 * simply keep the ATH_DBG_WARN_ON_ONCE() but make
2065 * ath9k_hw_setpower() return type void.
2066 */
Sujith Manoharan97dcec52010-12-20 08:02:42 +05302067
2068 if (!(ah->ah_flags & AH_UNPLUGGED))
2069 ATH_DBG_WARN_ON_ONCE(!status);
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08002070
Sujithf1dc5602008-10-29 10:16:30 +05302071 return status;
2072}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002073EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05302074
Sujithf1dc5602008-10-29 10:16:30 +05302075/*******************/
2076/* Beacon Handling */
2077/*******************/
2078
Sujithcbe61d82009-02-09 13:27:12 +05302079void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002080{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002081 int flags = 0;
2082
Sujith7d0d0df2010-04-16 11:53:57 +05302083 ENABLE_REGWRITE_BUFFER(ah);
2084
Sujith2660b812009-02-09 13:27:26 +05302085 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08002086 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04002087 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002088 REG_SET_BIT(ah, AR_TXCFG,
2089 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
Felix Fietkaudd347f22011-03-22 21:54:17 +01002090 REG_WRITE(ah, AR_NEXT_NDP_TIMER, next_beacon +
2091 TU_TO_USEC(ah->atim_window ? ah->atim_window : 1));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002092 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08002093 case NL80211_IFTYPE_AP:
Felix Fietkaudd347f22011-03-22 21:54:17 +01002094 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, next_beacon);
2095 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, next_beacon -
2096 TU_TO_USEC(ah->config.dma_beacon_response_time));
2097 REG_WRITE(ah, AR_NEXT_SWBA, next_beacon -
2098 TU_TO_USEC(ah->config.sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002099 flags |=
2100 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
2101 break;
Colin McCabed97809d2008-12-01 13:38:55 -08002102 default:
Joe Perchesd2182b62011-12-15 14:55:53 -08002103 ath_dbg(ath9k_hw_common(ah), BEACON,
2104 "%s: unsupported opmode: %d\n", __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08002105 return;
2106 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002107 }
2108
Felix Fietkaudd347f22011-03-22 21:54:17 +01002109 REG_WRITE(ah, AR_BEACON_PERIOD, beacon_period);
2110 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, beacon_period);
2111 REG_WRITE(ah, AR_SWBA_PERIOD, beacon_period);
2112 REG_WRITE(ah, AR_NDP_PERIOD, beacon_period);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002113
Sujith7d0d0df2010-04-16 11:53:57 +05302114 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05302115
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002116 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
2117}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002118EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002119
Sujithcbe61d82009-02-09 13:27:12 +05302120void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302121 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002122{
2123 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05302124 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002125 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002126
Sujith7d0d0df2010-04-16 11:53:57 +05302127 ENABLE_REGWRITE_BUFFER(ah);
2128
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002129 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
2130
2131 REG_WRITE(ah, AR_BEACON_PERIOD,
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05302132 TU_TO_USEC(bs->bs_intval));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002133 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05302134 TU_TO_USEC(bs->bs_intval));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002135
Sujith7d0d0df2010-04-16 11:53:57 +05302136 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05302137
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002138 REG_RMW_FIELD(ah, AR_RSSI_THR,
2139 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
2140
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05302141 beaconintval = bs->bs_intval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002142
2143 if (bs->bs_sleepduration > beaconintval)
2144 beaconintval = bs->bs_sleepduration;
2145
2146 dtimperiod = bs->bs_dtimperiod;
2147 if (bs->bs_sleepduration > dtimperiod)
2148 dtimperiod = bs->bs_sleepduration;
2149
2150 if (beaconintval == dtimperiod)
2151 nextTbtt = bs->bs_nextdtim;
2152 else
2153 nextTbtt = bs->bs_nexttbtt;
2154
Joe Perchesd2182b62011-12-15 14:55:53 -08002155 ath_dbg(common, BEACON, "next DTIM %d\n", bs->bs_nextdtim);
2156 ath_dbg(common, BEACON, "next beacon %d\n", nextTbtt);
2157 ath_dbg(common, BEACON, "beacon period %d\n", beaconintval);
2158 ath_dbg(common, BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002159
Sujith7d0d0df2010-04-16 11:53:57 +05302160 ENABLE_REGWRITE_BUFFER(ah);
2161
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002162 REG_WRITE(ah, AR_NEXT_DTIM,
2163 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
2164 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
2165
2166 REG_WRITE(ah, AR_SLEEP1,
2167 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
2168 | AR_SLEEP1_ASSUME_DTIM);
2169
Sujith60b67f52008-08-07 10:52:38 +05302170 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002171 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
2172 else
2173 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
2174
2175 REG_WRITE(ah, AR_SLEEP2,
2176 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
2177
2178 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
2179 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
2180
Sujith7d0d0df2010-04-16 11:53:57 +05302181 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05302182
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002183 REG_SET_BIT(ah, AR_TIMER_MODE,
2184 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
2185 AR_DTIM_TIMER_EN);
2186
Sujith4af9cf42009-02-12 10:06:47 +05302187 /* TSF Out of Range Threshold */
2188 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002189}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002190EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002191
Sujithf1dc5602008-10-29 10:16:30 +05302192/*******************/
2193/* HW Capabilities */
2194/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002195
Felix Fietkau60540692011-07-19 08:46:44 +02002196static u8 fixup_chainmask(u8 chip_chainmask, u8 eeprom_chainmask)
2197{
2198 eeprom_chainmask &= chip_chainmask;
2199 if (eeprom_chainmask)
2200 return eeprom_chainmask;
2201 else
2202 return chip_chainmask;
2203}
2204
Zefir Kurtisi9a66af32011-12-14 20:16:33 -08002205/**
2206 * ath9k_hw_dfs_tested - checks if DFS has been tested with used chipset
2207 * @ah: the atheros hardware data structure
2208 *
2209 * We enable DFS support upstream on chipsets which have passed a series
2210 * of tests. The testing requirements are going to be documented. Desired
2211 * test requirements are documented at:
2212 *
2213 * http://wireless.kernel.org/en/users/Drivers/ath9k/dfs
2214 *
2215 * Once a new chipset gets properly tested an individual commit can be used
2216 * to document the testing for DFS for that chipset.
2217 */
2218static bool ath9k_hw_dfs_tested(struct ath_hw *ah)
2219{
2220
2221 switch (ah->hw_version.macVersion) {
2222 /* AR9580 will likely be our first target to get testing on */
2223 case AR_SREV_VERSION_9580:
2224 default:
2225 return false;
2226 }
2227}
2228
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002229int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002230{
Sujith2660b812009-02-09 13:27:26 +05302231 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002232 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002233 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau60540692011-07-19 08:46:44 +02002234 unsigned int chip_chainmask;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002235
Sujith Manoharan0ff2b5c2011-04-20 11:00:34 +05302236 u16 eeval;
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08002237 u8 ant_div_ctl1, tx_chainmask, rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002238
Sujithf74df6f2009-02-09 13:27:24 +05302239 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002240 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302241
Sujith2660b812009-02-09 13:27:26 +05302242 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05302243 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002244 if (regulatory->current_rd == 0x64 ||
2245 regulatory->current_rd == 0x65)
2246 regulatory->current_rd += 5;
2247 else if (regulatory->current_rd == 0x41)
2248 regulatory->current_rd = 0x43;
Joe Perchesd2182b62011-12-15 14:55:53 -08002249 ath_dbg(common, REGULATORY, "regdomain mapped to 0x%x\n",
2250 regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002251 }
Sujithdc2222a2008-08-14 13:26:55 +05302252
Sujithf74df6f2009-02-09 13:27:24 +05302253 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002254 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
Joe Perches38002762010-12-02 19:12:36 -08002255 ath_err(common,
2256 "no band has been marked as supported in EEPROM\n");
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002257 return -EINVAL;
2258 }
2259
Felix Fietkaud4659912010-10-14 16:02:39 +02002260 if (eeval & AR5416_OPFLAGS_11A)
2261 pCap->hw_caps |= ATH9K_HW_CAP_5GHZ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002262
Felix Fietkaud4659912010-10-14 16:02:39 +02002263 if (eeval & AR5416_OPFLAGS_11G)
2264 pCap->hw_caps |= ATH9K_HW_CAP_2GHZ;
Sujithf1dc5602008-10-29 10:16:30 +05302265
Felix Fietkau60540692011-07-19 08:46:44 +02002266 if (AR_SREV_9485(ah) || AR_SREV_9285(ah) || AR_SREV_9330(ah))
2267 chip_chainmask = 1;
Mohammed Shafi Shajakhanba5736a2011-11-30 21:10:52 +05302268 else if (AR_SREV_9462(ah))
2269 chip_chainmask = 3;
Felix Fietkau60540692011-07-19 08:46:44 +02002270 else if (!AR_SREV_9280_20_OR_LATER(ah))
2271 chip_chainmask = 7;
2272 else if (!AR_SREV_9300_20_OR_LATER(ah) || AR_SREV_9340(ah))
2273 chip_chainmask = 3;
2274 else
2275 chip_chainmask = 7;
2276
Sujithf74df6f2009-02-09 13:27:24 +05302277 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002278 /*
2279 * For AR9271 we will temporarilly uses the rx chainmax as read from
2280 * the EEPROM.
2281 */
Sujith8147f5d2009-02-20 15:13:23 +05302282 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002283 !(eeval & AR5416_OPFLAGS_11A) &&
2284 !(AR_SREV_9271(ah)))
2285 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05302286 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
Felix Fietkau598cdd52011-03-19 13:55:42 +01002287 else if (AR_SREV_9100(ah))
2288 pCap->rx_chainmask = 0x7;
Sujith8147f5d2009-02-20 15:13:23 +05302289 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002290 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05302291 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05302292
Felix Fietkau60540692011-07-19 08:46:44 +02002293 pCap->tx_chainmask = fixup_chainmask(chip_chainmask, pCap->tx_chainmask);
2294 pCap->rx_chainmask = fixup_chainmask(chip_chainmask, pCap->rx_chainmask);
Felix Fietkau82b2d332011-09-03 01:40:23 +02002295 ah->txchainmask = pCap->tx_chainmask;
2296 ah->rxchainmask = pCap->rx_chainmask;
Felix Fietkau60540692011-07-19 08:46:44 +02002297
Felix Fietkau7a370812010-09-22 12:34:52 +02002298 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05302299
Felix Fietkau02d2ebb2010-11-22 15:39:39 +01002300 /* enable key search for every frame in an aggregate */
2301 if (AR_SREV_9300_20_OR_LATER(ah))
2302 ah->misc_mode |= AR_PCU_ALWAYS_PERFORM_KEYSEARCH;
2303
Bruno Randolfce2220d2010-09-17 11:36:25 +09002304 common->crypt_caps |= ATH_CRYPT_CAP_CIPHER_AESCCM;
2305
Felix Fietkau0db156e2011-03-23 20:57:29 +01002306 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
Sujithf1dc5602008-10-29 10:16:30 +05302307 pCap->hw_caps |= ATH9K_HW_CAP_HT;
2308 else
2309 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
2310
Sujith5b5fa352010-03-17 14:25:15 +05302311 if (AR_SREV_9271(ah))
2312 pCap->num_gpio_pins = AR9271_NUM_GPIO;
Sujith88c1f4f2010-06-30 14:46:31 +05302313 else if (AR_DEVID_7010(ah))
2314 pCap->num_gpio_pins = AR7010_NUM_GPIO;
Mohammed Shafi Shajakhan6321eb02011-09-30 11:31:27 +05302315 else if (AR_SREV_9300_20_OR_LATER(ah))
2316 pCap->num_gpio_pins = AR9300_NUM_GPIO;
2317 else if (AR_SREV_9287_11_OR_LATER(ah))
2318 pCap->num_gpio_pins = AR9287_NUM_GPIO;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02002319 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302320 pCap->num_gpio_pins = AR9285_NUM_GPIO;
Felix Fietkau7a370812010-09-22 12:34:52 +02002321 else if (AR_SREV_9280_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302322 pCap->num_gpio_pins = AR928X_NUM_GPIO;
2323 else
2324 pCap->num_gpio_pins = AR_NUM_GPIO;
2325
Mohammed Shafi Shajakhan1b2538b2011-12-07 16:51:39 +05302326 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302327 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
Mohammed Shafi Shajakhan1b2538b2011-12-07 16:51:39 +05302328 else
Sujithf1dc5602008-10-29 10:16:30 +05302329 pCap->rts_aggr_limit = (8 * 1024);
Sujithf1dc5602008-10-29 10:16:30 +05302330
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302331#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05302332 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
2333 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
2334 ah->rfkill_gpio =
2335 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
2336 ah->rfkill_polarity =
2337 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05302338
2339 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
2340 }
2341#endif
Vasanthakumar Thiagarajand5d11542010-05-17 18:57:56 -07002342 if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
Vivek Natarajanbde748a2010-04-05 14:48:05 +05302343 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
2344 else
2345 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05302346
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302347 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302348 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
2349 else
2350 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
2351
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002352 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajan784ad502010-12-06 04:27:40 -08002353 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_FASTCLOCK;
Gabor Juhos0e707a92011-06-21 11:23:31 +02002354 if (!AR_SREV_9330(ah) && !AR_SREV_9485(ah))
Vasanthakumar Thiagarajan784ad502010-12-06 04:27:40 -08002355 pCap->hw_caps |= ATH9K_HW_CAP_LDPC;
2356
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002357 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
2358 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
2359 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002360 pCap->tx_desc_len = sizeof(struct ar9003_txc);
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04002361 pCap->txs_len = sizeof(struct ar9003_txs);
Luis R. Rodriguez6f481012011-01-20 17:47:39 -08002362 if (!ah->config.paprd_disable &&
2363 ah->eep_ops->get_eeprom(ah, EEP_PAPRD))
Felix Fietkau49352502010-06-12 00:33:59 -04002364 pCap->hw_caps |= ATH9K_HW_CAP_PAPRD;
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002365 } else {
2366 pCap->tx_desc_len = sizeof(struct ath_desc);
Felix Fietkaua949b172011-07-09 11:12:47 +07002367 if (AR_SREV_9280_20(ah))
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04002368 pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002369 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002370
Vasanthakumar Thiagarajan6c84ce02010-04-15 17:39:16 -04002371 if (AR_SREV_9300_20_OR_LATER(ah))
2372 pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
2373
Senthil Balasubramanian6ee63f52010-11-10 05:03:16 -08002374 if (AR_SREV_9300_20_OR_LATER(ah))
2375 ah->ent_mode = REG_READ(ah, AR_ENT_OTP);
2376
Felix Fietkaua42acef2010-09-22 12:34:54 +02002377 if (AR_SREV_9287_11_OR_LATER(ah) || AR_SREV_9271(ah))
Vasanthakumar Thiagarajan6473d242010-05-13 18:42:38 -07002378 pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
2379
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002380 if (AR_SREV_9285(ah))
2381 if (ah->eep_ops->get_eeprom(ah, EEP_MODAL_VER) >= 3) {
2382 ant_div_ctl1 =
2383 ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
2384 if ((ant_div_ctl1 & 0x1) && ((ant_div_ctl1 >> 3) & 0x1))
2385 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
2386 }
Mohammed Shafi Shajakhanea066d52010-11-23 20:42:27 +05302387 if (AR_SREV_9300_20_OR_LATER(ah)) {
2388 if (ah->eep_ops->get_eeprom(ah, EEP_CHAIN_MASK_REDUCE))
2389 pCap->hw_caps |= ATH9K_HW_CAP_APM;
2390 }
2391
2392
Gabor Juhos431da562011-06-21 11:23:41 +02002393 if (AR_SREV_9330(ah) || AR_SREV_9485(ah)) {
Mohammed Shafi Shajakhan21d2c632011-05-13 20:29:31 +05302394 ant_div_ctl1 = ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
2395 /*
2396 * enable the diversity-combining algorithm only when
2397 * both enable_lna_div and enable_fast_div are set
2398 * Table for Diversity
2399 * ant_div_alt_lnaconf bit 0-1
2400 * ant_div_main_lnaconf bit 2-3
2401 * ant_div_alt_gaintb bit 4
2402 * ant_div_main_gaintb bit 5
2403 * enable_ant_div_lnadiv bit 6
2404 * enable_ant_fast_div bit 7
2405 */
2406 if ((ant_div_ctl1 >> 0x6) == 0x3)
2407 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
2408 }
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002409
Vasanthakumar Thiagarajan8060e162010-12-06 04:27:42 -08002410 if (AR_SREV_9485_10(ah)) {
2411 pCap->pcie_lcr_extsync_en = true;
2412 pCap->pcie_lcr_offset = 0x80;
2413 }
2414
Zefir Kurtisi9a66af32011-12-14 20:16:33 -08002415 if (ath9k_hw_dfs_tested(ah))
2416 pCap->hw_caps |= ATH9K_HW_CAP_DFS;
2417
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08002418 tx_chainmask = pCap->tx_chainmask;
2419 rx_chainmask = pCap->rx_chainmask;
2420 while (tx_chainmask || rx_chainmask) {
2421 if (tx_chainmask & BIT(0))
2422 pCap->max_txchains++;
2423 if (rx_chainmask & BIT(0))
2424 pCap->max_rxchains++;
2425
2426 tx_chainmask >>= 1;
2427 rx_chainmask >>= 1;
2428 }
2429
Rajkumar Manoharan8ad74c42011-10-13 11:00:38 +05302430 if (AR_SREV_9300_20_OR_LATER(ah)) {
2431 ah->enabled_cals |= TX_IQ_CAL;
Mohammed Shafi Shajakhan6fea5932011-11-30 21:01:31 +05302432 if (AR_SREV_9485_OR_LATER(ah))
Rajkumar Manoharan8ad74c42011-10-13 11:00:38 +05302433 ah->enabled_cals |= TX_IQ_ON_AGC_CAL;
2434 }
Mohammed Shafi Shajakhan3789d592012-03-09 12:01:55 +05302435
2436 if (AR_SREV_9462(ah)) {
2437
2438 if (!(ah->ent_mode & AR_ENT_OTP_49GHZ_DISABLE))
2439 pCap->hw_caps |= ATH9K_HW_CAP_MCI;
2440
2441 if (AR_SREV_9462_20(ah))
2442 pCap->hw_caps |= ATH9K_HW_CAP_RTT;
2443
2444 }
2445
Rajkumar Manoharan324c74a2011-10-13 11:00:41 +05302446
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002447 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002448}
2449
Sujithf1dc5602008-10-29 10:16:30 +05302450/****************************/
2451/* GPIO / RFKILL / Antennae */
2452/****************************/
2453
Sujithcbe61d82009-02-09 13:27:12 +05302454static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302455 u32 gpio, u32 type)
2456{
2457 int addr;
2458 u32 gpio_shift, tmp;
2459
2460 if (gpio > 11)
2461 addr = AR_GPIO_OUTPUT_MUX3;
2462 else if (gpio > 5)
2463 addr = AR_GPIO_OUTPUT_MUX2;
2464 else
2465 addr = AR_GPIO_OUTPUT_MUX1;
2466
2467 gpio_shift = (gpio % 6) * 5;
2468
2469 if (AR_SREV_9280_20_OR_LATER(ah)
2470 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2471 REG_RMW(ah, addr, (type << gpio_shift),
2472 (0x1f << gpio_shift));
2473 } else {
2474 tmp = REG_READ(ah, addr);
2475 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2476 tmp &= ~(0x1f << gpio_shift);
2477 tmp |= (type << gpio_shift);
2478 REG_WRITE(ah, addr, tmp);
2479 }
2480}
2481
Sujithcbe61d82009-02-09 13:27:12 +05302482void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302483{
2484 u32 gpio_shift;
2485
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002486 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302487
Sujith88c1f4f2010-06-30 14:46:31 +05302488 if (AR_DEVID_7010(ah)) {
2489 gpio_shift = gpio;
2490 REG_RMW(ah, AR7010_GPIO_OE,
2491 (AR7010_GPIO_OE_AS_INPUT << gpio_shift),
2492 (AR7010_GPIO_OE_MASK << gpio_shift));
2493 return;
2494 }
Sujithf1dc5602008-10-29 10:16:30 +05302495
Sujith88c1f4f2010-06-30 14:46:31 +05302496 gpio_shift = gpio << 1;
Sujithf1dc5602008-10-29 10:16:30 +05302497 REG_RMW(ah,
2498 AR_GPIO_OE_OUT,
2499 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2500 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2501}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002502EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302503
Sujithcbe61d82009-02-09 13:27:12 +05302504u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302505{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302506#define MS_REG_READ(x, y) \
2507 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2508
Sujith2660b812009-02-09 13:27:26 +05302509 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302510 return 0xffffffff;
2511
Sujith88c1f4f2010-06-30 14:46:31 +05302512 if (AR_DEVID_7010(ah)) {
2513 u32 val;
2514 val = REG_READ(ah, AR7010_GPIO_IN);
2515 return (MS(val, AR7010_GPIO_IN_VAL) & AR_GPIO_BIT(gpio)) == 0;
2516 } else if (AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan93069902010-11-30 23:24:09 -08002517 return (MS(REG_READ(ah, AR_GPIO_IN), AR9300_GPIO_IN_VAL) &
2518 AR_GPIO_BIT(gpio)) != 0;
Felix Fietkau783dfca2010-04-15 17:38:11 -04002519 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05302520 return MS_REG_READ(AR9271, gpio) != 0;
Felix Fietkaua42acef2010-09-22 12:34:54 +02002521 else if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302522 return MS_REG_READ(AR9287, gpio) != 0;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02002523 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302524 return MS_REG_READ(AR9285, gpio) != 0;
Felix Fietkau7a370812010-09-22 12:34:52 +02002525 else if (AR_SREV_9280_20_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302526 return MS_REG_READ(AR928X, gpio) != 0;
2527 else
2528 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05302529}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002530EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302531
Sujithcbe61d82009-02-09 13:27:12 +05302532void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05302533 u32 ah_signal_type)
2534{
2535 u32 gpio_shift;
2536
Sujith88c1f4f2010-06-30 14:46:31 +05302537 if (AR_DEVID_7010(ah)) {
2538 gpio_shift = gpio;
2539 REG_RMW(ah, AR7010_GPIO_OE,
2540 (AR7010_GPIO_OE_AS_OUTPUT << gpio_shift),
2541 (AR7010_GPIO_OE_MASK << gpio_shift));
2542 return;
2543 }
2544
Sujithf1dc5602008-10-29 10:16:30 +05302545 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
Sujithf1dc5602008-10-29 10:16:30 +05302546 gpio_shift = 2 * gpio;
Sujithf1dc5602008-10-29 10:16:30 +05302547 REG_RMW(ah,
2548 AR_GPIO_OE_OUT,
2549 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2550 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2551}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002552EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05302553
Sujithcbe61d82009-02-09 13:27:12 +05302554void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302555{
Sujith88c1f4f2010-06-30 14:46:31 +05302556 if (AR_DEVID_7010(ah)) {
2557 val = val ? 0 : 1;
2558 REG_RMW(ah, AR7010_GPIO_OUT, ((val&1) << gpio),
2559 AR_GPIO_BIT(gpio));
2560 return;
2561 }
2562
Sujith5b5fa352010-03-17 14:25:15 +05302563 if (AR_SREV_9271(ah))
2564 val = ~val;
2565
Sujithf1dc5602008-10-29 10:16:30 +05302566 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2567 AR_GPIO_BIT(gpio));
2568}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002569EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302570
Sujithcbe61d82009-02-09 13:27:12 +05302571u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302572{
2573 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
2574}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002575EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302576
Sujithcbe61d82009-02-09 13:27:12 +05302577void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302578{
2579 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2580}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002581EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302582
Sujithf1dc5602008-10-29 10:16:30 +05302583/*********************/
2584/* General Operation */
2585/*********************/
2586
Sujithcbe61d82009-02-09 13:27:12 +05302587u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302588{
2589 u32 bits = REG_READ(ah, AR_RX_FILTER);
2590 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2591
2592 if (phybits & AR_PHY_ERR_RADAR)
2593 bits |= ATH9K_RX_FILTER_PHYRADAR;
2594 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2595 bits |= ATH9K_RX_FILTER_PHYERR;
2596
2597 return bits;
2598}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002599EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302600
Sujithcbe61d82009-02-09 13:27:12 +05302601void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302602{
2603 u32 phybits;
2604
Sujith7d0d0df2010-04-16 11:53:57 +05302605 ENABLE_REGWRITE_BUFFER(ah);
2606
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05302607 if (AR_SREV_9462(ah))
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302608 bits |= ATH9K_RX_FILTER_CONTROL_WRAPPER;
2609
Sujith7ea310b2009-09-03 12:08:43 +05302610 REG_WRITE(ah, AR_RX_FILTER, bits);
2611
Sujithf1dc5602008-10-29 10:16:30 +05302612 phybits = 0;
2613 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2614 phybits |= AR_PHY_ERR_RADAR;
2615 if (bits & ATH9K_RX_FILTER_PHYERR)
2616 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2617 REG_WRITE(ah, AR_PHY_ERR, phybits);
2618
2619 if (phybits)
Felix Fietkauca7a4de2011-03-23 20:57:26 +01002620 REG_SET_BIT(ah, AR_RXCFG, AR_RXCFG_ZLFDMA);
Sujithf1dc5602008-10-29 10:16:30 +05302621 else
Felix Fietkauca7a4de2011-03-23 20:57:26 +01002622 REG_CLR_BIT(ah, AR_RXCFG, AR_RXCFG_ZLFDMA);
Sujith7d0d0df2010-04-16 11:53:57 +05302623
2624 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302625}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002626EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302627
Sujithcbe61d82009-02-09 13:27:12 +05302628bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302629{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302630 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2631 return false;
2632
2633 ath9k_hw_init_pll(ah, NULL);
2634 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302635}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002636EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302637
Sujithcbe61d82009-02-09 13:27:12 +05302638bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302639{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002640 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302641 return false;
2642
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302643 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2644 return false;
2645
2646 ath9k_hw_init_pll(ah, NULL);
2647 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302648}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002649EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302650
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002651static int get_antenna_gain(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05302652{
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002653 enum eeprom_param gain_param;
Felix Fietkau9c204b42011-07-27 15:01:05 +02002654
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002655 if (IS_CHAN_2GHZ(chan))
2656 gain_param = EEP_ANTENNA_GAIN_2G;
2657 else
2658 gain_param = EEP_ANTENNA_GAIN_5G;
Sujithf1dc5602008-10-29 10:16:30 +05302659
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002660 return ah->eep_ops->get_eeprom(ah, gain_param);
2661}
2662
2663void ath9k_hw_apply_txpower(struct ath_hw *ah, struct ath9k_channel *chan)
2664{
2665 struct ath_regulatory *reg = ath9k_hw_regulatory(ah);
2666 struct ieee80211_channel *channel;
2667 int chan_pwr, new_pwr, max_gain;
2668 int ant_gain, ant_reduction = 0;
2669
2670 if (!chan)
2671 return;
2672
2673 channel = chan->chan;
2674 chan_pwr = min_t(int, channel->max_power * 2, MAX_RATE_POWER);
2675 new_pwr = min_t(int, chan_pwr, reg->power_limit);
2676 max_gain = chan_pwr - new_pwr + channel->max_antenna_gain * 2;
2677
2678 ant_gain = get_antenna_gain(ah, chan);
2679 if (ant_gain > max_gain)
2680 ant_reduction = ant_gain - max_gain;
Sujithf1dc5602008-10-29 10:16:30 +05302681
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002682 ah->eep_ops->set_txpower(ah, chan,
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002683 ath9k_regd_get_ctl(reg, chan),
2684 ant_reduction, new_pwr, false);
2685}
2686
2687void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit, bool test)
2688{
2689 struct ath_regulatory *reg = ath9k_hw_regulatory(ah);
2690 struct ath9k_channel *chan = ah->curchan;
2691 struct ieee80211_channel *channel = chan->chan;
2692
Dan Carpenter48ef5c42011-10-17 10:28:23 +03002693 reg->power_limit = min_t(u32, limit, MAX_RATE_POWER);
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002694 if (test)
2695 channel->max_power = MAX_RATE_POWER / 2;
2696
2697 ath9k_hw_apply_txpower(ah, chan);
2698
2699 if (test)
2700 channel->max_power = DIV_ROUND_UP(reg->max_power_level, 2);
Sujithf1dc5602008-10-29 10:16:30 +05302701}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002702EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302703
Sujithcbe61d82009-02-09 13:27:12 +05302704void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302705{
Sujith2660b812009-02-09 13:27:26 +05302706 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302707}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002708EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302709
Sujithcbe61d82009-02-09 13:27:12 +05302710void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302711{
2712 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2713 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2714}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002715EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302716
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002717void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302718{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002719 struct ath_common *common = ath9k_hw_common(ah);
2720
2721 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2722 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2723 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302724}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002725EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302726
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002727#define ATH9K_MAX_TSF_READ 10
2728
Sujithcbe61d82009-02-09 13:27:12 +05302729u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302730{
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002731 u32 tsf_lower, tsf_upper1, tsf_upper2;
2732 int i;
Sujithf1dc5602008-10-29 10:16:30 +05302733
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002734 tsf_upper1 = REG_READ(ah, AR_TSF_U32);
2735 for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
2736 tsf_lower = REG_READ(ah, AR_TSF_L32);
2737 tsf_upper2 = REG_READ(ah, AR_TSF_U32);
2738 if (tsf_upper2 == tsf_upper1)
2739 break;
2740 tsf_upper1 = tsf_upper2;
2741 }
Sujithf1dc5602008-10-29 10:16:30 +05302742
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002743 WARN_ON( i == ATH9K_MAX_TSF_READ );
2744
2745 return (((u64)tsf_upper1 << 32) | tsf_lower);
Sujithf1dc5602008-10-29 10:16:30 +05302746}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002747EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302748
Sujithcbe61d82009-02-09 13:27:12 +05302749void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002750{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002751 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002752 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002753}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002754EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002755
Sujithcbe61d82009-02-09 13:27:12 +05302756void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302757{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002758 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2759 AH_TSF_WRITE_TIMEOUT))
Joe Perchesd2182b62011-12-15 14:55:53 -08002760 ath_dbg(ath9k_hw_common(ah), RESET,
Joe Perches226afe62010-12-02 19:12:37 -08002761 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002762
Sujithf1dc5602008-10-29 10:16:30 +05302763 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002764}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002765EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002766
Sujith54e4cec2009-08-07 09:45:09 +05302767void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002768{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002769 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302770 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002771 else
Sujith2660b812009-02-09 13:27:26 +05302772 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002773}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002774EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002775
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002776void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002777{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002778 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05302779 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002780
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002781 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05302782 macmode = AR_2040_JOINED_RX_CLEAR;
2783 else
2784 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002785
Sujithf1dc5602008-10-29 10:16:30 +05302786 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002787}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302788
2789/* HW Generic timers configuration */
2790
2791static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2792{
2793 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2794 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2795 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2796 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2797 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2798 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2799 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2800 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2801 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2802 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2803 AR_NDP2_TIMER_MODE, 0x0002},
2804 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2805 AR_NDP2_TIMER_MODE, 0x0004},
2806 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2807 AR_NDP2_TIMER_MODE, 0x0008},
2808 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2809 AR_NDP2_TIMER_MODE, 0x0010},
2810 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2811 AR_NDP2_TIMER_MODE, 0x0020},
2812 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2813 AR_NDP2_TIMER_MODE, 0x0040},
2814 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2815 AR_NDP2_TIMER_MODE, 0x0080}
2816};
2817
2818/* HW generic timer primitives */
2819
2820/* compute and clear index of rightmost 1 */
2821static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
2822{
2823 u32 b;
2824
2825 b = *mask;
2826 b &= (0-b);
2827 *mask &= ~b;
2828 b *= debruijn32;
2829 b >>= 27;
2830
2831 return timer_table->gen_timer_index[b];
2832}
2833
Felix Fietkaudd347f22011-03-22 21:54:17 +01002834u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302835{
2836 return REG_READ(ah, AR_TSF_L32);
2837}
Felix Fietkaudd347f22011-03-22 21:54:17 +01002838EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302839
2840struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2841 void (*trigger)(void *),
2842 void (*overflow)(void *),
2843 void *arg,
2844 u8 timer_index)
2845{
2846 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2847 struct ath_gen_timer *timer;
2848
2849 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
2850
2851 if (timer == NULL) {
Joe Perches38002762010-12-02 19:12:36 -08002852 ath_err(ath9k_hw_common(ah),
2853 "Failed to allocate memory for hw timer[%d]\n",
2854 timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302855 return NULL;
2856 }
2857
2858 /* allocate a hardware generic timer slot */
2859 timer_table->timers[timer_index] = timer;
2860 timer->index = timer_index;
2861 timer->trigger = trigger;
2862 timer->overflow = overflow;
2863 timer->arg = arg;
2864
2865 return timer;
2866}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002867EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302868
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002869void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2870 struct ath_gen_timer *timer,
Vasanthakumar Thiagarajan788f6872011-04-21 18:33:27 +05302871 u32 trig_timeout,
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002872 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302873{
2874 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
Vasanthakumar Thiagarajan788f6872011-04-21 18:33:27 +05302875 u32 tsf, timer_next;
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302876
2877 BUG_ON(!timer_period);
2878
2879 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
2880
2881 tsf = ath9k_hw_gettsf32(ah);
2882
Vasanthakumar Thiagarajan788f6872011-04-21 18:33:27 +05302883 timer_next = tsf + trig_timeout;
2884
Joe Perchesd2182b62011-12-15 14:55:53 -08002885 ath_dbg(ath9k_hw_common(ah), HWTIMER,
Joe Perches226afe62010-12-02 19:12:37 -08002886 "current tsf %x period %x timer_next %x\n",
2887 tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302888
2889 /*
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302890 * Program generic timer registers
2891 */
2892 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2893 timer_next);
2894 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2895 timer_period);
2896 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2897 gen_tmr_configuration[timer->index].mode_mask);
2898
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05302899 if (AR_SREV_9462(ah)) {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302900 /*
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05302901 * Starting from AR9462, each generic timer can select which tsf
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302902 * to use. But we still follow the old rule, 0 - 7 use tsf and
2903 * 8 - 15 use tsf2.
2904 */
2905 if ((timer->index < AR_GEN_TIMER_BANK_1_LEN))
2906 REG_CLR_BIT(ah, AR_MAC_PCU_GEN_TIMER_TSF_SEL,
2907 (1 << timer->index));
2908 else
2909 REG_SET_BIT(ah, AR_MAC_PCU_GEN_TIMER_TSF_SEL,
2910 (1 << timer->index));
2911 }
2912
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302913 /* Enable both trigger and thresh interrupt masks */
2914 REG_SET_BIT(ah, AR_IMR_S5,
2915 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2916 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302917}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002918EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302919
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002920void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302921{
2922 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2923
2924 if ((timer->index < AR_FIRST_NDP_TIMER) ||
2925 (timer->index >= ATH_MAX_GEN_TIMER)) {
2926 return;
2927 }
2928
2929 /* Clear generic timer enable bits. */
2930 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2931 gen_tmr_configuration[timer->index].mode_mask);
2932
2933 /* Disable both trigger and thresh interrupt masks */
2934 REG_CLR_BIT(ah, AR_IMR_S5,
2935 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2936 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2937
2938 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302939}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002940EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302941
2942void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
2943{
2944 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2945
2946 /* free the hardware generic timer slot */
2947 timer_table->timers[timer->index] = NULL;
2948 kfree(timer);
2949}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002950EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302951
2952/*
2953 * Generic Timer Interrupts handling
2954 */
2955void ath_gen_timer_isr(struct ath_hw *ah)
2956{
2957 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2958 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002959 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302960 u32 trigger_mask, thresh_mask, index;
2961
2962 /* get hardware generic timer interrupt status */
2963 trigger_mask = ah->intr_gen_timer_trigger;
2964 thresh_mask = ah->intr_gen_timer_thresh;
2965 trigger_mask &= timer_table->timer_mask.val;
2966 thresh_mask &= timer_table->timer_mask.val;
2967
2968 trigger_mask &= ~thresh_mask;
2969
2970 while (thresh_mask) {
2971 index = rightmost_index(timer_table, &thresh_mask);
2972 timer = timer_table->timers[index];
2973 BUG_ON(!timer);
Joe Perchesd2182b62011-12-15 14:55:53 -08002974 ath_dbg(common, HWTIMER, "TSF overflow for Gen timer %d\n",
2975 index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302976 timer->overflow(timer->arg);
2977 }
2978
2979 while (trigger_mask) {
2980 index = rightmost_index(timer_table, &trigger_mask);
2981 timer = timer_table->timers[index];
2982 BUG_ON(!timer);
Joe Perchesd2182b62011-12-15 14:55:53 -08002983 ath_dbg(common, HWTIMER,
Joe Perches226afe62010-12-02 19:12:37 -08002984 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302985 timer->trigger(timer->arg);
2986 }
2987}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002988EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002989
Sujith05020d22010-03-17 14:25:23 +05302990/********/
2991/* HTC */
2992/********/
2993
2994void ath9k_hw_htc_resetinit(struct ath_hw *ah)
2995{
2996 ah->htc_reset_init = true;
2997}
2998EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
2999
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003000static struct {
3001 u32 version;
3002 const char * name;
3003} ath_mac_bb_names[] = {
3004 /* Devices with external radios */
3005 { AR_SREV_VERSION_5416_PCI, "5416" },
3006 { AR_SREV_VERSION_5416_PCIE, "5418" },
3007 { AR_SREV_VERSION_9100, "9100" },
3008 { AR_SREV_VERSION_9160, "9160" },
3009 /* Single-chip solutions */
3010 { AR_SREV_VERSION_9280, "9280" },
3011 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04003012 { AR_SREV_VERSION_9287, "9287" },
3013 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguezec839032010-04-15 17:39:20 -04003014 { AR_SREV_VERSION_9300, "9300" },
Gabor Juhos2c8e5932011-06-21 11:23:21 +02003015 { AR_SREV_VERSION_9330, "9330" },
Florian Fainelli397e5d52011-08-25 21:33:48 +02003016 { AR_SREV_VERSION_9340, "9340" },
Senthil Balasubramanian8f06ca22011-04-01 17:16:33 +05303017 { AR_SREV_VERSION_9485, "9485" },
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05303018 { AR_SREV_VERSION_9462, "9462" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003019};
3020
3021/* For devices with external radios */
3022static struct {
3023 u16 version;
3024 const char * name;
3025} ath_rf_names[] = {
3026 { 0, "5133" },
3027 { AR_RAD5133_SREV_MAJOR, "5133" },
3028 { AR_RAD5122_SREV_MAJOR, "5122" },
3029 { AR_RAD2133_SREV_MAJOR, "2133" },
3030 { AR_RAD2122_SREV_MAJOR, "2122" }
3031};
3032
3033/*
3034 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
3035 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003036static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003037{
3038 int i;
3039
3040 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
3041 if (ath_mac_bb_names[i].version == mac_bb_version) {
3042 return ath_mac_bb_names[i].name;
3043 }
3044 }
3045
3046 return "????";
3047}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003048
3049/*
3050 * Return the RF name. "????" is returned if the RF is unknown.
3051 * Used for devices with external radios.
3052 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003053static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003054{
3055 int i;
3056
3057 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
3058 if (ath_rf_names[i].version == rf_version) {
3059 return ath_rf_names[i].name;
3060 }
3061 }
3062
3063 return "????";
3064}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003065
3066void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
3067{
3068 int used;
3069
3070 /* chipsets >= AR9280 are single-chip */
Felix Fietkau7a370812010-09-22 12:34:52 +02003071 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003072 used = snprintf(hw_name, len,
3073 "Atheros AR%s Rev:%x",
3074 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3075 ah->hw_version.macRev);
3076 }
3077 else {
3078 used = snprintf(hw_name, len,
3079 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
3080 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3081 ah->hw_version.macRev,
3082 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
3083 AR_RADIO_SREV_MAJOR)),
3084 ah->hw_version.phyRev);
3085 }
3086
3087 hw_name[used] = '\0';
3088}
3089EXPORT_SYMBOL(ath9k_hw_name);