blob: ba5734aa46c42ae97634b8f765063bcb00724c30 [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"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070026
Sujithcbe61d82009-02-09 13:27:12 +053027static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070028
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040029MODULE_AUTHOR("Atheros Communications");
30MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
31MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
32MODULE_LICENSE("Dual BSD/GPL");
33
34static int __init ath9k_init(void)
35{
36 return 0;
37}
38module_init(ath9k_init);
39
40static void __exit ath9k_exit(void)
41{
42 return;
43}
44module_exit(ath9k_exit);
45
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040046/* Private hardware callbacks */
47
48static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
49{
50 ath9k_hw_private_ops(ah)->init_cal_settings(ah);
51}
52
53static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
54{
55 ath9k_hw_private_ops(ah)->init_mode_regs(ah);
56}
57
Luis R. Rodriguez64773962010-04-15 17:38:17 -040058static u32 ath9k_hw_compute_pll_control(struct ath_hw *ah,
59 struct ath9k_channel *chan)
60{
61 return ath9k_hw_private_ops(ah)->compute_pll_control(ah, chan);
62}
63
Luis R. Rodriguez991312d2010-04-15 17:39:05 -040064static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
65{
66 if (!ath9k_hw_private_ops(ah)->init_mode_gain_regs)
67 return;
68
69 ath9k_hw_private_ops(ah)->init_mode_gain_regs(ah);
70}
71
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -040072static void ath9k_hw_ani_cache_ini_regs(struct ath_hw *ah)
73{
74 /* You will not have this callback if using the old ANI */
75 if (!ath9k_hw_private_ops(ah)->ani_cache_ini_regs)
76 return;
77
78 ath9k_hw_private_ops(ah)->ani_cache_ini_regs(ah);
79}
80
Sujithf1dc5602008-10-29 10:16:30 +053081/********************/
82/* Helper Functions */
83/********************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070084
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020085static void ath9k_hw_set_clockrate(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +053086{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070087 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020088 struct ath_common *common = ath9k_hw_common(ah);
89 unsigned int clockrate;
Sujithcbe61d82009-02-09 13:27:12 +053090
Felix Fietkau087b6ff2011-07-09 11:12:49 +070091 /* AR9287 v1.3+ uses async FIFO and runs the MAC at 117 MHz */
92 if (AR_SREV_9287(ah) && AR_SREV_9287_13_OR_LATER(ah))
93 clockrate = 117;
94 else if (!ah->curchan) /* should really check for CCK instead */
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020095 clockrate = ATH9K_CLOCK_RATE_CCK;
96 else if (conf->channel->band == IEEE80211_BAND_2GHZ)
97 clockrate = ATH9K_CLOCK_RATE_2GHZ_OFDM;
98 else if (ah->caps.hw_caps & ATH9K_HW_CAP_FASTCLOCK)
99 clockrate = ATH9K_CLOCK_FAST_RATE_5GHZ_OFDM;
Vasanthakumar Thiagarajane5553722010-04-26 15:04:33 -0400100 else
Felix Fietkaudfdac8a2010-10-08 22:13:51 +0200101 clockrate = ATH9K_CLOCK_RATE_5GHZ_OFDM;
102
103 if (conf_is_ht40(conf))
104 clockrate *= 2;
105
Felix Fietkau906c7202011-07-09 11:12:48 +0700106 if (ah->curchan) {
107 if (IS_CHAN_HALF_RATE(ah->curchan))
108 clockrate /= 2;
109 if (IS_CHAN_QUARTER_RATE(ah->curchan))
110 clockrate /= 4;
111 }
112
Felix Fietkaudfdac8a2010-10-08 22:13:51 +0200113 common->clockrate = clockrate;
Sujithf1dc5602008-10-29 10:16:30 +0530114}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700115
Sujithcbe61d82009-02-09 13:27:12 +0530116static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +0530117{
Felix Fietkaudfdac8a2010-10-08 22:13:51 +0200118 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +0530119
Felix Fietkaudfdac8a2010-10-08 22:13:51 +0200120 return usecs * common->clockrate;
Sujithf1dc5602008-10-29 10:16:30 +0530121}
122
Sujith0caa7b12009-02-16 13:23:20 +0530123bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700124{
125 int i;
126
Sujith0caa7b12009-02-16 13:23:20 +0530127 BUG_ON(timeout < AH_TIME_QUANTUM);
128
129 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700130 if ((REG_READ(ah, reg) & mask) == val)
131 return true;
132
133 udelay(AH_TIME_QUANTUM);
134 }
Sujith04bd46382008-11-28 22:18:05 +0530135
Joe Perches226afe62010-12-02 19:12:37 -0800136 ath_dbg(ath9k_hw_common(ah), ATH_DBG_ANY,
137 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
138 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +0530139
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700140 return false;
141}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400142EXPORT_SYMBOL(ath9k_hw_wait);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700143
Felix Fietkaua9b6b252011-03-23 20:57:27 +0100144void ath9k_hw_write_array(struct ath_hw *ah, struct ar5416IniArray *array,
145 int column, unsigned int *writecnt)
146{
147 int r;
148
149 ENABLE_REGWRITE_BUFFER(ah);
150 for (r = 0; r < array->ia_rows; r++) {
151 REG_WRITE(ah, INI_RA(array, r, 0),
152 INI_RA(array, r, column));
153 DO_DELAY(*writecnt);
154 }
155 REGWRITE_BUFFER_FLUSH(ah);
156}
157
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700158u32 ath9k_hw_reverse_bits(u32 val, u32 n)
159{
160 u32 retval;
161 int i;
162
163 for (i = 0, retval = 0; i < n; i++) {
164 retval = (retval << 1) | (val & 1);
165 val >>= 1;
166 }
167 return retval;
168}
169
Sujithcbe61d82009-02-09 13:27:12 +0530170u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Felix Fietkau545750d2009-11-23 22:21:01 +0100171 u8 phy, int kbps,
Sujithf1dc5602008-10-29 10:16:30 +0530172 u32 frameLen, u16 rateix,
173 bool shortPreamble)
174{
175 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
Sujithf1dc5602008-10-29 10:16:30 +0530176
177 if (kbps == 0)
178 return 0;
179
Felix Fietkau545750d2009-11-23 22:21:01 +0100180 switch (phy) {
Sujith46d14a52008-11-18 09:08:13 +0530181 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530182 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Felix Fietkau545750d2009-11-23 22:21:01 +0100183 if (shortPreamble)
Sujithf1dc5602008-10-29 10:16:30 +0530184 phyTime >>= 1;
185 numBits = frameLen << 3;
186 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
187 break;
Sujith46d14a52008-11-18 09:08:13 +0530188 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530189 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530190 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
191 numBits = OFDM_PLCP_BITS + (frameLen << 3);
192 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
193 txTime = OFDM_SIFS_TIME_QUARTER
194 + OFDM_PREAMBLE_TIME_QUARTER
195 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530196 } else if (ah->curchan &&
197 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530198 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
199 numBits = OFDM_PLCP_BITS + (frameLen << 3);
200 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
201 txTime = OFDM_SIFS_TIME_HALF +
202 OFDM_PREAMBLE_TIME_HALF
203 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
204 } else {
205 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
206 numBits = OFDM_PLCP_BITS + (frameLen << 3);
207 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
208 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
209 + (numSymbols * OFDM_SYMBOL_TIME);
210 }
211 break;
212 default:
Joe Perches38002762010-12-02 19:12:36 -0800213 ath_err(ath9k_hw_common(ah),
214 "Unknown phy %u (rate ix %u)\n", phy, rateix);
Sujithf1dc5602008-10-29 10:16:30 +0530215 txTime = 0;
216 break;
217 }
218
219 return txTime;
220}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400221EXPORT_SYMBOL(ath9k_hw_computetxtime);
Sujithf1dc5602008-10-29 10:16:30 +0530222
Sujithcbe61d82009-02-09 13:27:12 +0530223void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530224 struct ath9k_channel *chan,
225 struct chan_centers *centers)
226{
227 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530228
229 if (!IS_CHAN_HT40(chan)) {
230 centers->ctl_center = centers->ext_center =
231 centers->synth_center = chan->channel;
232 return;
233 }
234
235 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
236 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
237 centers->synth_center =
238 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
239 extoff = 1;
240 } else {
241 centers->synth_center =
242 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
243 extoff = -1;
244 }
245
246 centers->ctl_center =
247 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700248 /* 25 MHz spacing is supported by hw but not on upper layers */
Sujithf1dc5602008-10-29 10:16:30 +0530249 centers->ext_center =
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700250 centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
Sujithf1dc5602008-10-29 10:16:30 +0530251}
252
253/******************/
254/* Chip Revisions */
255/******************/
256
Sujithcbe61d82009-02-09 13:27:12 +0530257static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530258{
259 u32 val;
260
Vasanthakumar Thiagarajanecb1d382011-04-19 19:29:18 +0530261 switch (ah->hw_version.devid) {
262 case AR5416_AR9100_DEVID:
263 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
264 break;
Gabor Juhos37625612011-06-21 11:23:23 +0200265 case AR9300_DEVID_AR9330:
266 ah->hw_version.macVersion = AR_SREV_VERSION_9330;
267 if (ah->get_mac_revision) {
268 ah->hw_version.macRev = ah->get_mac_revision();
269 } else {
270 val = REG_READ(ah, AR_SREV);
271 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
272 }
273 return;
Vasanthakumar Thiagarajanecb1d382011-04-19 19:29:18 +0530274 case AR9300_DEVID_AR9340:
275 ah->hw_version.macVersion = AR_SREV_VERSION_9340;
276 val = REG_READ(ah, AR_SREV);
277 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
278 return;
279 }
280
Sujithf1dc5602008-10-29 10:16:30 +0530281 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
282
283 if (val == 0xFF) {
284 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530285 ah->hw_version.macVersion =
286 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
287 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Mohammed Shafi Shajakhan76ed94b2011-09-30 11:31:28 +0530288
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +0530289 if (AR_SREV_9462(ah))
Mohammed Shafi Shajakhan76ed94b2011-09-30 11:31:28 +0530290 ah->is_pciexpress = true;
291 else
292 ah->is_pciexpress = (val &
293 AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530294 } else {
295 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530296 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530297
Sujithd535a422009-02-09 13:27:06 +0530298 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530299
Sujithd535a422009-02-09 13:27:06 +0530300 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530301 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530302 }
303}
304
Sujithf1dc5602008-10-29 10:16:30 +0530305/************************************/
306/* HW Attach, Detach, Init Routines */
307/************************************/
308
Sujithcbe61d82009-02-09 13:27:12 +0530309static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530310{
Felix Fietkau040b74f2010-12-12 00:51:07 +0100311 if (!AR_SREV_5416(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530312 return;
313
314 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
315 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
316 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
317 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
318 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
319 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
320 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
321 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
322 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
323
324 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
325}
326
Stanislaw Gruszkad4930082011-07-29 15:59:08 +0200327static void ath9k_hw_aspm_init(struct ath_hw *ah)
328{
329 struct ath_common *common = ath9k_hw_common(ah);
330
331 if (common->bus_ops->aspm_init)
332 common->bus_ops->aspm_init(common);
333}
334
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400335/* This should work for all families including legacy */
Sujithcbe61d82009-02-09 13:27:12 +0530336static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530337{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700338 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400339 u32 regAddr[2] = { AR_STA_ID0 };
Sujithf1dc5602008-10-29 10:16:30 +0530340 u32 regHold[2];
Joe Perches07b2fa52010-11-20 18:38:53 -0800341 static const u32 patternData[4] = {
342 0x55555555, 0xaaaaaaaa, 0x66666666, 0x99999999
343 };
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400344 int i, j, loop_max;
Sujithf1dc5602008-10-29 10:16:30 +0530345
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400346 if (!AR_SREV_9300_20_OR_LATER(ah)) {
347 loop_max = 2;
348 regAddr[1] = AR_PHY_BASE + (8 << 2);
349 } else
350 loop_max = 1;
351
352 for (i = 0; i < loop_max; i++) {
Sujithf1dc5602008-10-29 10:16:30 +0530353 u32 addr = regAddr[i];
354 u32 wrData, rdData;
355
356 regHold[i] = REG_READ(ah, addr);
357 for (j = 0; j < 0x100; j++) {
358 wrData = (j << 16) | j;
359 REG_WRITE(ah, addr, wrData);
360 rdData = REG_READ(ah, addr);
361 if (rdData != wrData) {
Joe Perches38002762010-12-02 19:12:36 -0800362 ath_err(common,
363 "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
364 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530365 return false;
366 }
367 }
368 for (j = 0; j < 4; j++) {
369 wrData = patternData[j];
370 REG_WRITE(ah, addr, wrData);
371 rdData = REG_READ(ah, addr);
372 if (wrData != rdData) {
Joe Perches38002762010-12-02 19:12:36 -0800373 ath_err(common,
374 "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
375 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530376 return false;
377 }
378 }
379 REG_WRITE(ah, regAddr[i], regHold[i]);
380 }
381 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530382
Sujithf1dc5602008-10-29 10:16:30 +0530383 return true;
384}
385
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700386static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700387{
388 int i;
389
Sujith2660b812009-02-09 13:27:26 +0530390 ah->config.dma_beacon_response_time = 2;
391 ah->config.sw_beacon_response_time = 10;
392 ah->config.additional_swba_backoff = 0;
393 ah->config.ack_6mb = 0x0;
394 ah->config.cwm_ignore_extcca = 0;
Sujith2660b812009-02-09 13:27:26 +0530395 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530396 ah->config.pcie_waen = 0;
397 ah->config.analog_shiftreg = 1;
Luis R. Rodriguez03c72512010-06-12 00:33:46 -0400398 ah->config.enable_ani = true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700399
400 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530401 ah->config.spurchans[i][0] = AR_NO_SPUR;
402 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700403 }
404
Luis R. Rodriguez6f481012011-01-20 17:47:39 -0800405 /* PAPRD needs some more work to be enabled */
406 ah->config.paprd_disable = 1;
407
Sujith0ce024c2009-12-14 14:57:00 +0530408 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez6a0ec302010-06-21 18:38:49 -0400409 ah->config.pcieSerDesWrite = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400410
411 /*
412 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
413 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
414 * This means we use it for all AR5416 devices, and the few
415 * minor PCI AR9280 devices out there.
416 *
417 * Serialization is required because these devices do not handle
418 * well the case of two concurrent reads/writes due to the latency
419 * involved. During one read/write another read/write can be issued
420 * on another CPU while the previous read/write may still be working
421 * on our hardware, if we hit this case the hardware poops in a loop.
422 * We prevent this by serializing reads and writes.
423 *
424 * This issue is not present on PCI-Express devices or pre-AR5416
425 * devices (legacy, 802.11abg).
426 */
427 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700428 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700429}
430
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700431static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700432{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700433 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
434
435 regulatory->country_code = CTRY_DEFAULT;
436 regulatory->power_limit = MAX_RATE_POWER;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700437
Sujithd535a422009-02-09 13:27:06 +0530438 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530439 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700440
Sujith2660b812009-02-09 13:27:26 +0530441 ah->atim_window = 0;
Felix Fietkau16f24112010-06-12 17:22:32 +0200442 ah->sta_id1_defaults =
443 AR_STA_ID1_CRPT_MIC_ENABLE |
444 AR_STA_ID1_MCAST_KSRCH;
Felix Fietkauf1717602011-03-19 13:55:41 +0100445 if (AR_SREV_9100(ah))
446 ah->sta_id1_defaults |= AR_STA_ID1_AR9100_BA_FIX;
Sujith2660b812009-02-09 13:27:26 +0530447 ah->enable_32kHz_clock = DONT_USE_32KHZ;
Rajkumar Manoharane3f2acc2011-08-27 11:22:59 +0530448 ah->slottime = ATH9K_SLOT_TIME_9;
Sujith2660b812009-02-09 13:27:26 +0530449 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200450 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700451}
452
Sujithcbe61d82009-02-09 13:27:12 +0530453static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700454{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700455 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530456 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700457 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530458 u16 eeval;
Joe Perches07b2fa52010-11-20 18:38:53 -0800459 static const u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700460
Sujithf1dc5602008-10-29 10:16:30 +0530461 sum = 0;
462 for (i = 0; i < 3; i++) {
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400463 eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
Sujithf1dc5602008-10-29 10:16:30 +0530464 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700465 common->macaddr[2 * i] = eeval >> 8;
466 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700467 }
Sujithd8baa932009-03-30 15:28:25 +0530468 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530469 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700470
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700471 return 0;
472}
473
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700474static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700475{
Sujith Manoharan6cae913d2011-01-04 13:16:37 +0530476 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700477 int ecode;
478
Sujith Manoharan6cae913d2011-01-04 13:16:37 +0530479 if (common->bus_ops->ath_bus_type != ATH_USB) {
Sujith527d4852010-03-17 14:25:16 +0530480 if (!ath9k_hw_chip_test(ah))
481 return -ENODEV;
482 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700483
Luis R. Rodriguezebd5a142010-04-15 17:39:18 -0400484 if (!AR_SREV_9300_20_OR_LATER(ah)) {
485 ecode = ar9002_hw_rf_claim(ah);
486 if (ecode != 0)
487 return ecode;
488 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700489
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700490 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700491 if (ecode != 0)
492 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530493
Joe Perches226afe62010-12-02 19:12:37 -0800494 ath_dbg(ath9k_hw_common(ah), ATH_DBG_CONFIG,
495 "Eeprom VER: %d, REV: %d\n",
496 ah->eep_ops->get_eeprom_ver(ah),
497 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530498
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400499 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
500 if (ecode) {
Joe Perches38002762010-12-02 19:12:36 -0800501 ath_err(ath9k_hw_common(ah),
502 "Failed allocating banks for external radio\n");
Rajkumar Manoharan48a7c3d2010-11-08 20:40:53 +0530503 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400504 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400505 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700506
Vasanthakumar Thiagarajan070c4d52011-04-19 19:29:05 +0530507 if (!AR_SREV_9100(ah) && !AR_SREV_9340(ah)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700508 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700509 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700510 }
Sujithf1dc5602008-10-29 10:16:30 +0530511
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700512 return 0;
513}
514
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400515static void ath9k_hw_attach_ops(struct ath_hw *ah)
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700516{
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400517 if (AR_SREV_9300_20_OR_LATER(ah))
518 ar9003_hw_attach_ops(ah);
519 else
520 ar9002_hw_attach_ops(ah);
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700521}
522
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400523/* Called for all hardware families */
524static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700525{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700526 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700527 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700528
Senthil Balasubramanianac45c122010-12-22 21:14:20 +0530529 ath9k_hw_read_revisions(ah);
530
Senthil Balasubramanian0a8d7cb2010-12-22 19:17:18 +0530531 /*
532 * Read back AR_WA into a permanent copy and set bits 14 and 17.
533 * We need to do this to avoid RMW of this register. We cannot
534 * read the reg when chip is asleep.
535 */
536 ah->WARegVal = REG_READ(ah, AR_WA);
537 ah->WARegVal |= (AR_WA_D3_L1_DISABLE |
538 AR_WA_ASPM_TIMER_BASED_DISABLE);
539
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700540 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Joe Perches38002762010-12-02 19:12:36 -0800541 ath_err(common, "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700542 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700543 }
544
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +0530545 if (AR_SREV_9462(ah))
Rajkumar Manoharaneec353c2011-10-13 10:49:13 +0530546 ah->WARegVal &= ~AR_WA_D3_L1_DISABLE;
547
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400548 ath9k_hw_init_defaults(ah);
549 ath9k_hw_init_config(ah);
550
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400551 ath9k_hw_attach_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400552
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700553 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Joe Perches38002762010-12-02 19:12:36 -0800554 ath_err(common, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700555 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700556 }
557
558 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
559 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
John W. Linville4c85ab12010-07-28 10:06:35 -0400560 ((AR_SREV_9160(ah) || AR_SREV_9280(ah)) &&
561 !ah->is_pciexpress)) {
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700562 ah->config.serialize_regmode =
563 SER_REG_MODE_ON;
564 } else {
565 ah->config.serialize_regmode =
566 SER_REG_MODE_OFF;
567 }
568 }
569
Joe Perches226afe62010-12-02 19:12:37 -0800570 ath_dbg(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700571 ah->config.serialize_regmode);
572
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500573 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
574 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
575 else
576 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
577
Felix Fietkau6da5a722010-12-12 00:51:12 +0100578 switch (ah->hw_version.macVersion) {
579 case AR_SREV_VERSION_5416_PCI:
580 case AR_SREV_VERSION_5416_PCIE:
581 case AR_SREV_VERSION_9160:
582 case AR_SREV_VERSION_9100:
583 case AR_SREV_VERSION_9280:
584 case AR_SREV_VERSION_9285:
585 case AR_SREV_VERSION_9287:
586 case AR_SREV_VERSION_9271:
587 case AR_SREV_VERSION_9300:
Gabor Juhos2c8e5932011-06-21 11:23:21 +0200588 case AR_SREV_VERSION_9330:
Felix Fietkau6da5a722010-12-12 00:51:12 +0100589 case AR_SREV_VERSION_9485:
Vasanthakumar Thiagarajanbca04682011-04-19 19:29:20 +0530590 case AR_SREV_VERSION_9340:
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +0530591 case AR_SREV_VERSION_9462:
Felix Fietkau6da5a722010-12-12 00:51:12 +0100592 break;
593 default:
Joe Perches38002762010-12-02 19:12:36 -0800594 ath_err(common,
595 "Mac Chip Rev 0x%02x.%x is not supported by this driver\n",
596 ah->hw_version.macVersion, ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700597 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700598 }
599
Gabor Juhos2c8e5932011-06-21 11:23:21 +0200600 if (AR_SREV_9271(ah) || AR_SREV_9100(ah) || AR_SREV_9340(ah) ||
601 AR_SREV_9330(ah))
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400602 ah->is_pciexpress = false;
603
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700604 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700605 ath9k_hw_init_cal_settings(ah);
606
607 ah->ani_function = ATH9K_ANI_ALL;
Felix Fietkau7a370812010-09-22 12:34:52 +0200608 if (AR_SREV_9280_20_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700609 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400610 if (!AR_SREV_9300_20_OR_LATER(ah))
611 ah->ani_function &= ~ATH9K_ANI_MRC_CCK;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700612
613 ath9k_hw_init_mode_regs(ah);
614
Stanislaw Gruszka69ce6742011-08-05 13:10:34 +0200615 if (!ah->is_pciexpress)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700616 ath9k_hw_disablepcie(ah);
617
Luis R. Rodriguezd8f492b2010-04-15 17:39:04 -0400618 if (!AR_SREV_9300_20_OR_LATER(ah))
619 ar9002_hw_cck_chan14_spread(ah);
Sujith193cd452009-09-18 15:04:07 +0530620
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700621 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700622 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700623 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700624
625 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100626 r = ath9k_hw_fill_cap_info(ah);
627 if (r)
628 return r;
629
Stanislaw Gruszka69ce6742011-08-05 13:10:34 +0200630 if (ah->is_pciexpress)
631 ath9k_hw_aspm_init(ah);
632
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700633 r = ath9k_hw_init_macaddr(ah);
634 if (r) {
Joe Perches38002762010-12-02 19:12:36 -0800635 ath_err(common, "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700636 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700637 }
638
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400639 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530640 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700641 else
Sujith2660b812009-02-09 13:27:26 +0530642 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700643
Gabor Juhos88e641d2011-06-21 11:23:30 +0200644 if (AR_SREV_9330(ah))
645 ah->bb_watchdog_timeout_ms = 85;
646 else
647 ah->bb_watchdog_timeout_ms = 25;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700648
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400649 common->state = ATH_HW_INITIALIZED;
650
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700651 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700652}
653
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400654int ath9k_hw_init(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530655{
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400656 int ret;
657 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530658
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400659 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
660 switch (ah->hw_version.devid) {
661 case AR5416_DEVID_PCI:
662 case AR5416_DEVID_PCIE:
663 case AR5416_AR9100_DEVID:
664 case AR9160_DEVID_PCI:
665 case AR9280_DEVID_PCI:
666 case AR9280_DEVID_PCIE:
667 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400668 case AR9287_DEVID_PCI:
669 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400670 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400671 case AR9300_DEVID_PCIE:
Vasanthakumar Thiagarajan3050c912010-12-06 04:27:36 -0800672 case AR9300_DEVID_AR9485_PCIE:
Gabor Juhos999a7a82011-06-21 11:23:52 +0200673 case AR9300_DEVID_AR9330:
Vasanthakumar Thiagarajanbca04682011-04-19 19:29:20 +0530674 case AR9300_DEVID_AR9340:
Luis R. Rodriguez5a63ef02011-08-24 15:36:08 -0700675 case AR9300_DEVID_AR9580:
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +0530676 case AR9300_DEVID_AR9462:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400677 break;
678 default:
679 if (common->bus_ops->ath_bus_type == ATH_USB)
680 break;
Joe Perches38002762010-12-02 19:12:36 -0800681 ath_err(common, "Hardware device ID 0x%04x not supported\n",
682 ah->hw_version.devid);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400683 return -EOPNOTSUPP;
684 }
Sujithf1dc5602008-10-29 10:16:30 +0530685
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400686 ret = __ath9k_hw_init(ah);
687 if (ret) {
Joe Perches38002762010-12-02 19:12:36 -0800688 ath_err(common,
689 "Unable to initialize hardware; initialization status: %d\n",
690 ret);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400691 return ret;
692 }
Sujithf1dc5602008-10-29 10:16:30 +0530693
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400694 return 0;
Sujithf1dc5602008-10-29 10:16:30 +0530695}
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400696EXPORT_SYMBOL(ath9k_hw_init);
Sujithf1dc5602008-10-29 10:16:30 +0530697
Sujithcbe61d82009-02-09 13:27:12 +0530698static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530699{
Sujith7d0d0df2010-04-16 11:53:57 +0530700 ENABLE_REGWRITE_BUFFER(ah);
701
Sujithf1dc5602008-10-29 10:16:30 +0530702 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
703 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
704
705 REG_WRITE(ah, AR_QOS_NO_ACK,
706 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
707 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
708 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
709
710 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
711 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
712 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
713 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
714 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
Sujith7d0d0df2010-04-16 11:53:57 +0530715
716 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530717}
718
Senthil Balasubramanianb84628e2011-04-22 11:32:12 +0530719u32 ar9003_get_pll_sqsum_dvc(struct ath_hw *ah)
Vivek Natarajanb1415812011-01-27 14:45:07 +0530720{
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100721 REG_CLR_BIT(ah, PLL3, PLL3_DO_MEAS_MASK);
722 udelay(100);
723 REG_SET_BIT(ah, PLL3, PLL3_DO_MEAS_MASK);
724
725 while ((REG_READ(ah, PLL4) & PLL4_MEAS_DONE) == 0)
Vivek Natarajanb1415812011-01-27 14:45:07 +0530726 udelay(100);
Vivek Natarajanb1415812011-01-27 14:45:07 +0530727
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100728 return (REG_READ(ah, PLL3) & SQSUM_DVC_MASK) >> 3;
Vivek Natarajanb1415812011-01-27 14:45:07 +0530729}
730EXPORT_SYMBOL(ar9003_get_pll_sqsum_dvc);
731
Sujithcbe61d82009-02-09 13:27:12 +0530732static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530733 struct ath9k_channel *chan)
734{
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800735 u32 pll;
736
Vivek Natarajan22983c32011-01-27 14:45:09 +0530737 if (AR_SREV_9485(ah)) {
Vivek Natarajan22983c32011-01-27 14:45:09 +0530738
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530739 /* program BB PLL ki and kd value, ki=0x4, kd=0x40 */
740 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
741 AR_CH0_BB_DPLL2_PLL_PWD, 0x1);
742 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
743 AR_CH0_DPLL2_KD, 0x40);
744 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
745 AR_CH0_DPLL2_KI, 0x4);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530746
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530747 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
748 AR_CH0_BB_DPLL1_REFDIV, 0x5);
749 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
750 AR_CH0_BB_DPLL1_NINI, 0x58);
751 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
752 AR_CH0_BB_DPLL1_NFRAC, 0x0);
753
754 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
755 AR_CH0_BB_DPLL2_OUTDIV, 0x1);
756 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
757 AR_CH0_BB_DPLL2_LOCAL_PLL, 0x1);
758 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
759 AR_CH0_BB_DPLL2_EN_NEGTRIG, 0x1);
760
761 /* program BB PLL phase_shift to 0x6 */
762 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL3,
763 AR_CH0_BB_DPLL3_PHASE_SHIFT, 0x6);
764
765 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
766 AR_CH0_BB_DPLL2_PLL_PWD, 0x0);
Vivek Natarajan75e03512011-03-10 11:05:42 +0530767 udelay(1000);
Gabor Juhosa5415d62011-06-21 11:23:29 +0200768 } else if (AR_SREV_9330(ah)) {
769 u32 ddr_dpll2, pll_control2, kd;
770
771 if (ah->is_clk_25mhz) {
772 ddr_dpll2 = 0x18e82f01;
773 pll_control2 = 0xe04a3d;
774 kd = 0x1d;
775 } else {
776 ddr_dpll2 = 0x19e82f01;
777 pll_control2 = 0x886666;
778 kd = 0x3d;
779 }
780
781 /* program DDR PLL ki and kd value */
782 REG_WRITE(ah, AR_CH0_DDR_DPLL2, ddr_dpll2);
783
784 /* program DDR PLL phase_shift */
785 REG_RMW_FIELD(ah, AR_CH0_DDR_DPLL3,
786 AR_CH0_DPLL3_PHASE_SHIFT, 0x1);
787
788 REG_WRITE(ah, AR_RTC_PLL_CONTROL, 0x1142c);
789 udelay(1000);
790
791 /* program refdiv, nint, frac to RTC register */
792 REG_WRITE(ah, AR_RTC_PLL_CONTROL2, pll_control2);
793
794 /* program BB PLL kd and ki value */
795 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2, AR_CH0_DPLL2_KD, kd);
796 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2, AR_CH0_DPLL2_KI, 0x06);
797
798 /* program BB PLL phase_shift */
799 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL3,
800 AR_CH0_BB_DPLL3_PHASE_SHIFT, 0x1);
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530801 } else if (AR_SREV_9340(ah)) {
802 u32 regval, pll2_divint, pll2_divfrac, refdiv;
803
804 REG_WRITE(ah, AR_RTC_PLL_CONTROL, 0x1142c);
805 udelay(1000);
806
807 REG_SET_BIT(ah, AR_PHY_PLL_MODE, 0x1 << 16);
808 udelay(100);
809
810 if (ah->is_clk_25mhz) {
811 pll2_divint = 0x54;
812 pll2_divfrac = 0x1eb85;
813 refdiv = 3;
814 } else {
815 pll2_divint = 88;
816 pll2_divfrac = 0;
817 refdiv = 5;
818 }
819
820 regval = REG_READ(ah, AR_PHY_PLL_MODE);
821 regval |= (0x1 << 16);
822 REG_WRITE(ah, AR_PHY_PLL_MODE, regval);
823 udelay(100);
824
825 REG_WRITE(ah, AR_PHY_PLL_CONTROL, (refdiv << 27) |
826 (pll2_divint << 18) | pll2_divfrac);
827 udelay(100);
828
829 regval = REG_READ(ah, AR_PHY_PLL_MODE);
830 regval = (regval & 0x80071fff) | (0x1 << 30) | (0x1 << 13) |
831 (0x4 << 26) | (0x18 << 19);
832 REG_WRITE(ah, AR_PHY_PLL_MODE, regval);
833 REG_WRITE(ah, AR_PHY_PLL_MODE,
834 REG_READ(ah, AR_PHY_PLL_MODE) & 0xfffeffff);
835 udelay(1000);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530836 }
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800837
838 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530839
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100840 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530841
Gabor Juhosa5415d62011-06-21 11:23:29 +0200842 if (AR_SREV_9485(ah) || AR_SREV_9340(ah) || AR_SREV_9330(ah))
Vasanthakumar Thiagarajan3dfd7f62011-04-11 16:39:40 +0530843 udelay(1000);
844
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400845 /* Switch the core clock for ar9271 to 117Mhz */
846 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530847 udelay(500);
848 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400849 }
850
Sujithf1dc5602008-10-29 10:16:30 +0530851 udelay(RTC_PLL_SETTLE_DELAY);
852
853 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
Vasanthakumar Thiagarajan0b488ac2011-04-20 10:26:15 +0530854
855 if (AR_SREV_9340(ah)) {
856 if (ah->is_clk_25mhz) {
857 REG_WRITE(ah, AR_RTC_DERIVED_CLK, 0x17c << 1);
858 REG_WRITE(ah, AR_SLP32_MODE, 0x0010f3d7);
859 REG_WRITE(ah, AR_SLP32_INC, 0x0001e7ae);
860 } else {
861 REG_WRITE(ah, AR_RTC_DERIVED_CLK, 0x261 << 1);
862 REG_WRITE(ah, AR_SLP32_MODE, 0x0010f400);
863 REG_WRITE(ah, AR_SLP32_INC, 0x0001e800);
864 }
865 udelay(100);
866 }
Sujithf1dc5602008-10-29 10:16:30 +0530867}
868
Sujithcbe61d82009-02-09 13:27:12 +0530869static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800870 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530871{
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530872 u32 sync_default = AR_INTR_SYNC_DEFAULT;
Pavel Roskin152d5302010-03-31 18:05:37 -0400873 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530874 AR_IMR_TXURN |
875 AR_IMR_RXERR |
876 AR_IMR_RXORN |
877 AR_IMR_BCNMISC;
878
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530879 if (AR_SREV_9340(ah))
880 sync_default &= ~AR_INTR_SYNC_HOST1_FATAL;
881
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400882 if (AR_SREV_9300_20_OR_LATER(ah)) {
883 imr_reg |= AR_IMR_RXOK_HP;
884 if (ah->config.rx_intr_mitigation)
885 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
886 else
887 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530888
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400889 } else {
890 if (ah->config.rx_intr_mitigation)
891 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
892 else
893 imr_reg |= AR_IMR_RXOK;
894 }
895
896 if (ah->config.tx_intr_mitigation)
897 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
898 else
899 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530900
Colin McCabed97809d2008-12-01 13:38:55 -0800901 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -0400902 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +0530903
Sujith7d0d0df2010-04-16 11:53:57 +0530904 ENABLE_REGWRITE_BUFFER(ah);
905
Pavel Roskin152d5302010-03-31 18:05:37 -0400906 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500907 ah->imrs2_reg |= AR_IMR_S2_GTT;
908 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530909
910 if (!AR_SREV_9100(ah)) {
911 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
Vasanthakumar Thiagarajan79d1d2b2011-04-19 19:29:19 +0530912 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, sync_default);
Sujithf1dc5602008-10-29 10:16:30 +0530913 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
914 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400915
Sujith7d0d0df2010-04-16 11:53:57 +0530916 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530917
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400918 if (AR_SREV_9300_20_OR_LATER(ah)) {
919 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
920 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
921 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
922 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
923 }
Sujithf1dc5602008-10-29 10:16:30 +0530924}
925
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700926static void ath9k_hw_set_sifs_time(struct ath_hw *ah, u32 us)
927{
928 u32 val = ath9k_hw_mac_to_clks(ah, us - 2);
929 val = min(val, (u32) 0xFFFF);
930 REG_WRITE(ah, AR_D_GBL_IFS_SIFS, val);
931}
932
Felix Fietkau0005baf2010-01-15 02:33:40 +0100933static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530934{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100935 u32 val = ath9k_hw_mac_to_clks(ah, us);
936 val = min(val, (u32) 0xFFFF);
937 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530938}
939
Felix Fietkau0005baf2010-01-15 02:33:40 +0100940static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530941{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100942 u32 val = ath9k_hw_mac_to_clks(ah, us);
943 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
944 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
945}
946
947static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
948{
949 u32 val = ath9k_hw_mac_to_clks(ah, us);
950 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
951 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530952}
953
Sujithcbe61d82009-02-09 13:27:12 +0530954static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +0530955{
Sujithf1dc5602008-10-29 10:16:30 +0530956 if (tu > 0xFFFF) {
Joe Perches226afe62010-12-02 19:12:37 -0800957 ath_dbg(ath9k_hw_common(ah), ATH_DBG_XMIT,
958 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +0530959 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +0530960 return false;
961 } else {
962 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +0530963 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +0530964 return true;
965 }
966}
967
Felix Fietkau0005baf2010-01-15 02:33:40 +0100968void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530969{
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700970 struct ath_common *common = ath9k_hw_common(ah);
971 struct ieee80211_conf *conf = &common->hw->conf;
972 const struct ath9k_channel *chan = ah->curchan;
Felix Fietkauadb50662011-08-28 01:52:10 +0200973 int acktimeout, ctstimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +0100974 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100975 int sifstime;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700976 int rx_lat = 0, tx_lat = 0, eifs = 0;
977 u32 reg;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100978
Joe Perches226afe62010-12-02 19:12:37 -0800979 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
980 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +0530981
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700982 if (!chan)
983 return;
984
Sujith2660b812009-02-09 13:27:26 +0530985 if (ah->misc_mode != 0)
Felix Fietkauca7a4de2011-03-23 20:57:26 +0100986 REG_SET_BIT(ah, AR_PCU_MISC, ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100987
Rajkumar Manoharan81a91d52011-08-31 10:47:30 +0530988 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
989 rx_lat = 41;
990 else
991 rx_lat = 37;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +0700992 tx_lat = 54;
993
994 if (IS_CHAN_HALF_RATE(chan)) {
995 eifs = 175;
996 rx_lat *= 2;
997 tx_lat *= 2;
998 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
999 tx_lat += 11;
1000
1001 slottime = 13;
1002 sifstime = 32;
1003 } else if (IS_CHAN_QUARTER_RATE(chan)) {
1004 eifs = 340;
Rajkumar Manoharan81a91d52011-08-31 10:47:30 +05301005 rx_lat = (rx_lat * 4) - 1;
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001006 tx_lat *= 4;
1007 if (IS_CHAN_A_FAST_CLOCK(ah, chan))
1008 tx_lat += 22;
1009
1010 slottime = 21;
1011 sifstime = 64;
1012 } else {
Rajkumar Manoharana7be0392011-08-27 12:13:21 +05301013 if (AR_SREV_9287(ah) && AR_SREV_9287_13_OR_LATER(ah)) {
1014 eifs = AR_D_GBL_IFS_EIFS_ASYNC_FIFO;
1015 reg = AR_USEC_ASYNC_FIFO;
1016 } else {
1017 eifs = REG_READ(ah, AR_D_GBL_IFS_EIFS)/
1018 common->clockrate;
1019 reg = REG_READ(ah, AR_USEC);
1020 }
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001021 rx_lat = MS(reg, AR_USEC_RX_LAT);
1022 tx_lat = MS(reg, AR_USEC_TX_LAT);
1023
1024 slottime = ah->slottime;
1025 if (IS_CHAN_5GHZ(chan))
1026 sifstime = 16;
1027 else
1028 sifstime = 10;
1029 }
Felix Fietkau0005baf2010-01-15 02:33:40 +01001030
Felix Fietkaue239d852010-01-15 02:34:58 +01001031 /* As defined by IEEE 802.11-2007 17.3.8.6 */
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001032 acktimeout = slottime + sifstime + 3 * ah->coverage_class;
Felix Fietkauadb50662011-08-28 01:52:10 +02001033 ctstimeout = acktimeout;
Felix Fietkau42c45682010-02-11 18:07:19 +01001034
1035 /*
1036 * Workaround for early ACK timeouts, add an offset to match the
1037 * initval's 64us ack timeout value.
1038 * This was initially only meant to work around an issue with delayed
1039 * BA frames in some implementations, but it has been found to fix ACK
1040 * timeout issues in other cases as well.
1041 */
1042 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
1043 acktimeout += 64 - sifstime - ah->slottime;
1044
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001045 ath9k_hw_set_sifs_time(ah, sifstime);
1046 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +01001047 ath9k_hw_set_ack_timeout(ah, acktimeout);
Felix Fietkauadb50662011-08-28 01:52:10 +02001048 ath9k_hw_set_cts_timeout(ah, ctstimeout);
Sujith2660b812009-02-09 13:27:26 +05301049 if (ah->globaltxtimeout != (u32) -1)
1050 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Felix Fietkaub6ba41b2011-07-09 11:12:50 +07001051
1052 REG_WRITE(ah, AR_D_GBL_IFS_EIFS, ath9k_hw_mac_to_clks(ah, eifs));
1053 REG_RMW(ah, AR_USEC,
1054 (common->clockrate - 1) |
1055 SM(rx_lat, AR_USEC_RX_LAT) |
1056 SM(tx_lat, AR_USEC_TX_LAT),
1057 AR_USEC_TX_LAT | AR_USEC_RX_LAT | AR_USEC_USEC);
1058
Sujithf1dc5602008-10-29 10:16:30 +05301059}
Felix Fietkau0005baf2010-01-15 02:33:40 +01001060EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +05301061
Sujith285f2dd2010-01-08 10:36:07 +05301062void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001063{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001064 struct ath_common *common = ath9k_hw_common(ah);
1065
Sujith736b3a22010-03-17 14:25:24 +05301066 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001067 goto free_hw;
1068
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001069 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -04001070
1071free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001072 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001073}
Sujith285f2dd2010-01-08 10:36:07 +05301074EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001075
Sujithf1dc5602008-10-29 10:16:30 +05301076/*******/
1077/* INI */
1078/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001079
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001080u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -04001081{
1082 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
1083
1084 if (IS_CHAN_B(chan))
1085 ctl |= CTL_11B;
1086 else if (IS_CHAN_G(chan))
1087 ctl |= CTL_11G;
1088 else
1089 ctl |= CTL_11A;
1090
1091 return ctl;
1092}
1093
Sujithf1dc5602008-10-29 10:16:30 +05301094/****************************************/
1095/* Reset and Channel Switching Routines */
1096/****************************************/
1097
Sujithcbe61d82009-02-09 13:27:12 +05301098static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301099{
Felix Fietkau57b32222010-04-15 17:39:22 -04001100 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301101
Sujith7d0d0df2010-04-16 11:53:57 +05301102 ENABLE_REGWRITE_BUFFER(ah);
1103
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001104 /*
1105 * set AHB_MODE not to do cacheline prefetches
1106 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001107 if (!AR_SREV_9300_20_OR_LATER(ah))
1108 REG_SET_BIT(ah, AR_AHB_MODE, AR_AHB_PREFETCH_RD_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301109
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001110 /*
1111 * let mac dma reads be in 128 byte chunks
1112 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001113 REG_RMW(ah, AR_TXCFG, AR_TXCFG_DMASZ_128B, AR_TXCFG_DMASZ_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301114
Sujith7d0d0df2010-04-16 11:53:57 +05301115 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301116
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001117 /*
1118 * Restore TX Trigger Level to its pre-reset value.
1119 * The initial value depends on whether aggregation is enabled, and is
1120 * adjusted whenever underruns are detected.
1121 */
Felix Fietkau57b32222010-04-15 17:39:22 -04001122 if (!AR_SREV_9300_20_OR_LATER(ah))
1123 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +05301124
Sujith7d0d0df2010-04-16 11:53:57 +05301125 ENABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301126
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001127 /*
1128 * let mac dma writes be in 128 byte chunks
1129 */
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001130 REG_RMW(ah, AR_RXCFG, AR_RXCFG_DMASZ_128B, AR_RXCFG_DMASZ_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301131
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001132 /*
1133 * Setup receive FIFO threshold to hold off TX activities
1134 */
Sujithf1dc5602008-10-29 10:16:30 +05301135 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
1136
Felix Fietkau57b32222010-04-15 17:39:22 -04001137 if (AR_SREV_9300_20_OR_LATER(ah)) {
1138 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
1139 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
1140
1141 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
1142 ah->caps.rx_status_len);
1143 }
1144
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001145 /*
1146 * reduce the number of usable entries in PCU TXBUF to avoid
1147 * wrap around issues.
1148 */
Sujithf1dc5602008-10-29 10:16:30 +05301149 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001150 /* For AR9285 the number of Fifos are reduced to half.
1151 * So set the usable tx buf size also to half to
1152 * avoid data/delimiter underruns
1153 */
Sujithf1dc5602008-10-29 10:16:30 +05301154 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1155 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001156 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +05301157 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
1158 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
1159 }
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -04001160
Sujith7d0d0df2010-04-16 11:53:57 +05301161 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301162
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -04001163 if (AR_SREV_9300_20_OR_LATER(ah))
1164 ath9k_hw_reset_txstatus_ring(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301165}
1166
Sujithcbe61d82009-02-09 13:27:12 +05301167static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +05301168{
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001169 u32 mask = AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC;
1170 u32 set = AR_STA_ID1_KSRCH_MODE;
Sujithf1dc5602008-10-29 10:16:30 +05301171
Sujithf1dc5602008-10-29 10:16:30 +05301172 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001173 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001174 case NL80211_IFTYPE_MESH_POINT:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001175 set |= AR_STA_ID1_ADHOC;
Sujithf1dc5602008-10-29 10:16:30 +05301176 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
1177 break;
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001178 case NL80211_IFTYPE_AP:
1179 set |= AR_STA_ID1_STA_AP;
1180 /* fall through */
Colin McCabed97809d2008-12-01 13:38:55 -08001181 case NL80211_IFTYPE_STATION:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001182 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
Sujithf1dc5602008-10-29 10:16:30 +05301183 break;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301184 default:
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001185 if (!ah->is_monitoring)
1186 set = 0;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +05301187 break;
Sujithf1dc5602008-10-29 10:16:30 +05301188 }
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001189 REG_RMW(ah, AR_STA_ID1, set, mask);
Sujithf1dc5602008-10-29 10:16:30 +05301190}
1191
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001192void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
1193 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001194{
1195 u32 coef_exp, coef_man;
1196
1197 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1198 if ((coef_scaled >> coef_exp) & 0x1)
1199 break;
1200
1201 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1202
1203 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1204
1205 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1206 *coef_exponent = coef_exp - 16;
1207}
1208
Sujithcbe61d82009-02-09 13:27:12 +05301209static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301210{
1211 u32 rst_flags;
1212 u32 tmpReg;
1213
Sujith70768492009-02-16 13:23:12 +05301214 if (AR_SREV_9100(ah)) {
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001215 REG_RMW_FIELD(ah, AR_RTC_DERIVED_CLK,
1216 AR_RTC_DERIVED_CLK_PERIOD, 1);
Sujith70768492009-02-16 13:23:12 +05301217 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1218 }
1219
Sujith7d0d0df2010-04-16 11:53:57 +05301220 ENABLE_REGWRITE_BUFFER(ah);
1221
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001222 if (AR_SREV_9300_20_OR_LATER(ah)) {
1223 REG_WRITE(ah, AR_WA, ah->WARegVal);
1224 udelay(10);
1225 }
1226
Sujithf1dc5602008-10-29 10:16:30 +05301227 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1228 AR_RTC_FORCE_WAKE_ON_INT);
1229
1230 if (AR_SREV_9100(ah)) {
1231 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1232 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1233 } else {
1234 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1235 if (tmpReg &
1236 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1237 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001238 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301239 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001240
1241 val = AR_RC_HOSTIF;
1242 if (!AR_SREV_9300_20_OR_LATER(ah))
1243 val |= AR_RC_AHB;
1244 REG_WRITE(ah, AR_RC, val);
1245
1246 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301247 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301248
1249 rst_flags = AR_RTC_RC_MAC_WARM;
1250 if (type == ATH9K_RESET_COLD)
1251 rst_flags |= AR_RTC_RC_MAC_COLD;
1252 }
1253
Gabor Juhos7d95847c2011-06-21 11:23:51 +02001254 if (AR_SREV_9330(ah)) {
1255 int npend = 0;
1256 int i;
1257
1258 /* AR9330 WAR:
1259 * call external reset function to reset WMAC if:
1260 * - doing a cold reset
1261 * - we have pending frames in the TX queues
1262 */
1263
1264 for (i = 0; i < AR_NUM_QCU; i++) {
1265 npend = ath9k_hw_numtxpending(ah, i);
1266 if (npend)
1267 break;
1268 }
1269
1270 if (ah->external_reset &&
1271 (npend || type == ATH9K_RESET_COLD)) {
1272 int reset_err = 0;
1273
1274 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
1275 "reset MAC via external reset\n");
1276
1277 reset_err = ah->external_reset();
1278 if (reset_err) {
1279 ath_err(ath9k_hw_common(ah),
1280 "External reset failed, err=%d\n",
1281 reset_err);
1282 return false;
1283 }
1284
1285 REG_WRITE(ah, AR_RTC_RESET, 1);
1286 }
1287 }
1288
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001289 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujith7d0d0df2010-04-16 11:53:57 +05301290
1291 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301292
Sujithf1dc5602008-10-29 10:16:30 +05301293 udelay(50);
1294
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001295 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301296 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Joe Perches226afe62010-12-02 19:12:37 -08001297 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
1298 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301299 return false;
1300 }
1301
1302 if (!AR_SREV_9100(ah))
1303 REG_WRITE(ah, AR_RC, 0);
1304
Sujithf1dc5602008-10-29 10:16:30 +05301305 if (AR_SREV_9100(ah))
1306 udelay(50);
1307
1308 return true;
1309}
1310
Sujithcbe61d82009-02-09 13:27:12 +05301311static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301312{
Sujith7d0d0df2010-04-16 11:53:57 +05301313 ENABLE_REGWRITE_BUFFER(ah);
1314
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001315 if (AR_SREV_9300_20_OR_LATER(ah)) {
1316 REG_WRITE(ah, AR_WA, ah->WARegVal);
1317 udelay(10);
1318 }
1319
Sujithf1dc5602008-10-29 10:16:30 +05301320 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1321 AR_RTC_FORCE_WAKE_ON_INT);
1322
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001323 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301324 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1325
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001326 REG_WRITE(ah, AR_RTC_RESET, 0);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301327
Sujith7d0d0df2010-04-16 11:53:57 +05301328 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301329
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001330 if (!AR_SREV_9300_20_OR_LATER(ah))
1331 udelay(2);
1332
1333 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301334 REG_WRITE(ah, AR_RC, 0);
1335
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001336 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301337
1338 if (!ath9k_hw_wait(ah,
1339 AR_RTC_STATUS,
1340 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301341 AR_RTC_STATUS_ON,
1342 AH_WAIT_TIMEOUT)) {
Joe Perches226afe62010-12-02 19:12:37 -08001343 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
1344 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301345 return false;
1346 }
1347
Sujithf1dc5602008-10-29 10:16:30 +05301348 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1349}
1350
Sujithcbe61d82009-02-09 13:27:12 +05301351static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301352{
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301353
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001354 if (AR_SREV_9300_20_OR_LATER(ah)) {
1355 REG_WRITE(ah, AR_WA, ah->WARegVal);
1356 udelay(10);
1357 }
1358
Sujithf1dc5602008-10-29 10:16:30 +05301359 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1360 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1361
1362 switch (type) {
1363 case ATH9K_RESET_POWER_ON:
1364 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301365 case ATH9K_RESET_WARM:
1366 case ATH9K_RESET_COLD:
1367 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301368 default:
1369 return false;
1370 }
1371}
1372
Sujithcbe61d82009-02-09 13:27:12 +05301373static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301374 struct ath9k_channel *chan)
1375{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301376 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301377 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1378 return false;
1379 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301380 return false;
1381
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001382 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301383 return false;
1384
Sujith2660b812009-02-09 13:27:26 +05301385 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301386 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301387 ath9k_hw_set_rfmode(ah, chan);
1388
1389 return true;
1390}
1391
Sujithcbe61d82009-02-09 13:27:12 +05301392static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001393 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301394{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001395 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001396 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001397 int r;
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301398 bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
1399 bool band_switch, mode_diff;
1400 u8 ini_reloaded;
1401
1402 band_switch = (chan->channelFlags & (CHANNEL_2GHZ | CHANNEL_5GHZ)) !=
1403 (ah->curchan->channelFlags & (CHANNEL_2GHZ |
1404 CHANNEL_5GHZ));
1405 mode_diff = (chan->chanmode != ah->curchan->chanmode);
Sujithf1dc5602008-10-29 10:16:30 +05301406
1407 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1408 if (ath9k_hw_numtxpending(ah, qnum)) {
Joe Perches226afe62010-12-02 19:12:37 -08001409 ath_dbg(common, ATH_DBG_QUEUE,
1410 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301411 return false;
1412 }
1413 }
1414
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001415 if (!ath9k_hw_rfbus_req(ah)) {
Joe Perches38002762010-12-02 19:12:36 -08001416 ath_err(common, "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301417 return false;
1418 }
1419
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301420 if (edma && (band_switch || mode_diff)) {
1421 ath9k_hw_mark_phy_inactive(ah);
1422 udelay(5);
1423
1424 ath9k_hw_init_pll(ah, NULL);
1425
1426 if (ath9k_hw_fast_chan_change(ah, chan, &ini_reloaded)) {
1427 ath_err(common, "Failed to do fast channel change\n");
1428 return false;
1429 }
1430 }
1431
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001432 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301433
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001434 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001435 if (r) {
Joe Perches38002762010-12-02 19:12:36 -08001436 ath_err(common, "Failed to set channel\n");
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001437 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301438 }
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001439 ath9k_hw_set_clockrate(ah);
Felix Fietkauca2c68c2011-10-08 20:06:20 +02001440 ath9k_hw_apply_txpower(ah, chan);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001441 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301442
1443 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1444 ath9k_hw_set_delta_slope(ah, chan);
1445
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001446 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301447
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301448 if (edma && (band_switch || mode_diff)) {
Rajkumar Manoharana126ff52011-10-13 11:00:42 +05301449 ah->ah_flags |= AH_FASTCC;
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301450 if (band_switch || ini_reloaded)
1451 ah->eep_ops->set_board_values(ah, chan);
1452
1453 ath9k_hw_init_bb(ah, chan);
1454
1455 if (band_switch || ini_reloaded)
1456 ath9k_hw_init_cal(ah, chan);
Rajkumar Manoharana126ff52011-10-13 11:00:42 +05301457 ah->ah_flags &= ~AH_FASTCC;
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301458 }
1459
Sujithf1dc5602008-10-29 10:16:30 +05301460 return true;
1461}
1462
Felix Fietkau691680b2011-03-19 13:55:38 +01001463static void ath9k_hw_apply_gpio_override(struct ath_hw *ah)
1464{
1465 u32 gpio_mask = ah->gpio_mask;
1466 int i;
1467
1468 for (i = 0; gpio_mask; i++, gpio_mask >>= 1) {
1469 if (!(gpio_mask & 1))
1470 continue;
1471
1472 ath9k_hw_cfg_output(ah, i, AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
1473 ath9k_hw_set_gpio(ah, i, !!(ah->gpio_val & BIT(i)));
1474 }
1475}
1476
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001477bool ath9k_hw_check_alive(struct ath_hw *ah)
Johannes Berg3b319aa2009-06-13 14:50:26 +05301478{
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001479 int count = 50;
1480 u32 reg;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301481
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001482 if (AR_SREV_9285_12_OR_LATER(ah))
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001483 return true;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301484
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001485 do {
1486 reg = REG_READ(ah, AR_OBS_BUS_1);
1487
1488 if ((reg & 0x7E7FFFEF) == 0x00702400)
1489 continue;
1490
1491 switch (reg & 0x7E000B00) {
1492 case 0x1E000000:
1493 case 0x52000B00:
1494 case 0x18000B00:
1495 continue;
1496 default:
1497 return true;
1498 }
1499 } while (count-- > 0);
1500
1501 return false;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301502}
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001503EXPORT_SYMBOL(ath9k_hw_check_alive);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301504
Sujithcbe61d82009-02-09 13:27:12 +05301505int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001506 struct ath9k_hw_cal_data *caldata, bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001507{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001508 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001509 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301510 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001511 u32 saveDefAntenna;
1512 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301513 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001514 int i, r;
Rajkumar Manoharana126ff52011-10-13 11:00:42 +05301515 bool allow_fbs = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001516
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001517 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001518 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001519
Felix Fietkaud9891c72010-09-29 17:15:27 +02001520 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001521 ath9k_hw_getnf(ah, curchan);
1522
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001523 ah->caldata = caldata;
1524 if (caldata &&
1525 (chan->channel != caldata->channel ||
1526 (chan->channelFlags & ~CHANNEL_CW_INT) !=
1527 (caldata->channelFlags & ~CHANNEL_CW_INT))) {
1528 /* Operating channel changed, reset channel calibration data */
1529 memset(caldata, 0, sizeof(*caldata));
1530 ath9k_init_nfcal_hist_buffer(ah, chan);
1531 }
Felix Fietkauf23fba42011-07-28 14:08:56 +02001532 ah->noise = ath9k_hw_getchan_noise(ah, chan);
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001533
Rajkumar Manoharan19787b22011-10-13 11:00:39 +05301534 if (AR_SREV_9280(ah) && common->bus_ops->ath_bus_type == ATH_PCI)
Rajkumar Manoharan7db062a2011-09-14 14:20:30 +05301535 bChannelChange = false;
1536
Rajkumar Manoharana126ff52011-10-13 11:00:42 +05301537 if (caldata &&
1538 caldata->done_txiqcal_once &&
1539 caldata->done_txclcal_once &&
1540 caldata->rtt_hist.num_readings)
1541 allow_fbs = true;
1542
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001543 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301544 (ah->chip_fullsleep != true) &&
1545 (ah->curchan != NULL) &&
1546 (chan->channel != ah->curchan->channel) &&
Rajkumar Manoharana126ff52011-10-13 11:00:42 +05301547 (allow_fbs ||
1548 ((chan->channelFlags & CHANNEL_ALL) ==
1549 (ah->curchan->channelFlags & CHANNEL_ALL)))) {
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001550 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301551 ath9k_hw_loadnf(ah, ah->curchan);
Felix Fietkau00c86592010-07-30 21:02:09 +02001552 ath9k_hw_start_nfcal(ah, true);
Rajkumar Manoharanc2ba3342010-09-03 16:00:00 +05301553 if (AR_SREV_9271(ah))
1554 ar9002_hw_load_ani_reg(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001555 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001556 }
1557 }
1558
1559 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1560 if (saveDefAntenna == 0)
1561 saveDefAntenna = 1;
1562
1563 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1564
Sujith46fe7822009-09-17 09:25:25 +05301565 /* For chips on which RTC reset is done, save TSF before it gets cleared */
Felix Fietkauf860d522010-06-30 02:07:48 +02001566 if (AR_SREV_9100(ah) ||
1567 (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)))
Sujith46fe7822009-09-17 09:25:25 +05301568 tsf = ath9k_hw_gettsf64(ah);
1569
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001570 saveLedState = REG_READ(ah, AR_CFG_LED) &
1571 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1572 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1573
1574 ath9k_hw_mark_phy_inactive(ah);
1575
Vasanthakumar Thiagarajan45ef6a02010-12-15 07:30:53 -08001576 ah->paprd_table_write_done = false;
1577
Sujith05020d22010-03-17 14:25:23 +05301578 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001579 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1580 REG_WRITE(ah,
1581 AR9271_RESET_POWER_DOWN_CONTROL,
1582 AR9271_RADIO_RF_RST);
1583 udelay(50);
1584 }
1585
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001586 if (!ath9k_hw_chip_reset(ah, chan)) {
Joe Perches38002762010-12-02 19:12:36 -08001587 ath_err(common, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001588 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001589 }
1590
Sujith05020d22010-03-17 14:25:23 +05301591 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001592 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1593 ah->htc_reset_init = false;
1594 REG_WRITE(ah,
1595 AR9271_RESET_POWER_DOWN_CONTROL,
1596 AR9271_GATE_MAC_CTL);
1597 udelay(50);
1598 }
1599
Sujith46fe7822009-09-17 09:25:25 +05301600 /* Restore TSF */
Felix Fietkauf860d522010-06-30 02:07:48 +02001601 if (tsf)
Sujith46fe7822009-09-17 09:25:25 +05301602 ath9k_hw_settsf64(ah, tsf);
1603
Felix Fietkau7a370812010-09-22 12:34:52 +02001604 if (AR_SREV_9280_20_OR_LATER(ah))
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301605 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001606
Sujithe9141f72010-06-01 15:14:10 +05301607 if (!AR_SREV_9300_20_OR_LATER(ah))
1608 ar9002_hw_enable_async_fifo(ah);
1609
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001610 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001611 if (r)
1612 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001613
Felix Fietkauf860d522010-06-30 02:07:48 +02001614 /*
1615 * Some AR91xx SoC devices frequently fail to accept TSF writes
1616 * right after the chip reset. When that happens, write a new
1617 * value after the initvals have been applied, with an offset
1618 * based on measured time difference
1619 */
1620 if (AR_SREV_9100(ah) && (ath9k_hw_gettsf64(ah) < tsf)) {
1621 tsf += 1500;
1622 ath9k_hw_settsf64(ah, tsf);
1623 }
1624
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001625 /* Setup MFP options for CCMP */
1626 if (AR_SREV_9280_20_OR_LATER(ah)) {
1627 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1628 * frames when constructing CCMP AAD. */
1629 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1630 0xc7ff);
1631 ah->sw_mgmt_crypto = false;
1632 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1633 /* Disable hardware crypto for management frames */
1634 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1635 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1636 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1637 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1638 ah->sw_mgmt_crypto = true;
1639 } else
1640 ah->sw_mgmt_crypto = true;
1641
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001642 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1643 ath9k_hw_set_delta_slope(ah, chan);
1644
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001645 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301646 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001647
Sujith7d0d0df2010-04-16 11:53:57 +05301648 ENABLE_REGWRITE_BUFFER(ah);
1649
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001650 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1651 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001652 | macStaId1
1653 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301654 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301655 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301656 | ah->sta_id1_defaults);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001657 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001658 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001659 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001660 REG_WRITE(ah, AR_ISR, ~0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001661 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1662
Sujith7d0d0df2010-04-16 11:53:57 +05301663 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301664
Sujith Manoharan00e00032011-01-26 21:59:05 +05301665 ath9k_hw_set_operating_mode(ah, ah->opmode);
1666
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001667 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001668 if (r)
1669 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001670
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001671 ath9k_hw_set_clockrate(ah);
1672
Sujith7d0d0df2010-04-16 11:53:57 +05301673 ENABLE_REGWRITE_BUFFER(ah);
1674
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001675 for (i = 0; i < AR_NUM_DCU; i++)
1676 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1677
Sujith7d0d0df2010-04-16 11:53:57 +05301678 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301679
Sujith2660b812009-02-09 13:27:26 +05301680 ah->intr_txqs = 0;
Felix Fietkauf4c607d2011-03-23 20:57:28 +01001681 for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001682 ath9k_hw_resettxqueue(ah, i);
1683
Sujith2660b812009-02-09 13:27:26 +05301684 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001685 ath9k_hw_ani_cache_ini_regs(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001686 ath9k_hw_init_qos(ah);
1687
Sujith2660b812009-02-09 13:27:26 +05301688 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Felix Fietkau55821322010-12-17 00:57:01 +01001689 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301690
Felix Fietkau0005baf2010-01-15 02:33:40 +01001691 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001692
Felix Fietkaufe2b6af2011-07-09 11:12:51 +07001693 if (AR_SREV_9287(ah) && AR_SREV_9287_13_OR_LATER(ah)) {
1694 REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
1695 AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
1696 REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
1697 AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
1698 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1699 AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301700 }
1701
Felix Fietkauca7a4de2011-03-23 20:57:26 +01001702 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PRESERVE_SEQNUM);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001703
1704 ath9k_hw_set_dma(ah);
1705
1706 REG_WRITE(ah, AR_OBS, 8);
1707
Sujith0ce024c2009-12-14 14:57:00 +05301708 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001709 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1710 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1711 }
1712
Vasanthakumar Thiagarajan7f62a132010-04-15 17:39:19 -04001713 if (ah->config.tx_intr_mitigation) {
1714 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
1715 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
1716 }
1717
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001718 ath9k_hw_init_bb(ah, chan);
1719
Rajkumar Manoharan77a5a662011-10-13 11:00:37 +05301720 if (caldata) {
Rajkumar Manoharan5f0c04e2011-10-13 11:00:35 +05301721 caldata->done_txiqcal_once = false;
Rajkumar Manoharan77a5a662011-10-13 11:00:37 +05301722 caldata->done_txclcal_once = false;
Rajkumar Manoharan324c74a2011-10-13 11:00:41 +05301723 caldata->rtt_hist.num_readings = 0;
Rajkumar Manoharan77a5a662011-10-13 11:00:37 +05301724 }
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001725 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001726 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001727
Rajkumar Manoharan93348922011-10-25 16:47:36 +05301728 ath9k_hw_loadnf(ah, chan);
1729 ath9k_hw_start_nfcal(ah, true);
1730
Sujith7d0d0df2010-04-16 11:53:57 +05301731 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001732
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001733 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001734 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1735
Sujith7d0d0df2010-04-16 11:53:57 +05301736 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301737
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001738 /*
1739 * For big endian systems turn on swapping for descriptors
1740 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001741 if (AR_SREV_9100(ah)) {
1742 u32 mask;
1743 mask = REG_READ(ah, AR_CFG);
1744 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Joe Perches226afe62010-12-02 19:12:37 -08001745 ath_dbg(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301746 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001747 } else {
1748 mask =
1749 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1750 REG_WRITE(ah, AR_CFG, mask);
Joe Perches226afe62010-12-02 19:12:37 -08001751 ath_dbg(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301752 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001753 }
1754 } else {
Sujithcbba8cd2010-06-02 15:53:31 +05301755 if (common->bus_ops->ath_bus_type == ATH_USB) {
1756 /* Configure AR9271 target WLAN */
1757 if (AR_SREV_9271(ah))
1758 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
1759 else
1760 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1761 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001762#ifdef __BIG_ENDIAN
Gabor Juhos4033bda2011-06-21 11:23:35 +02001763 else if (AR_SREV_9330(ah) || AR_SREV_9340(ah))
Vasanthakumar Thiagarajan2be7bfe2011-04-19 19:29:14 +05301764 REG_RMW(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB, 0);
1765 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001766 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001767#endif
1768 }
1769
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001770 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301771 ath9k_hw_btcoex_enable(ah);
1772
Rajkumar Manoharan51ac8cb2011-05-20 17:52:13 +05301773 if (AR_SREV_9300_20_OR_LATER(ah)) {
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001774 ar9003_hw_bb_watchdog_config(ah);
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001775
Rajkumar Manoharan51ac8cb2011-05-20 17:52:13 +05301776 ar9003_hw_disable_phy_restart(ah);
1777 }
1778
Felix Fietkau691680b2011-03-19 13:55:38 +01001779 ath9k_hw_apply_gpio_override(ah);
1780
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001781 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001782}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001783EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001784
Sujithf1dc5602008-10-29 10:16:30 +05301785/******************************/
1786/* Power Management (Chipset) */
1787/******************************/
1788
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001789/*
1790 * Notify Power Mgt is disabled in self-generated frames.
1791 * If requested, force chip to sleep.
1792 */
Sujithcbe61d82009-02-09 13:27:12 +05301793static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301794{
1795 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1796 if (setChip) {
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05301797 if (AR_SREV_9462(ah)) {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301798 REG_WRITE(ah, AR_TIMER_MODE,
1799 REG_READ(ah, AR_TIMER_MODE) & 0xFFFFFF00);
1800 REG_WRITE(ah, AR_NDP2_TIMER_MODE, REG_READ(ah,
1801 AR_NDP2_TIMER_MODE) & 0xFFFFFF00);
1802 REG_WRITE(ah, AR_SLP32_INC,
1803 REG_READ(ah, AR_SLP32_INC) & 0xFFF00000);
1804 /* xxx Required for WLAN only case ? */
1805 REG_WRITE(ah, AR_MCI_INTERRUPT_RX_MSG_EN, 0);
1806 udelay(100);
1807 }
1808
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001809 /*
1810 * Clear the RTC force wake bit to allow the
1811 * mac to go to sleep.
1812 */
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301813 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN);
1814
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05301815 if (AR_SREV_9462(ah))
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301816 udelay(100);
1817
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001818 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301819 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1820
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001821 /* Shutdown chip. Active low */
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301822 if (!AR_SREV_5416(ah) &&
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05301823 !AR_SREV_9271(ah) && !AR_SREV_9462_10(ah)) {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301824 REG_CLR_BIT(ah, AR_RTC_RESET, AR_RTC_RESET_EN);
1825 udelay(2);
1826 }
Sujithf1dc5602008-10-29 10:16:30 +05301827 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001828
1829 /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */
Rajkumar Manoharaneec353c2011-10-13 10:49:13 +05301830 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001831}
1832
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001833/*
1834 * Notify Power Management is enabled in self-generating
1835 * frames. If request, set power mode of chip to
1836 * auto/normal. Duration in units of 128us (1/8 TU).
1837 */
Sujithcbe61d82009-02-09 13:27:12 +05301838static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001839{
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301840 u32 val;
1841
Sujithf1dc5602008-10-29 10:16:30 +05301842 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1843 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05301844 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001845
Sujithf1dc5602008-10-29 10:16:30 +05301846 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001847 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05301848 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1849 AR_RTC_FORCE_WAKE_ON_INT);
1850 } else {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301851
1852 /* When chip goes into network sleep, it could be waken
1853 * up by MCI_INT interrupt caused by BT's HW messages
1854 * (LNA_xxx, CONT_xxx) which chould be in a very fast
1855 * rate (~100us). This will cause chip to leave and
1856 * re-enter network sleep mode frequently, which in
1857 * consequence will have WLAN MCI HW to generate lots of
1858 * SYS_WAKING and SYS_SLEEPING messages which will make
1859 * BT CPU to busy to process.
1860 */
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05301861 if (AR_SREV_9462(ah)) {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301862 val = REG_READ(ah, AR_MCI_INTERRUPT_RX_MSG_EN) &
1863 ~AR_MCI_INTERRUPT_RX_HW_MSG_MASK;
1864 REG_WRITE(ah, AR_MCI_INTERRUPT_RX_MSG_EN, val);
1865 }
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001866 /*
1867 * Clear the RTC force wake bit to allow the
1868 * mac to go to sleep.
1869 */
Sujithf1dc5602008-10-29 10:16:30 +05301870 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1871 AR_RTC_FORCE_WAKE_EN);
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301872
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05301873 if (AR_SREV_9462(ah))
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05301874 udelay(30);
Sujithf1dc5602008-10-29 10:16:30 +05301875 }
1876 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001877
1878 /* Clear Bit 14 of AR_WA after putting chip into Net Sleep mode. */
1879 if (AR_SREV_9300_20_OR_LATER(ah))
1880 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Sujithf1dc5602008-10-29 10:16:30 +05301881}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001882
Sujithcbe61d82009-02-09 13:27:12 +05301883static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301884{
1885 u32 val;
1886 int i;
1887
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001888 /* Set Bits 14 and 17 of AR_WA before powering on the chip. */
1889 if (AR_SREV_9300_20_OR_LATER(ah)) {
1890 REG_WRITE(ah, AR_WA, ah->WARegVal);
1891 udelay(10);
1892 }
1893
Sujithf1dc5602008-10-29 10:16:30 +05301894 if (setChip) {
1895 if ((REG_READ(ah, AR_RTC_STATUS) &
1896 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
1897 if (ath9k_hw_set_reset_reg(ah,
1898 ATH9K_RESET_POWER_ON) != true) {
1899 return false;
1900 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04001901 if (!AR_SREV_9300_20_OR_LATER(ah))
1902 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05301903 }
1904 if (AR_SREV_9100(ah))
1905 REG_SET_BIT(ah, AR_RTC_RESET,
1906 AR_RTC_RESET_EN);
1907
1908 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1909 AR_RTC_FORCE_WAKE_EN);
1910 udelay(50);
1911
1912 for (i = POWER_UP_TIME / 50; i > 0; i--) {
1913 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
1914 if (val == AR_RTC_STATUS_ON)
1915 break;
1916 udelay(50);
1917 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1918 AR_RTC_FORCE_WAKE_EN);
1919 }
1920 if (i == 0) {
Joe Perches38002762010-12-02 19:12:36 -08001921 ath_err(ath9k_hw_common(ah),
1922 "Failed to wakeup in %uus\n",
1923 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05301924 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001925 }
1926 }
1927
Sujithf1dc5602008-10-29 10:16:30 +05301928 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1929
1930 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001931}
1932
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001933bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05301934{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001935 struct ath_common *common = ath9k_hw_common(ah);
Mohammed Shafi Shajakhan10109112011-11-30 10:41:24 +05301936 struct ath9k_hw_mci *mci = &ah->btcoex_hw.mci;
Sujithcbe61d82009-02-09 13:27:12 +05301937 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05301938 static const char *modes[] = {
1939 "AWAKE",
1940 "FULL-SLEEP",
1941 "NETWORK SLEEP",
1942 "UNDEFINED"
1943 };
Sujithf1dc5602008-10-29 10:16:30 +05301944
Gabor Juhoscbdec972009-07-24 17:27:22 +02001945 if (ah->power_mode == mode)
1946 return status;
1947
Joe Perches226afe62010-12-02 19:12:37 -08001948 ath_dbg(common, ATH_DBG_RESET, "%s -> %s\n",
1949 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05301950
1951 switch (mode) {
1952 case ATH9K_PM_AWAKE:
1953 status = ath9k_hw_set_power_awake(ah, setChip);
Mohammed Shafi Shajakhan10109112011-11-30 10:41:24 +05301954
1955 if (ah->caps.hw_caps & ATH9K_HW_CAP_MCI)
1956 REG_WRITE(ah, AR_RTC_KEEP_AWAKE, 0x2);
1957
Sujithf1dc5602008-10-29 10:16:30 +05301958 break;
1959 case ATH9K_PM_FULL_SLEEP:
Mohammed Shafi Shajakhan10109112011-11-30 10:41:24 +05301960
1961 if (ah->caps.hw_caps & ATH9K_HW_CAP_MCI) {
1962 if (ar9003_mci_state(ah, MCI_STATE_ENABLE, NULL) &&
1963 (mci->bt_state != MCI_BT_SLEEP) &&
1964 !mci->halted_bt_gpm) {
1965 ath_dbg(common, ATH_DBG_MCI, "MCI halt BT GPM"
1966 "(full_sleep)");
1967 ar9003_mci_send_coex_halt_bt_gpm(ah,
1968 true, true);
1969 }
1970
1971 mci->ready = false;
1972 REG_WRITE(ah, AR_RTC_KEEP_AWAKE, 0x2);
1973 }
1974
Sujithf1dc5602008-10-29 10:16:30 +05301975 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05301976 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05301977 break;
1978 case ATH9K_PM_NETWORK_SLEEP:
Mohammed Shafi Shajakhan10109112011-11-30 10:41:24 +05301979
1980 if (ah->caps.hw_caps & ATH9K_HW_CAP_MCI)
1981 REG_WRITE(ah, AR_RTC_KEEP_AWAKE, 0x2);
1982
Sujithf1dc5602008-10-29 10:16:30 +05301983 ath9k_set_power_network_sleep(ah, setChip);
1984 break;
1985 default:
Joe Perches38002762010-12-02 19:12:36 -08001986 ath_err(common, "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05301987 return false;
1988 }
Sujith2660b812009-02-09 13:27:26 +05301989 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05301990
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08001991 /*
1992 * XXX: If this warning never comes up after a while then
1993 * simply keep the ATH_DBG_WARN_ON_ONCE() but make
1994 * ath9k_hw_setpower() return type void.
1995 */
Sujith Manoharan97dcec52010-12-20 08:02:42 +05301996
1997 if (!(ah->ah_flags & AH_UNPLUGGED))
1998 ATH_DBG_WARN_ON_ONCE(!status);
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08001999
Sujithf1dc5602008-10-29 10:16:30 +05302000 return status;
2001}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002002EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05302003
Sujithf1dc5602008-10-29 10:16:30 +05302004/*******************/
2005/* Beacon Handling */
2006/*******************/
2007
Sujithcbe61d82009-02-09 13:27:12 +05302008void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002009{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002010 int flags = 0;
2011
Sujith7d0d0df2010-04-16 11:53:57 +05302012 ENABLE_REGWRITE_BUFFER(ah);
2013
Sujith2660b812009-02-09 13:27:26 +05302014 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08002015 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04002016 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002017 REG_SET_BIT(ah, AR_TXCFG,
2018 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
Felix Fietkaudd347f22011-03-22 21:54:17 +01002019 REG_WRITE(ah, AR_NEXT_NDP_TIMER, next_beacon +
2020 TU_TO_USEC(ah->atim_window ? ah->atim_window : 1));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002021 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08002022 case NL80211_IFTYPE_AP:
Felix Fietkaudd347f22011-03-22 21:54:17 +01002023 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, next_beacon);
2024 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, next_beacon -
2025 TU_TO_USEC(ah->config.dma_beacon_response_time));
2026 REG_WRITE(ah, AR_NEXT_SWBA, next_beacon -
2027 TU_TO_USEC(ah->config.sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002028 flags |=
2029 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
2030 break;
Colin McCabed97809d2008-12-01 13:38:55 -08002031 default:
Joe Perches226afe62010-12-02 19:12:37 -08002032 ath_dbg(ath9k_hw_common(ah), ATH_DBG_BEACON,
2033 "%s: unsupported opmode: %d\n",
2034 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08002035 return;
2036 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002037 }
2038
Felix Fietkaudd347f22011-03-22 21:54:17 +01002039 REG_WRITE(ah, AR_BEACON_PERIOD, beacon_period);
2040 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, beacon_period);
2041 REG_WRITE(ah, AR_SWBA_PERIOD, beacon_period);
2042 REG_WRITE(ah, AR_NDP_PERIOD, beacon_period);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002043
Sujith7d0d0df2010-04-16 11:53:57 +05302044 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05302045
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002046 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
2047}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002048EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002049
Sujithcbe61d82009-02-09 13:27:12 +05302050void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302051 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002052{
2053 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05302054 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002055 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002056
Sujith7d0d0df2010-04-16 11:53:57 +05302057 ENABLE_REGWRITE_BUFFER(ah);
2058
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002059 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
2060
2061 REG_WRITE(ah, AR_BEACON_PERIOD,
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05302062 TU_TO_USEC(bs->bs_intval));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002063 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05302064 TU_TO_USEC(bs->bs_intval));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002065
Sujith7d0d0df2010-04-16 11:53:57 +05302066 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05302067
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002068 REG_RMW_FIELD(ah, AR_RSSI_THR,
2069 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
2070
Rajkumar Manoharanf29f5c02011-05-20 17:52:11 +05302071 beaconintval = bs->bs_intval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002072
2073 if (bs->bs_sleepduration > beaconintval)
2074 beaconintval = bs->bs_sleepduration;
2075
2076 dtimperiod = bs->bs_dtimperiod;
2077 if (bs->bs_sleepduration > dtimperiod)
2078 dtimperiod = bs->bs_sleepduration;
2079
2080 if (beaconintval == dtimperiod)
2081 nextTbtt = bs->bs_nextdtim;
2082 else
2083 nextTbtt = bs->bs_nexttbtt;
2084
Joe Perches226afe62010-12-02 19:12:37 -08002085 ath_dbg(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
2086 ath_dbg(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
2087 ath_dbg(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
2088 ath_dbg(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002089
Sujith7d0d0df2010-04-16 11:53:57 +05302090 ENABLE_REGWRITE_BUFFER(ah);
2091
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002092 REG_WRITE(ah, AR_NEXT_DTIM,
2093 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
2094 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
2095
2096 REG_WRITE(ah, AR_SLEEP1,
2097 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
2098 | AR_SLEEP1_ASSUME_DTIM);
2099
Sujith60b67f52008-08-07 10:52:38 +05302100 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002101 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
2102 else
2103 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
2104
2105 REG_WRITE(ah, AR_SLEEP2,
2106 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
2107
2108 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
2109 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
2110
Sujith7d0d0df2010-04-16 11:53:57 +05302111 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05302112
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002113 REG_SET_BIT(ah, AR_TIMER_MODE,
2114 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
2115 AR_DTIM_TIMER_EN);
2116
Sujith4af9cf42009-02-12 10:06:47 +05302117 /* TSF Out of Range Threshold */
2118 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002119}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002120EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002121
Sujithf1dc5602008-10-29 10:16:30 +05302122/*******************/
2123/* HW Capabilities */
2124/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002125
Felix Fietkau60540692011-07-19 08:46:44 +02002126static u8 fixup_chainmask(u8 chip_chainmask, u8 eeprom_chainmask)
2127{
2128 eeprom_chainmask &= chip_chainmask;
2129 if (eeprom_chainmask)
2130 return eeprom_chainmask;
2131 else
2132 return chip_chainmask;
2133}
2134
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002135int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002136{
Sujith2660b812009-02-09 13:27:26 +05302137 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002138 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002139 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002140 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Felix Fietkau60540692011-07-19 08:46:44 +02002141 unsigned int chip_chainmask;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002142
Sujith Manoharan0ff2b5c2011-04-20 11:00:34 +05302143 u16 eeval;
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08002144 u8 ant_div_ctl1, tx_chainmask, rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002145
Sujithf74df6f2009-02-09 13:27:24 +05302146 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002147 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302148
Sujith2660b812009-02-09 13:27:26 +05302149 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05302150 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002151 if (regulatory->current_rd == 0x64 ||
2152 regulatory->current_rd == 0x65)
2153 regulatory->current_rd += 5;
2154 else if (regulatory->current_rd == 0x41)
2155 regulatory->current_rd = 0x43;
Joe Perches226afe62010-12-02 19:12:37 -08002156 ath_dbg(common, ATH_DBG_REGULATORY,
2157 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002158 }
Sujithdc2222a2008-08-14 13:26:55 +05302159
Sujithf74df6f2009-02-09 13:27:24 +05302160 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002161 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
Joe Perches38002762010-12-02 19:12:36 -08002162 ath_err(common,
2163 "no band has been marked as supported in EEPROM\n");
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002164 return -EINVAL;
2165 }
2166
Felix Fietkaud4659912010-10-14 16:02:39 +02002167 if (eeval & AR5416_OPFLAGS_11A)
2168 pCap->hw_caps |= ATH9K_HW_CAP_5GHZ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002169
Felix Fietkaud4659912010-10-14 16:02:39 +02002170 if (eeval & AR5416_OPFLAGS_11G)
2171 pCap->hw_caps |= ATH9K_HW_CAP_2GHZ;
Sujithf1dc5602008-10-29 10:16:30 +05302172
Felix Fietkau60540692011-07-19 08:46:44 +02002173 if (AR_SREV_9485(ah) || AR_SREV_9285(ah) || AR_SREV_9330(ah))
2174 chip_chainmask = 1;
2175 else if (!AR_SREV_9280_20_OR_LATER(ah))
2176 chip_chainmask = 7;
2177 else if (!AR_SREV_9300_20_OR_LATER(ah) || AR_SREV_9340(ah))
2178 chip_chainmask = 3;
2179 else
2180 chip_chainmask = 7;
2181
Sujithf74df6f2009-02-09 13:27:24 +05302182 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002183 /*
2184 * For AR9271 we will temporarilly uses the rx chainmax as read from
2185 * the EEPROM.
2186 */
Sujith8147f5d2009-02-20 15:13:23 +05302187 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002188 !(eeval & AR5416_OPFLAGS_11A) &&
2189 !(AR_SREV_9271(ah)))
2190 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05302191 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
Felix Fietkau598cdd52011-03-19 13:55:42 +01002192 else if (AR_SREV_9100(ah))
2193 pCap->rx_chainmask = 0x7;
Sujith8147f5d2009-02-20 15:13:23 +05302194 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002195 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05302196 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05302197
Felix Fietkau60540692011-07-19 08:46:44 +02002198 pCap->tx_chainmask = fixup_chainmask(chip_chainmask, pCap->tx_chainmask);
2199 pCap->rx_chainmask = fixup_chainmask(chip_chainmask, pCap->rx_chainmask);
Felix Fietkau82b2d332011-09-03 01:40:23 +02002200 ah->txchainmask = pCap->tx_chainmask;
2201 ah->rxchainmask = pCap->rx_chainmask;
Felix Fietkau60540692011-07-19 08:46:44 +02002202
Felix Fietkau7a370812010-09-22 12:34:52 +02002203 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05302204
Felix Fietkau02d2ebb2010-11-22 15:39:39 +01002205 /* enable key search for every frame in an aggregate */
2206 if (AR_SREV_9300_20_OR_LATER(ah))
2207 ah->misc_mode |= AR_PCU_ALWAYS_PERFORM_KEYSEARCH;
2208
Bruno Randolfce2220d2010-09-17 11:36:25 +09002209 common->crypt_caps |= ATH_CRYPT_CAP_CIPHER_AESCCM;
2210
Felix Fietkau0db156e2011-03-23 20:57:29 +01002211 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
Sujithf1dc5602008-10-29 10:16:30 +05302212 pCap->hw_caps |= ATH9K_HW_CAP_HT;
2213 else
2214 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
2215
Sujith5b5fa352010-03-17 14:25:15 +05302216 if (AR_SREV_9271(ah))
2217 pCap->num_gpio_pins = AR9271_NUM_GPIO;
Sujith88c1f4f2010-06-30 14:46:31 +05302218 else if (AR_DEVID_7010(ah))
2219 pCap->num_gpio_pins = AR7010_NUM_GPIO;
Mohammed Shafi Shajakhan6321eb02011-09-30 11:31:27 +05302220 else if (AR_SREV_9300_20_OR_LATER(ah))
2221 pCap->num_gpio_pins = AR9300_NUM_GPIO;
2222 else if (AR_SREV_9287_11_OR_LATER(ah))
2223 pCap->num_gpio_pins = AR9287_NUM_GPIO;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02002224 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302225 pCap->num_gpio_pins = AR9285_NUM_GPIO;
Felix Fietkau7a370812010-09-22 12:34:52 +02002226 else if (AR_SREV_9280_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302227 pCap->num_gpio_pins = AR928X_NUM_GPIO;
2228 else
2229 pCap->num_gpio_pins = AR_NUM_GPIO;
2230
Sujithf1dc5602008-10-29 10:16:30 +05302231 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
2232 pCap->hw_caps |= ATH9K_HW_CAP_CST;
2233 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
2234 } else {
2235 pCap->rts_aggr_limit = (8 * 1024);
2236 }
2237
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302238#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05302239 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
2240 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
2241 ah->rfkill_gpio =
2242 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
2243 ah->rfkill_polarity =
2244 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05302245
2246 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
2247 }
2248#endif
Vasanthakumar Thiagarajand5d11542010-05-17 18:57:56 -07002249 if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
Vivek Natarajanbde748a2010-04-05 14:48:05 +05302250 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
2251 else
2252 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05302253
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302254 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302255 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
2256 else
2257 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
2258
Vivek Natarajana6ef5302011-04-26 10:39:53 +05302259 if (common->btcoex_enabled) {
2260 if (AR_SREV_9300_20_OR_LATER(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002261 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
Vivek Natarajana6ef5302011-04-26 10:39:53 +05302262 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO_9300;
2263 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO_9300;
2264 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO_9300;
2265 } else if (AR_SREV_9280_20_OR_LATER(ah)) {
2266 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO_9280;
2267 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO_9280;
2268
2269 if (AR_SREV_9285(ah)) {
2270 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
2271 btcoex_hw->btpriority_gpio =
2272 ATH_BTPRIORITY_GPIO_9285;
2273 } else {
2274 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
2275 }
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302276 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302277 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002278 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05302279 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002280
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002281 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajan784ad502010-12-06 04:27:40 -08002282 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_FASTCLOCK;
Gabor Juhos0e707a92011-06-21 11:23:31 +02002283 if (!AR_SREV_9330(ah) && !AR_SREV_9485(ah))
Vasanthakumar Thiagarajan784ad502010-12-06 04:27:40 -08002284 pCap->hw_caps |= ATH9K_HW_CAP_LDPC;
2285
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002286 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
2287 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
2288 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002289 pCap->tx_desc_len = sizeof(struct ar9003_txc);
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04002290 pCap->txs_len = sizeof(struct ar9003_txs);
Luis R. Rodriguez6f481012011-01-20 17:47:39 -08002291 if (!ah->config.paprd_disable &&
2292 ah->eep_ops->get_eeprom(ah, EEP_PAPRD))
Felix Fietkau49352502010-06-12 00:33:59 -04002293 pCap->hw_caps |= ATH9K_HW_CAP_PAPRD;
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002294 } else {
2295 pCap->tx_desc_len = sizeof(struct ath_desc);
Felix Fietkaua949b172011-07-09 11:12:47 +07002296 if (AR_SREV_9280_20(ah))
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04002297 pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002298 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002299
Vasanthakumar Thiagarajan6c84ce02010-04-15 17:39:16 -04002300 if (AR_SREV_9300_20_OR_LATER(ah))
2301 pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
2302
Senthil Balasubramanian6ee63f52010-11-10 05:03:16 -08002303 if (AR_SREV_9300_20_OR_LATER(ah))
2304 ah->ent_mode = REG_READ(ah, AR_ENT_OTP);
2305
Felix Fietkaua42acef2010-09-22 12:34:54 +02002306 if (AR_SREV_9287_11_OR_LATER(ah) || AR_SREV_9271(ah))
Vasanthakumar Thiagarajan6473d242010-05-13 18:42:38 -07002307 pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
2308
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002309 if (AR_SREV_9285(ah))
2310 if (ah->eep_ops->get_eeprom(ah, EEP_MODAL_VER) >= 3) {
2311 ant_div_ctl1 =
2312 ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
2313 if ((ant_div_ctl1 & 0x1) && ((ant_div_ctl1 >> 3) & 0x1))
2314 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
2315 }
Mohammed Shafi Shajakhanea066d52010-11-23 20:42:27 +05302316 if (AR_SREV_9300_20_OR_LATER(ah)) {
2317 if (ah->eep_ops->get_eeprom(ah, EEP_CHAIN_MASK_REDUCE))
2318 pCap->hw_caps |= ATH9K_HW_CAP_APM;
2319 }
2320
2321
Gabor Juhos431da562011-06-21 11:23:41 +02002322 if (AR_SREV_9330(ah) || AR_SREV_9485(ah)) {
Mohammed Shafi Shajakhan21d2c632011-05-13 20:29:31 +05302323 ant_div_ctl1 = ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
2324 /*
2325 * enable the diversity-combining algorithm only when
2326 * both enable_lna_div and enable_fast_div are set
2327 * Table for Diversity
2328 * ant_div_alt_lnaconf bit 0-1
2329 * ant_div_main_lnaconf bit 2-3
2330 * ant_div_alt_gaintb bit 4
2331 * ant_div_main_gaintb bit 5
2332 * enable_ant_div_lnadiv bit 6
2333 * enable_ant_fast_div bit 7
2334 */
2335 if ((ant_div_ctl1 >> 0x6) == 0x3)
2336 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
2337 }
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002338
Vasanthakumar Thiagarajan8060e162010-12-06 04:27:42 -08002339 if (AR_SREV_9485_10(ah)) {
2340 pCap->pcie_lcr_extsync_en = true;
2341 pCap->pcie_lcr_offset = 0x80;
2342 }
2343
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08002344 tx_chainmask = pCap->tx_chainmask;
2345 rx_chainmask = pCap->rx_chainmask;
2346 while (tx_chainmask || rx_chainmask) {
2347 if (tx_chainmask & BIT(0))
2348 pCap->max_txchains++;
2349 if (rx_chainmask & BIT(0))
2350 pCap->max_rxchains++;
2351
2352 tx_chainmask >>= 1;
2353 rx_chainmask >>= 1;
2354 }
2355
Rajkumar Manoharan8ad74c42011-10-13 11:00:38 +05302356 if (AR_SREV_9300_20_OR_LATER(ah)) {
2357 ah->enabled_cals |= TX_IQ_CAL;
2358 if (!AR_SREV_9330(ah))
2359 ah->enabled_cals |= TX_IQ_ON_AGC_CAL;
2360 }
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05302361 if (AR_SREV_9462(ah))
Rajkumar Manoharan7dc181c2011-10-24 18:19:49 +05302362 pCap->hw_caps |= ATH9K_HW_CAP_RTT | ATH9K_HW_CAP_MCI;
Rajkumar Manoharan324c74a2011-10-13 11:00:41 +05302363
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002364 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002365}
2366
Sujithf1dc5602008-10-29 10:16:30 +05302367/****************************/
2368/* GPIO / RFKILL / Antennae */
2369/****************************/
2370
Sujithcbe61d82009-02-09 13:27:12 +05302371static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302372 u32 gpio, u32 type)
2373{
2374 int addr;
2375 u32 gpio_shift, tmp;
2376
2377 if (gpio > 11)
2378 addr = AR_GPIO_OUTPUT_MUX3;
2379 else if (gpio > 5)
2380 addr = AR_GPIO_OUTPUT_MUX2;
2381 else
2382 addr = AR_GPIO_OUTPUT_MUX1;
2383
2384 gpio_shift = (gpio % 6) * 5;
2385
2386 if (AR_SREV_9280_20_OR_LATER(ah)
2387 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2388 REG_RMW(ah, addr, (type << gpio_shift),
2389 (0x1f << gpio_shift));
2390 } else {
2391 tmp = REG_READ(ah, addr);
2392 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2393 tmp &= ~(0x1f << gpio_shift);
2394 tmp |= (type << gpio_shift);
2395 REG_WRITE(ah, addr, tmp);
2396 }
2397}
2398
Sujithcbe61d82009-02-09 13:27:12 +05302399void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302400{
2401 u32 gpio_shift;
2402
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002403 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302404
Sujith88c1f4f2010-06-30 14:46:31 +05302405 if (AR_DEVID_7010(ah)) {
2406 gpio_shift = gpio;
2407 REG_RMW(ah, AR7010_GPIO_OE,
2408 (AR7010_GPIO_OE_AS_INPUT << gpio_shift),
2409 (AR7010_GPIO_OE_MASK << gpio_shift));
2410 return;
2411 }
Sujithf1dc5602008-10-29 10:16:30 +05302412
Sujith88c1f4f2010-06-30 14:46:31 +05302413 gpio_shift = gpio << 1;
Sujithf1dc5602008-10-29 10:16:30 +05302414 REG_RMW(ah,
2415 AR_GPIO_OE_OUT,
2416 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2417 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2418}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002419EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302420
Sujithcbe61d82009-02-09 13:27:12 +05302421u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302422{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302423#define MS_REG_READ(x, y) \
2424 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2425
Sujith2660b812009-02-09 13:27:26 +05302426 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302427 return 0xffffffff;
2428
Sujith88c1f4f2010-06-30 14:46:31 +05302429 if (AR_DEVID_7010(ah)) {
2430 u32 val;
2431 val = REG_READ(ah, AR7010_GPIO_IN);
2432 return (MS(val, AR7010_GPIO_IN_VAL) & AR_GPIO_BIT(gpio)) == 0;
2433 } else if (AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan93069902010-11-30 23:24:09 -08002434 return (MS(REG_READ(ah, AR_GPIO_IN), AR9300_GPIO_IN_VAL) &
2435 AR_GPIO_BIT(gpio)) != 0;
Felix Fietkau783dfca2010-04-15 17:38:11 -04002436 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05302437 return MS_REG_READ(AR9271, gpio) != 0;
Felix Fietkaua42acef2010-09-22 12:34:54 +02002438 else if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302439 return MS_REG_READ(AR9287, gpio) != 0;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02002440 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302441 return MS_REG_READ(AR9285, gpio) != 0;
Felix Fietkau7a370812010-09-22 12:34:52 +02002442 else if (AR_SREV_9280_20_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302443 return MS_REG_READ(AR928X, gpio) != 0;
2444 else
2445 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05302446}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002447EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302448
Sujithcbe61d82009-02-09 13:27:12 +05302449void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05302450 u32 ah_signal_type)
2451{
2452 u32 gpio_shift;
2453
Sujith88c1f4f2010-06-30 14:46:31 +05302454 if (AR_DEVID_7010(ah)) {
2455 gpio_shift = gpio;
2456 REG_RMW(ah, AR7010_GPIO_OE,
2457 (AR7010_GPIO_OE_AS_OUTPUT << gpio_shift),
2458 (AR7010_GPIO_OE_MASK << gpio_shift));
2459 return;
2460 }
2461
Sujithf1dc5602008-10-29 10:16:30 +05302462 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
Sujithf1dc5602008-10-29 10:16:30 +05302463 gpio_shift = 2 * gpio;
Sujithf1dc5602008-10-29 10:16:30 +05302464 REG_RMW(ah,
2465 AR_GPIO_OE_OUT,
2466 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2467 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2468}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002469EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05302470
Sujithcbe61d82009-02-09 13:27:12 +05302471void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302472{
Sujith88c1f4f2010-06-30 14:46:31 +05302473 if (AR_DEVID_7010(ah)) {
2474 val = val ? 0 : 1;
2475 REG_RMW(ah, AR7010_GPIO_OUT, ((val&1) << gpio),
2476 AR_GPIO_BIT(gpio));
2477 return;
2478 }
2479
Sujith5b5fa352010-03-17 14:25:15 +05302480 if (AR_SREV_9271(ah))
2481 val = ~val;
2482
Sujithf1dc5602008-10-29 10:16:30 +05302483 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2484 AR_GPIO_BIT(gpio));
2485}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002486EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302487
Sujithcbe61d82009-02-09 13:27:12 +05302488u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302489{
2490 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
2491}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002492EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302493
Sujithcbe61d82009-02-09 13:27:12 +05302494void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302495{
2496 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2497}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002498EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302499
Sujithf1dc5602008-10-29 10:16:30 +05302500/*********************/
2501/* General Operation */
2502/*********************/
2503
Sujithcbe61d82009-02-09 13:27:12 +05302504u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302505{
2506 u32 bits = REG_READ(ah, AR_RX_FILTER);
2507 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2508
2509 if (phybits & AR_PHY_ERR_RADAR)
2510 bits |= ATH9K_RX_FILTER_PHYRADAR;
2511 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2512 bits |= ATH9K_RX_FILTER_PHYERR;
2513
2514 return bits;
2515}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002516EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302517
Sujithcbe61d82009-02-09 13:27:12 +05302518void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302519{
2520 u32 phybits;
2521
Sujith7d0d0df2010-04-16 11:53:57 +05302522 ENABLE_REGWRITE_BUFFER(ah);
2523
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05302524 if (AR_SREV_9462(ah))
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302525 bits |= ATH9K_RX_FILTER_CONTROL_WRAPPER;
2526
Sujith7ea310b2009-09-03 12:08:43 +05302527 REG_WRITE(ah, AR_RX_FILTER, bits);
2528
Sujithf1dc5602008-10-29 10:16:30 +05302529 phybits = 0;
2530 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2531 phybits |= AR_PHY_ERR_RADAR;
2532 if (bits & ATH9K_RX_FILTER_PHYERR)
2533 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2534 REG_WRITE(ah, AR_PHY_ERR, phybits);
2535
2536 if (phybits)
Felix Fietkauca7a4de2011-03-23 20:57:26 +01002537 REG_SET_BIT(ah, AR_RXCFG, AR_RXCFG_ZLFDMA);
Sujithf1dc5602008-10-29 10:16:30 +05302538 else
Felix Fietkauca7a4de2011-03-23 20:57:26 +01002539 REG_CLR_BIT(ah, AR_RXCFG, AR_RXCFG_ZLFDMA);
Sujith7d0d0df2010-04-16 11:53:57 +05302540
2541 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302542}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002543EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302544
Sujithcbe61d82009-02-09 13:27:12 +05302545bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302546{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302547 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2548 return false;
2549
2550 ath9k_hw_init_pll(ah, NULL);
2551 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302552}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002553EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302554
Sujithcbe61d82009-02-09 13:27:12 +05302555bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302556{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002557 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302558 return false;
2559
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302560 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2561 return false;
2562
2563 ath9k_hw_init_pll(ah, NULL);
2564 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302565}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002566EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302567
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002568static int get_antenna_gain(struct ath_hw *ah, struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05302569{
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002570 enum eeprom_param gain_param;
Felix Fietkau9c204b42011-07-27 15:01:05 +02002571
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002572 if (IS_CHAN_2GHZ(chan))
2573 gain_param = EEP_ANTENNA_GAIN_2G;
2574 else
2575 gain_param = EEP_ANTENNA_GAIN_5G;
Sujithf1dc5602008-10-29 10:16:30 +05302576
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002577 return ah->eep_ops->get_eeprom(ah, gain_param);
2578}
2579
2580void ath9k_hw_apply_txpower(struct ath_hw *ah, struct ath9k_channel *chan)
2581{
2582 struct ath_regulatory *reg = ath9k_hw_regulatory(ah);
2583 struct ieee80211_channel *channel;
2584 int chan_pwr, new_pwr, max_gain;
2585 int ant_gain, ant_reduction = 0;
2586
2587 if (!chan)
2588 return;
2589
2590 channel = chan->chan;
2591 chan_pwr = min_t(int, channel->max_power * 2, MAX_RATE_POWER);
2592 new_pwr = min_t(int, chan_pwr, reg->power_limit);
2593 max_gain = chan_pwr - new_pwr + channel->max_antenna_gain * 2;
2594
2595 ant_gain = get_antenna_gain(ah, chan);
2596 if (ant_gain > max_gain)
2597 ant_reduction = ant_gain - max_gain;
Sujithf1dc5602008-10-29 10:16:30 +05302598
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002599 ah->eep_ops->set_txpower(ah, chan,
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002600 ath9k_regd_get_ctl(reg, chan),
2601 ant_reduction, new_pwr, false);
2602}
2603
2604void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit, bool test)
2605{
2606 struct ath_regulatory *reg = ath9k_hw_regulatory(ah);
2607 struct ath9k_channel *chan = ah->curchan;
2608 struct ieee80211_channel *channel = chan->chan;
2609
Dan Carpenter48ef5c42011-10-17 10:28:23 +03002610 reg->power_limit = min_t(u32, limit, MAX_RATE_POWER);
Felix Fietkauca2c68c2011-10-08 20:06:20 +02002611 if (test)
2612 channel->max_power = MAX_RATE_POWER / 2;
2613
2614 ath9k_hw_apply_txpower(ah, chan);
2615
2616 if (test)
2617 channel->max_power = DIV_ROUND_UP(reg->max_power_level, 2);
Sujithf1dc5602008-10-29 10:16:30 +05302618}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002619EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302620
Sujithcbe61d82009-02-09 13:27:12 +05302621void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302622{
Sujith2660b812009-02-09 13:27:26 +05302623 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302624}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002625EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302626
Sujithcbe61d82009-02-09 13:27:12 +05302627void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302628{
2629 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2630 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2631}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002632EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302633
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002634void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302635{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002636 struct ath_common *common = ath9k_hw_common(ah);
2637
2638 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2639 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2640 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302641}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002642EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302643
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002644#define ATH9K_MAX_TSF_READ 10
2645
Sujithcbe61d82009-02-09 13:27:12 +05302646u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302647{
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002648 u32 tsf_lower, tsf_upper1, tsf_upper2;
2649 int i;
Sujithf1dc5602008-10-29 10:16:30 +05302650
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002651 tsf_upper1 = REG_READ(ah, AR_TSF_U32);
2652 for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
2653 tsf_lower = REG_READ(ah, AR_TSF_L32);
2654 tsf_upper2 = REG_READ(ah, AR_TSF_U32);
2655 if (tsf_upper2 == tsf_upper1)
2656 break;
2657 tsf_upper1 = tsf_upper2;
2658 }
Sujithf1dc5602008-10-29 10:16:30 +05302659
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002660 WARN_ON( i == ATH9K_MAX_TSF_READ );
2661
2662 return (((u64)tsf_upper1 << 32) | tsf_lower);
Sujithf1dc5602008-10-29 10:16:30 +05302663}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002664EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302665
Sujithcbe61d82009-02-09 13:27:12 +05302666void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002667{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002668 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002669 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002670}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002671EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002672
Sujithcbe61d82009-02-09 13:27:12 +05302673void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302674{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002675 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2676 AH_TSF_WRITE_TIMEOUT))
Joe Perches226afe62010-12-02 19:12:37 -08002677 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
2678 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002679
Sujithf1dc5602008-10-29 10:16:30 +05302680 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002681}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002682EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002683
Sujith54e4cec2009-08-07 09:45:09 +05302684void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002685{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002686 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302687 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002688 else
Sujith2660b812009-02-09 13:27:26 +05302689 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002690}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002691EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002692
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002693void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002694{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002695 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05302696 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002697
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002698 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05302699 macmode = AR_2040_JOINED_RX_CLEAR;
2700 else
2701 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002702
Sujithf1dc5602008-10-29 10:16:30 +05302703 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002704}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302705
2706/* HW Generic timers configuration */
2707
2708static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2709{
2710 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2711 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2712 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2713 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2714 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2715 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2716 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2717 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2718 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2719 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2720 AR_NDP2_TIMER_MODE, 0x0002},
2721 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2722 AR_NDP2_TIMER_MODE, 0x0004},
2723 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2724 AR_NDP2_TIMER_MODE, 0x0008},
2725 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2726 AR_NDP2_TIMER_MODE, 0x0010},
2727 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2728 AR_NDP2_TIMER_MODE, 0x0020},
2729 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2730 AR_NDP2_TIMER_MODE, 0x0040},
2731 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2732 AR_NDP2_TIMER_MODE, 0x0080}
2733};
2734
2735/* HW generic timer primitives */
2736
2737/* compute and clear index of rightmost 1 */
2738static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
2739{
2740 u32 b;
2741
2742 b = *mask;
2743 b &= (0-b);
2744 *mask &= ~b;
2745 b *= debruijn32;
2746 b >>= 27;
2747
2748 return timer_table->gen_timer_index[b];
2749}
2750
Felix Fietkaudd347f22011-03-22 21:54:17 +01002751u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302752{
2753 return REG_READ(ah, AR_TSF_L32);
2754}
Felix Fietkaudd347f22011-03-22 21:54:17 +01002755EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302756
2757struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2758 void (*trigger)(void *),
2759 void (*overflow)(void *),
2760 void *arg,
2761 u8 timer_index)
2762{
2763 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2764 struct ath_gen_timer *timer;
2765
2766 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
2767
2768 if (timer == NULL) {
Joe Perches38002762010-12-02 19:12:36 -08002769 ath_err(ath9k_hw_common(ah),
2770 "Failed to allocate memory for hw timer[%d]\n",
2771 timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302772 return NULL;
2773 }
2774
2775 /* allocate a hardware generic timer slot */
2776 timer_table->timers[timer_index] = timer;
2777 timer->index = timer_index;
2778 timer->trigger = trigger;
2779 timer->overflow = overflow;
2780 timer->arg = arg;
2781
2782 return timer;
2783}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002784EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302785
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002786void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2787 struct ath_gen_timer *timer,
Vasanthakumar Thiagarajan788f6872011-04-21 18:33:27 +05302788 u32 trig_timeout,
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002789 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302790{
2791 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
Vasanthakumar Thiagarajan788f6872011-04-21 18:33:27 +05302792 u32 tsf, timer_next;
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302793
2794 BUG_ON(!timer_period);
2795
2796 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
2797
2798 tsf = ath9k_hw_gettsf32(ah);
2799
Vasanthakumar Thiagarajan788f6872011-04-21 18:33:27 +05302800 timer_next = tsf + trig_timeout;
2801
Joe Perches226afe62010-12-02 19:12:37 -08002802 ath_dbg(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
2803 "current tsf %x period %x timer_next %x\n",
2804 tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302805
2806 /*
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302807 * Program generic timer registers
2808 */
2809 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2810 timer_next);
2811 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2812 timer_period);
2813 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2814 gen_tmr_configuration[timer->index].mode_mask);
2815
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05302816 if (AR_SREV_9462(ah)) {
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302817 /*
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05302818 * Starting from AR9462, each generic timer can select which tsf
Senthil Balasubramanian2577c6e2011-09-13 22:38:18 +05302819 * to use. But we still follow the old rule, 0 - 7 use tsf and
2820 * 8 - 15 use tsf2.
2821 */
2822 if ((timer->index < AR_GEN_TIMER_BANK_1_LEN))
2823 REG_CLR_BIT(ah, AR_MAC_PCU_GEN_TIMER_TSF_SEL,
2824 (1 << timer->index));
2825 else
2826 REG_SET_BIT(ah, AR_MAC_PCU_GEN_TIMER_TSF_SEL,
2827 (1 << timer->index));
2828 }
2829
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302830 /* Enable both trigger and thresh interrupt masks */
2831 REG_SET_BIT(ah, AR_IMR_S5,
2832 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2833 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302834}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002835EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302836
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002837void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302838{
2839 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2840
2841 if ((timer->index < AR_FIRST_NDP_TIMER) ||
2842 (timer->index >= ATH_MAX_GEN_TIMER)) {
2843 return;
2844 }
2845
2846 /* Clear generic timer enable bits. */
2847 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2848 gen_tmr_configuration[timer->index].mode_mask);
2849
2850 /* Disable both trigger and thresh interrupt masks */
2851 REG_CLR_BIT(ah, AR_IMR_S5,
2852 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2853 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2854
2855 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302856}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002857EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302858
2859void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
2860{
2861 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2862
2863 /* free the hardware generic timer slot */
2864 timer_table->timers[timer->index] = NULL;
2865 kfree(timer);
2866}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002867EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302868
2869/*
2870 * Generic Timer Interrupts handling
2871 */
2872void ath_gen_timer_isr(struct ath_hw *ah)
2873{
2874 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2875 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002876 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302877 u32 trigger_mask, thresh_mask, index;
2878
2879 /* get hardware generic timer interrupt status */
2880 trigger_mask = ah->intr_gen_timer_trigger;
2881 thresh_mask = ah->intr_gen_timer_thresh;
2882 trigger_mask &= timer_table->timer_mask.val;
2883 thresh_mask &= timer_table->timer_mask.val;
2884
2885 trigger_mask &= ~thresh_mask;
2886
2887 while (thresh_mask) {
2888 index = rightmost_index(timer_table, &thresh_mask);
2889 timer = timer_table->timers[index];
2890 BUG_ON(!timer);
Joe Perches226afe62010-12-02 19:12:37 -08002891 ath_dbg(common, ATH_DBG_HWTIMER,
2892 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302893 timer->overflow(timer->arg);
2894 }
2895
2896 while (trigger_mask) {
2897 index = rightmost_index(timer_table, &trigger_mask);
2898 timer = timer_table->timers[index];
2899 BUG_ON(!timer);
Joe Perches226afe62010-12-02 19:12:37 -08002900 ath_dbg(common, ATH_DBG_HWTIMER,
2901 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302902 timer->trigger(timer->arg);
2903 }
2904}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002905EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002906
Sujith05020d22010-03-17 14:25:23 +05302907/********/
2908/* HTC */
2909/********/
2910
2911void ath9k_hw_htc_resetinit(struct ath_hw *ah)
2912{
2913 ah->htc_reset_init = true;
2914}
2915EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
2916
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002917static struct {
2918 u32 version;
2919 const char * name;
2920} ath_mac_bb_names[] = {
2921 /* Devices with external radios */
2922 { AR_SREV_VERSION_5416_PCI, "5416" },
2923 { AR_SREV_VERSION_5416_PCIE, "5418" },
2924 { AR_SREV_VERSION_9100, "9100" },
2925 { AR_SREV_VERSION_9160, "9160" },
2926 /* Single-chip solutions */
2927 { AR_SREV_VERSION_9280, "9280" },
2928 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04002929 { AR_SREV_VERSION_9287, "9287" },
2930 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguezec839032010-04-15 17:39:20 -04002931 { AR_SREV_VERSION_9300, "9300" },
Gabor Juhos2c8e5932011-06-21 11:23:21 +02002932 { AR_SREV_VERSION_9330, "9330" },
Florian Fainelli397e5d52011-08-25 21:33:48 +02002933 { AR_SREV_VERSION_9340, "9340" },
Senthil Balasubramanian8f06ca22011-04-01 17:16:33 +05302934 { AR_SREV_VERSION_9485, "9485" },
Rajkumar Manoharan423e38e2011-10-13 11:00:44 +05302935 { AR_SREV_VERSION_9462, "9462" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002936};
2937
2938/* For devices with external radios */
2939static struct {
2940 u16 version;
2941 const char * name;
2942} ath_rf_names[] = {
2943 { 0, "5133" },
2944 { AR_RAD5133_SREV_MAJOR, "5133" },
2945 { AR_RAD5122_SREV_MAJOR, "5122" },
2946 { AR_RAD2133_SREV_MAJOR, "2133" },
2947 { AR_RAD2122_SREV_MAJOR, "2122" }
2948};
2949
2950/*
2951 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2952 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002953static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002954{
2955 int i;
2956
2957 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2958 if (ath_mac_bb_names[i].version == mac_bb_version) {
2959 return ath_mac_bb_names[i].name;
2960 }
2961 }
2962
2963 return "????";
2964}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002965
2966/*
2967 * Return the RF name. "????" is returned if the RF is unknown.
2968 * Used for devices with external radios.
2969 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002970static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002971{
2972 int i;
2973
2974 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2975 if (ath_rf_names[i].version == rf_version) {
2976 return ath_rf_names[i].name;
2977 }
2978 }
2979
2980 return "????";
2981}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002982
2983void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
2984{
2985 int used;
2986
2987 /* chipsets >= AR9280 are single-chip */
Felix Fietkau7a370812010-09-22 12:34:52 +02002988 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002989 used = snprintf(hw_name, len,
2990 "Atheros AR%s Rev:%x",
2991 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2992 ah->hw_version.macRev);
2993 }
2994 else {
2995 used = snprintf(hw_name, len,
2996 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
2997 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2998 ah->hw_version.macRev,
2999 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
3000 AR_RADIO_SREV_MAJOR)),
3001 ah->hw_version.phyRev);
3002 }
3003
3004 hw_name[used] = '\0';
3005}
3006EXPORT_SYMBOL(ath9k_hw_name);