blob: 338b07502f1adc5621c60815a8f5ce8c0e0345e6 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Luis R. Rodriguezb3950e62010-04-15 17:39:03 -04002 * Copyright (c) 2008-2010 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070019#include <asm/unaligned.h>
20
Luis R. Rodriguezaf03abe2009-09-09 02:33:11 -070021#include "hw.h"
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040022#include "hw-ops.h"
Luis R. Rodriguezcfe8cba2009-09-13 23:39:31 -070023#include "rc.h"
Luis R. Rodriguezb622a722010-04-15 17:39:28 -040024#include "ar9003_mac.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070025
Sujithcbe61d82009-02-09 13:27:12 +053026static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070027
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040028MODULE_AUTHOR("Atheros Communications");
29MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
30MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
31MODULE_LICENSE("Dual BSD/GPL");
32
33static int __init ath9k_init(void)
34{
35 return 0;
36}
37module_init(ath9k_init);
38
39static void __exit ath9k_exit(void)
40{
41 return;
42}
43module_exit(ath9k_exit);
44
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -040045/* Private hardware callbacks */
46
47static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
48{
49 ath9k_hw_private_ops(ah)->init_cal_settings(ah);
50}
51
52static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
53{
54 ath9k_hw_private_ops(ah)->init_mode_regs(ah);
55}
56
Luis R. Rodriguez64773962010-04-15 17:38:17 -040057static u32 ath9k_hw_compute_pll_control(struct ath_hw *ah,
58 struct ath9k_channel *chan)
59{
60 return ath9k_hw_private_ops(ah)->compute_pll_control(ah, chan);
61}
62
Luis R. Rodriguez991312d2010-04-15 17:39:05 -040063static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
64{
65 if (!ath9k_hw_private_ops(ah)->init_mode_gain_regs)
66 return;
67
68 ath9k_hw_private_ops(ah)->init_mode_gain_regs(ah);
69}
70
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -040071static void ath9k_hw_ani_cache_ini_regs(struct ath_hw *ah)
72{
73 /* You will not have this callback if using the old ANI */
74 if (!ath9k_hw_private_ops(ah)->ani_cache_ini_regs)
75 return;
76
77 ath9k_hw_private_ops(ah)->ani_cache_ini_regs(ah);
78}
79
Sujithf1dc5602008-10-29 10:16:30 +053080/********************/
81/* Helper Functions */
82/********************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070083
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020084static void ath9k_hw_set_clockrate(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +053085{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070086 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020087 struct ath_common *common = ath9k_hw_common(ah);
88 unsigned int clockrate;
Sujithcbe61d82009-02-09 13:27:12 +053089
Sujith2660b812009-02-09 13:27:26 +053090 if (!ah->curchan) /* should really check for CCK instead */
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020091 clockrate = ATH9K_CLOCK_RATE_CCK;
92 else if (conf->channel->band == IEEE80211_BAND_2GHZ)
93 clockrate = ATH9K_CLOCK_RATE_2GHZ_OFDM;
94 else if (ah->caps.hw_caps & ATH9K_HW_CAP_FASTCLOCK)
95 clockrate = ATH9K_CLOCK_FAST_RATE_5GHZ_OFDM;
Vasanthakumar Thiagarajane5553722010-04-26 15:04:33 -040096 else
Felix Fietkaudfdac8a2010-10-08 22:13:51 +020097 clockrate = ATH9K_CLOCK_RATE_5GHZ_OFDM;
98
99 if (conf_is_ht40(conf))
100 clockrate *= 2;
101
102 common->clockrate = clockrate;
Sujithf1dc5602008-10-29 10:16:30 +0530103}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700104
Sujithcbe61d82009-02-09 13:27:12 +0530105static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +0530106{
Felix Fietkaudfdac8a2010-10-08 22:13:51 +0200107 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +0530108
Felix Fietkaudfdac8a2010-10-08 22:13:51 +0200109 return usecs * common->clockrate;
Sujithf1dc5602008-10-29 10:16:30 +0530110}
111
Sujith0caa7b12009-02-16 13:23:20 +0530112bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700113{
114 int i;
115
Sujith0caa7b12009-02-16 13:23:20 +0530116 BUG_ON(timeout < AH_TIME_QUANTUM);
117
118 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700119 if ((REG_READ(ah, reg) & mask) == val)
120 return true;
121
122 udelay(AH_TIME_QUANTUM);
123 }
Sujith04bd4632008-11-28 22:18:05 +0530124
Joe Perches226afe62010-12-02 19:12:37 -0800125 ath_dbg(ath9k_hw_common(ah), ATH_DBG_ANY,
126 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
127 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +0530128
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700129 return false;
130}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400131EXPORT_SYMBOL(ath9k_hw_wait);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700132
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700133u32 ath9k_hw_reverse_bits(u32 val, u32 n)
134{
135 u32 retval;
136 int i;
137
138 for (i = 0, retval = 0; i < n; i++) {
139 retval = (retval << 1) | (val & 1);
140 val >>= 1;
141 }
142 return retval;
143}
144
Sujithcbe61d82009-02-09 13:27:12 +0530145bool ath9k_get_channel_edges(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530146 u16 flags, u16 *low,
147 u16 *high)
148{
Sujith2660b812009-02-09 13:27:26 +0530149 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530150
151 if (flags & CHANNEL_5GHZ) {
152 *low = pCap->low_5ghz_chan;
153 *high = pCap->high_5ghz_chan;
154 return true;
155 }
156 if ((flags & CHANNEL_2GHZ)) {
157 *low = pCap->low_2ghz_chan;
158 *high = pCap->high_2ghz_chan;
159 return true;
160 }
161 return false;
162}
163
Sujithcbe61d82009-02-09 13:27:12 +0530164u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Felix Fietkau545750d2009-11-23 22:21:01 +0100165 u8 phy, int kbps,
Sujithf1dc5602008-10-29 10:16:30 +0530166 u32 frameLen, u16 rateix,
167 bool shortPreamble)
168{
169 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
Sujithf1dc5602008-10-29 10:16:30 +0530170
171 if (kbps == 0)
172 return 0;
173
Felix Fietkau545750d2009-11-23 22:21:01 +0100174 switch (phy) {
Sujith46d14a52008-11-18 09:08:13 +0530175 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530176 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Felix Fietkau545750d2009-11-23 22:21:01 +0100177 if (shortPreamble)
Sujithf1dc5602008-10-29 10:16:30 +0530178 phyTime >>= 1;
179 numBits = frameLen << 3;
180 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
181 break;
Sujith46d14a52008-11-18 09:08:13 +0530182 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530183 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530184 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
185 numBits = OFDM_PLCP_BITS + (frameLen << 3);
186 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
187 txTime = OFDM_SIFS_TIME_QUARTER
188 + OFDM_PREAMBLE_TIME_QUARTER
189 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530190 } else if (ah->curchan &&
191 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530192 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
193 numBits = OFDM_PLCP_BITS + (frameLen << 3);
194 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
195 txTime = OFDM_SIFS_TIME_HALF +
196 OFDM_PREAMBLE_TIME_HALF
197 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
198 } else {
199 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
200 numBits = OFDM_PLCP_BITS + (frameLen << 3);
201 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
202 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
203 + (numSymbols * OFDM_SYMBOL_TIME);
204 }
205 break;
206 default:
Joe Perches38002762010-12-02 19:12:36 -0800207 ath_err(ath9k_hw_common(ah),
208 "Unknown phy %u (rate ix %u)\n", phy, rateix);
Sujithf1dc5602008-10-29 10:16:30 +0530209 txTime = 0;
210 break;
211 }
212
213 return txTime;
214}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400215EXPORT_SYMBOL(ath9k_hw_computetxtime);
Sujithf1dc5602008-10-29 10:16:30 +0530216
Sujithcbe61d82009-02-09 13:27:12 +0530217void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530218 struct ath9k_channel *chan,
219 struct chan_centers *centers)
220{
221 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530222
223 if (!IS_CHAN_HT40(chan)) {
224 centers->ctl_center = centers->ext_center =
225 centers->synth_center = chan->channel;
226 return;
227 }
228
229 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
230 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
231 centers->synth_center =
232 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
233 extoff = 1;
234 } else {
235 centers->synth_center =
236 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
237 extoff = -1;
238 }
239
240 centers->ctl_center =
241 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700242 /* 25 MHz spacing is supported by hw but not on upper layers */
Sujithf1dc5602008-10-29 10:16:30 +0530243 centers->ext_center =
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700244 centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
Sujithf1dc5602008-10-29 10:16:30 +0530245}
246
247/******************/
248/* Chip Revisions */
249/******************/
250
Sujithcbe61d82009-02-09 13:27:12 +0530251static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530252{
253 u32 val;
254
255 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
256
257 if (val == 0xFF) {
258 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530259 ah->hw_version.macVersion =
260 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
261 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Sujith2660b812009-02-09 13:27:26 +0530262 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530263 } else {
264 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530265 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530266
Sujithd535a422009-02-09 13:27:06 +0530267 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530268
Sujithd535a422009-02-09 13:27:06 +0530269 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530270 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530271 }
272}
273
Sujithf1dc5602008-10-29 10:16:30 +0530274/************************************/
275/* HW Attach, Detach, Init Routines */
276/************************************/
277
Sujithcbe61d82009-02-09 13:27:12 +0530278static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530279{
Felix Fietkau040b74f2010-12-12 00:51:07 +0100280 if (!AR_SREV_5416(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530281 return;
282
283 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
284 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
285 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
286 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
287 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
288 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
289 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
290 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
291 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
292
293 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
294}
295
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400296/* This should work for all families including legacy */
Sujithcbe61d82009-02-09 13:27:12 +0530297static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530298{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700299 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400300 u32 regAddr[2] = { AR_STA_ID0 };
Sujithf1dc5602008-10-29 10:16:30 +0530301 u32 regHold[2];
Joe Perches07b2fa52010-11-20 18:38:53 -0800302 static const u32 patternData[4] = {
303 0x55555555, 0xaaaaaaaa, 0x66666666, 0x99999999
304 };
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400305 int i, j, loop_max;
Sujithf1dc5602008-10-29 10:16:30 +0530306
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400307 if (!AR_SREV_9300_20_OR_LATER(ah)) {
308 loop_max = 2;
309 regAddr[1] = AR_PHY_BASE + (8 << 2);
310 } else
311 loop_max = 1;
312
313 for (i = 0; i < loop_max; i++) {
Sujithf1dc5602008-10-29 10:16:30 +0530314 u32 addr = regAddr[i];
315 u32 wrData, rdData;
316
317 regHold[i] = REG_READ(ah, addr);
318 for (j = 0; j < 0x100; j++) {
319 wrData = (j << 16) | j;
320 REG_WRITE(ah, addr, wrData);
321 rdData = REG_READ(ah, addr);
322 if (rdData != wrData) {
Joe Perches38002762010-12-02 19:12:36 -0800323 ath_err(common,
324 "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
325 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530326 return false;
327 }
328 }
329 for (j = 0; j < 4; j++) {
330 wrData = patternData[j];
331 REG_WRITE(ah, addr, wrData);
332 rdData = REG_READ(ah, addr);
333 if (wrData != rdData) {
Joe Perches38002762010-12-02 19:12:36 -0800334 ath_err(common,
335 "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
336 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530337 return false;
338 }
339 }
340 REG_WRITE(ah, regAddr[i], regHold[i]);
341 }
342 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530343
Sujithf1dc5602008-10-29 10:16:30 +0530344 return true;
345}
346
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700347static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700348{
349 int i;
350
Sujith2660b812009-02-09 13:27:26 +0530351 ah->config.dma_beacon_response_time = 2;
352 ah->config.sw_beacon_response_time = 10;
353 ah->config.additional_swba_backoff = 0;
354 ah->config.ack_6mb = 0x0;
355 ah->config.cwm_ignore_extcca = 0;
356 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530357 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530358 ah->config.pcie_waen = 0;
359 ah->config.analog_shiftreg = 1;
Luis R. Rodriguez03c72512010-06-12 00:33:46 -0400360 ah->config.enable_ani = true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700361
362 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530363 ah->config.spurchans[i][0] = AR_NO_SPUR;
364 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700365 }
366
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500367 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
368 ah->config.ht_enable = 1;
369 else
370 ah->config.ht_enable = 0;
371
Luis R. Rodriguez6f481012011-01-20 17:47:39 -0800372 /* PAPRD needs some more work to be enabled */
373 ah->config.paprd_disable = 1;
374
Sujith0ce024c2009-12-14 14:57:00 +0530375 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez6a0ec302010-06-21 18:38:49 -0400376 ah->config.pcieSerDesWrite = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400377
378 /*
379 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
380 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
381 * This means we use it for all AR5416 devices, and the few
382 * minor PCI AR9280 devices out there.
383 *
384 * Serialization is required because these devices do not handle
385 * well the case of two concurrent reads/writes due to the latency
386 * involved. During one read/write another read/write can be issued
387 * on another CPU while the previous read/write may still be working
388 * on our hardware, if we hit this case the hardware poops in a loop.
389 * We prevent this by serializing reads and writes.
390 *
391 * This issue is not present on PCI-Express devices or pre-AR5416
392 * devices (legacy, 802.11abg).
393 */
394 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700395 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700396}
397
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700398static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700399{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700400 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
401
402 regulatory->country_code = CTRY_DEFAULT;
403 regulatory->power_limit = MAX_RATE_POWER;
404 regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
405
Sujithd535a422009-02-09 13:27:06 +0530406 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530407 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700408
Sujith2660b812009-02-09 13:27:26 +0530409 ah->atim_window = 0;
Felix Fietkau16f24112010-06-12 17:22:32 +0200410 ah->sta_id1_defaults =
411 AR_STA_ID1_CRPT_MIC_ENABLE |
412 AR_STA_ID1_MCAST_KSRCH;
Sujith2660b812009-02-09 13:27:26 +0530413 ah->enable_32kHz_clock = DONT_USE_32KHZ;
Felix Fietkau4357c6b2010-12-13 08:40:50 +0100414 ah->slottime = 20;
Sujith2660b812009-02-09 13:27:26 +0530415 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200416 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700417}
418
Sujithcbe61d82009-02-09 13:27:12 +0530419static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700420{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700421 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530422 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700423 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530424 u16 eeval;
Joe Perches07b2fa52010-11-20 18:38:53 -0800425 static const u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700426
Sujithf1dc5602008-10-29 10:16:30 +0530427 sum = 0;
428 for (i = 0; i < 3; i++) {
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400429 eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
Sujithf1dc5602008-10-29 10:16:30 +0530430 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700431 common->macaddr[2 * i] = eeval >> 8;
432 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700433 }
Sujithd8baa932009-03-30 15:28:25 +0530434 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530435 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700436
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700437 return 0;
438}
439
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700440static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700441{
Sujith Manoharan6cae913d2011-01-04 13:16:37 +0530442 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700443 int ecode;
444
Sujith Manoharan6cae913d2011-01-04 13:16:37 +0530445 if (common->bus_ops->ath_bus_type != ATH_USB) {
Sujith527d4852010-03-17 14:25:16 +0530446 if (!ath9k_hw_chip_test(ah))
447 return -ENODEV;
448 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700449
Luis R. Rodriguezebd5a142010-04-15 17:39:18 -0400450 if (!AR_SREV_9300_20_OR_LATER(ah)) {
451 ecode = ar9002_hw_rf_claim(ah);
452 if (ecode != 0)
453 return ecode;
454 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700455
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700456 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700457 if (ecode != 0)
458 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530459
Joe Perches226afe62010-12-02 19:12:37 -0800460 ath_dbg(ath9k_hw_common(ah), ATH_DBG_CONFIG,
461 "Eeprom VER: %d, REV: %d\n",
462 ah->eep_ops->get_eeprom_ver(ah),
463 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530464
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400465 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
466 if (ecode) {
Joe Perches38002762010-12-02 19:12:36 -0800467 ath_err(ath9k_hw_common(ah),
468 "Failed allocating banks for external radio\n");
Rajkumar Manoharan48a7c3d2010-11-08 20:40:53 +0530469 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400470 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400471 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700472
473 if (!AR_SREV_9100(ah)) {
474 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700475 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700476 }
Sujithf1dc5602008-10-29 10:16:30 +0530477
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700478 return 0;
479}
480
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400481static void ath9k_hw_attach_ops(struct ath_hw *ah)
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700482{
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400483 if (AR_SREV_9300_20_OR_LATER(ah))
484 ar9003_hw_attach_ops(ah);
485 else
486 ar9002_hw_attach_ops(ah);
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700487}
488
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400489/* Called for all hardware families */
490static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700491{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700492 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700493 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700494
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400495 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
496 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700497
Senthil Balasubramanianac45c122010-12-22 21:14:20 +0530498 ath9k_hw_read_revisions(ah);
499
Senthil Balasubramanian0a8d7cb2010-12-22 19:17:18 +0530500 /*
501 * Read back AR_WA into a permanent copy and set bits 14 and 17.
502 * We need to do this to avoid RMW of this register. We cannot
503 * read the reg when chip is asleep.
504 */
505 ah->WARegVal = REG_READ(ah, AR_WA);
506 ah->WARegVal |= (AR_WA_D3_L1_DISABLE |
507 AR_WA_ASPM_TIMER_BASED_DISABLE);
508
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700509 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Joe Perches38002762010-12-02 19:12:36 -0800510 ath_err(common, "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700511 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700512 }
513
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400514 ath9k_hw_init_defaults(ah);
515 ath9k_hw_init_config(ah);
516
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400517 ath9k_hw_attach_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400518
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700519 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Joe Perches38002762010-12-02 19:12:36 -0800520 ath_err(common, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700521 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700522 }
523
524 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
525 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
John W. Linville4c85ab12010-07-28 10:06:35 -0400526 ((AR_SREV_9160(ah) || AR_SREV_9280(ah)) &&
527 !ah->is_pciexpress)) {
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700528 ah->config.serialize_regmode =
529 SER_REG_MODE_ON;
530 } else {
531 ah->config.serialize_regmode =
532 SER_REG_MODE_OFF;
533 }
534 }
535
Joe Perches226afe62010-12-02 19:12:37 -0800536 ath_dbg(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700537 ah->config.serialize_regmode);
538
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500539 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
540 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
541 else
542 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
543
Felix Fietkau6da5a722010-12-12 00:51:12 +0100544 switch (ah->hw_version.macVersion) {
545 case AR_SREV_VERSION_5416_PCI:
546 case AR_SREV_VERSION_5416_PCIE:
547 case AR_SREV_VERSION_9160:
548 case AR_SREV_VERSION_9100:
549 case AR_SREV_VERSION_9280:
550 case AR_SREV_VERSION_9285:
551 case AR_SREV_VERSION_9287:
552 case AR_SREV_VERSION_9271:
553 case AR_SREV_VERSION_9300:
554 case AR_SREV_VERSION_9485:
555 break;
556 default:
Joe Perches38002762010-12-02 19:12:36 -0800557 ath_err(common,
558 "Mac Chip Rev 0x%02x.%x is not supported by this driver\n",
559 ah->hw_version.macVersion, ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700560 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700561 }
562
Luis R. Rodriguez0df13da2010-04-15 17:38:59 -0400563 if (AR_SREV_9271(ah) || AR_SREV_9100(ah))
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400564 ah->is_pciexpress = false;
565
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700566 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700567 ath9k_hw_init_cal_settings(ah);
568
569 ah->ani_function = ATH9K_ANI_ALL;
Felix Fietkau7a370812010-09-22 12:34:52 +0200570 if (AR_SREV_9280_20_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700571 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400572 if (!AR_SREV_9300_20_OR_LATER(ah))
573 ah->ani_function &= ~ATH9K_ANI_MRC_CCK;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700574
575 ath9k_hw_init_mode_regs(ah);
576
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -0400577
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700578 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530579 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700580 else
581 ath9k_hw_disablepcie(ah);
582
Luis R. Rodriguezd8f492b2010-04-15 17:39:04 -0400583 if (!AR_SREV_9300_20_OR_LATER(ah))
584 ar9002_hw_cck_chan14_spread(ah);
Sujith193cd452009-09-18 15:04:07 +0530585
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700586 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700587 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700588 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700589
590 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100591 r = ath9k_hw_fill_cap_info(ah);
592 if (r)
593 return r;
594
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700595 r = ath9k_hw_init_macaddr(ah);
596 if (r) {
Joe Perches38002762010-12-02 19:12:36 -0800597 ath_err(common, "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700598 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700599 }
600
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400601 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530602 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700603 else
Sujith2660b812009-02-09 13:27:26 +0530604 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700605
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -0400606 ah->bb_watchdog_timeout_ms = 25;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700607
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400608 common->state = ATH_HW_INITIALIZED;
609
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700610 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700611}
612
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400613int ath9k_hw_init(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530614{
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400615 int ret;
616 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530617
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400618 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
619 switch (ah->hw_version.devid) {
620 case AR5416_DEVID_PCI:
621 case AR5416_DEVID_PCIE:
622 case AR5416_AR9100_DEVID:
623 case AR9160_DEVID_PCI:
624 case AR9280_DEVID_PCI:
625 case AR9280_DEVID_PCIE:
626 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400627 case AR9287_DEVID_PCI:
628 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400629 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400630 case AR9300_DEVID_PCIE:
Vasanthakumar Thiagarajan3050c912010-12-06 04:27:36 -0800631 case AR9300_DEVID_AR9485_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400632 break;
633 default:
634 if (common->bus_ops->ath_bus_type == ATH_USB)
635 break;
Joe Perches38002762010-12-02 19:12:36 -0800636 ath_err(common, "Hardware device ID 0x%04x not supported\n",
637 ah->hw_version.devid);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400638 return -EOPNOTSUPP;
639 }
Sujithf1dc5602008-10-29 10:16:30 +0530640
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400641 ret = __ath9k_hw_init(ah);
642 if (ret) {
Joe Perches38002762010-12-02 19:12:36 -0800643 ath_err(common,
644 "Unable to initialize hardware; initialization status: %d\n",
645 ret);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400646 return ret;
647 }
Sujithf1dc5602008-10-29 10:16:30 +0530648
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400649 return 0;
Sujithf1dc5602008-10-29 10:16:30 +0530650}
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400651EXPORT_SYMBOL(ath9k_hw_init);
Sujithf1dc5602008-10-29 10:16:30 +0530652
Sujithcbe61d82009-02-09 13:27:12 +0530653static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530654{
Sujith7d0d0df2010-04-16 11:53:57 +0530655 ENABLE_REGWRITE_BUFFER(ah);
656
Sujithf1dc5602008-10-29 10:16:30 +0530657 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
658 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
659
660 REG_WRITE(ah, AR_QOS_NO_ACK,
661 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
662 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
663 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
664
665 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
666 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
667 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
668 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
669 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
Sujith7d0d0df2010-04-16 11:53:57 +0530670
671 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530672}
673
Vivek Natarajanb1415812011-01-27 14:45:07 +0530674unsigned long ar9003_get_pll_sqsum_dvc(struct ath_hw *ah)
675{
676 REG_WRITE(ah, PLL3, (REG_READ(ah, PLL3) & ~(PLL3_DO_MEAS_MASK)));
677 udelay(100);
678 REG_WRITE(ah, PLL3, (REG_READ(ah, PLL3) | PLL3_DO_MEAS_MASK));
679
680 while ((REG_READ(ah, PLL4) & PLL4_MEAS_DONE) == 0)
681 udelay(100);
682
683 return (REG_READ(ah, PLL3) & SQSUM_DVC_MASK) >> 3;
684}
685EXPORT_SYMBOL(ar9003_get_pll_sqsum_dvc);
686
Vivek Natarajan22983c32011-01-27 14:45:09 +0530687#define DPLL2_KD_VAL 0x3D
688#define DPLL2_KI_VAL 0x06
689#define DPLL3_PHASE_SHIFT_VAL 0x1
690
Sujithcbe61d82009-02-09 13:27:12 +0530691static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530692 struct ath9k_channel *chan)
693{
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800694 u32 pll;
695
Vivek Natarajan22983c32011-01-27 14:45:09 +0530696 if (AR_SREV_9485(ah)) {
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800697 REG_WRITE(ah, AR_RTC_PLL_CONTROL2, 0x886666);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530698 REG_WRITE(ah, AR_CH0_DDR_DPLL2, 0x19e82f01);
699
700 REG_RMW_FIELD(ah, AR_CH0_DDR_DPLL3,
701 AR_CH0_DPLL3_PHASE_SHIFT, DPLL3_PHASE_SHIFT_VAL);
702
703 REG_WRITE(ah, AR_RTC_PLL_CONTROL, 0x1142c);
Vivek Natarajan75e03512011-03-10 11:05:42 +0530704 udelay(1000);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530705
706 REG_WRITE(ah, AR_RTC_PLL_CONTROL2, 0x886666);
707
708 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
709 AR_CH0_DPLL2_KD, DPLL2_KD_VAL);
710 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
711 AR_CH0_DPLL2_KI, DPLL2_KI_VAL);
712
713 REG_RMW_FIELD(ah, AR_CH0_BB_DPLL3,
714 AR_CH0_DPLL3_PHASE_SHIFT, DPLL3_PHASE_SHIFT_VAL);
715 REG_WRITE(ah, AR_RTC_PLL_CONTROL, 0x142c);
Vivek Natarajan75e03512011-03-10 11:05:42 +0530716 udelay(1000);
Vivek Natarajan22983c32011-01-27 14:45:09 +0530717 }
Vasanthakumar Thiagarajand09b17f2010-12-06 04:27:44 -0800718
719 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530720
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100721 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530722
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400723 /* Switch the core clock for ar9271 to 117Mhz */
724 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530725 udelay(500);
726 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400727 }
728
Sujithf1dc5602008-10-29 10:16:30 +0530729 udelay(RTC_PLL_SETTLE_DELAY);
730
731 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
732}
733
Sujithcbe61d82009-02-09 13:27:12 +0530734static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800735 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530736{
Pavel Roskin152d5302010-03-31 18:05:37 -0400737 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530738 AR_IMR_TXURN |
739 AR_IMR_RXERR |
740 AR_IMR_RXORN |
741 AR_IMR_BCNMISC;
742
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400743 if (AR_SREV_9300_20_OR_LATER(ah)) {
744 imr_reg |= AR_IMR_RXOK_HP;
745 if (ah->config.rx_intr_mitigation)
746 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
747 else
748 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530749
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400750 } else {
751 if (ah->config.rx_intr_mitigation)
752 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
753 else
754 imr_reg |= AR_IMR_RXOK;
755 }
756
757 if (ah->config.tx_intr_mitigation)
758 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
759 else
760 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530761
Colin McCabed97809d2008-12-01 13:38:55 -0800762 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -0400763 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +0530764
Sujith7d0d0df2010-04-16 11:53:57 +0530765 ENABLE_REGWRITE_BUFFER(ah);
766
Pavel Roskin152d5302010-03-31 18:05:37 -0400767 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500768 ah->imrs2_reg |= AR_IMR_S2_GTT;
769 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530770
771 if (!AR_SREV_9100(ah)) {
772 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
773 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
774 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
775 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400776
Sujith7d0d0df2010-04-16 11:53:57 +0530777 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530778
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400779 if (AR_SREV_9300_20_OR_LATER(ah)) {
780 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
781 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
782 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
783 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
784 }
Sujithf1dc5602008-10-29 10:16:30 +0530785}
786
Felix Fietkau0005baf2010-01-15 02:33:40 +0100787static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530788{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100789 u32 val = ath9k_hw_mac_to_clks(ah, us);
790 val = min(val, (u32) 0xFFFF);
791 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530792}
793
Felix Fietkau0005baf2010-01-15 02:33:40 +0100794static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530795{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100796 u32 val = ath9k_hw_mac_to_clks(ah, us);
797 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
798 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
799}
800
801static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
802{
803 u32 val = ath9k_hw_mac_to_clks(ah, us);
804 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
805 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530806}
807
Sujithcbe61d82009-02-09 13:27:12 +0530808static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +0530809{
Sujithf1dc5602008-10-29 10:16:30 +0530810 if (tu > 0xFFFF) {
Joe Perches226afe62010-12-02 19:12:37 -0800811 ath_dbg(ath9k_hw_common(ah), ATH_DBG_XMIT,
812 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +0530813 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +0530814 return false;
815 } else {
816 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +0530817 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +0530818 return true;
819 }
820}
821
Felix Fietkau0005baf2010-01-15 02:33:40 +0100822void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530823{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100824 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
825 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +0100826 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100827 int sifstime;
828
Joe Perches226afe62010-12-02 19:12:37 -0800829 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
830 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +0530831
Sujith2660b812009-02-09 13:27:26 +0530832 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +0530833 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +0530834 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100835
836 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
837 sifstime = 16;
838 else
839 sifstime = 10;
840
Felix Fietkaue239d852010-01-15 02:34:58 +0100841 /* As defined by IEEE 802.11-2007 17.3.8.6 */
842 slottime = ah->slottime + 3 * ah->coverage_class;
843 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +0100844
845 /*
846 * Workaround for early ACK timeouts, add an offset to match the
847 * initval's 64us ack timeout value.
848 * This was initially only meant to work around an issue with delayed
849 * BA frames in some implementations, but it has been found to fix ACK
850 * timeout issues in other cases as well.
851 */
852 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
853 acktimeout += 64 - sifstime - ah->slottime;
854
Felix Fietkaucaabf2b2010-12-13 08:40:51 +0100855 ath9k_hw_setslottime(ah, ah->slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100856 ath9k_hw_set_ack_timeout(ah, acktimeout);
857 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +0530858 if (ah->globaltxtimeout != (u32) -1)
859 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +0530860}
Felix Fietkau0005baf2010-01-15 02:33:40 +0100861EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +0530862
Sujith285f2dd2010-01-08 10:36:07 +0530863void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700864{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400865 struct ath_common *common = ath9k_hw_common(ah);
866
Sujith736b3a22010-03-17 14:25:24 +0530867 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400868 goto free_hw;
869
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700870 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400871
872free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400873 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700874}
Sujith285f2dd2010-01-08 10:36:07 +0530875EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700876
Sujithf1dc5602008-10-29 10:16:30 +0530877/*******/
878/* INI */
879/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700880
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400881u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -0400882{
883 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
884
885 if (IS_CHAN_B(chan))
886 ctl |= CTL_11B;
887 else if (IS_CHAN_G(chan))
888 ctl |= CTL_11G;
889 else
890 ctl |= CTL_11A;
891
892 return ctl;
893}
894
Sujithf1dc5602008-10-29 10:16:30 +0530895/****************************************/
896/* Reset and Channel Switching Routines */
897/****************************************/
898
Sujithcbe61d82009-02-09 13:27:12 +0530899static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530900{
Felix Fietkau57b32222010-04-15 17:39:22 -0400901 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530902 u32 regval;
903
Sujith7d0d0df2010-04-16 11:53:57 +0530904 ENABLE_REGWRITE_BUFFER(ah);
905
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400906 /*
907 * set AHB_MODE not to do cacheline prefetches
908 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400909 if (!AR_SREV_9300_20_OR_LATER(ah)) {
910 regval = REG_READ(ah, AR_AHB_MODE);
911 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
912 }
Sujithf1dc5602008-10-29 10:16:30 +0530913
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400914 /*
915 * let mac dma reads be in 128 byte chunks
916 */
Sujithf1dc5602008-10-29 10:16:30 +0530917 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
918 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
919
Sujith7d0d0df2010-04-16 11:53:57 +0530920 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530921
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400922 /*
923 * Restore TX Trigger Level to its pre-reset value.
924 * The initial value depends on whether aggregation is enabled, and is
925 * adjusted whenever underruns are detected.
926 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400927 if (!AR_SREV_9300_20_OR_LATER(ah))
928 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +0530929
Sujith7d0d0df2010-04-16 11:53:57 +0530930 ENABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530931
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400932 /*
933 * let mac dma writes be in 128 byte chunks
934 */
Sujithf1dc5602008-10-29 10:16:30 +0530935 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
936 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
937
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400938 /*
939 * Setup receive FIFO threshold to hold off TX activities
940 */
Sujithf1dc5602008-10-29 10:16:30 +0530941 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
942
Felix Fietkau57b32222010-04-15 17:39:22 -0400943 if (AR_SREV_9300_20_OR_LATER(ah)) {
944 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
945 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
946
947 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
948 ah->caps.rx_status_len);
949 }
950
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400951 /*
952 * reduce the number of usable entries in PCU TXBUF to avoid
953 * wrap around issues.
954 */
Sujithf1dc5602008-10-29 10:16:30 +0530955 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400956 /* For AR9285 the number of Fifos are reduced to half.
957 * So set the usable tx buf size also to half to
958 * avoid data/delimiter underruns
959 */
Sujithf1dc5602008-10-29 10:16:30 +0530960 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
961 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400962 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +0530963 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
964 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
965 }
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -0400966
Sujith7d0d0df2010-04-16 11:53:57 +0530967 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530968
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -0400969 if (AR_SREV_9300_20_OR_LATER(ah))
970 ath9k_hw_reset_txstatus_ring(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530971}
972
Sujithcbe61d82009-02-09 13:27:12 +0530973static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530974{
975 u32 val;
976
977 val = REG_READ(ah, AR_STA_ID1);
978 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
979 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -0800980 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +0530981 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
982 | AR_STA_ID1_KSRCH_MODE);
983 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
984 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800985 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400986 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +0530987 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
988 | AR_STA_ID1_KSRCH_MODE);
989 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
990 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800991 case NL80211_IFTYPE_STATION:
Sujithf1dc5602008-10-29 10:16:30 +0530992 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
993 break;
Rajkumar Manoharan5f841b42010-10-27 18:31:15 +0530994 default:
995 if (ah->is_monitoring)
996 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
997 break;
Sujithf1dc5602008-10-29 10:16:30 +0530998 }
999}
1000
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001001void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
1002 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001003{
1004 u32 coef_exp, coef_man;
1005
1006 for (coef_exp = 31; coef_exp > 0; coef_exp--)
1007 if ((coef_scaled >> coef_exp) & 0x1)
1008 break;
1009
1010 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
1011
1012 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
1013
1014 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
1015 *coef_exponent = coef_exp - 16;
1016}
1017
Sujithcbe61d82009-02-09 13:27:12 +05301018static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +05301019{
1020 u32 rst_flags;
1021 u32 tmpReg;
1022
Sujith70768492009-02-16 13:23:12 +05301023 if (AR_SREV_9100(ah)) {
1024 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1025 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1026 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1027 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1028 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1029 }
1030
Sujith7d0d0df2010-04-16 11:53:57 +05301031 ENABLE_REGWRITE_BUFFER(ah);
1032
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001033 if (AR_SREV_9300_20_OR_LATER(ah)) {
1034 REG_WRITE(ah, AR_WA, ah->WARegVal);
1035 udelay(10);
1036 }
1037
Sujithf1dc5602008-10-29 10:16:30 +05301038 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1039 AR_RTC_FORCE_WAKE_ON_INT);
1040
1041 if (AR_SREV_9100(ah)) {
1042 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1043 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1044 } else {
1045 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1046 if (tmpReg &
1047 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1048 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001049 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301050 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001051
1052 val = AR_RC_HOSTIF;
1053 if (!AR_SREV_9300_20_OR_LATER(ah))
1054 val |= AR_RC_AHB;
1055 REG_WRITE(ah, AR_RC, val);
1056
1057 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301058 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301059
1060 rst_flags = AR_RTC_RC_MAC_WARM;
1061 if (type == ATH9K_RESET_COLD)
1062 rst_flags |= AR_RTC_RC_MAC_COLD;
1063 }
1064
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001065 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujith7d0d0df2010-04-16 11:53:57 +05301066
1067 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301068
Sujithf1dc5602008-10-29 10:16:30 +05301069 udelay(50);
1070
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001071 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301072 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Joe Perches226afe62010-12-02 19:12:37 -08001073 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
1074 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301075 return false;
1076 }
1077
1078 if (!AR_SREV_9100(ah))
1079 REG_WRITE(ah, AR_RC, 0);
1080
Sujithf1dc5602008-10-29 10:16:30 +05301081 if (AR_SREV_9100(ah))
1082 udelay(50);
1083
1084 return true;
1085}
1086
Sujithcbe61d82009-02-09 13:27:12 +05301087static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301088{
Sujith7d0d0df2010-04-16 11:53:57 +05301089 ENABLE_REGWRITE_BUFFER(ah);
1090
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001091 if (AR_SREV_9300_20_OR_LATER(ah)) {
1092 REG_WRITE(ah, AR_WA, ah->WARegVal);
1093 udelay(10);
1094 }
1095
Sujithf1dc5602008-10-29 10:16:30 +05301096 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1097 AR_RTC_FORCE_WAKE_ON_INT);
1098
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001099 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301100 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1101
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001102 REG_WRITE(ah, AR_RTC_RESET, 0);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301103
Sujith7d0d0df2010-04-16 11:53:57 +05301104 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301105
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001106 if (!AR_SREV_9300_20_OR_LATER(ah))
1107 udelay(2);
1108
1109 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301110 REG_WRITE(ah, AR_RC, 0);
1111
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001112 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301113
1114 if (!ath9k_hw_wait(ah,
1115 AR_RTC_STATUS,
1116 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301117 AR_RTC_STATUS_ON,
1118 AH_WAIT_TIMEOUT)) {
Joe Perches226afe62010-12-02 19:12:37 -08001119 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
1120 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301121 return false;
1122 }
1123
Sujithf1dc5602008-10-29 10:16:30 +05301124 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1125}
1126
Sujithcbe61d82009-02-09 13:27:12 +05301127static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301128{
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001129 if (AR_SREV_9300_20_OR_LATER(ah)) {
1130 REG_WRITE(ah, AR_WA, ah->WARegVal);
1131 udelay(10);
1132 }
1133
Sujithf1dc5602008-10-29 10:16:30 +05301134 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1135 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1136
1137 switch (type) {
1138 case ATH9K_RESET_POWER_ON:
1139 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301140 case ATH9K_RESET_WARM:
1141 case ATH9K_RESET_COLD:
1142 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301143 default:
1144 return false;
1145 }
1146}
1147
Sujithcbe61d82009-02-09 13:27:12 +05301148static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301149 struct ath9k_channel *chan)
1150{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301151 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301152 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1153 return false;
1154 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301155 return false;
1156
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001157 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301158 return false;
1159
Sujith2660b812009-02-09 13:27:26 +05301160 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301161 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301162 ath9k_hw_set_rfmode(ah, chan);
1163
1164 return true;
1165}
1166
Sujithcbe61d82009-02-09 13:27:12 +05301167static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001168 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301169{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001170 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001171 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001172 struct ieee80211_channel *channel = chan->chan;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001173 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001174 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301175
1176 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1177 if (ath9k_hw_numtxpending(ah, qnum)) {
Joe Perches226afe62010-12-02 19:12:37 -08001178 ath_dbg(common, ATH_DBG_QUEUE,
1179 "Transmit frames pending on queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301180 return false;
1181 }
1182 }
1183
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001184 if (!ath9k_hw_rfbus_req(ah)) {
Joe Perches38002762010-12-02 19:12:36 -08001185 ath_err(common, "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301186 return false;
1187 }
1188
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001189 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301190
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001191 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001192 if (r) {
Joe Perches38002762010-12-02 19:12:36 -08001193 ath_err(common, "Failed to set channel\n");
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001194 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301195 }
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001196 ath9k_hw_set_clockrate(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301197
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001198 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001199 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301200 channel->max_antenna_gain * 2,
1201 channel->max_power * 2,
1202 min((u32) MAX_RATE_POWER,
Felix Fietkaude40f312010-10-20 03:08:53 +02001203 (u32) regulatory->power_limit), false);
Sujithf1dc5602008-10-29 10:16:30 +05301204
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001205 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301206
1207 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1208 ath9k_hw_set_delta_slope(ah, chan);
1209
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001210 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301211
Sujithf1dc5602008-10-29 10:16:30 +05301212 return true;
1213}
1214
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001215bool ath9k_hw_check_alive(struct ath_hw *ah)
Johannes Berg3b319aa2009-06-13 14:50:26 +05301216{
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001217 int count = 50;
1218 u32 reg;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301219
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001220 if (AR_SREV_9285_12_OR_LATER(ah))
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001221 return true;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301222
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001223 do {
1224 reg = REG_READ(ah, AR_OBS_BUS_1);
1225
1226 if ((reg & 0x7E7FFFEF) == 0x00702400)
1227 continue;
1228
1229 switch (reg & 0x7E000B00) {
1230 case 0x1E000000:
1231 case 0x52000B00:
1232 case 0x18000B00:
1233 continue;
1234 default:
1235 return true;
1236 }
1237 } while (count-- > 0);
1238
1239 return false;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301240}
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001241EXPORT_SYMBOL(ath9k_hw_check_alive);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301242
Sujithcbe61d82009-02-09 13:27:12 +05301243int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001244 struct ath9k_hw_cal_data *caldata, bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001245{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001246 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001247 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301248 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001249 u32 saveDefAntenna;
1250 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301251 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001252 int i, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001253
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001254 ah->txchainmask = common->tx_chainmask;
1255 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001256
Sujith Manoharan6d501922011-01-04 13:43:39 +05301257 if ((common->bus_ops->ath_bus_type != ATH_USB) && !ah->chip_fullsleep) {
Vasanthakumar Thiagarajan9b9cc612010-04-15 17:39:41 -04001258 ath9k_hw_abortpcurecv(ah);
Felix Fietkau9cc2f3e2010-07-11 12:48:42 +02001259 if (!ath9k_hw_stopdmarecv(ah)) {
Joe Perches226afe62010-12-02 19:12:37 -08001260 ath_dbg(common, ATH_DBG_XMIT,
Vasanthakumar Thiagarajan9b9cc612010-04-15 17:39:41 -04001261 "Failed to stop receive dma\n");
Felix Fietkau9cc2f3e2010-07-11 12:48:42 +02001262 bChannelChange = false;
1263 }
Vasanthakumar Thiagarajan9b9cc612010-04-15 17:39:41 -04001264 }
1265
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001266 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001267 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001268
Felix Fietkaud9891c72010-09-29 17:15:27 +02001269 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001270 ath9k_hw_getnf(ah, curchan);
1271
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001272 ah->caldata = caldata;
1273 if (caldata &&
1274 (chan->channel != caldata->channel ||
1275 (chan->channelFlags & ~CHANNEL_CW_INT) !=
1276 (caldata->channelFlags & ~CHANNEL_CW_INT))) {
1277 /* Operating channel changed, reset channel calibration data */
1278 memset(caldata, 0, sizeof(*caldata));
1279 ath9k_init_nfcal_hist_buffer(ah, chan);
1280 }
1281
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001282 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301283 (ah->chip_fullsleep != true) &&
1284 (ah->curchan != NULL) &&
1285 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001286 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301287 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Rajkumar Manoharan58d7e0f2010-09-08 15:57:12 +05301288 (!AR_SREV_9280(ah) || AR_DEVID_7010(ah))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001289
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001290 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301291 ath9k_hw_loadnf(ah, ah->curchan);
Felix Fietkau00c86592010-07-30 21:02:09 +02001292 ath9k_hw_start_nfcal(ah, true);
Rajkumar Manoharanc2ba3342010-09-03 16:00:00 +05301293 if (AR_SREV_9271(ah))
1294 ar9002_hw_load_ani_reg(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001295 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001296 }
1297 }
1298
1299 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1300 if (saveDefAntenna == 0)
1301 saveDefAntenna = 1;
1302
1303 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1304
Sujith46fe7822009-09-17 09:25:25 +05301305 /* For chips on which RTC reset is done, save TSF before it gets cleared */
Felix Fietkauf860d522010-06-30 02:07:48 +02001306 if (AR_SREV_9100(ah) ||
1307 (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)))
Sujith46fe7822009-09-17 09:25:25 +05301308 tsf = ath9k_hw_gettsf64(ah);
1309
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001310 saveLedState = REG_READ(ah, AR_CFG_LED) &
1311 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1312 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1313
1314 ath9k_hw_mark_phy_inactive(ah);
1315
Vasanthakumar Thiagarajan45ef6a0b2010-12-15 07:30:53 -08001316 ah->paprd_table_write_done = false;
1317
Sujith05020d22010-03-17 14:25:23 +05301318 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001319 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1320 REG_WRITE(ah,
1321 AR9271_RESET_POWER_DOWN_CONTROL,
1322 AR9271_RADIO_RF_RST);
1323 udelay(50);
1324 }
1325
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001326 if (!ath9k_hw_chip_reset(ah, chan)) {
Joe Perches38002762010-12-02 19:12:36 -08001327 ath_err(common, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001328 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001329 }
1330
Sujith05020d22010-03-17 14:25:23 +05301331 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001332 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1333 ah->htc_reset_init = false;
1334 REG_WRITE(ah,
1335 AR9271_RESET_POWER_DOWN_CONTROL,
1336 AR9271_GATE_MAC_CTL);
1337 udelay(50);
1338 }
1339
Sujith46fe7822009-09-17 09:25:25 +05301340 /* Restore TSF */
Felix Fietkauf860d522010-06-30 02:07:48 +02001341 if (tsf)
Sujith46fe7822009-09-17 09:25:25 +05301342 ath9k_hw_settsf64(ah, tsf);
1343
Felix Fietkau7a370812010-09-22 12:34:52 +02001344 if (AR_SREV_9280_20_OR_LATER(ah))
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301345 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001346
Sujithe9141f72010-06-01 15:14:10 +05301347 if (!AR_SREV_9300_20_OR_LATER(ah))
1348 ar9002_hw_enable_async_fifo(ah);
1349
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001350 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001351 if (r)
1352 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001353
Felix Fietkauf860d522010-06-30 02:07:48 +02001354 /*
1355 * Some AR91xx SoC devices frequently fail to accept TSF writes
1356 * right after the chip reset. When that happens, write a new
1357 * value after the initvals have been applied, with an offset
1358 * based on measured time difference
1359 */
1360 if (AR_SREV_9100(ah) && (ath9k_hw_gettsf64(ah) < tsf)) {
1361 tsf += 1500;
1362 ath9k_hw_settsf64(ah, tsf);
1363 }
1364
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001365 /* Setup MFP options for CCMP */
1366 if (AR_SREV_9280_20_OR_LATER(ah)) {
1367 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1368 * frames when constructing CCMP AAD. */
1369 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1370 0xc7ff);
1371 ah->sw_mgmt_crypto = false;
1372 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1373 /* Disable hardware crypto for management frames */
1374 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1375 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1376 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1377 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1378 ah->sw_mgmt_crypto = true;
1379 } else
1380 ah->sw_mgmt_crypto = true;
1381
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001382 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1383 ath9k_hw_set_delta_slope(ah, chan);
1384
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001385 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301386 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001387
Sujith7d0d0df2010-04-16 11:53:57 +05301388 ENABLE_REGWRITE_BUFFER(ah);
1389
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001390 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1391 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001392 | macStaId1
1393 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301394 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301395 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301396 | ah->sta_id1_defaults);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001397 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001398 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001399 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001400 REG_WRITE(ah, AR_ISR, ~0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001401 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1402
Sujith7d0d0df2010-04-16 11:53:57 +05301403 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301404
Sujith Manoharan00e00032011-01-26 21:59:05 +05301405 ath9k_hw_set_operating_mode(ah, ah->opmode);
1406
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001407 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001408 if (r)
1409 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001410
Felix Fietkaudfdac8a2010-10-08 22:13:51 +02001411 ath9k_hw_set_clockrate(ah);
1412
Sujith7d0d0df2010-04-16 11:53:57 +05301413 ENABLE_REGWRITE_BUFFER(ah);
1414
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001415 for (i = 0; i < AR_NUM_DCU; i++)
1416 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1417
Sujith7d0d0df2010-04-16 11:53:57 +05301418 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301419
Sujith2660b812009-02-09 13:27:26 +05301420 ah->intr_txqs = 0;
1421 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001422 ath9k_hw_resettxqueue(ah, i);
1423
Sujith2660b812009-02-09 13:27:26 +05301424 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001425 ath9k_hw_ani_cache_ini_regs(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001426 ath9k_hw_init_qos(ah);
1427
Sujith2660b812009-02-09 13:27:26 +05301428 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Felix Fietkau55821322010-12-17 00:57:01 +01001429 ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301430
Felix Fietkau0005baf2010-01-15 02:33:40 +01001431 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001432
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001433 if (!AR_SREV_9300_20_OR_LATER(ah)) {
Sujithe9141f72010-06-01 15:14:10 +05301434 ar9002_hw_update_async_fifo(ah);
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001435 ar9002_hw_enable_wep_aggregation(ah);
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301436 }
1437
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001438 REG_WRITE(ah, AR_STA_ID1,
1439 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
1440
1441 ath9k_hw_set_dma(ah);
1442
1443 REG_WRITE(ah, AR_OBS, 8);
1444
Sujith0ce024c2009-12-14 14:57:00 +05301445 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001446 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1447 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1448 }
1449
Vasanthakumar Thiagarajan7f62a132010-04-15 17:39:19 -04001450 if (ah->config.tx_intr_mitigation) {
1451 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
1452 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
1453 }
1454
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001455 ath9k_hw_init_bb(ah, chan);
1456
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001457 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001458 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001459
Sujith7d0d0df2010-04-16 11:53:57 +05301460 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001461
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001462 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001463 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1464
Sujith7d0d0df2010-04-16 11:53:57 +05301465 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301466
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001467 /*
1468 * For big endian systems turn on swapping for descriptors
1469 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001470 if (AR_SREV_9100(ah)) {
1471 u32 mask;
1472 mask = REG_READ(ah, AR_CFG);
1473 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Joe Perches226afe62010-12-02 19:12:37 -08001474 ath_dbg(common, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05301475 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001476 } else {
1477 mask =
1478 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1479 REG_WRITE(ah, AR_CFG, mask);
Joe Perches226afe62010-12-02 19:12:37 -08001480 ath_dbg(common, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05301481 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001482 }
1483 } else {
Sujithcbba8cd2010-06-02 15:53:31 +05301484 if (common->bus_ops->ath_bus_type == ATH_USB) {
1485 /* Configure AR9271 target WLAN */
1486 if (AR_SREV_9271(ah))
1487 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
1488 else
1489 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1490 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001491#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001492 else
1493 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001494#endif
1495 }
1496
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001497 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301498 ath9k_hw_btcoex_enable(ah);
1499
Felix Fietkau00c86592010-07-30 21:02:09 +02001500 if (AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001501 ar9003_hw_bb_watchdog_config(ah);
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001502
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001503 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001504}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001505EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001506
Sujithf1dc5602008-10-29 10:16:30 +05301507/******************************/
1508/* Power Management (Chipset) */
1509/******************************/
1510
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001511/*
1512 * Notify Power Mgt is disabled in self-generated frames.
1513 * If requested, force chip to sleep.
1514 */
Sujithcbe61d82009-02-09 13:27:12 +05301515static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301516{
1517 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1518 if (setChip) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001519 /*
1520 * Clear the RTC force wake bit to allow the
1521 * mac to go to sleep.
1522 */
Sujithf1dc5602008-10-29 10:16:30 +05301523 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1524 AR_RTC_FORCE_WAKE_EN);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001525 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301526 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1527
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001528 /* Shutdown chip. Active low */
Sujith14b3af32010-03-17 14:25:18 +05301529 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05301530 REG_CLR_BIT(ah, (AR_RTC_RESET),
1531 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301532 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001533
1534 /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */
1535 if (AR_SREV_9300_20_OR_LATER(ah))
1536 REG_WRITE(ah, AR_WA,
1537 ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001538}
1539
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001540/*
1541 * Notify Power Management is enabled in self-generating
1542 * frames. If request, set power mode of chip to
1543 * auto/normal. Duration in units of 128us (1/8 TU).
1544 */
Sujithcbe61d82009-02-09 13:27:12 +05301545static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001546{
Sujithf1dc5602008-10-29 10:16:30 +05301547 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1548 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05301549 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001550
Sujithf1dc5602008-10-29 10:16:30 +05301551 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001552 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05301553 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1554 AR_RTC_FORCE_WAKE_ON_INT);
1555 } else {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001556 /*
1557 * Clear the RTC force wake bit to allow the
1558 * mac to go to sleep.
1559 */
Sujithf1dc5602008-10-29 10:16:30 +05301560 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1561 AR_RTC_FORCE_WAKE_EN);
1562 }
1563 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001564
1565 /* Clear Bit 14 of AR_WA after putting chip into Net Sleep mode. */
1566 if (AR_SREV_9300_20_OR_LATER(ah))
1567 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Sujithf1dc5602008-10-29 10:16:30 +05301568}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001569
Sujithcbe61d82009-02-09 13:27:12 +05301570static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301571{
1572 u32 val;
1573 int i;
1574
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001575 /* Set Bits 14 and 17 of AR_WA before powering on the chip. */
1576 if (AR_SREV_9300_20_OR_LATER(ah)) {
1577 REG_WRITE(ah, AR_WA, ah->WARegVal);
1578 udelay(10);
1579 }
1580
Sujithf1dc5602008-10-29 10:16:30 +05301581 if (setChip) {
1582 if ((REG_READ(ah, AR_RTC_STATUS) &
1583 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
1584 if (ath9k_hw_set_reset_reg(ah,
1585 ATH9K_RESET_POWER_ON) != true) {
1586 return false;
1587 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04001588 if (!AR_SREV_9300_20_OR_LATER(ah))
1589 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05301590 }
1591 if (AR_SREV_9100(ah))
1592 REG_SET_BIT(ah, AR_RTC_RESET,
1593 AR_RTC_RESET_EN);
1594
1595 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1596 AR_RTC_FORCE_WAKE_EN);
1597 udelay(50);
1598
1599 for (i = POWER_UP_TIME / 50; i > 0; i--) {
1600 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
1601 if (val == AR_RTC_STATUS_ON)
1602 break;
1603 udelay(50);
1604 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1605 AR_RTC_FORCE_WAKE_EN);
1606 }
1607 if (i == 0) {
Joe Perches38002762010-12-02 19:12:36 -08001608 ath_err(ath9k_hw_common(ah),
1609 "Failed to wakeup in %uus\n",
1610 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05301611 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001612 }
1613 }
1614
Sujithf1dc5602008-10-29 10:16:30 +05301615 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1616
1617 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001618}
1619
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001620bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05301621{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001622 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05301623 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05301624 static const char *modes[] = {
1625 "AWAKE",
1626 "FULL-SLEEP",
1627 "NETWORK SLEEP",
1628 "UNDEFINED"
1629 };
Sujithf1dc5602008-10-29 10:16:30 +05301630
Gabor Juhoscbdec972009-07-24 17:27:22 +02001631 if (ah->power_mode == mode)
1632 return status;
1633
Joe Perches226afe62010-12-02 19:12:37 -08001634 ath_dbg(common, ATH_DBG_RESET, "%s -> %s\n",
1635 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05301636
1637 switch (mode) {
1638 case ATH9K_PM_AWAKE:
1639 status = ath9k_hw_set_power_awake(ah, setChip);
1640 break;
1641 case ATH9K_PM_FULL_SLEEP:
1642 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05301643 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05301644 break;
1645 case ATH9K_PM_NETWORK_SLEEP:
1646 ath9k_set_power_network_sleep(ah, setChip);
1647 break;
1648 default:
Joe Perches38002762010-12-02 19:12:36 -08001649 ath_err(common, "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05301650 return false;
1651 }
Sujith2660b812009-02-09 13:27:26 +05301652 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05301653
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08001654 /*
1655 * XXX: If this warning never comes up after a while then
1656 * simply keep the ATH_DBG_WARN_ON_ONCE() but make
1657 * ath9k_hw_setpower() return type void.
1658 */
Sujith Manoharan97dcec52010-12-20 08:02:42 +05301659
1660 if (!(ah->ah_flags & AH_UNPLUGGED))
1661 ATH_DBG_WARN_ON_ONCE(!status);
Luis R. Rodriguez69f4aab2010-12-07 15:13:23 -08001662
Sujithf1dc5602008-10-29 10:16:30 +05301663 return status;
1664}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001665EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05301666
Sujithf1dc5602008-10-29 10:16:30 +05301667/*******************/
1668/* Beacon Handling */
1669/*******************/
1670
Sujithcbe61d82009-02-09 13:27:12 +05301671void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001672{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001673 int flags = 0;
1674
Sujith7d0d0df2010-04-16 11:53:57 +05301675 ENABLE_REGWRITE_BUFFER(ah);
1676
Sujith2660b812009-02-09 13:27:26 +05301677 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001678 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001679 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001680 REG_SET_BIT(ah, AR_TXCFG,
1681 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
1682 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
1683 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05301684 (ah->atim_window ? ah->
1685 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001686 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08001687 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001688 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1689 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
1690 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301691 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301692 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001693 REG_WRITE(ah, AR_NEXT_SWBA,
1694 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301695 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301696 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001697 flags |=
1698 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
1699 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001700 default:
Joe Perches226afe62010-12-02 19:12:37 -08001701 ath_dbg(ath9k_hw_common(ah), ATH_DBG_BEACON,
1702 "%s: unsupported opmode: %d\n",
1703 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08001704 return;
1705 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001706 }
1707
1708 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1709 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1710 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
1711 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
1712
Sujith7d0d0df2010-04-16 11:53:57 +05301713 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301714
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001715 beacon_period &= ~ATH9K_BEACON_ENA;
1716 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001717 ath9k_hw_reset_tsf(ah);
1718 }
1719
1720 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
1721}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001722EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001723
Sujithcbe61d82009-02-09 13:27:12 +05301724void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301725 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001726{
1727 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05301728 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001729 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001730
Sujith7d0d0df2010-04-16 11:53:57 +05301731 ENABLE_REGWRITE_BUFFER(ah);
1732
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001733 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
1734
1735 REG_WRITE(ah, AR_BEACON_PERIOD,
1736 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1737 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
1738 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1739
Sujith7d0d0df2010-04-16 11:53:57 +05301740 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301741
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001742 REG_RMW_FIELD(ah, AR_RSSI_THR,
1743 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
1744
1745 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
1746
1747 if (bs->bs_sleepduration > beaconintval)
1748 beaconintval = bs->bs_sleepduration;
1749
1750 dtimperiod = bs->bs_dtimperiod;
1751 if (bs->bs_sleepduration > dtimperiod)
1752 dtimperiod = bs->bs_sleepduration;
1753
1754 if (beaconintval == dtimperiod)
1755 nextTbtt = bs->bs_nextdtim;
1756 else
1757 nextTbtt = bs->bs_nexttbtt;
1758
Joe Perches226afe62010-12-02 19:12:37 -08001759 ath_dbg(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
1760 ath_dbg(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
1761 ath_dbg(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
1762 ath_dbg(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001763
Sujith7d0d0df2010-04-16 11:53:57 +05301764 ENABLE_REGWRITE_BUFFER(ah);
1765
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001766 REG_WRITE(ah, AR_NEXT_DTIM,
1767 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
1768 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
1769
1770 REG_WRITE(ah, AR_SLEEP1,
1771 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
1772 | AR_SLEEP1_ASSUME_DTIM);
1773
Sujith60b67f52008-08-07 10:52:38 +05301774 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001775 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
1776 else
1777 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
1778
1779 REG_WRITE(ah, AR_SLEEP2,
1780 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
1781
1782 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
1783 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
1784
Sujith7d0d0df2010-04-16 11:53:57 +05301785 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301786
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001787 REG_SET_BIT(ah, AR_TIMER_MODE,
1788 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
1789 AR_DTIM_TIMER_EN);
1790
Sujith4af9cf42009-02-12 10:06:47 +05301791 /* TSF Out of Range Threshold */
1792 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001793}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001794EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001795
Sujithf1dc5602008-10-29 10:16:30 +05301796/*******************/
1797/* HW Capabilities */
1798/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001799
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001800int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001801{
Sujith2660b812009-02-09 13:27:26 +05301802 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001803 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001804 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001805 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001806
Sujithf1dc5602008-10-29 10:16:30 +05301807 u16 capField = 0, eeval;
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08001808 u8 ant_div_ctl1, tx_chainmask, rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001809
Sujithf74df6f2009-02-09 13:27:24 +05301810 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001811 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301812
Sujithf74df6f2009-02-09 13:27:24 +05301813 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001814 if (AR_SREV_9285_12_OR_LATER(ah))
Sujithfec0de12009-02-12 10:06:43 +05301815 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001816 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301817
Sujithf74df6f2009-02-09 13:27:24 +05301818 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05301819
Sujith2660b812009-02-09 13:27:26 +05301820 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05301821 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001822 if (regulatory->current_rd == 0x64 ||
1823 regulatory->current_rd == 0x65)
1824 regulatory->current_rd += 5;
1825 else if (regulatory->current_rd == 0x41)
1826 regulatory->current_rd = 0x43;
Joe Perches226afe62010-12-02 19:12:37 -08001827 ath_dbg(common, ATH_DBG_REGULATORY,
1828 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001829 }
Sujithdc2222a2008-08-14 13:26:55 +05301830
Sujithf74df6f2009-02-09 13:27:24 +05301831 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001832 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
Joe Perches38002762010-12-02 19:12:36 -08001833 ath_err(common,
1834 "no band has been marked as supported in EEPROM\n");
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001835 return -EINVAL;
1836 }
1837
Felix Fietkaud4659912010-10-14 16:02:39 +02001838 if (eeval & AR5416_OPFLAGS_11A)
1839 pCap->hw_caps |= ATH9K_HW_CAP_5GHZ;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001840
Felix Fietkaud4659912010-10-14 16:02:39 +02001841 if (eeval & AR5416_OPFLAGS_11G)
1842 pCap->hw_caps |= ATH9K_HW_CAP_2GHZ;
Sujithf1dc5602008-10-29 10:16:30 +05301843
Sujithf74df6f2009-02-09 13:27:24 +05301844 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001845 /*
1846 * For AR9271 we will temporarilly uses the rx chainmax as read from
1847 * the EEPROM.
1848 */
Sujith8147f5d2009-02-20 15:13:23 +05301849 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001850 !(eeval & AR5416_OPFLAGS_11A) &&
1851 !(AR_SREV_9271(ah)))
1852 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05301853 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
1854 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001855 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05301856 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301857
Felix Fietkau7a370812010-09-22 12:34:52 +02001858 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05301859
Felix Fietkau02d2ebb2010-11-22 15:39:39 +01001860 /* enable key search for every frame in an aggregate */
1861 if (AR_SREV_9300_20_OR_LATER(ah))
1862 ah->misc_mode |= AR_PCU_ALWAYS_PERFORM_KEYSEARCH;
1863
Sujithf1dc5602008-10-29 10:16:30 +05301864 pCap->low_2ghz_chan = 2312;
1865 pCap->high_2ghz_chan = 2732;
1866
1867 pCap->low_5ghz_chan = 4920;
1868 pCap->high_5ghz_chan = 6100;
1869
Bruno Randolfce2220d2010-09-17 11:36:25 +09001870 common->crypt_caps |= ATH_CRYPT_CAP_CIPHER_AESCCM;
1871
Sujith2660b812009-02-09 13:27:26 +05301872 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05301873 pCap->hw_caps |= ATH9K_HW_CAP_HT;
1874 else
1875 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
1876
Sujithf1dc5602008-10-29 10:16:30 +05301877 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
1878 pCap->total_queues =
1879 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
1880 else
1881 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
1882
1883 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
1884 pCap->keycache_size =
1885 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
1886 else
1887 pCap->keycache_size = AR_KEYTABLE_SIZE;
1888
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -05001889 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
1890 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
1891 else
1892 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
Sujithf1dc5602008-10-29 10:16:30 +05301893
Sujith5b5fa352010-03-17 14:25:15 +05301894 if (AR_SREV_9271(ah))
1895 pCap->num_gpio_pins = AR9271_NUM_GPIO;
Sujith88c1f4f2010-06-30 14:46:31 +05301896 else if (AR_DEVID_7010(ah))
1897 pCap->num_gpio_pins = AR7010_NUM_GPIO;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001898 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05301899 pCap->num_gpio_pins = AR9285_NUM_GPIO;
Felix Fietkau7a370812010-09-22 12:34:52 +02001900 else if (AR_SREV_9280_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301901 pCap->num_gpio_pins = AR928X_NUM_GPIO;
1902 else
1903 pCap->num_gpio_pins = AR_NUM_GPIO;
1904
Sujithf1dc5602008-10-29 10:16:30 +05301905 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
1906 pCap->hw_caps |= ATH9K_HW_CAP_CST;
1907 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
1908 } else {
1909 pCap->rts_aggr_limit = (8 * 1024);
1910 }
1911
1912 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
1913
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301914#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05301915 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
1916 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
1917 ah->rfkill_gpio =
1918 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
1919 ah->rfkill_polarity =
1920 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05301921
1922 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
1923 }
1924#endif
Vasanthakumar Thiagarajand5d11542010-05-17 18:57:56 -07001925 if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
Vivek Natarajanbde748a2010-04-05 14:48:05 +05301926 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
1927 else
1928 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05301929
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301930 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301931 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
1932 else
1933 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
1934
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001935 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05301936 pCap->reg_cap =
1937 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
1938 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
1939 AR_EEPROM_EEREGCAP_EN_KK_U2 |
1940 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
1941 } else {
1942 pCap->reg_cap =
1943 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
1944 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
1945 }
1946
Senthil Balasubramanianebb90cf2009-09-18 15:07:33 +05301947 /* Advertise midband for AR5416 with FCC midband set in eeprom */
1948 if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
1949 AR_SREV_5416(ah))
1950 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
Sujithf1dc5602008-10-29 10:16:30 +05301951
Vasanthakumar Thiagarajan8f5dcb12010-11-26 06:10:06 -08001952 if (AR_SREV_9280_20_OR_LATER(ah) && common->btcoex_enabled) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001953 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
1954 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05301955
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05301956 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001957 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
1958 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05301959 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001960 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05301961 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05301962 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001963 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05301964 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001965
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04001966 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajan784ad502010-12-06 04:27:40 -08001967 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_FASTCLOCK;
1968 if (!AR_SREV_9485(ah))
1969 pCap->hw_caps |= ATH9K_HW_CAP_LDPC;
1970
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04001971 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
1972 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
1973 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04001974 pCap->tx_desc_len = sizeof(struct ar9003_txc);
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04001975 pCap->txs_len = sizeof(struct ar9003_txs);
Luis R. Rodriguez6f481012011-01-20 17:47:39 -08001976 if (!ah->config.paprd_disable &&
1977 ah->eep_ops->get_eeprom(ah, EEP_PAPRD))
Felix Fietkau49352502010-06-12 00:33:59 -04001978 pCap->hw_caps |= ATH9K_HW_CAP_PAPRD;
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04001979 } else {
1980 pCap->tx_desc_len = sizeof(struct ath_desc);
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04001981 if (AR_SREV_9280_20(ah) &&
1982 ((ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) <=
1983 AR5416_EEP_MINOR_VER_16) ||
1984 ah->eep_ops->get_eeprom(ah, EEP_FSTCLK_5G)))
1985 pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04001986 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04001987
Vasanthakumar Thiagarajan6c84ce02010-04-15 17:39:16 -04001988 if (AR_SREV_9300_20_OR_LATER(ah))
1989 pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
1990
Senthil Balasubramanian6ee63f52010-11-10 05:03:16 -08001991 if (AR_SREV_9300_20_OR_LATER(ah))
1992 ah->ent_mode = REG_READ(ah, AR_ENT_OTP);
1993
Felix Fietkaua42acef2010-09-22 12:34:54 +02001994 if (AR_SREV_9287_11_OR_LATER(ah) || AR_SREV_9271(ah))
Vasanthakumar Thiagarajan6473d242010-05-13 18:42:38 -07001995 pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
1996
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07001997 if (AR_SREV_9285(ah))
1998 if (ah->eep_ops->get_eeprom(ah, EEP_MODAL_VER) >= 3) {
1999 ant_div_ctl1 =
2000 ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
2001 if ((ant_div_ctl1 & 0x1) && ((ant_div_ctl1 >> 3) & 0x1))
2002 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
2003 }
Mohammed Shafi Shajakhanea066d52010-11-23 20:42:27 +05302004 if (AR_SREV_9300_20_OR_LATER(ah)) {
2005 if (ah->eep_ops->get_eeprom(ah, EEP_CHAIN_MASK_REDUCE))
2006 pCap->hw_caps |= ATH9K_HW_CAP_APM;
2007 }
2008
2009
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07002010
Vasanthakumar Thiagarajan8060e162010-12-06 04:27:42 -08002011 if (AR_SREV_9485_10(ah)) {
2012 pCap->pcie_lcr_extsync_en = true;
2013 pCap->pcie_lcr_offset = 0x80;
2014 }
2015
Vasanthakumar Thiagarajan47c80de2010-12-06 04:27:43 -08002016 tx_chainmask = pCap->tx_chainmask;
2017 rx_chainmask = pCap->rx_chainmask;
2018 while (tx_chainmask || rx_chainmask) {
2019 if (tx_chainmask & BIT(0))
2020 pCap->max_txchains++;
2021 if (rx_chainmask & BIT(0))
2022 pCap->max_rxchains++;
2023
2024 tx_chainmask >>= 1;
2025 rx_chainmask >>= 1;
2026 }
2027
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002028 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002029}
2030
Sujithf1dc5602008-10-29 10:16:30 +05302031/****************************/
2032/* GPIO / RFKILL / Antennae */
2033/****************************/
2034
Sujithcbe61d82009-02-09 13:27:12 +05302035static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302036 u32 gpio, u32 type)
2037{
2038 int addr;
2039 u32 gpio_shift, tmp;
2040
2041 if (gpio > 11)
2042 addr = AR_GPIO_OUTPUT_MUX3;
2043 else if (gpio > 5)
2044 addr = AR_GPIO_OUTPUT_MUX2;
2045 else
2046 addr = AR_GPIO_OUTPUT_MUX1;
2047
2048 gpio_shift = (gpio % 6) * 5;
2049
2050 if (AR_SREV_9280_20_OR_LATER(ah)
2051 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2052 REG_RMW(ah, addr, (type << gpio_shift),
2053 (0x1f << gpio_shift));
2054 } else {
2055 tmp = REG_READ(ah, addr);
2056 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2057 tmp &= ~(0x1f << gpio_shift);
2058 tmp |= (type << gpio_shift);
2059 REG_WRITE(ah, addr, tmp);
2060 }
2061}
2062
Sujithcbe61d82009-02-09 13:27:12 +05302063void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302064{
2065 u32 gpio_shift;
2066
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002067 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302068
Sujith88c1f4f2010-06-30 14:46:31 +05302069 if (AR_DEVID_7010(ah)) {
2070 gpio_shift = gpio;
2071 REG_RMW(ah, AR7010_GPIO_OE,
2072 (AR7010_GPIO_OE_AS_INPUT << gpio_shift),
2073 (AR7010_GPIO_OE_MASK << gpio_shift));
2074 return;
2075 }
Sujithf1dc5602008-10-29 10:16:30 +05302076
Sujith88c1f4f2010-06-30 14:46:31 +05302077 gpio_shift = gpio << 1;
Sujithf1dc5602008-10-29 10:16:30 +05302078 REG_RMW(ah,
2079 AR_GPIO_OE_OUT,
2080 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2081 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2082}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002083EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302084
Sujithcbe61d82009-02-09 13:27:12 +05302085u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302086{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302087#define MS_REG_READ(x, y) \
2088 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2089
Sujith2660b812009-02-09 13:27:26 +05302090 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302091 return 0xffffffff;
2092
Sujith88c1f4f2010-06-30 14:46:31 +05302093 if (AR_DEVID_7010(ah)) {
2094 u32 val;
2095 val = REG_READ(ah, AR7010_GPIO_IN);
2096 return (MS(val, AR7010_GPIO_IN_VAL) & AR_GPIO_BIT(gpio)) == 0;
2097 } else if (AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan93069902010-11-30 23:24:09 -08002098 return (MS(REG_READ(ah, AR_GPIO_IN), AR9300_GPIO_IN_VAL) &
2099 AR_GPIO_BIT(gpio)) != 0;
Felix Fietkau783dfca2010-04-15 17:38:11 -04002100 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05302101 return MS_REG_READ(AR9271, gpio) != 0;
Felix Fietkaua42acef2010-09-22 12:34:54 +02002102 else if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302103 return MS_REG_READ(AR9287, gpio) != 0;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02002104 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302105 return MS_REG_READ(AR9285, gpio) != 0;
Felix Fietkau7a370812010-09-22 12:34:52 +02002106 else if (AR_SREV_9280_20_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302107 return MS_REG_READ(AR928X, gpio) != 0;
2108 else
2109 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05302110}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002111EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302112
Sujithcbe61d82009-02-09 13:27:12 +05302113void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05302114 u32 ah_signal_type)
2115{
2116 u32 gpio_shift;
2117
Sujith88c1f4f2010-06-30 14:46:31 +05302118 if (AR_DEVID_7010(ah)) {
2119 gpio_shift = gpio;
2120 REG_RMW(ah, AR7010_GPIO_OE,
2121 (AR7010_GPIO_OE_AS_OUTPUT << gpio_shift),
2122 (AR7010_GPIO_OE_MASK << gpio_shift));
2123 return;
2124 }
2125
Sujithf1dc5602008-10-29 10:16:30 +05302126 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
Sujithf1dc5602008-10-29 10:16:30 +05302127 gpio_shift = 2 * gpio;
Sujithf1dc5602008-10-29 10:16:30 +05302128 REG_RMW(ah,
2129 AR_GPIO_OE_OUT,
2130 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2131 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2132}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002133EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05302134
Sujithcbe61d82009-02-09 13:27:12 +05302135void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302136{
Sujith88c1f4f2010-06-30 14:46:31 +05302137 if (AR_DEVID_7010(ah)) {
2138 val = val ? 0 : 1;
2139 REG_RMW(ah, AR7010_GPIO_OUT, ((val&1) << gpio),
2140 AR_GPIO_BIT(gpio));
2141 return;
2142 }
2143
Sujith5b5fa352010-03-17 14:25:15 +05302144 if (AR_SREV_9271(ah))
2145 val = ~val;
2146
Sujithf1dc5602008-10-29 10:16:30 +05302147 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2148 AR_GPIO_BIT(gpio));
2149}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002150EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302151
Sujithcbe61d82009-02-09 13:27:12 +05302152u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302153{
2154 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
2155}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002156EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302157
Sujithcbe61d82009-02-09 13:27:12 +05302158void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302159{
2160 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2161}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002162EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302163
Sujithf1dc5602008-10-29 10:16:30 +05302164/*********************/
2165/* General Operation */
2166/*********************/
2167
Sujithcbe61d82009-02-09 13:27:12 +05302168u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302169{
2170 u32 bits = REG_READ(ah, AR_RX_FILTER);
2171 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2172
2173 if (phybits & AR_PHY_ERR_RADAR)
2174 bits |= ATH9K_RX_FILTER_PHYRADAR;
2175 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2176 bits |= ATH9K_RX_FILTER_PHYERR;
2177
2178 return bits;
2179}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002180EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302181
Sujithcbe61d82009-02-09 13:27:12 +05302182void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302183{
2184 u32 phybits;
2185
Sujith7d0d0df2010-04-16 11:53:57 +05302186 ENABLE_REGWRITE_BUFFER(ah);
2187
Sujith7ea310b2009-09-03 12:08:43 +05302188 REG_WRITE(ah, AR_RX_FILTER, bits);
2189
Sujithf1dc5602008-10-29 10:16:30 +05302190 phybits = 0;
2191 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2192 phybits |= AR_PHY_ERR_RADAR;
2193 if (bits & ATH9K_RX_FILTER_PHYERR)
2194 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2195 REG_WRITE(ah, AR_PHY_ERR, phybits);
2196
2197 if (phybits)
2198 REG_WRITE(ah, AR_RXCFG,
2199 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
2200 else
2201 REG_WRITE(ah, AR_RXCFG,
2202 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
Sujith7d0d0df2010-04-16 11:53:57 +05302203
2204 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302205}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002206EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302207
Sujithcbe61d82009-02-09 13:27:12 +05302208bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302209{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302210 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2211 return false;
2212
2213 ath9k_hw_init_pll(ah, NULL);
2214 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302215}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002216EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302217
Sujithcbe61d82009-02-09 13:27:12 +05302218bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302219{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002220 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302221 return false;
2222
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302223 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2224 return false;
2225
2226 ath9k_hw_init_pll(ah, NULL);
2227 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302228}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002229EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302230
Felix Fietkaude40f312010-10-20 03:08:53 +02002231void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit, bool test)
Sujithf1dc5602008-10-29 10:16:30 +05302232{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002233 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05302234 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002235 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05302236
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002237 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05302238
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002239 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002240 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002241 channel->max_antenna_gain * 2,
2242 channel->max_power * 2,
2243 min((u32) MAX_RATE_POWER,
Felix Fietkaude40f312010-10-20 03:08:53 +02002244 (u32) regulatory->power_limit), test);
Sujithf1dc5602008-10-29 10:16:30 +05302245}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002246EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302247
Sujithcbe61d82009-02-09 13:27:12 +05302248void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302249{
Sujith2660b812009-02-09 13:27:26 +05302250 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302251}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002252EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302253
Sujithcbe61d82009-02-09 13:27:12 +05302254void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302255{
2256 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2257 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2258}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002259EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302260
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002261void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302262{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002263 struct ath_common *common = ath9k_hw_common(ah);
2264
2265 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2266 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2267 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302268}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002269EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302270
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002271#define ATH9K_MAX_TSF_READ 10
2272
Sujithcbe61d82009-02-09 13:27:12 +05302273u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302274{
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002275 u32 tsf_lower, tsf_upper1, tsf_upper2;
2276 int i;
Sujithf1dc5602008-10-29 10:16:30 +05302277
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002278 tsf_upper1 = REG_READ(ah, AR_TSF_U32);
2279 for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
2280 tsf_lower = REG_READ(ah, AR_TSF_L32);
2281 tsf_upper2 = REG_READ(ah, AR_TSF_U32);
2282 if (tsf_upper2 == tsf_upper1)
2283 break;
2284 tsf_upper1 = tsf_upper2;
2285 }
Sujithf1dc5602008-10-29 10:16:30 +05302286
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002287 WARN_ON( i == ATH9K_MAX_TSF_READ );
2288
2289 return (((u64)tsf_upper1 << 32) | tsf_lower);
Sujithf1dc5602008-10-29 10:16:30 +05302290}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002291EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302292
Sujithcbe61d82009-02-09 13:27:12 +05302293void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002294{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002295 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002296 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002297}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002298EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002299
Sujithcbe61d82009-02-09 13:27:12 +05302300void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302301{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002302 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2303 AH_TSF_WRITE_TIMEOUT))
Joe Perches226afe62010-12-02 19:12:37 -08002304 ath_dbg(ath9k_hw_common(ah), ATH_DBG_RESET,
2305 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002306
Sujithf1dc5602008-10-29 10:16:30 +05302307 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002308}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002309EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002310
Sujith54e4cec2009-08-07 09:45:09 +05302311void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002312{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002313 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302314 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002315 else
Sujith2660b812009-02-09 13:27:26 +05302316 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002317}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002318EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002319
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002320void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002321{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002322 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05302323 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002324
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002325 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05302326 macmode = AR_2040_JOINED_RX_CLEAR;
2327 else
2328 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002329
Sujithf1dc5602008-10-29 10:16:30 +05302330 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002331}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302332
2333/* HW Generic timers configuration */
2334
2335static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2336{
2337 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2338 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2339 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2340 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2341 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2342 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2343 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2344 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2345 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2346 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2347 AR_NDP2_TIMER_MODE, 0x0002},
2348 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2349 AR_NDP2_TIMER_MODE, 0x0004},
2350 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2351 AR_NDP2_TIMER_MODE, 0x0008},
2352 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2353 AR_NDP2_TIMER_MODE, 0x0010},
2354 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2355 AR_NDP2_TIMER_MODE, 0x0020},
2356 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2357 AR_NDP2_TIMER_MODE, 0x0040},
2358 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2359 AR_NDP2_TIMER_MODE, 0x0080}
2360};
2361
2362/* HW generic timer primitives */
2363
2364/* compute and clear index of rightmost 1 */
2365static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
2366{
2367 u32 b;
2368
2369 b = *mask;
2370 b &= (0-b);
2371 *mask &= ~b;
2372 b *= debruijn32;
2373 b >>= 27;
2374
2375 return timer_table->gen_timer_index[b];
2376}
2377
Felix Fietkau744bcb42010-10-15 20:03:33 +02002378static u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302379{
2380 return REG_READ(ah, AR_TSF_L32);
2381}
2382
2383struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2384 void (*trigger)(void *),
2385 void (*overflow)(void *),
2386 void *arg,
2387 u8 timer_index)
2388{
2389 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2390 struct ath_gen_timer *timer;
2391
2392 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
2393
2394 if (timer == NULL) {
Joe Perches38002762010-12-02 19:12:36 -08002395 ath_err(ath9k_hw_common(ah),
2396 "Failed to allocate memory for hw timer[%d]\n",
2397 timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302398 return NULL;
2399 }
2400
2401 /* allocate a hardware generic timer slot */
2402 timer_table->timers[timer_index] = timer;
2403 timer->index = timer_index;
2404 timer->trigger = trigger;
2405 timer->overflow = overflow;
2406 timer->arg = arg;
2407
2408 return timer;
2409}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002410EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302411
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002412void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2413 struct ath_gen_timer *timer,
2414 u32 timer_next,
2415 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302416{
2417 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2418 u32 tsf;
2419
2420 BUG_ON(!timer_period);
2421
2422 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
2423
2424 tsf = ath9k_hw_gettsf32(ah);
2425
Joe Perches226afe62010-12-02 19:12:37 -08002426 ath_dbg(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
2427 "current tsf %x period %x timer_next %x\n",
2428 tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302429
2430 /*
2431 * Pull timer_next forward if the current TSF already passed it
2432 * because of software latency
2433 */
2434 if (timer_next < tsf)
2435 timer_next = tsf + timer_period;
2436
2437 /*
2438 * Program generic timer registers
2439 */
2440 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2441 timer_next);
2442 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2443 timer_period);
2444 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2445 gen_tmr_configuration[timer->index].mode_mask);
2446
2447 /* Enable both trigger and thresh interrupt masks */
2448 REG_SET_BIT(ah, AR_IMR_S5,
2449 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2450 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302451}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002452EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302453
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002454void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302455{
2456 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2457
2458 if ((timer->index < AR_FIRST_NDP_TIMER) ||
2459 (timer->index >= ATH_MAX_GEN_TIMER)) {
2460 return;
2461 }
2462
2463 /* Clear generic timer enable bits. */
2464 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2465 gen_tmr_configuration[timer->index].mode_mask);
2466
2467 /* Disable both trigger and thresh interrupt masks */
2468 REG_CLR_BIT(ah, AR_IMR_S5,
2469 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2470 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2471
2472 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302473}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002474EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302475
2476void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
2477{
2478 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2479
2480 /* free the hardware generic timer slot */
2481 timer_table->timers[timer->index] = NULL;
2482 kfree(timer);
2483}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002484EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302485
2486/*
2487 * Generic Timer Interrupts handling
2488 */
2489void ath_gen_timer_isr(struct ath_hw *ah)
2490{
2491 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2492 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002493 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302494 u32 trigger_mask, thresh_mask, index;
2495
2496 /* get hardware generic timer interrupt status */
2497 trigger_mask = ah->intr_gen_timer_trigger;
2498 thresh_mask = ah->intr_gen_timer_thresh;
2499 trigger_mask &= timer_table->timer_mask.val;
2500 thresh_mask &= timer_table->timer_mask.val;
2501
2502 trigger_mask &= ~thresh_mask;
2503
2504 while (thresh_mask) {
2505 index = rightmost_index(timer_table, &thresh_mask);
2506 timer = timer_table->timers[index];
2507 BUG_ON(!timer);
Joe Perches226afe62010-12-02 19:12:37 -08002508 ath_dbg(common, ATH_DBG_HWTIMER,
2509 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302510 timer->overflow(timer->arg);
2511 }
2512
2513 while (trigger_mask) {
2514 index = rightmost_index(timer_table, &trigger_mask);
2515 timer = timer_table->timers[index];
2516 BUG_ON(!timer);
Joe Perches226afe62010-12-02 19:12:37 -08002517 ath_dbg(common, ATH_DBG_HWTIMER,
2518 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302519 timer->trigger(timer->arg);
2520 }
2521}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002522EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002523
Sujith05020d22010-03-17 14:25:23 +05302524/********/
2525/* HTC */
2526/********/
2527
2528void ath9k_hw_htc_resetinit(struct ath_hw *ah)
2529{
2530 ah->htc_reset_init = true;
2531}
2532EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
2533
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002534static struct {
2535 u32 version;
2536 const char * name;
2537} ath_mac_bb_names[] = {
2538 /* Devices with external radios */
2539 { AR_SREV_VERSION_5416_PCI, "5416" },
2540 { AR_SREV_VERSION_5416_PCIE, "5418" },
2541 { AR_SREV_VERSION_9100, "9100" },
2542 { AR_SREV_VERSION_9160, "9160" },
2543 /* Single-chip solutions */
2544 { AR_SREV_VERSION_9280, "9280" },
2545 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04002546 { AR_SREV_VERSION_9287, "9287" },
2547 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguezec839032010-04-15 17:39:20 -04002548 { AR_SREV_VERSION_9300, "9300" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002549};
2550
2551/* For devices with external radios */
2552static struct {
2553 u16 version;
2554 const char * name;
2555} ath_rf_names[] = {
2556 { 0, "5133" },
2557 { AR_RAD5133_SREV_MAJOR, "5133" },
2558 { AR_RAD5122_SREV_MAJOR, "5122" },
2559 { AR_RAD2133_SREV_MAJOR, "2133" },
2560 { AR_RAD2122_SREV_MAJOR, "2122" }
2561};
2562
2563/*
2564 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2565 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002566static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002567{
2568 int i;
2569
2570 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2571 if (ath_mac_bb_names[i].version == mac_bb_version) {
2572 return ath_mac_bb_names[i].name;
2573 }
2574 }
2575
2576 return "????";
2577}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002578
2579/*
2580 * Return the RF name. "????" is returned if the RF is unknown.
2581 * Used for devices with external radios.
2582 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002583static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002584{
2585 int i;
2586
2587 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2588 if (ath_rf_names[i].version == rf_version) {
2589 return ath_rf_names[i].name;
2590 }
2591 }
2592
2593 return "????";
2594}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002595
2596void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
2597{
2598 int used;
2599
2600 /* chipsets >= AR9280 are single-chip */
Felix Fietkau7a370812010-09-22 12:34:52 +02002601 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002602 used = snprintf(hw_name, len,
2603 "Atheros AR%s Rev:%x",
2604 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2605 ah->hw_version.macRev);
2606 }
2607 else {
2608 used = snprintf(hw_name, len,
2609 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
2610 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2611 ah->hw_version.macRev,
2612 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
2613 AR_RADIO_SREV_MAJOR)),
2614 ah->hw_version.phyRev);
2615 }
2616
2617 hw_name[used] = '\0';
2618}
2619EXPORT_SYMBOL(ath9k_hw_name);