blob: d1345a8a2b15e4b290672490a16b9c8fb479520a [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;
Felix Fietkau8efa7a82012-03-14 16:40:23 +0100452 ah->htc_reset_init = true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700453}
454
Sujithcbe61d82009-02-09 13:27:12 +0530455static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700456{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700457 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530458 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700459 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530460 u16 eeval;
Joe Perches07b2fa52010-11-20 18:38:53 -0800461 static const u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700462
Sujithf1dc5602008-10-29 10:16:30 +0530463 sum = 0;
464 for (i = 0; i < 3; i++) {
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400465 eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
Sujithf1dc5602008-10-29 10:16:30 +0530466 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700467 common->macaddr[2 * i] = eeval >> 8;
468 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700469 }
Sujithd8baa932009-03-30 15:28:25 +0530470 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530471 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700472
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700473 return 0;
474}
475
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700476static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700477{
Sujith Manoharan6cae913d2011-01-04 13:16:37 +0530478 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700479 int ecode;
480
Sujith Manoharan6cae913d2011-01-04 13:16:37 +0530481 if (common->bus_ops->ath_bus_type != ATH_USB) {
Sujith527d4852010-03-17 14:25:16 +0530482 if (!ath9k_hw_chip_test(ah))
483 return -ENODEV;
484 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700485
Luis R. Rodriguezebd5a142010-04-15 17:39:18 -0400486 if (!AR_SREV_9300_20_OR_LATER(ah)) {
487 ecode = ar9002_hw_rf_claim(ah);
488 if (ecode != 0)
489 return ecode;
490 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700491
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700492 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700493 if (ecode != 0)
494 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530495
Joe Perchesd2182b62011-12-15 14:55:53 -0800496 ath_dbg(ath9k_hw_common(ah), CONFIG, "Eeprom VER: %d, REV: %d\n",
Joe Perches226afe62010-12-02 19:12:37 -0800497 ah->eep_ops->get_eeprom_ver(ah),
498 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530499
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400500 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
501 if (ecode) {
Joe Perches38002762010-12-02 19:12:36 -0800502 ath_err(ath9k_hw_common(ah),
503 "Failed allocating banks for external radio\n");
Rajkumar Manoharan48a7c3d2010-11-08 20:40:53 +0530504 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400505 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400506 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700507
Nikolay Martynov42794252011-12-02 22:39:16 -0500508 if (ah->config.enable_ani) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700509 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700510 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700511 }
Sujithf1dc5602008-10-29 10:16:30 +0530512
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700513 return 0;
514}
515
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400516static void ath9k_hw_attach_ops(struct ath_hw *ah)
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700517{
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400518 if (AR_SREV_9300_20_OR_LATER(ah))
519 ar9003_hw_attach_ops(ah);
520 else
521 ar9002_hw_attach_ops(ah);
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700522}
523
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400524/* Called for all hardware families */
525static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700526{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700527 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700528 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700529
Senthil Balasubramanianac45c122010-12-22 21:14:20 +0530530 ath9k_hw_read_revisions(ah);
531
Senthil Balasubramanian0a8d7cb2010-12-22 19:17:18 +0530532 /*
533 * Read back AR_WA into a permanent copy and set bits 14 and 17.
534 * We need to do this to avoid RMW of this register. We cannot
535 * read the reg when chip is asleep.
536 */
537 ah->WARegVal = REG_READ(ah, AR_WA);
538 ah->WARegVal |= (AR_WA_D3_L1_DISABLE |
539 AR_WA_ASPM_TIMER_BASED_DISABLE);
540
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700541 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Joe Perches38002762010-12-02 19:12:36 -0800542 ath_err(common, "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700543 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700544 }
545
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +0530546 if (AR_SREV_9462(ah))
Rajkumar Manoharaneec353c2011-10-13 10:49:13 +0530547 ah->WARegVal &= ~AR_WA_D3_L1_DISABLE;
548
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400549 ath9k_hw_init_defaults(ah);
550 ath9k_hw_init_config(ah);
551
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400552 ath9k_hw_attach_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400553
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700554 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Joe Perches38002762010-12-02 19:12:36 -0800555 ath_err(common, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700556 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700557 }
558
Felix Fietkauf3eef642012-03-14 16:40:25 +0100559 if (NR_CPUS > 1 && ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700560 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
John W. Linville4c85ab12010-07-28 10:06:35 -0400561 ((AR_SREV_9160(ah) || AR_SREV_9280(ah)) &&
562 !ah->is_pciexpress)) {
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700563 ah->config.serialize_regmode =
564 SER_REG_MODE_ON;
565 } else {
566 ah->config.serialize_regmode =
567 SER_REG_MODE_OFF;
568 }
569 }
570
Joe Perchesd2182b62011-12-15 14:55:53 -0800571 ath_dbg(common, RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700572 ah->config.serialize_regmode);
573
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500574 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
575 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
576 else
577 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
578
Felix Fietkau6da5a722010-12-12 00:51:12 +0100579 switch (ah->hw_version.macVersion) {
580 case AR_SREV_VERSION_5416_PCI:
581 case AR_SREV_VERSION_5416_PCIE:
582 case AR_SREV_VERSION_9160:
583 case AR_SREV_VERSION_9100:
584 case AR_SREV_VERSION_9280:
585 case AR_SREV_VERSION_9285:
586 case AR_SREV_VERSION_9287:
587 case AR_SREV_VERSION_9271:
588 case AR_SREV_VERSION_9300:
Gabor Juhos2c8e5932011-06-21 11:23:21 +0200589 case AR_SREV_VERSION_9330:
Felix Fietkau6da5a722010-12-12 00:51:12 +0100590 case AR_SREV_VERSION_9485:
Vasanthakumar Thiagarajanbca04682011-04-19 19:29:20 +0530591 case AR_SREV_VERSION_9340:
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +0530592 case AR_SREV_VERSION_9462:
Felix Fietkau6da5a722010-12-12 00:51:12 +0100593 break;
594 default:
Joe Perches38002762010-12-02 19:12:36 -0800595 ath_err(common,
596 "Mac Chip Rev 0x%02x.%x is not supported by this driver\n",
597 ah->hw_version.macVersion, ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700598 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700599 }
600
Gabor Juhos2c8e5932011-06-21 11:23:21 +0200601 if (AR_SREV_9271(ah) || AR_SREV_9100(ah) || AR_SREV_9340(ah) ||
602 AR_SREV_9330(ah))
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400603 ah->is_pciexpress = false;
604
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700605 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700606 ath9k_hw_init_cal_settings(ah);
607
608 ah->ani_function = ATH9K_ANI_ALL;
Felix Fietkau7a370812010-09-22 12:34:52 +0200609 if (AR_SREV_9280_20_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700610 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400611 if (!AR_SREV_9300_20_OR_LATER(ah))
612 ah->ani_function &= ~ATH9K_ANI_MRC_CCK;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700613
Nikolay Martynov4f17c482011-12-06 21:57:17 -0500614 /* disable ANI for 9340 */
615 if (AR_SREV_9340(ah))
Nikolay Martynov42794252011-12-02 22:39:16 -0500616 ah->config.enable_ani = false;
617
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700618 ath9k_hw_init_mode_regs(ah);
619
Stanislaw Gruszka69ce6742011-08-05 13:10:34 +0200620 if (!ah->is_pciexpress)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700621 ath9k_hw_disablepcie(ah);
622
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700623 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700624 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700625 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700626
627 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100628 r = ath9k_hw_fill_cap_info(ah);
629 if (r)
630 return r;
631
Stanislaw Gruszka69ce6742011-08-05 13:10:34 +0200632 if (ah->is_pciexpress)
633 ath9k_hw_aspm_init(ah);
634
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700635 r = ath9k_hw_init_macaddr(ah);
636 if (r) {
Joe Perches38002762010-12-02 19:12:36 -0800637 ath_err(common, "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700638 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700639 }
640
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400641 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530642 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700643 else
Sujith2660b812009-02-09 13:27:26 +0530644 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700645
Gabor Juhos88e641d2011-06-21 11:23:30 +0200646 if (AR_SREV_9330(ah))
647 ah->bb_watchdog_timeout_ms = 85;
648 else
649 ah->bb_watchdog_timeout_ms = 25;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700650
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400651 common->state = ATH_HW_INITIALIZED;
652
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700653 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700654}
655
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400656int ath9k_hw_init(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530657{
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400658 int ret;
659 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530660
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400661 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
662 switch (ah->hw_version.devid) {
663 case AR5416_DEVID_PCI:
664 case AR5416_DEVID_PCIE:
665 case AR5416_AR9100_DEVID:
666 case AR9160_DEVID_PCI:
667 case AR9280_DEVID_PCI:
668 case AR9280_DEVID_PCIE:
669 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400670 case AR9287_DEVID_PCI:
671 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400672 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400673 case AR9300_DEVID_PCIE:
Vasanthakumar Thiagarajan3050c912010-12-06 04:27:36 -0800674 case AR9300_DEVID_AR9485_PCIE:
Gabor Juhos999a7a82011-06-21 11:23:52 +0200675 case AR9300_DEVID_AR9330:
Vasanthakumar Thiagarajanbca04682011-04-19 19:29:20 +0530676 case AR9300_DEVID_AR9340:
Luis R. Rodriguez5a63ef02011-08-24 15:36:08 -0700677 case AR9300_DEVID_AR9580:
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +0530678 case AR9300_DEVID_AR9462:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400679 break;
680 default:
681 if (common->bus_ops->ath_bus_type == ATH_USB)
682 break;
Joe Perches38002762010-12-02 19:12:36 -0800683 ath_err(common, "Hardware device ID 0x%04x not supported\n",
684 ah->hw_version.devid);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400685 return -EOPNOTSUPP;
686 }
Sujithf1dc5602008-10-29 10:16:30 +0530687
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400688 ret = __ath9k_hw_init(ah);
689 if (ret) {
Joe Perches38002762010-12-02 19:12:36 -0800690 ath_err(common,
691 "Unable to initialize hardware; initialization status: %d\n",
692 ret);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400693 return ret;
694 }
Sujithf1dc5602008-10-29 10:16:30 +0530695
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400696 return 0;
Sujithf1dc5602008-10-29 10:16:30 +0530697}
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400698EXPORT_SYMBOL(ath9k_hw_init);
Sujithf1dc5602008-10-29 10:16:30 +0530699
Sujithcbe61d82009-02-09 13:27:12 +0530700static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530701{
Sujith7d0d0df2010-04-16 11:53:57 +0530702 ENABLE_REGWRITE_BUFFER(ah);
703
Sujithf1dc5602008-10-29 10:16:30 +0530704 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
705 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
706
707 REG_WRITE(ah, AR_QOS_NO_ACK,
708 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
709 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
710 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
711
712 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
713 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
714 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
715 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
716 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
Sujith7d0d0df2010-04-16 11:53:57 +0530717
718 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530719}
720
Senthil Balasubramanianb84628e2011-04-22 11:32:12 +0530721u32 ar9003_get_pll_sqsum_dvc(struct ath_hw *ah)
Vivek Natarajanb1415812011-01-27 14:45:07 +0530722{
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100723 REG_CLR_BIT(ah, PLL3, PLL3_DO_MEAS_MASK);
724 udelay(100);
725 REG_SET_BIT(ah, PLL3, PLL3_DO_MEAS_MASK);
726
727 while ((REG_READ(ah, PLL4) & PLL4_MEAS_DONE) == 0)
Vivek Natarajanb1415812011-01-27 14:45:07 +0530728 udelay(100);
Vivek Natarajanb1415812011-01-27 14:45:07 +0530729
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100730 return (REG_READ(ah, PLL3) & SQSUM_DVC_MASK) >> 3;
Vivek Natarajanb1415812011-01-27 14:45:07 +0530731}
732EXPORT_SYMBOL(ar9003_get_pll_sqsum_dvc);
733
Sujithcbe61d82009-02-09 13:27:12 +0530734static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530735 struct ath9k_channel *chan)
736{
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800737 u32 pll;
738
Vivek Natarajan22983c32011-01-27 14:45:09 +0530739 if (AR_SREV_9485(ah)) {
Vivek Natarajan22983c32011-01-27 14:45:09 +0530740
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530741 /* program BB PLL ki and kd value, ki=0x4, kd=0x40 */
742 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
743 AR_CH0_BB_DPLL2_PLL_PWD, 0x1);
744 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
745 AR_CH0_DPLL2_KD, 0x40);
746 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
747 AR_CH0_DPLL2_KI, 0x4);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530748
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530749 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
750 AR_CH0_BB_DPLL1_REFDIV, 0x5);
751 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
752 AR_CH0_BB_DPLL1_NINI, 0x58);
753 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
754 AR_CH0_BB_DPLL1_NFRAC, 0x0);
755
756 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
757 AR_CH0_BB_DPLL2_OUTDIV, 0x1);
758 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
759 AR_CH0_BB_DPLL2_LOCAL_PLL, 0x1);
760 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
761 AR_CH0_BB_DPLL2_EN_NEGTRIG, 0x1);
762
763 /* program BB PLL phase_shift to 0x6 */
764 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL3,
765 AR_CH0_BB_DPLL3_PHASE_SHIFT, 0x6);
766
767 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
768 AR_CH0_BB_DPLL2_PLL_PWD, 0x0);
Vivek Natarajan75e03512011-03-10 11:05:42 +0530769 udelay(1000);
Gabor Juhosa5415d62011-06-21 11:23:29 +0200770 } else if (AR_SREV_9330(ah)) {
771 u32 ddr_dpll2, pll_control2, kd;
772
773 if (ah->is_clk_25mhz) {
774 ddr_dpll2 = 0x18e82f01;
775 pll_control2 = 0xe04a3d;
776 kd = 0x1d;
777 } else {
778 ddr_dpll2 = 0x19e82f01;
779 pll_control2 = 0x886666;
780 kd = 0x3d;
781 }
782
783 /* program DDR PLL ki and kd value */
784 REG_WRITE(ah, AR_CH0_DDR_DPLL2, ddr_dpll2);
785
786 /* program DDR PLL phase_shift */
787 REG_RMW_FIELD(ah, AR_CH0_DDR_DPLL3,
788 AR_CH0_DPLL3_PHASE_SHIFT, 0x1);
789
790 REG_WRITE(ah, AR_RTC_PLL_CONTROL, 0x1142c);
791 udelay(1000);
792
793 /* program refdiv, nint, frac to RTC register */
794 REG_WRITE(ah, AR_RTC_PLL_CONTROL2, pll_control2);
795
796 /* program BB PLL kd and ki value */
797 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2, AR_CH0_DPLL2_KD, kd);
798 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2, AR_CH0_DPLL2_KI, 0x06);
799
800 /* program BB PLL phase_shift */
801 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL3,
802 AR_CH0_BB_DPLL3_PHASE_SHIFT, 0x1);
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530803 } else if (AR_SREV_9340(ah)) {
804 u32 regval, pll2_divint, pll2_divfrac, refdiv;
805
806 REG_WRITE(ah, AR_RTC_PLL_CONTROL, 0x1142c);
807 udelay(1000);
808
809 REG_SET_BIT(ah, AR_PHY_PLL_MODE, 0x1 << 16);
810 udelay(100);
811
812 if (ah->is_clk_25mhz) {
813 pll2_divint = 0x54;
814 pll2_divfrac = 0x1eb85;
815 refdiv = 3;
816 } else {
817 pll2_divint = 88;
818 pll2_divfrac = 0;
819 refdiv = 5;
820 }
821
822 regval = REG_READ(ah, AR_PHY_PLL_MODE);
823 regval |= (0x1 << 16);
824 REG_WRITE(ah, AR_PHY_PLL_MODE, regval);
825 udelay(100);
826
827 REG_WRITE(ah, AR_PHY_PLL_CONTROL, (refdiv << 27) |
828 (pll2_divint << 18) | pll2_divfrac);
829 udelay(100);
830
831 regval = REG_READ(ah, AR_PHY_PLL_MODE);
832 regval = (regval & 0x80071fff) | (0x1 << 30) | (0x1 << 13) |
833 (0x4 << 26) | (0x18 << 19);
834 REG_WRITE(ah, AR_PHY_PLL_MODE, regval);
835 REG_WRITE(ah, AR_PHY_PLL_MODE,
836 REG_READ(ah, AR_PHY_PLL_MODE) & 0xfffeffff);
837 udelay(1000);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530838 }
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800839
840 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530841
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100842 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530843
Gabor Juhosa5415d62011-06-21 11:23:29 +0200844 if (AR_SREV_9485(ah) || AR_SREV_9340(ah) || AR_SREV_9330(ah))
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530845 udelay(1000);
846
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400847 /* Switch the core clock for ar9271 to 117Mhz */
848 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530849 udelay(500);
850 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400851 }
852
Sujithf1dc5602008-10-29 10:16:30 +0530853 udelay(RTC_PLL_SETTLE_DELAY);
854
855 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530856
857 if (AR_SREV_9340(ah)) {
858 if (ah->is_clk_25mhz) {
859 REG_WRITE(ah, AR_RTC_DERIVED_CLK, 0x17c << 1);
860 REG_WRITE(ah, AR_SLP32_MODE, 0x0010f3d7);
861 REG_WRITE(ah, AR_SLP32_INC, 0x0001e7ae);
862 } else {
863 REG_WRITE(ah, AR_RTC_DERIVED_CLK, 0x261 << 1);
864 REG_WRITE(ah, AR_SLP32_MODE, 0x0010f400);
865 REG_WRITE(ah, AR_SLP32_INC, 0x0001e800);
866 }
867 udelay(100);
868 }
Sujithf1dc5602008-10-29 10:16:30 +0530869}
870
Sujithcbe61d82009-02-09 13:27:12 +0530871static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800872 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530873{
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530874 u32 sync_default = AR_INTR_SYNC_DEFAULT;
Pavel Roskin152d5302010-03-31 18:05:37 -0400875 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530876 AR_IMR_TXURN |
877 AR_IMR_RXERR |
878 AR_IMR_RXORN |
879 AR_IMR_BCNMISC;
880
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530881 if (AR_SREV_9340(ah))
882 sync_default &= ~AR_INTR_SYNC_HOST1_FATAL;
883
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400884 if (AR_SREV_9300_20_OR_LATER(ah)) {
885 imr_reg |= AR_IMR_RXOK_HP;
886 if (ah->config.rx_intr_mitigation)
887 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
888 else
889 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530890
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400891 } else {
892 if (ah->config.rx_intr_mitigation)
893 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
894 else
895 imr_reg |= AR_IMR_RXOK;
896 }
897
898 if (ah->config.tx_intr_mitigation)
899 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
900 else
901 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530902
Colin McCabed97809d2008-12-01 13:38:55 -0800903 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -0400904 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +0530905
Sujith7d0d0df2010-04-16 11:53:57 +0530906 ENABLE_REGWRITE_BUFFER(ah);
907
Pavel Roskin152d5302010-03-31 18:05:37 -0400908 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500909 ah->imrs2_reg |= AR_IMR_S2_GTT;
910 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530911
912 if (!AR_SREV_9100(ah)) {
913 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530914 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, sync_default);
Sujithf1dc5602008-10-29 10:16:30 +0530915 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
916 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400917
Sujith7d0d0df2010-04-16 11:53:57 +0530918 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530919
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400920 if (AR_SREV_9300_20_OR_LATER(ah)) {
921 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
922 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
923 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
924 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
925 }
Sujithf1dc5602008-10-29 10:16:30 +0530926}
927
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700928static void ath9k_hw_set_sifs_time(struct ath_hw *ah, u32 us)
929{
930 u32 val = ath9k_hw_mac_to_clks(ah, us - 2);
931 val = min(val, (u32) 0xFFFF);
932 REG_WRITE(ah, AR_D_GBL_IFS_SIFS, val);
933}
934
Felix Fietkau0005baf2010-01-15 02:33:40 +0100935static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530936{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100937 u32 val = ath9k_hw_mac_to_clks(ah, us);
938 val = min(val, (u32) 0xFFFF);
939 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530940}
941
Felix Fietkau0005baf2010-01-15 02:33:40 +0100942static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530943{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100944 u32 val = ath9k_hw_mac_to_clks(ah, us);
945 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
946 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
947}
948
949static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
950{
951 u32 val = ath9k_hw_mac_to_clks(ah, us);
952 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
953 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530954}
955
Sujithcbe61d82009-02-09 13:27:12 +0530956static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +0530957{
Sujithf1dc5602008-10-29 10:16:30 +0530958 if (tu > 0xFFFF) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800959 ath_dbg(ath9k_hw_common(ah), XMIT, "bad global tx timeout %u\n",
960 tu);
Sujith2660b812009-02-09 13:27:26 +0530961 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +0530962 return false;
963 } else {
964 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +0530965 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +0530966 return true;
967 }
968}
969
Felix Fietkau0005baf2010-01-15 02:33:40 +0100970void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530971{
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700972 struct ath_common *common = ath9k_hw_common(ah);
973 struct ieee80211_conf *conf = &common->hw->conf;
974 const struct ath9k_channel *chan = ah->curchan;
Felix Fietkauadb50662011-08-28 01:52:10 +0200975 int acktimeout, ctstimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +0100976 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100977 int sifstime;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700978 int rx_lat = 0, tx_lat = 0, eifs = 0;
979 u32 reg;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100980
Joe Perchesd2182b62011-12-15 14:55:53 -0800981 ath_dbg(ath9k_hw_common(ah), RESET, "ah->misc_mode 0x%x\n",
Joe Perches226afe62010-12-02 19:12:37 -0800982 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +0530983
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700984 if (!chan)
985 return;
986
Sujith2660b812009-02-09 13:27:26 +0530987 if (ah->misc_mode != 0)
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100988 REG_SET_BIT(ah, AR_PCU_MISC, ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100989
Rajkumar Manoharan81a91d52011-08-31 10:47:30 +0530990 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
991 rx_lat = 41;
992 else
993 rx_lat = 37;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700994 tx_lat = 54;
995
996 if (IS_CHAN_HALF_RATE(chan)) {
997 eifs = 175;
998 rx_lat *= 2;
999 tx_lat *= 2;
1000 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
1001 tx_lat += 11;
1002
1003 slottime = 13;
1004 sifstime = 32;
1005 } else if (IS_CHAN_QUARTER_RATE(chan)) {
1006 eifs = 340;
Rajkumar Manoharan81a91d52011-08-31 10:47:30 +05301007 rx_lat = (rx_lat * 4) - 1;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001008 tx_lat *= 4;
1009 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
1010 tx_lat += 22;
1011
1012 slottime = 21;
1013 sifstime = 64;
1014 } else {
Rajkumar Manoharana7be0392011-08-27 12:13:21 +05301015 if (AR_SREV_9287(ah) && AR_SREV_9287_13_OR_LATER(ah)) {
1016 eifs = AR_D_GBL_IFS_EIFS_ASYNC_FIFO;
1017 reg = AR_USEC_ASYNC_FIFO;
1018 } else {
1019 eifs = REG_READ(ah, AR_D_GBL_IFS_EIFS)/
1020 common->clockrate;
1021 reg = REG_READ(ah, AR_USEC);
1022 }
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001023 rx_lat = MS(reg, AR_USEC_RX_LAT);
1024 tx_lat = MS(reg, AR_USEC_TX_LAT);
1025
1026 slottime = ah->slottime;
1027 if (IS_CHAN_5GHZ(chan))
1028 sifstime = 16;
1029 else
1030 sifstime = 10;
1031 }
Felix Fietkau0005baf2010-01-15 02:33:40 +01001032
Felix Fietkaue239d852010-01-15 02:34:58 +01001033 /* As defined by IEEE 802.11-2007 17.3.8.6 */
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001034 acktimeout = slottime + sifstime + 3 * ah->coverage_class;
Felix Fietkauadb50662011-08-28 01:52:10 +02001035 ctstimeout = acktimeout;
Felix Fietkau42c45682010-02-11 18:07:19 +01001036
1037 /*
1038 * Workaround for early ACK timeouts, add an offset to match the
Felix Fietkau55a2bb42012-02-05 21:15:18 +01001039 * initval's 64us ack timeout value. Use 48us for the CTS timeout.
Felix Fietkau42c45682010-02-11 18:07:19 +01001040 * This was initially only meant to work around an issue with delayed
1041 * BA frames in some implementations, but it has been found to fix ACK
1042 * timeout issues in other cases as well.
1043 */
Felix Fietkau55a2bb42012-02-05 21:15:18 +01001044 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ) {
Felix Fietkau42c45682010-02-11 18:07:19 +01001045 acktimeout += 64 - sifstime - ah->slottime;
Felix Fietkau55a2bb42012-02-05 21:15:18 +01001046 ctstimeout += 48 - sifstime - ah->slottime;
1047 }
1048
Felix Fietkau42c45682010-02-11 18:07:19 +01001049
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001050 ath9k_hw_set_sifs_time(ah, sifstime);
1051 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001052 ath9k_hw_set_ack_timeout(ah, acktimeout);
Felix Fietkauadb50662011-08-28 01:52:10 +02001053 ath9k_hw_set_cts_timeout(ah, ctstimeout);
Sujith2660b812009-02-09 13:27:26 +05301054 if (ah->globaltxtimeout != (u32) -1)
1055 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001056
1057 REG_WRITE(ah, AR_D_GBL_IFS_EIFS, ath9k_hw_mac_to_clks(ah, eifs));
1058 REG_RMW(ah, AR_USEC,
1059 (common->clockrate - 1) |
1060 SM(rx_lat, AR_USEC_RX_LAT) |
1061 SM(tx_lat, AR_USEC_TX_LAT),
1062 AR_USEC_TX_LAT | AR_USEC_RX_LAT | AR_USEC_USEC);
1063
Sujithf1dc5602008-10-29 10:16:30 +05301064}
Felix Fietkau0005baf2010-01-15 02:33:40 +01001065EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +05301066
Sujith285f2dd2010-01-08 10:36:07 +05301067void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001068{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001069 struct ath_common *common = ath9k_hw_common(ah);
1070
Sujith736b3a22010-03-17 14:25:24 +05301071 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001072 goto free_hw;
1073
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001074 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001075
1076free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001077 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001078}
Sujith285f2dd2010-01-08 10:36:07 +05301079EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001080
Sujithf1dc5602008-10-29 10:16:30 +05301081/*******/
1082/* INI */
1083/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001084
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001085u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -04001086{
1087 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1088
1089 if (IS_CHAN_B(chan))
1090 ctl |= CTL_11B;
1091 else if (IS_CHAN_G(chan))
1092 ctl |= CTL_11G;
1093 else
1094 ctl |= CTL_11A;
1095
1096 return ctl;
1097}
1098
Sujithf1dc5602008-10-29 10:16:30 +05301099/****************************************/
1100/* Reset and Channel Switching Routines */
1101/****************************************/
1102
Sujithcbe61d82009-02-09 13:27:12 +05301103static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301104{
Felix Fietkau57b32222010-04-15 17:39:22 -04001105 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301106
Sujith7d0d0df2010-04-16 11:53:57 +05301107 ENABLE_REGWRITE_BUFFER(ah);
1108
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001109 /*
1110 * set AHB_MODE not to do cacheline prefetches
1111 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001112 if (!AR_SREV_9300_20_OR_LATER(ah))
1113 REG_SET_BIT(ah, AR_AHB_MODE, AR_AHB_PREFETCH_RD_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301114
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001115 /*
1116 * let mac dma reads be in 128 byte chunks
1117 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001118 REG_RMW(ah, AR_TXCFG, AR_TXCFG_DMASZ_128B, AR_TXCFG_DMASZ_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301119
Sujith7d0d0df2010-04-16 11:53:57 +05301120 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301121
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001122 /*
1123 * Restore TX Trigger Level to its pre-reset value.
1124 * The initial value depends on whether aggregation is enabled, and is
1125 * adjusted whenever underruns are detected.
1126 */
Felix Fietkau57b32222010-04-15 17:39:22 -04001127 if (!AR_SREV_9300_20_OR_LATER(ah))
1128 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301129
Sujith7d0d0df2010-04-16 11:53:57 +05301130 ENABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301131
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001132 /*
1133 * let mac dma writes be in 128 byte chunks
1134 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001135 REG_RMW(ah, AR_RXCFG, AR_RXCFG_DMASZ_128B, AR_RXCFG_DMASZ_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301136
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001137 /*
1138 * Setup receive FIFO threshold to hold off TX activities
1139 */
Sujithf1dc5602008-10-29 10:16:30 +05301140 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1141
Felix Fietkau57b32222010-04-15 17:39:22 -04001142 if (AR_SREV_9300_20_OR_LATER(ah)) {
1143 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
1144 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
1145
1146 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
1147 ah->caps.rx_status_len);
1148 }
1149
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001150 /*
1151 * reduce the number of usable entries in PCU TXBUF to avoid
1152 * wrap around issues.
1153 */
Sujithf1dc5602008-10-29 10:16:30 +05301154 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001155 /* For AR9285 the number of Fifos are reduced to half.
1156 * So set the usable tx buf size also to half to
1157 * avoid data/delimiter underruns
1158 */
Sujithf1dc5602008-10-29 10:16:30 +05301159 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1160 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001161 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +05301162 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1163 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1164 }
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -04001165
Sujith7d0d0df2010-04-16 11:53:57 +05301166 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301167
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -04001168 if (AR_SREV_9300_20_OR_LATER(ah))
1169 ath9k_hw_reset_txstatus_ring(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301170}
1171
Sujithcbe61d82009-02-09 13:27:12 +05301172static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301173{
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001174 u32 mask = AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC;
1175 u32 set = AR_STA_ID1_KSRCH_MODE;
Sujithf1dc5602008-10-29 10:16:30 +05301176
Sujithf1dc5602008-10-29 10:16:30 +05301177 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001178 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001179 case NL80211_IFTYPE_MESH_POINT:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001180 set |= AR_STA_ID1_ADHOC;
Sujithf1dc5602008-10-29 10:16:30 +05301181 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1182 break;
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001183 case NL80211_IFTYPE_AP:
1184 set |= AR_STA_ID1_STA_AP;
1185 /* fall through */
Colin McCabed97809d2008-12-01 13:38:55 -08001186 case NL80211_IFTYPE_STATION:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001187 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
Sujithf1dc5602008-10-29 10:16:30 +05301188 break;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301189 default:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001190 if (!ah->is_monitoring)
1191 set = 0;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301192 break;
Sujithf1dc5602008-10-29 10:16:30 +05301193 }
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001194 REG_RMW(ah, AR_STA_ID1, set, mask);
Sujithf1dc5602008-10-29 10:16:30 +05301195}
1196
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001197void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
1198 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001199{
1200 u32 coef_exp, coef_man;
1201
1202 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1203 if ((coef_scaled >> coef_exp) & 0x1)
1204 break;
1205
1206 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1207
1208 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1209
1210 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1211 *coef_exponent = coef_exp - 16;
1212}
1213
Sujithcbe61d82009-02-09 13:27:12 +05301214static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301215{
1216 u32 rst_flags;
1217 u32 tmpReg;
1218
Sujith70768492009-02-16 13:23:12 +05301219 if (AR_SREV_9100(ah)) {
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001220 REG_RMW_FIELD(ah, AR_RTC_DERIVED_CLK,
1221 AR_RTC_DERIVED_CLK_PERIOD, 1);
Sujith70768492009-02-16 13:23:12 +05301222 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1223 }
1224
Sujith7d0d0df2010-04-16 11:53:57 +05301225 ENABLE_REGWRITE_BUFFER(ah);
1226
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001227 if (AR_SREV_9300_20_OR_LATER(ah)) {
1228 REG_WRITE(ah, AR_WA, ah->WARegVal);
1229 udelay(10);
1230 }
1231
Sujithf1dc5602008-10-29 10:16:30 +05301232 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1233 AR_RTC_FORCE_WAKE_ON_INT);
1234
1235 if (AR_SREV_9100(ah)) {
1236 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1237 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1238 } else {
1239 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1240 if (tmpReg &
1241 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1242 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001243 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301244 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001245
1246 val = AR_RC_HOSTIF;
1247 if (!AR_SREV_9300_20_OR_LATER(ah))
1248 val |= AR_RC_AHB;
1249 REG_WRITE(ah, AR_RC, val);
1250
1251 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301252 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301253
1254 rst_flags = AR_RTC_RC_MAC_WARM;
1255 if (type == ATH9K_RESET_COLD)
1256 rst_flags |= AR_RTC_RC_MAC_COLD;
1257 }
1258
Gabor Juhos7d95847c2011-06-21 11:23:51 +02001259 if (AR_SREV_9330(ah)) {
1260 int npend = 0;
1261 int i;
1262
1263 /* AR9330 WAR:
1264 * call external reset function to reset WMAC if:
1265 * - doing a cold reset
1266 * - we have pending frames in the TX queues
1267 */
1268
1269 for (i = 0; i < AR_NUM_QCU; i++) {
1270 npend = ath9k_hw_numtxpending(ah, i);
1271 if (npend)
1272 break;
1273 }
1274
1275 if (ah->external_reset &&
1276 (npend || type == ATH9K_RESET_COLD)) {
1277 int reset_err = 0;
1278
Joe Perchesd2182b62011-12-15 14:55:53 -08001279 ath_dbg(ath9k_hw_common(ah), RESET,
Gabor Juhos7d95847c2011-06-21 11:23:51 +02001280 "reset MAC via external reset\n");
1281
1282 reset_err = ah->external_reset();
1283 if (reset_err) {
1284 ath_err(ath9k_hw_common(ah),
1285 "External reset failed, err=%d\n",
1286 reset_err);
1287 return false;
1288 }
1289
1290 REG_WRITE(ah, AR_RTC_RESET, 1);
1291 }
1292 }
1293
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001294 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujith7d0d0df2010-04-16 11:53:57 +05301295
1296 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301297
Sujithf1dc5602008-10-29 10:16:30 +05301298 udelay(50);
1299
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001300 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301301 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001302 ath_dbg(ath9k_hw_common(ah), RESET, "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301303 return false;
1304 }
1305
1306 if (!AR_SREV_9100(ah))
1307 REG_WRITE(ah, AR_RC, 0);
1308
Sujithf1dc5602008-10-29 10:16:30 +05301309 if (AR_SREV_9100(ah))
1310 udelay(50);
1311
1312 return true;
1313}
1314
Sujithcbe61d82009-02-09 13:27:12 +05301315static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301316{
Sujith7d0d0df2010-04-16 11:53:57 +05301317 ENABLE_REGWRITE_BUFFER(ah);
1318
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001319 if (AR_SREV_9300_20_OR_LATER(ah)) {
1320 REG_WRITE(ah, AR_WA, ah->WARegVal);
1321 udelay(10);
1322 }
1323
Sujithf1dc5602008-10-29 10:16:30 +05301324 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1325 AR_RTC_FORCE_WAKE_ON_INT);
1326
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001327 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301328 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1329
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001330 REG_WRITE(ah, AR_RTC_RESET, 0);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301331
Sujith7d0d0df2010-04-16 11:53:57 +05301332 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301333
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001334 if (!AR_SREV_9300_20_OR_LATER(ah))
1335 udelay(2);
1336
1337 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301338 REG_WRITE(ah, AR_RC, 0);
1339
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001340 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301341
1342 if (!ath9k_hw_wait(ah,
1343 AR_RTC_STATUS,
1344 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301345 AR_RTC_STATUS_ON,
1346 AH_WAIT_TIMEOUT)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001347 ath_dbg(ath9k_hw_common(ah), RESET, "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301348 return false;
1349 }
1350
Sujithf1dc5602008-10-29 10:16:30 +05301351 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1352}
1353
Sujithcbe61d82009-02-09 13:27:12 +05301354static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301355{
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301356 bool ret = false;
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301357
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001358 if (AR_SREV_9300_20_OR_LATER(ah)) {
1359 REG_WRITE(ah, AR_WA, ah->WARegVal);
1360 udelay(10);
1361 }
1362
Sujithf1dc5602008-10-29 10:16:30 +05301363 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1364 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1365
1366 switch (type) {
1367 case ATH9K_RESET_POWER_ON:
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301368 ret = ath9k_hw_set_reset_power_on(ah);
1369 break;
Sujithf1dc5602008-10-29 10:16:30 +05301370 case ATH9K_RESET_WARM:
1371 case ATH9K_RESET_COLD:
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301372 ret = ath9k_hw_set_reset(ah, type);
1373 break;
Sujithf1dc5602008-10-29 10:16:30 +05301374 default:
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301375 break;
Sujithf1dc5602008-10-29 10:16:30 +05301376 }
Mohammed Shafi Shajakhan7a9233f2011-11-30 10:41:25 +05301377
1378 if (ah->caps.hw_caps & ATH9K_HW_CAP_MCI)
1379 REG_WRITE(ah, AR_RTC_KEEP_AWAKE, 0x2);
1380
1381 return ret;
Sujithf1dc5602008-10-29 10:16:30 +05301382}
1383
Sujithcbe61d82009-02-09 13:27:12 +05301384static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301385 struct ath9k_channel *chan)
1386{
Felix Fietkau9c083af2012-03-03 15:17:02 +01001387 int reset_type = ATH9K_RESET_WARM;
1388
1389 if (AR_SREV_9280(ah)) {
1390 if (ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1391 reset_type = ATH9K_RESET_POWER_ON;
1392 else
1393 reset_type = ATH9K_RESET_COLD;
1394 }
1395
1396 if (!ath9k_hw_set_reset_reg(ah, reset_type))
Sujithf1dc5602008-10-29 10:16:30 +05301397 return false;
1398
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001399 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301400 return false;
1401
Sujith2660b812009-02-09 13:27:26 +05301402 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301403 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301404 ath9k_hw_set_rfmode(ah, chan);
1405
1406 return true;
1407}
1408
Sujithcbe61d82009-02-09 13:27:12 +05301409static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001410 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301411{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001412 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001413 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001414 int r;
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301415 bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
1416 bool band_switch, mode_diff;
1417 u8 ini_reloaded;
1418
1419 band_switch = (chan->channelFlags & (CHANNEL_2GHZ | CHANNEL_5GHZ)) !=
1420 (ah->curchan->channelFlags & (CHANNEL_2GHZ |
1421 CHANNEL_5GHZ));
1422 mode_diff = (chan->chanmode != ah->curchan->chanmode);
Sujithf1dc5602008-10-29 10:16:30 +05301423
1424 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1425 if (ath9k_hw_numtxpending(ah, qnum)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001426 ath_dbg(common, QUEUE,
Joe Perches226afe62010-12-02 19:12:37 -08001427 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301428 return false;
1429 }
1430 }
1431
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001432 if (!ath9k_hw_rfbus_req(ah)) {
Joe Perches38002762010-12-02 19:12:36 -08001433 ath_err(common, "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301434 return false;
1435 }
1436
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301437 if (edma && (band_switch || mode_diff)) {
1438 ath9k_hw_mark_phy_inactive(ah);
1439 udelay(5);
1440
1441 ath9k_hw_init_pll(ah, NULL);
1442
1443 if (ath9k_hw_fast_chan_change(ah, chan, &ini_reloaded)) {
1444 ath_err(common, "Failed to do fast channel change\n");
1445 return false;
1446 }
1447 }
1448
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001449 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301450
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001451 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001452 if (r) {
Joe Perches38002762010-12-02 19:12:36 -08001453 ath_err(common, "Failed to set channel\n");
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001454 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301455 }
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001456 ath9k_hw_set_clockrate(ah);
Felix Fietkauca2c68c2011-10-08 20:06:20 +02001457 ath9k_hw_apply_txpower(ah, chan);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001458 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301459
1460 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1461 ath9k_hw_set_delta_slope(ah, chan);
1462
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001463 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301464
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301465 if (edma && (band_switch || mode_diff)) {
Rajkumar Manoharana126ff52011-10-13 11:00:42 +05301466 ah->ah_flags |= AH_FASTCC;
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301467 if (band_switch || ini_reloaded)
1468 ah->eep_ops->set_board_values(ah, chan);
1469
1470 ath9k_hw_init_bb(ah, chan);
1471
1472 if (band_switch || ini_reloaded)
1473 ath9k_hw_init_cal(ah, chan);
Rajkumar Manoharana126ff52011-10-13 11:00:42 +05301474 ah->ah_flags &= ~AH_FASTCC;
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301475 }
1476
Sujithf1dc5602008-10-29 10:16:30 +05301477 return true;
1478}
1479
Felix Fietkau691680b2011-03-19 13:55:38 +01001480static void ath9k_hw_apply_gpio_override(struct ath_hw *ah)
1481{
1482 u32 gpio_mask = ah->gpio_mask;
1483 int i;
1484
1485 for (i = 0; gpio_mask; i++, gpio_mask >>= 1) {
1486 if (!(gpio_mask & 1))
1487 continue;
1488
1489 ath9k_hw_cfg_output(ah, i, AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1490 ath9k_hw_set_gpio(ah, i, !!(ah->gpio_val & BIT(i)));
1491 }
1492}
1493
Rajkumar Manoharan01e18912012-03-15 05:34:27 +05301494static bool ath9k_hw_check_dcs(u32 dma_dbg, u32 num_dcu_states,
1495 int *hang_state, int *hang_pos)
1496{
1497 static u32 dcu_chain_state[] = {5, 6, 9}; /* DCU chain stuck states */
1498 u32 chain_state, dcs_pos, i;
1499
1500 for (dcs_pos = 0; dcs_pos < num_dcu_states; dcs_pos++) {
1501 chain_state = (dma_dbg >> (5 * dcs_pos)) & 0x1f;
1502 for (i = 0; i < 3; i++) {
1503 if (chain_state == dcu_chain_state[i]) {
1504 *hang_state = chain_state;
1505 *hang_pos = dcs_pos;
1506 return true;
1507 }
1508 }
1509 }
1510 return false;
1511}
1512
1513#define DCU_COMPLETE_STATE 1
1514#define DCU_COMPLETE_STATE_MASK 0x3
1515#define NUM_STATUS_READS 50
1516static bool ath9k_hw_detect_mac_hang(struct ath_hw *ah)
1517{
1518 u32 chain_state, comp_state, dcs_reg = AR_DMADBG_4;
1519 u32 i, hang_pos, hang_state, num_state = 6;
1520
1521 comp_state = REG_READ(ah, AR_DMADBG_6);
1522
1523 if ((comp_state & DCU_COMPLETE_STATE_MASK) != DCU_COMPLETE_STATE) {
1524 ath_dbg(ath9k_hw_common(ah), RESET,
1525 "MAC Hang signature not found at DCU complete\n");
1526 return false;
1527 }
1528
1529 chain_state = REG_READ(ah, dcs_reg);
1530 if (ath9k_hw_check_dcs(chain_state, num_state, &hang_state, &hang_pos))
1531 goto hang_check_iter;
1532
1533 dcs_reg = AR_DMADBG_5;
1534 num_state = 4;
1535 chain_state = REG_READ(ah, dcs_reg);
1536 if (ath9k_hw_check_dcs(chain_state, num_state, &hang_state, &hang_pos))
1537 goto hang_check_iter;
1538
1539 ath_dbg(ath9k_hw_common(ah), RESET,
1540 "MAC Hang signature 1 not found\n");
1541 return false;
1542
1543hang_check_iter:
1544 ath_dbg(ath9k_hw_common(ah), RESET,
1545 "DCU registers: chain %08x complete %08x Hang: state %d pos %d\n",
1546 chain_state, comp_state, hang_state, hang_pos);
1547
1548 for (i = 0; i < NUM_STATUS_READS; i++) {
1549 chain_state = REG_READ(ah, dcs_reg);
1550 chain_state = (chain_state >> (5 * hang_pos)) & 0x1f;
1551 comp_state = REG_READ(ah, AR_DMADBG_6);
1552
1553 if (((comp_state & DCU_COMPLETE_STATE_MASK) !=
1554 DCU_COMPLETE_STATE) ||
1555 (chain_state != hang_state))
1556 return false;
1557 }
1558
1559 ath_dbg(ath9k_hw_common(ah), RESET, "MAC Hang signature 1 found\n");
1560
1561 return true;
1562}
1563
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001564bool ath9k_hw_check_alive(struct ath_hw *ah)
Johannes Berg3b319aa2009-06-13 14:50:26 +05301565{
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001566 int count = 50;
1567 u32 reg;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301568
Rajkumar Manoharan01e18912012-03-15 05:34:27 +05301569 if (AR_SREV_9300(ah))
1570 return !ath9k_hw_detect_mac_hang(ah);
1571
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001572 if (AR_SREV_9285_12_OR_LATER(ah))
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001573 return true;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301574
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001575 do {
1576 reg = REG_READ(ah, AR_OBS_BUS_1);
1577
1578 if ((reg & 0x7E7FFFEF) == 0x00702400)
1579 continue;
1580
1581 switch (reg & 0x7E000B00) {
1582 case 0x1E000000:
1583 case 0x52000B00:
1584 case 0x18000B00:
1585 continue;
1586 default:
1587 return true;
1588 }
1589 } while (count-- > 0);
1590
1591 return false;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301592}
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001593EXPORT_SYMBOL(ath9k_hw_check_alive);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301594
Sujith Manoharancaed6572012-03-14 14:40:46 +05301595/*
1596 * Fast channel change:
1597 * (Change synthesizer based on channel freq without resetting chip)
1598 *
1599 * Don't do FCC when
1600 * - Flag is not set
1601 * - Chip is just coming out of full sleep
1602 * - Channel to be set is same as current channel
1603 * - Channel flags are different, (eg.,moving from 2GHz to 5GHz channel)
1604 */
1605static int ath9k_hw_do_fastcc(struct ath_hw *ah, struct ath9k_channel *chan)
1606{
1607 struct ath_common *common = ath9k_hw_common(ah);
1608 int ret;
1609
1610 if (AR_SREV_9280(ah) && common->bus_ops->ath_bus_type == ATH_PCI)
1611 goto fail;
1612
1613 if (ah->chip_fullsleep)
1614 goto fail;
1615
1616 if (!ah->curchan)
1617 goto fail;
1618
1619 if (chan->channel == ah->curchan->channel)
1620 goto fail;
1621
1622 if ((chan->channelFlags & CHANNEL_ALL) !=
1623 (ah->curchan->channelFlags & CHANNEL_ALL))
1624 goto fail;
1625
1626 if (!ath9k_hw_check_alive(ah))
1627 goto fail;
1628
1629 /*
1630 * For AR9462, make sure that calibration data for
1631 * re-using are present.
1632 */
1633 if (AR_SREV_9462(ah) && (!ah->caldata ||
1634 !ah->caldata->done_txiqcal_once ||
1635 !ah->caldata->done_txclcal_once ||
1636 !ah->caldata->rtt_hist.num_readings))
1637 goto fail;
1638
1639 ath_dbg(common, RESET, "FastChannelChange for %d -> %d\n",
1640 ah->curchan->channel, chan->channel);
1641
1642 ret = ath9k_hw_channel_change(ah, chan);
1643 if (!ret)
1644 goto fail;
1645
1646 ath9k_hw_loadnf(ah, ah->curchan);
1647 ath9k_hw_start_nfcal(ah, true);
1648
1649 if ((ah->caps.hw_caps & ATH9K_HW_CAP_MCI) && ar9003_mci_is_ready(ah))
1650 ar9003_mci_2g5g_switch(ah, true);
1651
1652 if (AR_SREV_9271(ah))
1653 ar9002_hw_load_ani_reg(ah, chan);
1654
1655 return 0;
1656fail:
1657 return -EINVAL;
1658}
1659
Sujithcbe61d82009-02-09 13:27:12 +05301660int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Sujith Manoharancaed6572012-03-14 14:40:46 +05301661 struct ath9k_hw_cal_data *caldata, bool fastcc)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001662{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001663 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001664 u32 saveLedState;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001665 u32 saveDefAntenna;
1666 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301667 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001668 int i, r;
Sujith Manoharancaed6572012-03-14 14:40:46 +05301669 bool start_mci_reset = false;
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301670 bool mci = !!(ah->caps.hw_caps & ATH9K_HW_CAP_MCI);
1671 bool save_fullsleep = ah->chip_fullsleep;
1672
1673 if (mci) {
Sujith Manoharan528e5d32012-02-22 12:41:12 +05301674 start_mci_reset = ar9003_mci_start_reset(ah, chan);
1675 if (start_mci_reset)
1676 return 0;
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301677 }
1678
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001679 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001680 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001681
Sujith Manoharancaed6572012-03-14 14:40:46 +05301682 if (ah->curchan && !ah->chip_fullsleep)
1683 ath9k_hw_getnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001684
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001685 ah->caldata = caldata;
1686 if (caldata &&
1687 (chan->channel != caldata->channel ||
1688 (chan->channelFlags & ~CHANNEL_CW_INT) !=
1689 (caldata->channelFlags & ~CHANNEL_CW_INT))) {
1690 /* Operating channel changed, reset channel calibration data */
1691 memset(caldata, 0, sizeof(*caldata));
1692 ath9k_init_nfcal_hist_buffer(ah, chan);
1693 }
Felix Fietkauf23fba42011-07-28 14:08:56 +02001694 ah->noise = ath9k_hw_getchan_noise(ah, chan);
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001695
Sujith Manoharancaed6572012-03-14 14:40:46 +05301696 if (fastcc) {
1697 r = ath9k_hw_do_fastcc(ah, chan);
1698 if (!r)
1699 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001700 }
1701
Sujith Manoharan528e5d32012-02-22 12:41:12 +05301702 if (mci)
1703 ar9003_mci_stop_bt(ah, save_fullsleep);
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301704
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001705 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1706 if (saveDefAntenna == 0)
1707 saveDefAntenna = 1;
1708
1709 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1710
Sujith46fe7822009-09-17 09:25:25 +05301711 /* For chips on which RTC reset is done, save TSF before it gets cleared */
Felix Fietkauf860d522010-06-30 02:07:48 +02001712 if (AR_SREV_9100(ah) ||
1713 (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)))
Sujith46fe7822009-09-17 09:25:25 +05301714 tsf = ath9k_hw_gettsf64(ah);
1715
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001716 saveLedState = REG_READ(ah, AR_CFG_LED) &
1717 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1718 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1719
1720 ath9k_hw_mark_phy_inactive(ah);
1721
Vasanthakumar Thiagarajan45ef6a02010-12-15 07:30:53 -08001722 ah->paprd_table_write_done = false;
1723
Sujith05020d22010-03-17 14:25:23 +05301724 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001725 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1726 REG_WRITE(ah,
1727 AR9271_RESET_POWER_DOWN_CONTROL,
1728 AR9271_RADIO_RF_RST);
1729 udelay(50);
1730 }
1731
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001732 if (!ath9k_hw_chip_reset(ah, chan)) {
Joe Perches38002762010-12-02 19:12:36 -08001733 ath_err(common, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001734 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001735 }
1736
Sujith05020d22010-03-17 14:25:23 +05301737 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001738 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1739 ah->htc_reset_init = false;
1740 REG_WRITE(ah,
1741 AR9271_RESET_POWER_DOWN_CONTROL,
1742 AR9271_GATE_MAC_CTL);
1743 udelay(50);
1744 }
1745
Sujith46fe7822009-09-17 09:25:25 +05301746 /* Restore TSF */
Felix Fietkauf860d522010-06-30 02:07:48 +02001747 if (tsf)
Sujith46fe7822009-09-17 09:25:25 +05301748 ath9k_hw_settsf64(ah, tsf);
1749
Felix Fietkau7a370812010-09-22 12:34:52 +02001750 if (AR_SREV_9280_20_OR_LATER(ah))
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301751 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001752
Sujithe9141f72010-06-01 15:14:10 +05301753 if (!AR_SREV_9300_20_OR_LATER(ah))
1754 ar9002_hw_enable_async_fifo(ah);
1755
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001756 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001757 if (r)
1758 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001759
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301760 if (mci)
1761 ar9003_mci_reset(ah, false, IS_CHAN_2GHZ(chan), save_fullsleep);
1762
Felix Fietkauf860d522010-06-30 02:07:48 +02001763 /*
1764 * Some AR91xx SoC devices frequently fail to accept TSF writes
1765 * right after the chip reset. When that happens, write a new
1766 * value after the initvals have been applied, with an offset
1767 * based on measured time difference
1768 */
1769 if (AR_SREV_9100(ah) && (ath9k_hw_gettsf64(ah) < tsf)) {
1770 tsf += 1500;
1771 ath9k_hw_settsf64(ah, tsf);
1772 }
1773
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001774 /* Setup MFP options for CCMP */
1775 if (AR_SREV_9280_20_OR_LATER(ah)) {
1776 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1777 * frames when constructing CCMP AAD. */
1778 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1779 0xc7ff);
1780 ah->sw_mgmt_crypto = false;
1781 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1782 /* Disable hardware crypto for management frames */
1783 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1784 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1785 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1786 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1787 ah->sw_mgmt_crypto = true;
1788 } else
1789 ah->sw_mgmt_crypto = true;
1790
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001791 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1792 ath9k_hw_set_delta_slope(ah, chan);
1793
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001794 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301795 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001796
Sujith7d0d0df2010-04-16 11:53:57 +05301797 ENABLE_REGWRITE_BUFFER(ah);
1798
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001799 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1800 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001801 | macStaId1
1802 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301803 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301804 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301805 | ah->sta_id1_defaults);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001806 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001807 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001808 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001809 REG_WRITE(ah, AR_ISR, ~0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001810 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1811
Sujith7d0d0df2010-04-16 11:53:57 +05301812 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301813
Sujith Manoharan00e00032011-01-26 21:59:05 +05301814 ath9k_hw_set_operating_mode(ah, ah->opmode);
1815
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001816 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001817 if (r)
1818 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001819
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001820 ath9k_hw_set_clockrate(ah);
1821
Sujith7d0d0df2010-04-16 11:53:57 +05301822 ENABLE_REGWRITE_BUFFER(ah);
1823
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001824 for (i = 0; i < AR_NUM_DCU; i++)
1825 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1826
Sujith7d0d0df2010-04-16 11:53:57 +05301827 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301828
Sujith2660b812009-02-09 13:27:26 +05301829 ah->intr_txqs = 0;
Felix Fietkauf4c607d2011-03-23 20:57:28 +01001830 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001831 ath9k_hw_resettxqueue(ah, i);
1832
Sujith2660b812009-02-09 13:27:26 +05301833 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001834 ath9k_hw_ani_cache_ini_regs(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001835 ath9k_hw_init_qos(ah);
1836
Sujith2660b812009-02-09 13:27:26 +05301837 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Felix Fietkau55821322010-12-17 00:57:01 +01001838 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301839
Felix Fietkau0005baf2010-01-15 02:33:40 +01001840 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001841
Felix Fietkaufe2b6af2011-07-09 11:12:51 +07001842 if (AR_SREV_9287(ah) && AR_SREV_9287_13_OR_LATER(ah)) {
1843 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
1844 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
1845 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
1846 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
1847 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1848 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301849 }
1850
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001851 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PRESERVE_SEQNUM);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001852
1853 ath9k_hw_set_dma(ah);
1854
1855 REG_WRITE(ah, AR_OBS, 8);
1856
Sujith0ce024c2009-12-14 14:57:00 +05301857 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001858 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1859 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1860 }
1861
Vasanthakumar Thiagarajan7f62a132010-04-15 17:39:19 -04001862 if (ah->config.tx_intr_mitigation) {
1863 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
1864 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
1865 }
1866
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001867 ath9k_hw_init_bb(ah, chan);
1868
Rajkumar Manoharan77a5a662011-10-13 11:00:37 +05301869 if (caldata) {
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301870 caldata->done_txiqcal_once = false;
Rajkumar Manoharan77a5a662011-10-13 11:00:37 +05301871 caldata->done_txclcal_once = false;
Rajkumar Manoharan324c74a2011-10-13 11:00:41 +05301872 caldata->rtt_hist.num_readings = 0;
Rajkumar Manoharan77a5a662011-10-13 11:00:37 +05301873 }
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001874 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001875 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001876
Rajkumar Manoharan93348922011-10-25 16:47:36 +05301877 ath9k_hw_loadnf(ah, chan);
1878 ath9k_hw_start_nfcal(ah, true);
1879
Sujith Manoharan528e5d32012-02-22 12:41:12 +05301880 if (mci && ar9003_mci_end_reset(ah, chan, caldata))
1881 return -EIO;
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301882
Sujith7d0d0df2010-04-16 11:53:57 +05301883 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001884
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001885 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001886 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1887
Sujith7d0d0df2010-04-16 11:53:57 +05301888 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301889
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001890 /*
1891 * For big endian systems turn on swapping for descriptors
1892 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001893 if (AR_SREV_9100(ah)) {
1894 u32 mask;
1895 mask = REG_READ(ah, AR_CFG);
1896 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Joe Perchesd2182b62011-12-15 14:55:53 -08001897 ath_dbg(common, RESET, "CFG Byte Swap Set 0x%x\n",
1898 mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001899 } else {
1900 mask =
1901 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1902 REG_WRITE(ah, AR_CFG, mask);
Joe Perchesd2182b62011-12-15 14:55:53 -08001903 ath_dbg(common, RESET, "Setting CFG 0x%x\n",
1904 REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001905 }
1906 } else {
Sujithcbba8cd2010-06-02 15:53:31 +05301907 if (common->bus_ops->ath_bus_type == ATH_USB) {
1908 /* Configure AR9271 target WLAN */
1909 if (AR_SREV_9271(ah))
1910 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
1911 else
1912 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1913 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001914#ifdef __BIG_ENDIAN
Gabor Juhos4033bda2011-06-21 11:23:35 +02001915 else if (AR_SREV_9330(ah) || AR_SREV_9340(ah))
Vasanthakumar Thiagarajan2be7bfe2011-04-19 19:29:14 +05301916 REG_RMW(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB, 0);
1917 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001918 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001919#endif
1920 }
1921
Sujith Manoharandbccdd12012-02-22 17:55:47 +05301922 if (ath9k_hw_btcoex_is_enabled(ah))
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301923 ath9k_hw_btcoex_enable(ah);
1924
Sujith Manoharan528e5d32012-02-22 12:41:12 +05301925 if (mci)
1926 ar9003_mci_check_bt(ah);
Mohammed Shafi Shajakhan63d32962011-11-30 10:41:27 +05301927
Rajkumar Manoharan51ac8cb2011-05-20 17:52:13 +05301928 if (AR_SREV_9300_20_OR_LATER(ah)) {
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001929 ar9003_hw_bb_watchdog_config(ah);
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001930
Rajkumar Manoharan51ac8cb2011-05-20 17:52:13 +05301931 ar9003_hw_disable_phy_restart(ah);
1932 }
1933
Felix Fietkau691680b2011-03-19 13:55:38 +01001934 ath9k_hw_apply_gpio_override(ah);
1935
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001936 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001937}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001938EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001939
Sujithf1dc5602008-10-29 10:16:30 +05301940/******************************/
1941/* Power Management (Chipset) */
1942/******************************/
1943
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001944/*
1945 * Notify Power Mgt is disabled in self-generated frames.
1946 * If requested, force chip to sleep.
1947 */
Sujithcbe61d82009-02-09 13:27:12 +05301948static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301949{
1950 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1951 if (setChip) {
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05301952 if (AR_SREV_9462(ah)) {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301953 REG_WRITE(ah, AR_TIMER_MODE,
1954 REG_READ(ah, AR_TIMER_MODE) & 0xFFFFFF00);
1955 REG_WRITE(ah, AR_NDP2_TIMER_MODE, REG_READ(ah,
1956 AR_NDP2_TIMER_MODE) & 0xFFFFFF00);
1957 REG_WRITE(ah, AR_SLP32_INC,
1958 REG_READ(ah, AR_SLP32_INC) & 0xFFF00000);
1959 /* xxx Required for WLAN only case ? */
1960 REG_WRITE(ah, AR_MCI_INTERRUPT_RX_MSG_EN, 0);
1961 udelay(100);
1962 }
1963
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001964 /*
1965 * Clear the RTC force wake bit to allow the
1966 * mac to go to sleep.
1967 */
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301968 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN);
1969
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05301970 if (AR_SREV_9462(ah))
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301971 udelay(100);
1972
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001973 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301974 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1975
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001976 /* Shutdown chip. Active low */
Sujith Manoharanc91ec462012-02-22 12:40:03 +05301977 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah)) {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301978 REG_CLR_BIT(ah, AR_RTC_RESET, AR_RTC_RESET_EN);
1979 udelay(2);
1980 }
Sujithf1dc5602008-10-29 10:16:30 +05301981 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001982
1983 /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */
Rafael J. Wysockia7322812011-11-26 23:37:43 +01001984 if (AR_SREV_9300_20_OR_LATER(ah))
1985 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001986}
1987
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001988/*
1989 * Notify Power Management is enabled in self-generating
1990 * frames. If request, set power mode of chip to
1991 * auto/normal. Duration in units of 128us (1/8 TU).
1992 */
Sujithcbe61d82009-02-09 13:27:12 +05301993static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001994{
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301995 u32 val;
1996
Sujithf1dc5602008-10-29 10:16:30 +05301997 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1998 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05301999 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002000
Sujithf1dc5602008-10-29 10:16:30 +05302001 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04002002 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05302003 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
2004 AR_RTC_FORCE_WAKE_ON_INT);
2005 } else {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302006
2007 /* When chip goes into network sleep, it could be waken
2008 * up by MCI_INT interrupt caused by BT's HW messages
2009 * (LNA_xxx, CONT_xxx) which chould be in a very fast
2010 * rate (~100us). This will cause chip to leave and
2011 * re-enter network sleep mode frequently, which in
2012 * consequence will have WLAN MCI HW to generate lots of
2013 * SYS_WAKING and SYS_SLEEPING messages which will make
2014 * BT CPU to busy to process.
2015 */
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05302016 if (AR_SREV_9462(ah)) {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302017 val = REG_READ(ah, AR_MCI_INTERRUPT_RX_MSG_EN) &
2018 ~AR_MCI_INTERRUPT_RX_HW_MSG_MASK;
2019 REG_WRITE(ah, AR_MCI_INTERRUPT_RX_MSG_EN, val);
2020 }
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04002021 /*
2022 * Clear the RTC force wake bit to allow the
2023 * mac to go to sleep.
2024 */
Sujithf1dc5602008-10-29 10:16:30 +05302025 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
2026 AR_RTC_FORCE_WAKE_EN);
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302027
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05302028 if (AR_SREV_9462(ah))
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302029 udelay(30);
Sujithf1dc5602008-10-29 10:16:30 +05302030 }
2031 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04002032
2033 /* Clear Bit 14 of AR_WA after putting chip into Net Sleep mode. */
2034 if (AR_SREV_9300_20_OR_LATER(ah))
2035 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Sujithf1dc5602008-10-29 10:16:30 +05302036}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002037
Sujithcbe61d82009-02-09 13:27:12 +05302038static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05302039{
2040 u32 val;
2041 int i;
2042
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04002043 /* Set Bits 14 and 17 of AR_WA before powering on the chip. */
2044 if (AR_SREV_9300_20_OR_LATER(ah)) {
2045 REG_WRITE(ah, AR_WA, ah->WARegVal);
2046 udelay(10);
2047 }
2048
Sujithf1dc5602008-10-29 10:16:30 +05302049 if (setChip) {
2050 if ((REG_READ(ah, AR_RTC_STATUS) &
2051 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
Joe Perches23677ce2012-02-09 11:17:23 +00002052 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Sujithf1dc5602008-10-29 10:16:30 +05302053 return false;
2054 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04002055 if (!AR_SREV_9300_20_OR_LATER(ah))
2056 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05302057 }
2058 if (AR_SREV_9100(ah))
2059 REG_SET_BIT(ah, AR_RTC_RESET,
2060 AR_RTC_RESET_EN);
2061
2062 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2063 AR_RTC_FORCE_WAKE_EN);
2064 udelay(50);
2065
2066 for (i = POWER_UP_TIME / 50; i > 0; i--) {
2067 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
2068 if (val == AR_RTC_STATUS_ON)
2069 break;
2070 udelay(50);
2071 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
2072 AR_RTC_FORCE_WAKE_EN);
2073 }
2074 if (i == 0) {
Joe Perches38002762010-12-02 19:12:36 -08002075 ath_err(ath9k_hw_common(ah),
2076 "Failed to wakeup in %uus\n",
2077 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05302078 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002079 }
2080 }
2081
Sujithf1dc5602008-10-29 10:16:30 +05302082 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
2083
2084 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002085}
2086
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002087bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05302088{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002089 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05302090 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05302091 static const char *modes[] = {
2092 "AWAKE",
2093 "FULL-SLEEP",
2094 "NETWORK SLEEP",
2095 "UNDEFINED"
2096 };
Sujithf1dc5602008-10-29 10:16:30 +05302097
Gabor Juhoscbdec972009-07-24 17:27:22 +02002098 if (ah->power_mode == mode)
2099 return status;
2100
Joe Perchesd2182b62011-12-15 14:55:53 -08002101 ath_dbg(common, RESET, "%s -> %s\n",
Joe Perches226afe62010-12-02 19:12:37 -08002102 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05302103
2104 switch (mode) {
2105 case ATH9K_PM_AWAKE:
2106 status = ath9k_hw_set_power_awake(ah, setChip);
Mohammed Shafi Shajakhan10109112011-11-30 10:41:24 +05302107
2108 if (ah->caps.hw_caps & ATH9K_HW_CAP_MCI)
2109 REG_WRITE(ah, AR_RTC_KEEP_AWAKE, 0x2);
2110
Sujithf1dc5602008-10-29 10:16:30 +05302111 break;
2112 case ATH9K_PM_FULL_SLEEP:
Sujith Manoharand1ca8b82012-02-22 12:41:01 +05302113 if (ah->caps.hw_caps & ATH9K_HW_CAP_MCI)
2114 ar9003_mci_set_full_sleep(ah);
Mohammed Shafi Shajakhan10109112011-11-30 10:41:24 +05302115
Sujithf1dc5602008-10-29 10:16:30 +05302116 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05302117 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05302118 break;
2119 case ATH9K_PM_NETWORK_SLEEP:
Mohammed Shafi Shajakhan10109112011-11-30 10:41:24 +05302120
2121 if (ah->caps.hw_caps & ATH9K_HW_CAP_MCI)
2122 REG_WRITE(ah, AR_RTC_KEEP_AWAKE, 0x2);
2123
Sujithf1dc5602008-10-29 10:16:30 +05302124 ath9k_set_power_network_sleep(ah, setChip);
2125 break;
2126 default:
Joe Perches38002762010-12-02 19:12:36 -08002127 ath_err(common, "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05302128 return false;
2129 }
Sujith2660b812009-02-09 13:27:26 +05302130 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05302131
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08002132 /*
2133 * XXX: If this warning never comes up after a while then
2134 * simply keep the ATH_DBG_WARN_ON_ONCE() but make
2135 * ath9k_hw_setpower() return type void.
2136 */
Sujith Manoharan97dcec52010-12-20 08:02:42 +05302137
2138 if (!(ah->ah_flags & AH_UNPLUGGED))
2139 ATH_DBG_WARN_ON_ONCE(!status);
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08002140
Sujithf1dc5602008-10-29 10:16:30 +05302141 return status;
2142}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002143EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05302144
Sujithf1dc5602008-10-29 10:16:30 +05302145/*******************/
2146/* Beacon Handling */
2147/*******************/
2148
Sujithcbe61d82009-02-09 13:27:12 +05302149void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002150{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002151 int flags = 0;
2152
Sujith7d0d0df2010-04-16 11:53:57 +05302153 ENABLE_REGWRITE_BUFFER(ah);
2154
Sujith2660b812009-02-09 13:27:26 +05302155 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08002156 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04002157 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002158 REG_SET_BIT(ah, AR_TXCFG,
2159 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
Felix Fietkaudd347f22011-03-22 21:54:17 +01002160 REG_WRITE(ah, AR_NEXT_NDP_TIMER, next_beacon +
2161 TU_TO_USEC(ah->atim_window ? ah->atim_window : 1));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002162 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08002163 case NL80211_IFTYPE_AP:
Felix Fietkaudd347f22011-03-22 21:54:17 +01002164 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, next_beacon);
2165 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, next_beacon -
2166 TU_TO_USEC(ah->config.dma_beacon_response_time));
2167 REG_WRITE(ah, AR_NEXT_SWBA, next_beacon -
2168 TU_TO_USEC(ah->config.sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002169 flags |=
2170 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
2171 break;
Colin McCabed97809d2008-12-01 13:38:55 -08002172 default:
Joe Perchesd2182b62011-12-15 14:55:53 -08002173 ath_dbg(ath9k_hw_common(ah), BEACON,
2174 "%s: unsupported opmode: %d\n", __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08002175 return;
2176 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002177 }
2178
Felix Fietkaudd347f22011-03-22 21:54:17 +01002179 REG_WRITE(ah, AR_BEACON_PERIOD, beacon_period);
2180 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, beacon_period);
2181 REG_WRITE(ah, AR_SWBA_PERIOD, beacon_period);
2182 REG_WRITE(ah, AR_NDP_PERIOD, beacon_period);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002183
Sujith7d0d0df2010-04-16 11:53:57 +05302184 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05302185
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002186 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
2187}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002188EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002189
Sujithcbe61d82009-02-09 13:27:12 +05302190void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302191 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002192{
2193 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05302194 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002195 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002196
Sujith7d0d0df2010-04-16 11:53:57 +05302197 ENABLE_REGWRITE_BUFFER(ah);
2198
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002199 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
2200
2201 REG_WRITE(ah, AR_BEACON_PERIOD,
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05302202 TU_TO_USEC(bs->bs_intval));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002203 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05302204 TU_TO_USEC(bs->bs_intval));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002205
Sujith7d0d0df2010-04-16 11:53:57 +05302206 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05302207
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002208 REG_RMW_FIELD(ah, AR_RSSI_THR,
2209 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
2210
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05302211 beaconintval = bs->bs_intval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002212
2213 if (bs->bs_sleepduration > beaconintval)
2214 beaconintval = bs->bs_sleepduration;
2215
2216 dtimperiod = bs->bs_dtimperiod;
2217 if (bs->bs_sleepduration > dtimperiod)
2218 dtimperiod = bs->bs_sleepduration;
2219
2220 if (beaconintval == dtimperiod)
2221 nextTbtt = bs->bs_nextdtim;
2222 else
2223 nextTbtt = bs->bs_nexttbtt;
2224
Joe Perchesd2182b62011-12-15 14:55:53 -08002225 ath_dbg(common, BEACON, "next DTIM %d\n", bs->bs_nextdtim);
2226 ath_dbg(common, BEACON, "next beacon %d\n", nextTbtt);
2227 ath_dbg(common, BEACON, "beacon period %d\n", beaconintval);
2228 ath_dbg(common, BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002229
Sujith7d0d0df2010-04-16 11:53:57 +05302230 ENABLE_REGWRITE_BUFFER(ah);
2231
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002232 REG_WRITE(ah, AR_NEXT_DTIM,
2233 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
2234 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
2235
2236 REG_WRITE(ah, AR_SLEEP1,
2237 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
2238 | AR_SLEEP1_ASSUME_DTIM);
2239
Sujith60b67f52008-08-07 10:52:38 +05302240 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002241 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
2242 else
2243 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
2244
2245 REG_WRITE(ah, AR_SLEEP2,
2246 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
2247
2248 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
2249 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
2250
Sujith7d0d0df2010-04-16 11:53:57 +05302251 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05302252
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002253 REG_SET_BIT(ah, AR_TIMER_MODE,
2254 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
2255 AR_DTIM_TIMER_EN);
2256
Sujith4af9cf42009-02-12 10:06:47 +05302257 /* TSF Out of Range Threshold */
2258 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002259}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002260EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002261
Sujithf1dc5602008-10-29 10:16:30 +05302262/*******************/
2263/* HW Capabilities */
2264/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002265
Felix Fietkau60540692011-07-19 08:46:44 +02002266static u8 fixup_chainmask(u8 chip_chainmask, u8 eeprom_chainmask)
2267{
2268 eeprom_chainmask &= chip_chainmask;
2269 if (eeprom_chainmask)
2270 return eeprom_chainmask;
2271 else
2272 return chip_chainmask;
2273}
2274
Zefir Kurtisi9a66af32011-12-14 20:16:33 -08002275/**
2276 * ath9k_hw_dfs_tested - checks if DFS has been tested with used chipset
2277 * @ah: the atheros hardware data structure
2278 *
2279 * We enable DFS support upstream on chipsets which have passed a series
2280 * of tests. The testing requirements are going to be documented. Desired
2281 * test requirements are documented at:
2282 *
2283 * http://wireless.kernel.org/en/users/Drivers/ath9k/dfs
2284 *
2285 * Once a new chipset gets properly tested an individual commit can be used
2286 * to document the testing for DFS for that chipset.
2287 */
2288static bool ath9k_hw_dfs_tested(struct ath_hw *ah)
2289{
2290
2291 switch (ah->hw_version.macVersion) {
2292 /* AR9580 will likely be our first target to get testing on */
2293 case AR_SREV_VERSION_9580:
2294 default:
2295 return false;
2296 }
2297}
2298
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002299int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002300{
Sujith2660b812009-02-09 13:27:26 +05302301 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002302 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002303 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau60540692011-07-19 08:46:44 +02002304 unsigned int chip_chainmask;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002305
Sujith Manoharan0ff2b5c2011-04-20 11:00:34 +05302306 u16 eeval;
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08002307 u8 ant_div_ctl1, tx_chainmask, rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002308
Sujithf74df6f2009-02-09 13:27:24 +05302309 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002310 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302311
Sujith2660b812009-02-09 13:27:26 +05302312 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05302313 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002314 if (regulatory->current_rd == 0x64 ||
2315 regulatory->current_rd == 0x65)
2316 regulatory->current_rd += 5;
2317 else if (regulatory->current_rd == 0x41)
2318 regulatory->current_rd = 0x43;
Joe Perchesd2182b62011-12-15 14:55:53 -08002319 ath_dbg(common, REGULATORY, "regdomain mapped to 0x%x\n",
2320 regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002321 }
Sujithdc2222a2008-08-14 13:26:55 +05302322
Sujithf74df6f2009-02-09 13:27:24 +05302323 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002324 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
Joe Perches38002762010-12-02 19:12:36 -08002325 ath_err(common,
2326 "no band has been marked as supported in EEPROM\n");
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002327 return -EINVAL;
2328 }
2329
Felix Fietkaud4659912010-10-14 16:02:39 +02002330 if (eeval & AR5416_OPFLAGS_11A)
2331 pCap->hw_caps |= ATH9K_HW_CAP_5GHZ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002332
Felix Fietkaud4659912010-10-14 16:02:39 +02002333 if (eeval & AR5416_OPFLAGS_11G)
2334 pCap->hw_caps |= ATH9K_HW_CAP_2GHZ;
Sujithf1dc5602008-10-29 10:16:30 +05302335
Felix Fietkau60540692011-07-19 08:46:44 +02002336 if (AR_SREV_9485(ah) || AR_SREV_9285(ah) || AR_SREV_9330(ah))
2337 chip_chainmask = 1;
Mohammed Shafi Shajakhanba5736a2011-11-30 21:10:52 +05302338 else if (AR_SREV_9462(ah))
2339 chip_chainmask = 3;
Felix Fietkau60540692011-07-19 08:46:44 +02002340 else if (!AR_SREV_9280_20_OR_LATER(ah))
2341 chip_chainmask = 7;
2342 else if (!AR_SREV_9300_20_OR_LATER(ah) || AR_SREV_9340(ah))
2343 chip_chainmask = 3;
2344 else
2345 chip_chainmask = 7;
2346
Sujithf74df6f2009-02-09 13:27:24 +05302347 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002348 /*
2349 * For AR9271 we will temporarilly uses the rx chainmax as read from
2350 * the EEPROM.
2351 */
Sujith8147f5d2009-02-20 15:13:23 +05302352 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002353 !(eeval & AR5416_OPFLAGS_11A) &&
2354 !(AR_SREV_9271(ah)))
2355 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05302356 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
Felix Fietkau598cdd52011-03-19 13:55:42 +01002357 else if (AR_SREV_9100(ah))
2358 pCap->rx_chainmask = 0x7;
Sujith8147f5d2009-02-20 15:13:23 +05302359 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002360 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05302361 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05302362
Felix Fietkau60540692011-07-19 08:46:44 +02002363 pCap->tx_chainmask = fixup_chainmask(chip_chainmask, pCap->tx_chainmask);
2364 pCap->rx_chainmask = fixup_chainmask(chip_chainmask, pCap->rx_chainmask);
Felix Fietkau82b2d332011-09-03 01:40:23 +02002365 ah->txchainmask = pCap->tx_chainmask;
2366 ah->rxchainmask = pCap->rx_chainmask;
Felix Fietkau60540692011-07-19 08:46:44 +02002367
Felix Fietkau7a370812010-09-22 12:34:52 +02002368 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05302369
Felix Fietkau02d2ebb2010-11-22 15:39:39 +01002370 /* enable key search for every frame in an aggregate */
2371 if (AR_SREV_9300_20_OR_LATER(ah))
2372 ah->misc_mode |= AR_PCU_ALWAYS_PERFORM_KEYSEARCH;
2373
Bruno Randolfce2220d2010-09-17 11:36:25 +09002374 common->crypt_caps |= ATH_CRYPT_CAP_CIPHER_AESCCM;
2375
Felix Fietkau0db156e2011-03-23 20:57:29 +01002376 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
Sujithf1dc5602008-10-29 10:16:30 +05302377 pCap->hw_caps |= ATH9K_HW_CAP_HT;
2378 else
2379 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
2380
Sujith5b5fa352010-03-17 14:25:15 +05302381 if (AR_SREV_9271(ah))
2382 pCap->num_gpio_pins = AR9271_NUM_GPIO;
Sujith88c1f4f2010-06-30 14:46:31 +05302383 else if (AR_DEVID_7010(ah))
2384 pCap->num_gpio_pins = AR7010_NUM_GPIO;
Mohammed Shafi Shajakhan6321eb02011-09-30 11:31:27 +05302385 else if (AR_SREV_9300_20_OR_LATER(ah))
2386 pCap->num_gpio_pins = AR9300_NUM_GPIO;
2387 else if (AR_SREV_9287_11_OR_LATER(ah))
2388 pCap->num_gpio_pins = AR9287_NUM_GPIO;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02002389 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302390 pCap->num_gpio_pins = AR9285_NUM_GPIO;
Felix Fietkau7a370812010-09-22 12:34:52 +02002391 else if (AR_SREV_9280_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302392 pCap->num_gpio_pins = AR928X_NUM_GPIO;
2393 else
2394 pCap->num_gpio_pins = AR_NUM_GPIO;
2395
Mohammed Shafi Shajakhan1b2538b2011-12-07 16:51:39 +05302396 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302397 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
Mohammed Shafi Shajakhan1b2538b2011-12-07 16:51:39 +05302398 else
Sujithf1dc5602008-10-29 10:16:30 +05302399 pCap->rts_aggr_limit = (8 * 1024);
Sujithf1dc5602008-10-29 10:16:30 +05302400
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302401#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05302402 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
2403 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
2404 ah->rfkill_gpio =
2405 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
2406 ah->rfkill_polarity =
2407 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05302408
2409 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
2410 }
2411#endif
Vasanthakumar Thiagarajand5d11542010-05-17 18:57:56 -07002412 if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
Vivek Natarajanbde748a2010-04-05 14:48:05 +05302413 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
2414 else
2415 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05302416
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302417 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302418 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
2419 else
2420 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
2421
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002422 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajan784ad502010-12-06 04:27:40 -08002423 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_FASTCLOCK;
Gabor Juhos0e707a92011-06-21 11:23:31 +02002424 if (!AR_SREV_9330(ah) && !AR_SREV_9485(ah))
Vasanthakumar Thiagarajan784ad502010-12-06 04:27:40 -08002425 pCap->hw_caps |= ATH9K_HW_CAP_LDPC;
2426
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002427 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
2428 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
2429 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002430 pCap->tx_desc_len = sizeof(struct ar9003_txc);
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04002431 pCap->txs_len = sizeof(struct ar9003_txs);
Luis R. Rodriguez6f481012011-01-20 17:47:39 -08002432 if (!ah->config.paprd_disable &&
2433 ah->eep_ops->get_eeprom(ah, EEP_PAPRD))
Felix Fietkau49352502010-06-12 00:33:59 -04002434 pCap->hw_caps |= ATH9K_HW_CAP_PAPRD;
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002435 } else {
2436 pCap->tx_desc_len = sizeof(struct ath_desc);
Felix Fietkaua949b172011-07-09 11:12:47 +07002437 if (AR_SREV_9280_20(ah))
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04002438 pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002439 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002440
Vasanthakumar Thiagarajan6c84ce02010-04-15 17:39:16 -04002441 if (AR_SREV_9300_20_OR_LATER(ah))
2442 pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
2443
Senthil Balasubramanian6ee63f52010-11-10 05:03:16 -08002444 if (AR_SREV_9300_20_OR_LATER(ah))
2445 ah->ent_mode = REG_READ(ah, AR_ENT_OTP);
2446
Felix Fietkaua42acef2010-09-22 12:34:54 +02002447 if (AR_SREV_9287_11_OR_LATER(ah) || AR_SREV_9271(ah))
Vasanthakumar Thiagarajan6473d242010-05-13 18:42:38 -07002448 pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
2449
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002450 if (AR_SREV_9285(ah))
2451 if (ah->eep_ops->get_eeprom(ah, EEP_MODAL_VER) >= 3) {
2452 ant_div_ctl1 =
2453 ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
2454 if ((ant_div_ctl1 & 0x1) && ((ant_div_ctl1 >> 3) & 0x1))
2455 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
2456 }
Mohammed Shafi Shajakhanea066d52010-11-23 20:42:27 +05302457 if (AR_SREV_9300_20_OR_LATER(ah)) {
2458 if (ah->eep_ops->get_eeprom(ah, EEP_CHAIN_MASK_REDUCE))
2459 pCap->hw_caps |= ATH9K_HW_CAP_APM;
2460 }
2461
2462
Gabor Juhos431da562011-06-21 11:23:41 +02002463 if (AR_SREV_9330(ah) || AR_SREV_9485(ah)) {
Mohammed Shafi Shajakhan21d2c632011-05-13 20:29:31 +05302464 ant_div_ctl1 = ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
2465 /*
2466 * enable the diversity-combining algorithm only when
2467 * both enable_lna_div and enable_fast_div are set
2468 * Table for Diversity
2469 * ant_div_alt_lnaconf bit 0-1
2470 * ant_div_main_lnaconf bit 2-3
2471 * ant_div_alt_gaintb bit 4
2472 * ant_div_main_gaintb bit 5
2473 * enable_ant_div_lnadiv bit 6
2474 * enable_ant_fast_div bit 7
2475 */
2476 if ((ant_div_ctl1 >> 0x6) == 0x3)
2477 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
2478 }
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002479
Vasanthakumar Thiagarajan8060e162010-12-06 04:27:42 -08002480 if (AR_SREV_9485_10(ah)) {
2481 pCap->pcie_lcr_extsync_en = true;
2482 pCap->pcie_lcr_offset = 0x80;
2483 }
2484
Zefir Kurtisi9a66af32011-12-14 20:16:33 -08002485 if (ath9k_hw_dfs_tested(ah))
2486 pCap->hw_caps |= ATH9K_HW_CAP_DFS;
2487
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08002488 tx_chainmask = pCap->tx_chainmask;
2489 rx_chainmask = pCap->rx_chainmask;
2490 while (tx_chainmask || rx_chainmask) {
2491 if (tx_chainmask & BIT(0))
2492 pCap->max_txchains++;
2493 if (rx_chainmask & BIT(0))
2494 pCap->max_rxchains++;
2495
2496 tx_chainmask >>= 1;
2497 rx_chainmask >>= 1;
2498 }
2499
Rajkumar Manoharan8ad74c42011-10-13 11:00:38 +05302500 if (AR_SREV_9300_20_OR_LATER(ah)) {
2501 ah->enabled_cals |= TX_IQ_CAL;
Mohammed Shafi Shajakhan6fea5932011-11-30 21:01:31 +05302502 if (AR_SREV_9485_OR_LATER(ah))
Rajkumar Manoharan8ad74c42011-10-13 11:00:38 +05302503 ah->enabled_cals |= TX_IQ_ON_AGC_CAL;
2504 }
Mohammed Shafi Shajakhan3789d592012-03-09 12:01:55 +05302505
2506 if (AR_SREV_9462(ah)) {
2507
2508 if (!(ah->ent_mode & AR_ENT_OTP_49GHZ_DISABLE))
2509 pCap->hw_caps |= ATH9K_HW_CAP_MCI;
2510
2511 if (AR_SREV_9462_20(ah))
2512 pCap->hw_caps |= ATH9K_HW_CAP_RTT;
2513
2514 }
2515
Rajkumar Manoharan324c74a2011-10-13 11:00:41 +05302516
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002517 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002518}
2519
Sujithf1dc5602008-10-29 10:16:30 +05302520/****************************/
2521/* GPIO / RFKILL / Antennae */
2522/****************************/
2523
Sujithcbe61d82009-02-09 13:27:12 +05302524static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302525 u32 gpio, u32 type)
2526{
2527 int addr;
2528 u32 gpio_shift, tmp;
2529
2530 if (gpio > 11)
2531 addr = AR_GPIO_OUTPUT_MUX3;
2532 else if (gpio > 5)
2533 addr = AR_GPIO_OUTPUT_MUX2;
2534 else
2535 addr = AR_GPIO_OUTPUT_MUX1;
2536
2537 gpio_shift = (gpio % 6) * 5;
2538
2539 if (AR_SREV_9280_20_OR_LATER(ah)
2540 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2541 REG_RMW(ah, addr, (type << gpio_shift),
2542 (0x1f << gpio_shift));
2543 } else {
2544 tmp = REG_READ(ah, addr);
2545 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2546 tmp &= ~(0x1f << gpio_shift);
2547 tmp |= (type << gpio_shift);
2548 REG_WRITE(ah, addr, tmp);
2549 }
2550}
2551
Sujithcbe61d82009-02-09 13:27:12 +05302552void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302553{
2554 u32 gpio_shift;
2555
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002556 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302557
Sujith88c1f4f2010-06-30 14:46:31 +05302558 if (AR_DEVID_7010(ah)) {
2559 gpio_shift = gpio;
2560 REG_RMW(ah, AR7010_GPIO_OE,
2561 (AR7010_GPIO_OE_AS_INPUT << gpio_shift),
2562 (AR7010_GPIO_OE_MASK << gpio_shift));
2563 return;
2564 }
Sujithf1dc5602008-10-29 10:16:30 +05302565
Sujith88c1f4f2010-06-30 14:46:31 +05302566 gpio_shift = gpio << 1;
Sujithf1dc5602008-10-29 10:16:30 +05302567 REG_RMW(ah,
2568 AR_GPIO_OE_OUT,
2569 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2570 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2571}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002572EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302573
Sujithcbe61d82009-02-09 13:27:12 +05302574u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302575{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302576#define MS_REG_READ(x, y) \
2577 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2578
Sujith2660b812009-02-09 13:27:26 +05302579 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302580 return 0xffffffff;
2581
Sujith88c1f4f2010-06-30 14:46:31 +05302582 if (AR_DEVID_7010(ah)) {
2583 u32 val;
2584 val = REG_READ(ah, AR7010_GPIO_IN);
2585 return (MS(val, AR7010_GPIO_IN_VAL) & AR_GPIO_BIT(gpio)) == 0;
2586 } else if (AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan93069902010-11-30 23:24:09 -08002587 return (MS(REG_READ(ah, AR_GPIO_IN), AR9300_GPIO_IN_VAL) &
2588 AR_GPIO_BIT(gpio)) != 0;
Felix Fietkau783dfca2010-04-15 17:38:11 -04002589 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05302590 return MS_REG_READ(AR9271, gpio) != 0;
Felix Fietkaua42acef2010-09-22 12:34:54 +02002591 else if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302592 return MS_REG_READ(AR9287, gpio) != 0;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02002593 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302594 return MS_REG_READ(AR9285, gpio) != 0;
Felix Fietkau7a370812010-09-22 12:34:52 +02002595 else if (AR_SREV_9280_20_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302596 return MS_REG_READ(AR928X, gpio) != 0;
2597 else
2598 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05302599}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002600EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302601
Sujithcbe61d82009-02-09 13:27:12 +05302602void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05302603 u32 ah_signal_type)
2604{
2605 u32 gpio_shift;
2606
Sujith88c1f4f2010-06-30 14:46:31 +05302607 if (AR_DEVID_7010(ah)) {
2608 gpio_shift = gpio;
2609 REG_RMW(ah, AR7010_GPIO_OE,
2610 (AR7010_GPIO_OE_AS_OUTPUT << gpio_shift),
2611 (AR7010_GPIO_OE_MASK << gpio_shift));
2612 return;
2613 }
2614
Sujithf1dc5602008-10-29 10:16:30 +05302615 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
Sujithf1dc5602008-10-29 10:16:30 +05302616 gpio_shift = 2 * gpio;
Sujithf1dc5602008-10-29 10:16:30 +05302617 REG_RMW(ah,
2618 AR_GPIO_OE_OUT,
2619 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2620 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2621}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002622EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05302623
Sujithcbe61d82009-02-09 13:27:12 +05302624void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302625{
Sujith88c1f4f2010-06-30 14:46:31 +05302626 if (AR_DEVID_7010(ah)) {
2627 val = val ? 0 : 1;
2628 REG_RMW(ah, AR7010_GPIO_OUT, ((val&1) << gpio),
2629 AR_GPIO_BIT(gpio));
2630 return;
2631 }
2632
Sujith5b5fa352010-03-17 14:25:15 +05302633 if (AR_SREV_9271(ah))
2634 val = ~val;
2635
Sujithf1dc5602008-10-29 10:16:30 +05302636 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2637 AR_GPIO_BIT(gpio));
2638}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002639EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302640
Sujithcbe61d82009-02-09 13:27:12 +05302641void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302642{
2643 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2644}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002645EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302646
Sujithf1dc5602008-10-29 10:16:30 +05302647/*********************/
2648/* General Operation */
2649/*********************/
2650
Sujithcbe61d82009-02-09 13:27:12 +05302651u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302652{
2653 u32 bits = REG_READ(ah, AR_RX_FILTER);
2654 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2655
2656 if (phybits & AR_PHY_ERR_RADAR)
2657 bits |= ATH9K_RX_FILTER_PHYRADAR;
2658 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2659 bits |= ATH9K_RX_FILTER_PHYERR;
2660
2661 return bits;
2662}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002663EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302664
Sujithcbe61d82009-02-09 13:27:12 +05302665void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302666{
2667 u32 phybits;
2668
Sujith7d0d0df2010-04-16 11:53:57 +05302669 ENABLE_REGWRITE_BUFFER(ah);
2670
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05302671 if (AR_SREV_9462(ah))
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302672 bits |= ATH9K_RX_FILTER_CONTROL_WRAPPER;
2673
Sujith7ea310b2009-09-03 12:08:43 +05302674 REG_WRITE(ah, AR_RX_FILTER, bits);
2675
Sujithf1dc5602008-10-29 10:16:30 +05302676 phybits = 0;
2677 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2678 phybits |= AR_PHY_ERR_RADAR;
2679 if (bits & ATH9K_RX_FILTER_PHYERR)
2680 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2681 REG_WRITE(ah, AR_PHY_ERR, phybits);
2682
2683 if (phybits)
Felix Fietkauca7a4de2011-03-23 20:57:26 +01002684 REG_SET_BIT(ah, AR_RXCFG, AR_RXCFG_ZLFDMA);
Sujithf1dc5602008-10-29 10:16:30 +05302685 else
Felix Fietkauca7a4de2011-03-23 20:57:26 +01002686 REG_CLR_BIT(ah, AR_RXCFG, AR_RXCFG_ZLFDMA);
Sujith7d0d0df2010-04-16 11:53:57 +05302687
2688 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302689}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002690EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302691
Sujithcbe61d82009-02-09 13:27:12 +05302692bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302693{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302694 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2695 return false;
2696
2697 ath9k_hw_init_pll(ah, NULL);
Felix Fietkau8efa7a82012-03-14 16:40:23 +01002698 ah->htc_reset_init = true;
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302699 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302700}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002701EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302702
Sujithcbe61d82009-02-09 13:27:12 +05302703bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302704{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002705 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302706 return false;
2707
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302708 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2709 return false;
2710
2711 ath9k_hw_init_pll(ah, NULL);
2712 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302713}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002714EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302715
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002716static int get_antenna_gain(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05302717{
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002718 enum eeprom_param gain_param;
Felix Fietkau9c204b42011-07-27 15:01:05 +02002719
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002720 if (IS_CHAN_2GHZ(chan))
2721 gain_param = EEP_ANTENNA_GAIN_2G;
2722 else
2723 gain_param = EEP_ANTENNA_GAIN_5G;
Sujithf1dc5602008-10-29 10:16:30 +05302724
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002725 return ah->eep_ops->get_eeprom(ah, gain_param);
2726}
2727
2728void ath9k_hw_apply_txpower(struct ath_hw *ah, struct ath9k_channel *chan)
2729{
2730 struct ath_regulatory *reg = ath9k_hw_regulatory(ah);
2731 struct ieee80211_channel *channel;
2732 int chan_pwr, new_pwr, max_gain;
2733 int ant_gain, ant_reduction = 0;
2734
2735 if (!chan)
2736 return;
2737
2738 channel = chan->chan;
2739 chan_pwr = min_t(int, channel->max_power * 2, MAX_RATE_POWER);
2740 new_pwr = min_t(int, chan_pwr, reg->power_limit);
2741 max_gain = chan_pwr - new_pwr + channel->max_antenna_gain * 2;
2742
2743 ant_gain = get_antenna_gain(ah, chan);
2744 if (ant_gain > max_gain)
2745 ant_reduction = ant_gain - max_gain;
Sujithf1dc5602008-10-29 10:16:30 +05302746
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002747 ah->eep_ops->set_txpower(ah, chan,
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002748 ath9k_regd_get_ctl(reg, chan),
2749 ant_reduction, new_pwr, false);
2750}
2751
2752void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit, bool test)
2753{
2754 struct ath_regulatory *reg = ath9k_hw_regulatory(ah);
2755 struct ath9k_channel *chan = ah->curchan;
2756 struct ieee80211_channel *channel = chan->chan;
2757
Dan Carpenter48ef5c42011-10-17 10:28:23 +03002758 reg->power_limit = min_t(u32, limit, MAX_RATE_POWER);
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002759 if (test)
2760 channel->max_power = MAX_RATE_POWER / 2;
2761
2762 ath9k_hw_apply_txpower(ah, chan);
2763
2764 if (test)
2765 channel->max_power = DIV_ROUND_UP(reg->max_power_level, 2);
Sujithf1dc5602008-10-29 10:16:30 +05302766}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002767EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302768
Sujithcbe61d82009-02-09 13:27:12 +05302769void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302770{
Sujith2660b812009-02-09 13:27:26 +05302771 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302772}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002773EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302774
Sujithcbe61d82009-02-09 13:27:12 +05302775void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302776{
2777 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2778 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2779}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002780EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302781
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002782void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302783{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002784 struct ath_common *common = ath9k_hw_common(ah);
2785
2786 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2787 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2788 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302789}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002790EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302791
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002792#define ATH9K_MAX_TSF_READ 10
2793
Sujithcbe61d82009-02-09 13:27:12 +05302794u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302795{
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002796 u32 tsf_lower, tsf_upper1, tsf_upper2;
2797 int i;
Sujithf1dc5602008-10-29 10:16:30 +05302798
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002799 tsf_upper1 = REG_READ(ah, AR_TSF_U32);
2800 for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
2801 tsf_lower = REG_READ(ah, AR_TSF_L32);
2802 tsf_upper2 = REG_READ(ah, AR_TSF_U32);
2803 if (tsf_upper2 == tsf_upper1)
2804 break;
2805 tsf_upper1 = tsf_upper2;
2806 }
Sujithf1dc5602008-10-29 10:16:30 +05302807
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002808 WARN_ON( i == ATH9K_MAX_TSF_READ );
2809
2810 return (((u64)tsf_upper1 << 32) | tsf_lower);
Sujithf1dc5602008-10-29 10:16:30 +05302811}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002812EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302813
Sujithcbe61d82009-02-09 13:27:12 +05302814void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002815{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002816 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002817 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002818}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002819EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002820
Sujithcbe61d82009-02-09 13:27:12 +05302821void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302822{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002823 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2824 AH_TSF_WRITE_TIMEOUT))
Joe Perchesd2182b62011-12-15 14:55:53 -08002825 ath_dbg(ath9k_hw_common(ah), RESET,
Joe Perches226afe62010-12-02 19:12:37 -08002826 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002827
Sujithf1dc5602008-10-29 10:16:30 +05302828 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002829}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002830EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002831
Sujith54e4cec2009-08-07 09:45:09 +05302832void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002833{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002834 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302835 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002836 else
Sujith2660b812009-02-09 13:27:26 +05302837 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002838}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002839EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002840
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002841void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002842{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002843 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05302844 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002845
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002846 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05302847 macmode = AR_2040_JOINED_RX_CLEAR;
2848 else
2849 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002850
Sujithf1dc5602008-10-29 10:16:30 +05302851 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002852}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302853
2854/* HW Generic timers configuration */
2855
2856static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2857{
2858 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2859 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2860 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2861 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2862 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2863 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2864 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2865 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2866 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2867 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2868 AR_NDP2_TIMER_MODE, 0x0002},
2869 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2870 AR_NDP2_TIMER_MODE, 0x0004},
2871 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2872 AR_NDP2_TIMER_MODE, 0x0008},
2873 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2874 AR_NDP2_TIMER_MODE, 0x0010},
2875 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2876 AR_NDP2_TIMER_MODE, 0x0020},
2877 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2878 AR_NDP2_TIMER_MODE, 0x0040},
2879 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2880 AR_NDP2_TIMER_MODE, 0x0080}
2881};
2882
2883/* HW generic timer primitives */
2884
2885/* compute and clear index of rightmost 1 */
2886static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
2887{
2888 u32 b;
2889
2890 b = *mask;
2891 b &= (0-b);
2892 *mask &= ~b;
2893 b *= debruijn32;
2894 b >>= 27;
2895
2896 return timer_table->gen_timer_index[b];
2897}
2898
Felix Fietkaudd347f22011-03-22 21:54:17 +01002899u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302900{
2901 return REG_READ(ah, AR_TSF_L32);
2902}
Felix Fietkaudd347f22011-03-22 21:54:17 +01002903EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302904
2905struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2906 void (*trigger)(void *),
2907 void (*overflow)(void *),
2908 void *arg,
2909 u8 timer_index)
2910{
2911 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2912 struct ath_gen_timer *timer;
2913
2914 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
2915
2916 if (timer == NULL) {
Joe Perches38002762010-12-02 19:12:36 -08002917 ath_err(ath9k_hw_common(ah),
2918 "Failed to allocate memory for hw timer[%d]\n",
2919 timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302920 return NULL;
2921 }
2922
2923 /* allocate a hardware generic timer slot */
2924 timer_table->timers[timer_index] = timer;
2925 timer->index = timer_index;
2926 timer->trigger = trigger;
2927 timer->overflow = overflow;
2928 timer->arg = arg;
2929
2930 return timer;
2931}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002932EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302933
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002934void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2935 struct ath_gen_timer *timer,
Vasanthakumar Thiagarajan788f6872011-04-21 18:33:27 +05302936 u32 trig_timeout,
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002937 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302938{
2939 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
Vasanthakumar Thiagarajan788f6872011-04-21 18:33:27 +05302940 u32 tsf, timer_next;
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302941
2942 BUG_ON(!timer_period);
2943
2944 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
2945
2946 tsf = ath9k_hw_gettsf32(ah);
2947
Vasanthakumar Thiagarajan788f6872011-04-21 18:33:27 +05302948 timer_next = tsf + trig_timeout;
2949
Joe Perchesd2182b62011-12-15 14:55:53 -08002950 ath_dbg(ath9k_hw_common(ah), HWTIMER,
Joe Perches226afe62010-12-02 19:12:37 -08002951 "current tsf %x period %x timer_next %x\n",
2952 tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302953
2954 /*
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302955 * Program generic timer registers
2956 */
2957 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2958 timer_next);
2959 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2960 timer_period);
2961 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2962 gen_tmr_configuration[timer->index].mode_mask);
2963
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05302964 if (AR_SREV_9462(ah)) {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302965 /*
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05302966 * Starting from AR9462, each generic timer can select which tsf
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302967 * to use. But we still follow the old rule, 0 - 7 use tsf and
2968 * 8 - 15 use tsf2.
2969 */
2970 if ((timer->index < AR_GEN_TIMER_BANK_1_LEN))
2971 REG_CLR_BIT(ah, AR_MAC_PCU_GEN_TIMER_TSF_SEL,
2972 (1 << timer->index));
2973 else
2974 REG_SET_BIT(ah, AR_MAC_PCU_GEN_TIMER_TSF_SEL,
2975 (1 << timer->index));
2976 }
2977
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302978 /* Enable both trigger and thresh interrupt masks */
2979 REG_SET_BIT(ah, AR_IMR_S5,
2980 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2981 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302982}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002983EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302984
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002985void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302986{
2987 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2988
2989 if ((timer->index < AR_FIRST_NDP_TIMER) ||
2990 (timer->index >= ATH_MAX_GEN_TIMER)) {
2991 return;
2992 }
2993
2994 /* Clear generic timer enable bits. */
2995 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2996 gen_tmr_configuration[timer->index].mode_mask);
2997
2998 /* Disable both trigger and thresh interrupt masks */
2999 REG_CLR_BIT(ah, AR_IMR_S5,
3000 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
3001 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
3002
3003 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303004}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003005EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303006
3007void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
3008{
3009 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3010
3011 /* free the hardware generic timer slot */
3012 timer_table->timers[timer->index] = NULL;
3013 kfree(timer);
3014}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003015EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303016
3017/*
3018 * Generic Timer Interrupts handling
3019 */
3020void ath_gen_timer_isr(struct ath_hw *ah)
3021{
3022 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
3023 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07003024 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303025 u32 trigger_mask, thresh_mask, index;
3026
3027 /* get hardware generic timer interrupt status */
3028 trigger_mask = ah->intr_gen_timer_trigger;
3029 thresh_mask = ah->intr_gen_timer_thresh;
3030 trigger_mask &= timer_table->timer_mask.val;
3031 thresh_mask &= timer_table->timer_mask.val;
3032
3033 trigger_mask &= ~thresh_mask;
3034
3035 while (thresh_mask) {
3036 index = rightmost_index(timer_table, &thresh_mask);
3037 timer = timer_table->timers[index];
3038 BUG_ON(!timer);
Joe Perchesd2182b62011-12-15 14:55:53 -08003039 ath_dbg(common, HWTIMER, "TSF overflow for Gen timer %d\n",
3040 index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303041 timer->overflow(timer->arg);
3042 }
3043
3044 while (trigger_mask) {
3045 index = rightmost_index(timer_table, &trigger_mask);
3046 timer = timer_table->timers[index];
3047 BUG_ON(!timer);
Joe Perchesd2182b62011-12-15 14:55:53 -08003048 ath_dbg(common, HWTIMER,
Joe Perches226afe62010-12-02 19:12:37 -08003049 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05303050 timer->trigger(timer->arg);
3051 }
3052}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04003053EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003054
Sujith05020d22010-03-17 14:25:23 +05303055/********/
3056/* HTC */
3057/********/
3058
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003059static struct {
3060 u32 version;
3061 const char * name;
3062} ath_mac_bb_names[] = {
3063 /* Devices with external radios */
3064 { AR_SREV_VERSION_5416_PCI, "5416" },
3065 { AR_SREV_VERSION_5416_PCIE, "5418" },
3066 { AR_SREV_VERSION_9100, "9100" },
3067 { AR_SREV_VERSION_9160, "9160" },
3068 /* Single-chip solutions */
3069 { AR_SREV_VERSION_9280, "9280" },
3070 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04003071 { AR_SREV_VERSION_9287, "9287" },
3072 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguezec839032010-04-15 17:39:20 -04003073 { AR_SREV_VERSION_9300, "9300" },
Gabor Juhos2c8e5932011-06-21 11:23:21 +02003074 { AR_SREV_VERSION_9330, "9330" },
Florian Fainelli397e5d52011-08-25 21:33:48 +02003075 { AR_SREV_VERSION_9340, "9340" },
Senthil Balasubramanian8f06ca22011-04-01 17:16:33 +05303076 { AR_SREV_VERSION_9485, "9485" },
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05303077 { AR_SREV_VERSION_9462, "9462" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003078};
3079
3080/* For devices with external radios */
3081static struct {
3082 u16 version;
3083 const char * name;
3084} ath_rf_names[] = {
3085 { 0, "5133" },
3086 { AR_RAD5133_SREV_MAJOR, "5133" },
3087 { AR_RAD5122_SREV_MAJOR, "5122" },
3088 { AR_RAD2133_SREV_MAJOR, "2133" },
3089 { AR_RAD2122_SREV_MAJOR, "2122" }
3090};
3091
3092/*
3093 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
3094 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003095static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003096{
3097 int i;
3098
3099 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
3100 if (ath_mac_bb_names[i].version == mac_bb_version) {
3101 return ath_mac_bb_names[i].name;
3102 }
3103 }
3104
3105 return "????";
3106}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003107
3108/*
3109 * Return the RF name. "????" is returned if the RF is unknown.
3110 * Used for devices with external radios.
3111 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003112static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04003113{
3114 int i;
3115
3116 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
3117 if (ath_rf_names[i].version == rf_version) {
3118 return ath_rf_names[i].name;
3119 }
3120 }
3121
3122 return "????";
3123}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003124
3125void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
3126{
3127 int used;
3128
3129 /* chipsets >= AR9280 are single-chip */
Felix Fietkau7a370812010-09-22 12:34:52 +02003130 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04003131 used = snprintf(hw_name, len,
3132 "Atheros AR%s Rev:%x",
3133 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3134 ah->hw_version.macRev);
3135 }
3136 else {
3137 used = snprintf(hw_name, len,
3138 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
3139 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
3140 ah->hw_version.macRev,
3141 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
3142 AR_RADIO_SREV_MAJOR)),
3143 ah->hw_version.phyRev);
3144 }
3145
3146 hw_name[used] = '\0';
3147}
3148EXPORT_SYMBOL(ath9k_hw_name);