blob: 1fa3fe7d5ae4e0576798df6f44612bb68428fb13 [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
57static bool ath9k_hw_macversion_supported(struct ath_hw *ah)
58{
59 struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
60
61 return priv_ops->macversion_supported(ah->hw_version.macVersion);
62}
63
Luis R. Rodriguez64773962010-04-15 17:38:17 -040064static u32 ath9k_hw_compute_pll_control(struct ath_hw *ah,
65 struct ath9k_channel *chan)
66{
67 return ath9k_hw_private_ops(ah)->compute_pll_control(ah, chan);
68}
69
Luis R. Rodriguez991312d2010-04-15 17:39:05 -040070static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
71{
72 if (!ath9k_hw_private_ops(ah)->init_mode_gain_regs)
73 return;
74
75 ath9k_hw_private_ops(ah)->init_mode_gain_regs(ah);
76}
77
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -040078static void ath9k_hw_ani_cache_ini_regs(struct ath_hw *ah)
79{
80 /* You will not have this callback if using the old ANI */
81 if (!ath9k_hw_private_ops(ah)->ani_cache_ini_regs)
82 return;
83
84 ath9k_hw_private_ops(ah)->ani_cache_ini_regs(ah);
85}
86
Sujithf1dc5602008-10-29 10:16:30 +053087/********************/
88/* Helper Functions */
89/********************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070090
Sujithcbe61d82009-02-09 13:27:12 +053091static u32 ath9k_hw_mac_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +053092{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -070093 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +053094
Sujith2660b812009-02-09 13:27:26 +053095 if (!ah->curchan) /* should really check for CCK instead */
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -080096 return usecs *ATH9K_CLOCK_RATE_CCK;
97 if (conf->channel->band == IEEE80211_BAND_2GHZ)
98 return usecs *ATH9K_CLOCK_RATE_2GHZ_OFDM;
Vasanthakumar Thiagarajane5553722010-04-26 15:04:33 -040099
100 if (ah->caps.hw_caps & ATH9K_HW_CAP_FASTCLOCK)
101 return usecs * ATH9K_CLOCK_FAST_RATE_5GHZ_OFDM;
102 else
103 return usecs * ATH9K_CLOCK_RATE_5GHZ_OFDM;
Sujithf1dc5602008-10-29 10:16:30 +0530104}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700105
Sujithcbe61d82009-02-09 13:27:12 +0530106static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
Sujithf1dc5602008-10-29 10:16:30 +0530107{
Luis R. Rodriguezb002a4a2009-09-13 00:03:27 -0700108 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithcbe61d82009-02-09 13:27:12 +0530109
Luis R. Rodriguez4febf7b2008-12-23 15:58:48 -0800110 if (conf_is_ht40(conf))
Sujithf1dc5602008-10-29 10:16:30 +0530111 return ath9k_hw_mac_clks(ah, usecs) * 2;
112 else
113 return ath9k_hw_mac_clks(ah, usecs);
114}
115
Sujith0caa7b12009-02-16 13:23:20 +0530116bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700117{
118 int i;
119
Sujith0caa7b12009-02-16 13:23:20 +0530120 BUG_ON(timeout < AH_TIME_QUANTUM);
121
122 for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700123 if ((REG_READ(ah, reg) & mask) == val)
124 return true;
125
126 udelay(AH_TIME_QUANTUM);
127 }
Sujith04bd46382008-11-28 22:18:05 +0530128
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700129 ath_print(ath9k_hw_common(ah), ATH_DBG_ANY,
130 "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
131 timeout, reg, REG_READ(ah, reg), mask, val);
Sujithf1dc5602008-10-29 10:16:30 +0530132
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700133 return false;
134}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400135EXPORT_SYMBOL(ath9k_hw_wait);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700136
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700137u32 ath9k_hw_reverse_bits(u32 val, u32 n)
138{
139 u32 retval;
140 int i;
141
142 for (i = 0, retval = 0; i < n; i++) {
143 retval = (retval << 1) | (val & 1);
144 val >>= 1;
145 }
146 return retval;
147}
148
Sujithcbe61d82009-02-09 13:27:12 +0530149bool ath9k_get_channel_edges(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530150 u16 flags, u16 *low,
151 u16 *high)
152{
Sujith2660b812009-02-09 13:27:26 +0530153 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530154
155 if (flags & CHANNEL_5GHZ) {
156 *low = pCap->low_5ghz_chan;
157 *high = pCap->high_5ghz_chan;
158 return true;
159 }
160 if ((flags & CHANNEL_2GHZ)) {
161 *low = pCap->low_2ghz_chan;
162 *high = pCap->high_2ghz_chan;
163 return true;
164 }
165 return false;
166}
167
Sujithcbe61d82009-02-09 13:27:12 +0530168u16 ath9k_hw_computetxtime(struct ath_hw *ah,
Felix Fietkau545750d2009-11-23 22:21:01 +0100169 u8 phy, int kbps,
Sujithf1dc5602008-10-29 10:16:30 +0530170 u32 frameLen, u16 rateix,
171 bool shortPreamble)
172{
173 u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
Sujithf1dc5602008-10-29 10:16:30 +0530174
175 if (kbps == 0)
176 return 0;
177
Felix Fietkau545750d2009-11-23 22:21:01 +0100178 switch (phy) {
Sujith46d14a52008-11-18 09:08:13 +0530179 case WLAN_RC_PHY_CCK:
Sujithf1dc5602008-10-29 10:16:30 +0530180 phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
Felix Fietkau545750d2009-11-23 22:21:01 +0100181 if (shortPreamble)
Sujithf1dc5602008-10-29 10:16:30 +0530182 phyTime >>= 1;
183 numBits = frameLen << 3;
184 txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
185 break;
Sujith46d14a52008-11-18 09:08:13 +0530186 case WLAN_RC_PHY_OFDM:
Sujith2660b812009-02-09 13:27:26 +0530187 if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530188 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
189 numBits = OFDM_PLCP_BITS + (frameLen << 3);
190 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
191 txTime = OFDM_SIFS_TIME_QUARTER
192 + OFDM_PREAMBLE_TIME_QUARTER
193 + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
Sujith2660b812009-02-09 13:27:26 +0530194 } else if (ah->curchan &&
195 IS_CHAN_HALF_RATE(ah->curchan)) {
Sujithf1dc5602008-10-29 10:16:30 +0530196 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
197 numBits = OFDM_PLCP_BITS + (frameLen << 3);
198 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
199 txTime = OFDM_SIFS_TIME_HALF +
200 OFDM_PREAMBLE_TIME_HALF
201 + (numSymbols * OFDM_SYMBOL_TIME_HALF);
202 } else {
203 bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
204 numBits = OFDM_PLCP_BITS + (frameLen << 3);
205 numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
206 txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
207 + (numSymbols * OFDM_SYMBOL_TIME);
208 }
209 break;
210 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700211 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
Felix Fietkau545750d2009-11-23 22:21:01 +0100212 "Unknown phy %u (rate ix %u)\n", phy, rateix);
Sujithf1dc5602008-10-29 10:16:30 +0530213 txTime = 0;
214 break;
215 }
216
217 return txTime;
218}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400219EXPORT_SYMBOL(ath9k_hw_computetxtime);
Sujithf1dc5602008-10-29 10:16:30 +0530220
Sujithcbe61d82009-02-09 13:27:12 +0530221void ath9k_hw_get_channel_centers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530222 struct ath9k_channel *chan,
223 struct chan_centers *centers)
224{
225 int8_t extoff;
Sujithf1dc5602008-10-29 10:16:30 +0530226
227 if (!IS_CHAN_HT40(chan)) {
228 centers->ctl_center = centers->ext_center =
229 centers->synth_center = chan->channel;
230 return;
231 }
232
233 if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
234 (chan->chanmode == CHANNEL_G_HT40PLUS)) {
235 centers->synth_center =
236 chan->channel + HT40_CHANNEL_CENTER_SHIFT;
237 extoff = 1;
238 } else {
239 centers->synth_center =
240 chan->channel - HT40_CHANNEL_CENTER_SHIFT;
241 extoff = -1;
242 }
243
244 centers->ctl_center =
245 centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700246 /* 25 MHz spacing is supported by hw but not on upper layers */
Sujithf1dc5602008-10-29 10:16:30 +0530247 centers->ext_center =
Luis R. Rodriguez64200142009-09-13 22:05:04 -0700248 centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
Sujithf1dc5602008-10-29 10:16:30 +0530249}
250
251/******************/
252/* Chip Revisions */
253/******************/
254
Sujithcbe61d82009-02-09 13:27:12 +0530255static void ath9k_hw_read_revisions(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530256{
257 u32 val;
258
259 val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
260
261 if (val == 0xFF) {
262 val = REG_READ(ah, AR_SREV);
Sujithd535a422009-02-09 13:27:06 +0530263 ah->hw_version.macVersion =
264 (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
265 ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
Sujith2660b812009-02-09 13:27:26 +0530266 ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
Sujithf1dc5602008-10-29 10:16:30 +0530267 } else {
268 if (!AR_SREV_9100(ah))
Sujithd535a422009-02-09 13:27:06 +0530269 ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
Sujithf1dc5602008-10-29 10:16:30 +0530270
Sujithd535a422009-02-09 13:27:06 +0530271 ah->hw_version.macRev = val & AR_SREV_REVISION;
Sujithf1dc5602008-10-29 10:16:30 +0530272
Sujithd535a422009-02-09 13:27:06 +0530273 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
Sujith2660b812009-02-09 13:27:26 +0530274 ah->is_pciexpress = true;
Sujithf1dc5602008-10-29 10:16:30 +0530275 }
276}
277
Sujithf1dc5602008-10-29 10:16:30 +0530278/************************************/
279/* HW Attach, Detach, Init Routines */
280/************************************/
281
Sujithcbe61d82009-02-09 13:27:12 +0530282static void ath9k_hw_disablepcie(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530283{
Sujithfeed0292009-01-29 11:37:35 +0530284 if (AR_SREV_9100(ah))
Sujithf1dc5602008-10-29 10:16:30 +0530285 return;
286
Sujith7d0d0df2010-04-16 11:53:57 +0530287 ENABLE_REGWRITE_BUFFER(ah);
288
Sujithf1dc5602008-10-29 10:16:30 +0530289 REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
290 REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
291 REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
292 REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
293 REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
294 REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
295 REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
296 REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
297 REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
298
299 REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
Sujith7d0d0df2010-04-16 11:53:57 +0530300
301 REGWRITE_BUFFER_FLUSH(ah);
302 DISABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530303}
304
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400305/* This should work for all families including legacy */
Sujithcbe61d82009-02-09 13:27:12 +0530306static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530307{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700308 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400309 u32 regAddr[2] = { AR_STA_ID0 };
Sujithf1dc5602008-10-29 10:16:30 +0530310 u32 regHold[2];
311 u32 patternData[4] = { 0x55555555,
312 0xaaaaaaaa,
313 0x66666666,
314 0x99999999 };
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400315 int i, j, loop_max;
Sujithf1dc5602008-10-29 10:16:30 +0530316
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400317 if (!AR_SREV_9300_20_OR_LATER(ah)) {
318 loop_max = 2;
319 regAddr[1] = AR_PHY_BASE + (8 << 2);
320 } else
321 loop_max = 1;
322
323 for (i = 0; i < loop_max; i++) {
Sujithf1dc5602008-10-29 10:16:30 +0530324 u32 addr = regAddr[i];
325 u32 wrData, rdData;
326
327 regHold[i] = REG_READ(ah, addr);
328 for (j = 0; j < 0x100; j++) {
329 wrData = (j << 16) | j;
330 REG_WRITE(ah, addr, wrData);
331 rdData = REG_READ(ah, addr);
332 if (rdData != wrData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700333 ath_print(common, ATH_DBG_FATAL,
334 "address test failed "
335 "addr: 0x%08x - wr:0x%08x != "
336 "rd:0x%08x\n",
337 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530338 return false;
339 }
340 }
341 for (j = 0; j < 4; j++) {
342 wrData = patternData[j];
343 REG_WRITE(ah, addr, wrData);
344 rdData = REG_READ(ah, addr);
345 if (wrData != rdData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700346 ath_print(common, ATH_DBG_FATAL,
347 "address test failed "
348 "addr: 0x%08x - wr:0x%08x != "
349 "rd:0x%08x\n",
350 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530351 return false;
352 }
353 }
354 REG_WRITE(ah, regAddr[i], regHold[i]);
355 }
356 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530357
Sujithf1dc5602008-10-29 10:16:30 +0530358 return true;
359}
360
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700361static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700362{
363 int i;
364
Sujith2660b812009-02-09 13:27:26 +0530365 ah->config.dma_beacon_response_time = 2;
366 ah->config.sw_beacon_response_time = 10;
367 ah->config.additional_swba_backoff = 0;
368 ah->config.ack_6mb = 0x0;
369 ah->config.cwm_ignore_extcca = 0;
370 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530371 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530372 ah->config.pcie_waen = 0;
373 ah->config.analog_shiftreg = 1;
Sujith2660b812009-02-09 13:27:26 +0530374 ah->config.ofdm_trig_low = 200;
375 ah->config.ofdm_trig_high = 500;
376 ah->config.cck_trig_high = 200;
377 ah->config.cck_trig_low = 100;
Luis R. Rodriguez03c72512010-06-12 00:33:46 -0400378 ah->config.enable_ani = true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700379
380 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530381 ah->config.spurchans[i][0] = AR_NO_SPUR;
382 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700383 }
384
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500385 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
386 ah->config.ht_enable = 1;
387 else
388 ah->config.ht_enable = 0;
389
Sujith0ce024c2009-12-14 14:57:00 +0530390 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400391
392 /*
393 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
394 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
395 * This means we use it for all AR5416 devices, and the few
396 * minor PCI AR9280 devices out there.
397 *
398 * Serialization is required because these devices do not handle
399 * well the case of two concurrent reads/writes due to the latency
400 * involved. During one read/write another read/write can be issued
401 * on another CPU while the previous read/write may still be working
402 * on our hardware, if we hit this case the hardware poops in a loop.
403 * We prevent this by serializing reads and writes.
404 *
405 * This issue is not present on PCI-Express devices or pre-AR5416
406 * devices (legacy, 802.11abg).
407 */
408 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700409 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700410}
411
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700412static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700413{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700414 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
415
416 regulatory->country_code = CTRY_DEFAULT;
417 regulatory->power_limit = MAX_RATE_POWER;
418 regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
419
Sujithd535a422009-02-09 13:27:06 +0530420 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530421 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700422
423 ah->ah_flags = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700424 if (!AR_SREV_9100(ah))
425 ah->ah_flags = AH_USE_EEPROM;
426
Sujith2660b812009-02-09 13:27:26 +0530427 ah->atim_window = 0;
Sujith2660b812009-02-09 13:27:26 +0530428 ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
429 ah->beacon_interval = 100;
430 ah->enable_32kHz_clock = DONT_USE_32KHZ;
431 ah->slottime = (u32) -1;
Sujith2660b812009-02-09 13:27:26 +0530432 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200433 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700434}
435
Sujithcbe61d82009-02-09 13:27:12 +0530436static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700437{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700438 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530439 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700440 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530441 u16 eeval;
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400442 u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700443
Sujithf1dc5602008-10-29 10:16:30 +0530444 sum = 0;
445 for (i = 0; i < 3; i++) {
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400446 eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
Sujithf1dc5602008-10-29 10:16:30 +0530447 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700448 common->macaddr[2 * i] = eeval >> 8;
449 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700450 }
Sujithd8baa932009-03-30 15:28:25 +0530451 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530452 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700453
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700454 return 0;
455}
456
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700457static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700458{
459 int ecode;
460
Sujith527d4852010-03-17 14:25:16 +0530461 if (!AR_SREV_9271(ah)) {
462 if (!ath9k_hw_chip_test(ah))
463 return -ENODEV;
464 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700465
Luis R. Rodriguezebd5a142010-04-15 17:39:18 -0400466 if (!AR_SREV_9300_20_OR_LATER(ah)) {
467 ecode = ar9002_hw_rf_claim(ah);
468 if (ecode != 0)
469 return ecode;
470 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700471
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700472 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700473 if (ecode != 0)
474 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530475
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700476 ath_print(ath9k_hw_common(ah), ATH_DBG_CONFIG,
477 "Eeprom VER: %d, REV: %d\n",
478 ah->eep_ops->get_eeprom_ver(ah),
479 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530480
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400481 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
482 if (ecode) {
483 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
484 "Failed allocating banks for "
485 "external radio\n");
486 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400487 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700488
489 if (!AR_SREV_9100(ah)) {
490 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700491 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700492 }
Sujithf1dc5602008-10-29 10:16:30 +0530493
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700494 return 0;
495}
496
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400497static void ath9k_hw_attach_ops(struct ath_hw *ah)
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700498{
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400499 if (AR_SREV_9300_20_OR_LATER(ah))
500 ar9003_hw_attach_ops(ah);
501 else
502 ar9002_hw_attach_ops(ah);
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700503}
504
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400505/* Called for all hardware families */
506static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700507{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700508 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700509 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700510
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400511 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
512 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700513
514 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700515 ath_print(common, ATH_DBG_FATAL,
516 "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700517 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700518 }
519
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400520 ath9k_hw_init_defaults(ah);
521 ath9k_hw_init_config(ah);
522
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400523 ath9k_hw_attach_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400524
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700525 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700526 ath_print(common, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700527 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700528 }
529
530 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
531 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
532 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
533 ah->config.serialize_regmode =
534 SER_REG_MODE_ON;
535 } else {
536 ah->config.serialize_regmode =
537 SER_REG_MODE_OFF;
538 }
539 }
540
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700541 ath_print(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700542 ah->config.serialize_regmode);
543
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500544 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
545 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
546 else
547 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
548
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400549 if (!ath9k_hw_macversion_supported(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700550 ath_print(common, ATH_DBG_FATAL,
551 "Mac Chip Rev 0x%02x.%x is not supported by "
552 "this driver\n", ah->hw_version.macVersion,
553 ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700554 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700555 }
556
Luis R. Rodriguez0df13da2010-04-15 17:38:59 -0400557 if (AR_SREV_9271(ah) || AR_SREV_9100(ah))
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400558 ah->is_pciexpress = false;
559
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700560 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700561 ath9k_hw_init_cal_settings(ah);
562
563 ah->ani_function = ATH9K_ANI_ALL;
Luis R. Rodriguez31a0bd32010-04-15 17:38:22 -0400564 if (AR_SREV_9280_10_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700565 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400566 if (!AR_SREV_9300_20_OR_LATER(ah))
567 ah->ani_function &= ~ATH9K_ANI_MRC_CCK;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700568
569 ath9k_hw_init_mode_regs(ah);
570
Luis R. Rodriguez5efa3a62010-05-07 18:23:22 -0400571 /*
572 * Configire PCIE after Ini init. SERDES values now come from ini file
573 * This enables PCIe low power mode.
574 */
575 if (AR_SREV_9300_20_OR_LATER(ah)) {
576 u32 regval;
577 unsigned int i;
578
579 /* Set Bits 16 and 17 in the AR_WA register. */
580 regval = REG_READ(ah, AR_WA);
581 regval |= 0x00030000;
582 REG_WRITE(ah, AR_WA, regval);
583
584 for (i = 0; i < ah->iniPcieSerdesLowPower.ia_rows; i++) {
585 REG_WRITE(ah,
586 INI_RA(&ah->iniPcieSerdesLowPower, i, 0),
587 INI_RA(&ah->iniPcieSerdesLowPower, i, 1));
588 }
589 }
590
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700591 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530592 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700593 else
594 ath9k_hw_disablepcie(ah);
595
Luis R. Rodriguezd8f492b2010-04-15 17:39:04 -0400596 if (!AR_SREV_9300_20_OR_LATER(ah))
597 ar9002_hw_cck_chan14_spread(ah);
Sujith193cd452009-09-18 15:04:07 +0530598
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700599 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700600 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700601 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700602
603 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100604 r = ath9k_hw_fill_cap_info(ah);
605 if (r)
606 return r;
607
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700608 r = ath9k_hw_init_macaddr(ah);
609 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700610 ath_print(common, ATH_DBG_FATAL,
611 "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700612 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700613 }
614
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400615 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530616 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700617 else
Sujith2660b812009-02-09 13:27:26 +0530618 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700619
Felix Fietkau641d9922010-04-15 17:38:49 -0400620 if (AR_SREV_9300_20_OR_LATER(ah))
621 ar9003_hw_set_nf_limits(ah);
622
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700623 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -0400624 ah->bb_watchdog_timeout_ms = 25;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700625
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400626 common->state = ATH_HW_INITIALIZED;
627
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700628 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700629}
630
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400631int ath9k_hw_init(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530632{
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400633 int ret;
634 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530635
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400636 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
637 switch (ah->hw_version.devid) {
638 case AR5416_DEVID_PCI:
639 case AR5416_DEVID_PCIE:
640 case AR5416_AR9100_DEVID:
641 case AR9160_DEVID_PCI:
642 case AR9280_DEVID_PCI:
643 case AR9280_DEVID_PCIE:
644 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400645 case AR9287_DEVID_PCI:
646 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400647 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400648 case AR9300_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400649 break;
650 default:
651 if (common->bus_ops->ath_bus_type == ATH_USB)
652 break;
653 ath_print(common, ATH_DBG_FATAL,
654 "Hardware device ID 0x%04x not supported\n",
655 ah->hw_version.devid);
656 return -EOPNOTSUPP;
657 }
Sujithf1dc5602008-10-29 10:16:30 +0530658
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400659 ret = __ath9k_hw_init(ah);
660 if (ret) {
661 ath_print(common, ATH_DBG_FATAL,
662 "Unable to initialize hardware; "
663 "initialization status: %d\n", ret);
664 return ret;
665 }
Sujithf1dc5602008-10-29 10:16:30 +0530666
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400667 return 0;
Sujithf1dc5602008-10-29 10:16:30 +0530668}
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400669EXPORT_SYMBOL(ath9k_hw_init);
Sujithf1dc5602008-10-29 10:16:30 +0530670
Sujithcbe61d82009-02-09 13:27:12 +0530671static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530672{
Sujith7d0d0df2010-04-16 11:53:57 +0530673 ENABLE_REGWRITE_BUFFER(ah);
674
Sujithf1dc5602008-10-29 10:16:30 +0530675 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
676 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
677
678 REG_WRITE(ah, AR_QOS_NO_ACK,
679 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
680 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
681 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
682
683 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
684 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
685 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
686 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
687 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
Sujith7d0d0df2010-04-16 11:53:57 +0530688
689 REGWRITE_BUFFER_FLUSH(ah);
690 DISABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530691}
692
Sujithcbe61d82009-02-09 13:27:12 +0530693static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530694 struct ath9k_channel *chan)
695{
Luis R. Rodriguez64773962010-04-15 17:38:17 -0400696 u32 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530697
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100698 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530699
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400700 /* Switch the core clock for ar9271 to 117Mhz */
701 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530702 udelay(500);
703 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400704 }
705
Sujithf1dc5602008-10-29 10:16:30 +0530706 udelay(RTC_PLL_SETTLE_DELAY);
707
708 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
709}
710
Sujithcbe61d82009-02-09 13:27:12 +0530711static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800712 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530713{
Pavel Roskin152d5302010-03-31 18:05:37 -0400714 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530715 AR_IMR_TXURN |
716 AR_IMR_RXERR |
717 AR_IMR_RXORN |
718 AR_IMR_BCNMISC;
719
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400720 if (AR_SREV_9300_20_OR_LATER(ah)) {
721 imr_reg |= AR_IMR_RXOK_HP;
722 if (ah->config.rx_intr_mitigation)
723 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
724 else
725 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530726
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400727 } else {
728 if (ah->config.rx_intr_mitigation)
729 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
730 else
731 imr_reg |= AR_IMR_RXOK;
732 }
733
734 if (ah->config.tx_intr_mitigation)
735 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
736 else
737 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530738
Colin McCabed97809d2008-12-01 13:38:55 -0800739 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -0400740 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +0530741
Sujith7d0d0df2010-04-16 11:53:57 +0530742 ENABLE_REGWRITE_BUFFER(ah);
743
Pavel Roskin152d5302010-03-31 18:05:37 -0400744 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500745 ah->imrs2_reg |= AR_IMR_S2_GTT;
746 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530747
748 if (!AR_SREV_9100(ah)) {
749 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
750 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
751 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
752 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400753
Sujith7d0d0df2010-04-16 11:53:57 +0530754 REGWRITE_BUFFER_FLUSH(ah);
755 DISABLE_REGWRITE_BUFFER(ah);
756
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400757 if (AR_SREV_9300_20_OR_LATER(ah)) {
758 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
759 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
760 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
761 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
762 }
Sujithf1dc5602008-10-29 10:16:30 +0530763}
764
Felix Fietkau0005baf2010-01-15 02:33:40 +0100765static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530766{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100767 u32 val = ath9k_hw_mac_to_clks(ah, us);
768 val = min(val, (u32) 0xFFFF);
769 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530770}
771
Felix Fietkau0005baf2010-01-15 02:33:40 +0100772static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530773{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100774 u32 val = ath9k_hw_mac_to_clks(ah, us);
775 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
776 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
777}
778
779static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
780{
781 u32 val = ath9k_hw_mac_to_clks(ah, us);
782 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
783 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530784}
785
Sujithcbe61d82009-02-09 13:27:12 +0530786static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +0530787{
Sujithf1dc5602008-10-29 10:16:30 +0530788 if (tu > 0xFFFF) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700789 ath_print(ath9k_hw_common(ah), ATH_DBG_XMIT,
790 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +0530791 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +0530792 return false;
793 } else {
794 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +0530795 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +0530796 return true;
797 }
798}
799
Felix Fietkau0005baf2010-01-15 02:33:40 +0100800void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530801{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100802 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
803 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +0100804 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100805 int sifstime;
806
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700807 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
808 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +0530809
Sujith2660b812009-02-09 13:27:26 +0530810 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +0530811 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +0530812 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100813
814 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
815 sifstime = 16;
816 else
817 sifstime = 10;
818
Felix Fietkaue239d852010-01-15 02:34:58 +0100819 /* As defined by IEEE 802.11-2007 17.3.8.6 */
820 slottime = ah->slottime + 3 * ah->coverage_class;
821 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +0100822
823 /*
824 * Workaround for early ACK timeouts, add an offset to match the
825 * initval's 64us ack timeout value.
826 * This was initially only meant to work around an issue with delayed
827 * BA frames in some implementations, but it has been found to fix ACK
828 * timeout issues in other cases as well.
829 */
830 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
831 acktimeout += 64 - sifstime - ah->slottime;
832
Felix Fietkaue239d852010-01-15 02:34:58 +0100833 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100834 ath9k_hw_set_ack_timeout(ah, acktimeout);
835 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +0530836 if (ah->globaltxtimeout != (u32) -1)
837 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +0530838}
Felix Fietkau0005baf2010-01-15 02:33:40 +0100839EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +0530840
Sujith285f2dd2010-01-08 10:36:07 +0530841void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700842{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400843 struct ath_common *common = ath9k_hw_common(ah);
844
Sujith736b3a22010-03-17 14:25:24 +0530845 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400846 goto free_hw;
847
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700848 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400849
850free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400851 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700852}
Sujith285f2dd2010-01-08 10:36:07 +0530853EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700854
Sujithf1dc5602008-10-29 10:16:30 +0530855/*******/
856/* INI */
857/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700858
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400859u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -0400860{
861 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
862
863 if (IS_CHAN_B(chan))
864 ctl |= CTL_11B;
865 else if (IS_CHAN_G(chan))
866 ctl |= CTL_11G;
867 else
868 ctl |= CTL_11A;
869
870 return ctl;
871}
872
Sujithf1dc5602008-10-29 10:16:30 +0530873/****************************************/
874/* Reset and Channel Switching Routines */
875/****************************************/
876
Sujithcbe61d82009-02-09 13:27:12 +0530877static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530878{
Felix Fietkau57b32222010-04-15 17:39:22 -0400879 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530880 u32 regval;
881
Sujith7d0d0df2010-04-16 11:53:57 +0530882 ENABLE_REGWRITE_BUFFER(ah);
883
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400884 /*
885 * set AHB_MODE not to do cacheline prefetches
886 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400887 if (!AR_SREV_9300_20_OR_LATER(ah)) {
888 regval = REG_READ(ah, AR_AHB_MODE);
889 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
890 }
Sujithf1dc5602008-10-29 10:16:30 +0530891
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400892 /*
893 * let mac dma reads be in 128 byte chunks
894 */
Sujithf1dc5602008-10-29 10:16:30 +0530895 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
896 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
897
Sujith7d0d0df2010-04-16 11:53:57 +0530898 REGWRITE_BUFFER_FLUSH(ah);
899 DISABLE_REGWRITE_BUFFER(ah);
900
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400901 /*
902 * Restore TX Trigger Level to its pre-reset value.
903 * The initial value depends on whether aggregation is enabled, and is
904 * adjusted whenever underruns are detected.
905 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400906 if (!AR_SREV_9300_20_OR_LATER(ah))
907 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +0530908
Sujith7d0d0df2010-04-16 11:53:57 +0530909 ENABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530910
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400911 /*
912 * let mac dma writes be in 128 byte chunks
913 */
Sujithf1dc5602008-10-29 10:16:30 +0530914 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
915 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
916
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400917 /*
918 * Setup receive FIFO threshold to hold off TX activities
919 */
Sujithf1dc5602008-10-29 10:16:30 +0530920 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
921
Felix Fietkau57b32222010-04-15 17:39:22 -0400922 if (AR_SREV_9300_20_OR_LATER(ah)) {
923 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
924 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
925
926 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
927 ah->caps.rx_status_len);
928 }
929
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400930 /*
931 * reduce the number of usable entries in PCU TXBUF to avoid
932 * wrap around issues.
933 */
Sujithf1dc5602008-10-29 10:16:30 +0530934 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400935 /* For AR9285 the number of Fifos are reduced to half.
936 * So set the usable tx buf size also to half to
937 * avoid data/delimiter underruns
938 */
Sujithf1dc5602008-10-29 10:16:30 +0530939 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
940 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400941 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +0530942 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
943 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
944 }
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -0400945
Sujith7d0d0df2010-04-16 11:53:57 +0530946 REGWRITE_BUFFER_FLUSH(ah);
947 DISABLE_REGWRITE_BUFFER(ah);
948
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -0400949 if (AR_SREV_9300_20_OR_LATER(ah))
950 ath9k_hw_reset_txstatus_ring(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530951}
952
Sujithcbe61d82009-02-09 13:27:12 +0530953static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530954{
955 u32 val;
956
957 val = REG_READ(ah, AR_STA_ID1);
958 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
959 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -0800960 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +0530961 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
962 | AR_STA_ID1_KSRCH_MODE);
963 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
964 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800965 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400966 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +0530967 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
968 | AR_STA_ID1_KSRCH_MODE);
969 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
970 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800971 case NL80211_IFTYPE_STATION:
972 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +0530973 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
974 break;
975 }
976}
977
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400978void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
979 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700980{
981 u32 coef_exp, coef_man;
982
983 for (coef_exp = 31; coef_exp > 0; coef_exp--)
984 if ((coef_scaled >> coef_exp) & 0x1)
985 break;
986
987 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
988
989 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
990
991 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
992 *coef_exponent = coef_exp - 16;
993}
994
Sujithcbe61d82009-02-09 13:27:12 +0530995static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +0530996{
997 u32 rst_flags;
998 u32 tmpReg;
999
Sujith70768492009-02-16 13:23:12 +05301000 if (AR_SREV_9100(ah)) {
1001 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
1002 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
1003 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
1004 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
1005 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
1006 }
1007
Sujith7d0d0df2010-04-16 11:53:57 +05301008 ENABLE_REGWRITE_BUFFER(ah);
1009
Sujithf1dc5602008-10-29 10:16:30 +05301010 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1011 AR_RTC_FORCE_WAKE_ON_INT);
1012
1013 if (AR_SREV_9100(ah)) {
1014 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1015 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1016 } else {
1017 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1018 if (tmpReg &
1019 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1020 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001021 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301022 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001023
1024 val = AR_RC_HOSTIF;
1025 if (!AR_SREV_9300_20_OR_LATER(ah))
1026 val |= AR_RC_AHB;
1027 REG_WRITE(ah, AR_RC, val);
1028
1029 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301030 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301031
1032 rst_flags = AR_RTC_RC_MAC_WARM;
1033 if (type == ATH9K_RESET_COLD)
1034 rst_flags |= AR_RTC_RC_MAC_COLD;
1035 }
1036
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001037 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujith7d0d0df2010-04-16 11:53:57 +05301038
1039 REGWRITE_BUFFER_FLUSH(ah);
1040 DISABLE_REGWRITE_BUFFER(ah);
1041
Sujithf1dc5602008-10-29 10:16:30 +05301042 udelay(50);
1043
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001044 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301045 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001046 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1047 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301048 return false;
1049 }
1050
1051 if (!AR_SREV_9100(ah))
1052 REG_WRITE(ah, AR_RC, 0);
1053
Sujithf1dc5602008-10-29 10:16:30 +05301054 if (AR_SREV_9100(ah))
1055 udelay(50);
1056
1057 return true;
1058}
1059
Sujithcbe61d82009-02-09 13:27:12 +05301060static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301061{
Sujith7d0d0df2010-04-16 11:53:57 +05301062 ENABLE_REGWRITE_BUFFER(ah);
1063
Sujithf1dc5602008-10-29 10:16:30 +05301064 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1065 AR_RTC_FORCE_WAKE_ON_INT);
1066
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001067 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301068 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1069
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001070 REG_WRITE(ah, AR_RTC_RESET, 0);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301071
Sujith7d0d0df2010-04-16 11:53:57 +05301072 REGWRITE_BUFFER_FLUSH(ah);
1073 DISABLE_REGWRITE_BUFFER(ah);
1074
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001075 if (!AR_SREV_9300_20_OR_LATER(ah))
1076 udelay(2);
1077
1078 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301079 REG_WRITE(ah, AR_RC, 0);
1080
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001081 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301082
1083 if (!ath9k_hw_wait(ah,
1084 AR_RTC_STATUS,
1085 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301086 AR_RTC_STATUS_ON,
1087 AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001088 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1089 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301090 return false;
1091 }
1092
1093 ath9k_hw_read_revisions(ah);
1094
1095 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1096}
1097
Sujithcbe61d82009-02-09 13:27:12 +05301098static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301099{
1100 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1101 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1102
1103 switch (type) {
1104 case ATH9K_RESET_POWER_ON:
1105 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301106 case ATH9K_RESET_WARM:
1107 case ATH9K_RESET_COLD:
1108 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301109 default:
1110 return false;
1111 }
1112}
1113
Sujithcbe61d82009-02-09 13:27:12 +05301114static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301115 struct ath9k_channel *chan)
1116{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301117 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301118 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1119 return false;
1120 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301121 return false;
1122
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001123 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301124 return false;
1125
Sujith2660b812009-02-09 13:27:26 +05301126 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301127 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301128 ath9k_hw_set_rfmode(ah, chan);
1129
1130 return true;
1131}
1132
Sujithcbe61d82009-02-09 13:27:12 +05301133static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001134 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301135{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001136 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001137 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001138 struct ieee80211_channel *channel = chan->chan;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001139 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001140 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301141
1142 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1143 if (ath9k_hw_numtxpending(ah, qnum)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001144 ath_print(common, ATH_DBG_QUEUE,
1145 "Transmit frames pending on "
1146 "queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301147 return false;
1148 }
1149 }
1150
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001151 if (!ath9k_hw_rfbus_req(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001152 ath_print(common, ATH_DBG_FATAL,
1153 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301154 return false;
1155 }
1156
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001157 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301158
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001159 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001160 if (r) {
1161 ath_print(common, ATH_DBG_FATAL,
1162 "Failed to set channel\n");
1163 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301164 }
1165
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001166 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001167 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301168 channel->max_antenna_gain * 2,
1169 channel->max_power * 2,
1170 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001171 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301172
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001173 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301174
1175 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1176 ath9k_hw_set_delta_slope(ah, chan);
1177
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001178 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301179
1180 if (!chan->oneTimeCalsDone)
1181 chan->oneTimeCalsDone = true;
1182
1183 return true;
1184}
1185
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001186bool ath9k_hw_check_alive(struct ath_hw *ah)
Johannes Berg3b319aa2009-06-13 14:50:26 +05301187{
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001188 int count = 50;
1189 u32 reg;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301190
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001191 if (AR_SREV_9285_10_OR_LATER(ah))
1192 return true;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301193
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001194 do {
1195 reg = REG_READ(ah, AR_OBS_BUS_1);
1196
1197 if ((reg & 0x7E7FFFEF) == 0x00702400)
1198 continue;
1199
1200 switch (reg & 0x7E000B00) {
1201 case 0x1E000000:
1202 case 0x52000B00:
1203 case 0x18000B00:
1204 continue;
1205 default:
1206 return true;
1207 }
1208 } while (count-- > 0);
1209
1210 return false;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301211}
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001212EXPORT_SYMBOL(ath9k_hw_check_alive);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301213
Sujithcbe61d82009-02-09 13:27:12 +05301214int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001215 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001216{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001217 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001218 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301219 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001220 u32 saveDefAntenna;
1221 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301222 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001223 int i, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001224
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001225 ah->txchainmask = common->tx_chainmask;
1226 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001227
Vasanthakumar Thiagarajan9b9cc612010-04-15 17:39:41 -04001228 if (!ah->chip_fullsleep) {
1229 ath9k_hw_abortpcurecv(ah);
1230 if (!ath9k_hw_stopdmarecv(ah))
1231 ath_print(common, ATH_DBG_XMIT,
1232 "Failed to stop receive dma\n");
1233 }
1234
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001235 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001236 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001237
Vasanthakumar Thiagarajan9ebef7992009-09-17 09:26:44 +05301238 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001239 ath9k_hw_getnf(ah, curchan);
1240
1241 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301242 (ah->chip_fullsleep != true) &&
1243 (ah->curchan != NULL) &&
1244 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001245 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301246 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04001247 !AR_SREV_9280(ah)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001248
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001249 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301250 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001251 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001252 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001253 }
1254 }
1255
1256 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1257 if (saveDefAntenna == 0)
1258 saveDefAntenna = 1;
1259
1260 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1261
Sujith46fe7822009-09-17 09:25:25 +05301262 /* For chips on which RTC reset is done, save TSF before it gets cleared */
1263 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1264 tsf = ath9k_hw_gettsf64(ah);
1265
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001266 saveLedState = REG_READ(ah, AR_CFG_LED) &
1267 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1268 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1269
1270 ath9k_hw_mark_phy_inactive(ah);
1271
Sujith05020d22010-03-17 14:25:23 +05301272 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001273 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1274 REG_WRITE(ah,
1275 AR9271_RESET_POWER_DOWN_CONTROL,
1276 AR9271_RADIO_RF_RST);
1277 udelay(50);
1278 }
1279
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001280 if (!ath9k_hw_chip_reset(ah, chan)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001281 ath_print(common, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001282 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001283 }
1284
Sujith05020d22010-03-17 14:25:23 +05301285 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001286 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1287 ah->htc_reset_init = false;
1288 REG_WRITE(ah,
1289 AR9271_RESET_POWER_DOWN_CONTROL,
1290 AR9271_GATE_MAC_CTL);
1291 udelay(50);
1292 }
1293
Sujith46fe7822009-09-17 09:25:25 +05301294 /* Restore TSF */
1295 if (tsf && AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
1296 ath9k_hw_settsf64(ah, tsf);
1297
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301298 if (AR_SREV_9280_10_OR_LATER(ah))
1299 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001300
Sujithe9141f72010-06-01 15:14:10 +05301301 if (!AR_SREV_9300_20_OR_LATER(ah))
1302 ar9002_hw_enable_async_fifo(ah);
1303
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001304 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001305 if (r)
1306 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001307
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001308 /* Setup MFP options for CCMP */
1309 if (AR_SREV_9280_20_OR_LATER(ah)) {
1310 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1311 * frames when constructing CCMP AAD. */
1312 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1313 0xc7ff);
1314 ah->sw_mgmt_crypto = false;
1315 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1316 /* Disable hardware crypto for management frames */
1317 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1318 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1319 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1320 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1321 ah->sw_mgmt_crypto = true;
1322 } else
1323 ah->sw_mgmt_crypto = true;
1324
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001325 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1326 ath9k_hw_set_delta_slope(ah, chan);
1327
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001328 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301329 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001330
Sujith6819d572010-04-16 11:53:56 +05301331 ath9k_hw_set_operating_mode(ah, ah->opmode);
1332
Sujith7d0d0df2010-04-16 11:53:57 +05301333 ENABLE_REGWRITE_BUFFER(ah);
1334
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001335 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1336 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001337 | macStaId1
1338 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301339 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301340 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301341 | ah->sta_id1_defaults);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001342 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001343 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001344 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001345 REG_WRITE(ah, AR_ISR, ~0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001346 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1347
Sujith7d0d0df2010-04-16 11:53:57 +05301348 REGWRITE_BUFFER_FLUSH(ah);
1349 DISABLE_REGWRITE_BUFFER(ah);
1350
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001351 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001352 if (r)
1353 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001354
Sujith7d0d0df2010-04-16 11:53:57 +05301355 ENABLE_REGWRITE_BUFFER(ah);
1356
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001357 for (i = 0; i < AR_NUM_DCU; i++)
1358 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1359
Sujith7d0d0df2010-04-16 11:53:57 +05301360 REGWRITE_BUFFER_FLUSH(ah);
1361 DISABLE_REGWRITE_BUFFER(ah);
1362
Sujith2660b812009-02-09 13:27:26 +05301363 ah->intr_txqs = 0;
1364 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001365 ath9k_hw_resettxqueue(ah, i);
1366
Sujith2660b812009-02-09 13:27:26 +05301367 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001368 ath9k_hw_ani_cache_ini_regs(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001369 ath9k_hw_init_qos(ah);
1370
Sujith2660b812009-02-09 13:27:26 +05301371 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301372 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301373
Felix Fietkau0005baf2010-01-15 02:33:40 +01001374 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001375
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001376 if (!AR_SREV_9300_20_OR_LATER(ah)) {
Sujithe9141f72010-06-01 15:14:10 +05301377 ar9002_hw_update_async_fifo(ah);
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001378 ar9002_hw_enable_wep_aggregation(ah);
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301379 }
1380
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001381 REG_WRITE(ah, AR_STA_ID1,
1382 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
1383
1384 ath9k_hw_set_dma(ah);
1385
1386 REG_WRITE(ah, AR_OBS, 8);
1387
Sujith0ce024c2009-12-14 14:57:00 +05301388 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001389 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1390 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1391 }
1392
Vasanthakumar Thiagarajan7f62a132010-04-15 17:39:19 -04001393 if (ah->config.tx_intr_mitigation) {
1394 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
1395 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
1396 }
1397
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001398 ath9k_hw_init_bb(ah, chan);
1399
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001400 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001401 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001402
Sujith7d0d0df2010-04-16 11:53:57 +05301403 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001404
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001405 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001406 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1407
Sujith7d0d0df2010-04-16 11:53:57 +05301408 REGWRITE_BUFFER_FLUSH(ah);
1409 DISABLE_REGWRITE_BUFFER(ah);
1410
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001411 /*
1412 * For big endian systems turn on swapping for descriptors
1413 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001414 if (AR_SREV_9100(ah)) {
1415 u32 mask;
1416 mask = REG_READ(ah, AR_CFG);
1417 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001418 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301419 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001420 } else {
1421 mask =
1422 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1423 REG_WRITE(ah, AR_CFG, mask);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001424 ath_print(common, ATH_DBG_RESET,
Sujith04bd46382008-11-28 22:18:05 +05301425 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001426 }
1427 } else {
Sujithcbba8cd2010-06-02 15:53:31 +05301428 if (common->bus_ops->ath_bus_type == ATH_USB) {
1429 /* Configure AR9271 target WLAN */
1430 if (AR_SREV_9271(ah))
1431 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
1432 else
1433 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1434 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001435#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001436 else
1437 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001438#endif
1439 }
1440
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001441 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301442 ath9k_hw_btcoex_enable(ah);
1443
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001444 if (AR_SREV_9300_20_OR_LATER(ah)) {
1445 ath9k_hw_loadnf(ah, curchan);
1446 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001447 ar9003_hw_bb_watchdog_config(ah);
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001448 }
1449
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001450 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001451}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001452EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001453
Sujithf1dc5602008-10-29 10:16:30 +05301454/************************/
1455/* Key Cache Management */
1456/************************/
1457
Sujithcbe61d82009-02-09 13:27:12 +05301458bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001459{
Sujithf1dc5602008-10-29 10:16:30 +05301460 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001461
Sujith2660b812009-02-09 13:27:26 +05301462 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001463 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1464 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001465 return false;
1466 }
1467
Sujithf1dc5602008-10-29 10:16:30 +05301468 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001469
Sujithf1dc5602008-10-29 10:16:30 +05301470 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
1471 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
1472 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
1473 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
1474 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
1475 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
1476 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
1477 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
1478
1479 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1480 u16 micentry = entry + 64;
1481
1482 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
1483 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
1484 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
1485 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
1486
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001487 }
1488
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001489 return true;
1490}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001491EXPORT_SYMBOL(ath9k_hw_keyreset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001492
Sujithcbe61d82009-02-09 13:27:12 +05301493bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001494{
Sujithf1dc5602008-10-29 10:16:30 +05301495 u32 macHi, macLo;
Felix Fietkau1d0bb422010-05-25 19:42:44 +02001496 u32 unicast_flag = AR_KEYTABLE_VALID;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001497
Sujith2660b812009-02-09 13:27:26 +05301498 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001499 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1500 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001501 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001502 }
1503
Sujithf1dc5602008-10-29 10:16:30 +05301504 if (mac != NULL) {
Felix Fietkau1d0bb422010-05-25 19:42:44 +02001505 /*
1506 * AR_KEYTABLE_VALID indicates that the address is a unicast
1507 * address, which must match the transmitter address for
1508 * decrypting frames.
1509 * Not setting this bit allows the hardware to use the key
1510 * for multicast frame decryption.
1511 */
1512 if (mac[0] & 0x01)
1513 unicast_flag = 0;
1514
Sujithf1dc5602008-10-29 10:16:30 +05301515 macHi = (mac[5] << 8) | mac[4];
1516 macLo = (mac[3] << 24) |
1517 (mac[2] << 16) |
1518 (mac[1] << 8) |
1519 mac[0];
1520 macLo >>= 1;
1521 macLo |= (macHi & 1) << 31;
1522 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001523 } else {
Sujithf1dc5602008-10-29 10:16:30 +05301524 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001525 }
Sujithf1dc5602008-10-29 10:16:30 +05301526 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
Felix Fietkau1d0bb422010-05-25 19:42:44 +02001527 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | unicast_flag);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001528
1529 return true;
1530}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001531EXPORT_SYMBOL(ath9k_hw_keysetmac);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001532
Sujithcbe61d82009-02-09 13:27:12 +05301533bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05301534 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001535 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001536{
Sujith2660b812009-02-09 13:27:26 +05301537 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001538 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301539 u32 key0, key1, key2, key3, key4;
1540 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001541
Sujithf1dc5602008-10-29 10:16:30 +05301542 if (entry >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001543 ath_print(common, ATH_DBG_FATAL,
1544 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05301545 return false;
1546 }
1547
1548 switch (k->kv_type) {
1549 case ATH9K_CIPHER_AES_OCB:
1550 keyType = AR_KEYTABLE_TYPE_AES;
1551 break;
1552 case ATH9K_CIPHER_AES_CCM:
1553 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001554 ath_print(common, ATH_DBG_ANY,
1555 "AES-CCM not supported by mac rev 0x%x\n",
1556 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001557 return false;
1558 }
Sujithf1dc5602008-10-29 10:16:30 +05301559 keyType = AR_KEYTABLE_TYPE_CCM;
1560 break;
1561 case ATH9K_CIPHER_TKIP:
1562 keyType = AR_KEYTABLE_TYPE_TKIP;
1563 if (ATH9K_IS_MIC_ENABLED(ah)
1564 && entry + 64 >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001565 ath_print(common, ATH_DBG_ANY,
1566 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001567 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001568 }
Sujithf1dc5602008-10-29 10:16:30 +05301569 break;
1570 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08001571 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001572 ath_print(common, ATH_DBG_ANY,
1573 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05301574 return false;
1575 }
Zhu Yie31a16d2009-05-21 21:47:03 +08001576 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05301577 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08001578 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301579 keyType = AR_KEYTABLE_TYPE_104;
1580 else
1581 keyType = AR_KEYTABLE_TYPE_128;
1582 break;
1583 case ATH9K_CIPHER_CLR:
1584 keyType = AR_KEYTABLE_TYPE_CLR;
1585 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001586 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001587 ath_print(common, ATH_DBG_FATAL,
1588 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001589 return false;
1590 }
Sujithf1dc5602008-10-29 10:16:30 +05301591
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001592 key0 = get_unaligned_le32(k->kv_val + 0);
1593 key1 = get_unaligned_le16(k->kv_val + 4);
1594 key2 = get_unaligned_le32(k->kv_val + 6);
1595 key3 = get_unaligned_le16(k->kv_val + 10);
1596 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08001597 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301598 key4 &= 0xff;
1599
Jouni Malinen672903b2009-03-02 15:06:31 +02001600 /*
1601 * Note: Key cache registers access special memory area that requires
1602 * two 32-bit writes to actually update the values in the internal
1603 * memory. Consequently, the exact order and pairs used here must be
1604 * maintained.
1605 */
1606
Sujithf1dc5602008-10-29 10:16:30 +05301607 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1608 u16 micentry = entry + 64;
1609
Jouni Malinen672903b2009-03-02 15:06:31 +02001610 /*
1611 * Write inverted key[47:0] first to avoid Michael MIC errors
1612 * on frames that could be sent or received at the same time.
1613 * The correct key will be written in the end once everything
1614 * else is ready.
1615 */
Sujithf1dc5602008-10-29 10:16:30 +05301616 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
1617 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001618
1619 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301620 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1621 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001622
1623 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301624 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1625 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02001626
1627 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301628 (void) ath9k_hw_keysetmac(ah, entry, mac);
1629
Sujith2660b812009-02-09 13:27:26 +05301630 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02001631 /*
1632 * TKIP uses two key cache entries:
1633 * Michael MIC TX/RX keys in the same key cache entry
1634 * (idx = main index + 64):
1635 * key0 [31:0] = RX key [31:0]
1636 * key1 [15:0] = TX key [31:16]
1637 * key1 [31:16] = reserved
1638 * key2 [31:0] = RX key [63:32]
1639 * key3 [15:0] = TX key [15:0]
1640 * key3 [31:16] = reserved
1641 * key4 [31:0] = TX key [63:32]
1642 */
Sujithf1dc5602008-10-29 10:16:30 +05301643 u32 mic0, mic1, mic2, mic3, mic4;
1644
1645 mic0 = get_unaligned_le32(k->kv_mic + 0);
1646 mic2 = get_unaligned_le32(k->kv_mic + 4);
1647 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
1648 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
1649 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001650
1651 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05301652 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1653 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001654
1655 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301656 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1657 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001658
1659 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301660 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
1661 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1662 AR_KEYTABLE_TYPE_CLR);
1663
1664 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001665 /*
1666 * TKIP uses four key cache entries (two for group
1667 * keys):
1668 * Michael MIC TX/RX keys are in different key cache
1669 * entries (idx = main index + 64 for TX and
1670 * main index + 32 + 96 for RX):
1671 * key0 [31:0] = TX/RX MIC key [31:0]
1672 * key1 [31:0] = reserved
1673 * key2 [31:0] = TX/RX MIC key [63:32]
1674 * key3 [31:0] = reserved
1675 * key4 [31:0] = reserved
1676 *
1677 * Upper layer code will call this function separately
1678 * for TX and RX keys when these registers offsets are
1679 * used.
1680 */
Sujithf1dc5602008-10-29 10:16:30 +05301681 u32 mic0, mic2;
1682
1683 mic0 = get_unaligned_le32(k->kv_mic + 0);
1684 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001685
1686 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301687 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1688 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001689
1690 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05301691 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1692 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001693
1694 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301695 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
1696 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1697 AR_KEYTABLE_TYPE_CLR);
1698 }
Jouni Malinen672903b2009-03-02 15:06:31 +02001699
1700 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05301701 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
1702 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001703
1704 /*
1705 * Write the correct (un-inverted) key[47:0] last to enable
1706 * TKIP now that all other registers are set with correct
1707 * values.
1708 */
Sujithf1dc5602008-10-29 10:16:30 +05301709 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1710 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
1711 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001712 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301713 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1714 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001715
1716 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301717 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1718 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001719
1720 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301721 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1722 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
1723
Jouni Malinen672903b2009-03-02 15:06:31 +02001724 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301725 (void) ath9k_hw_keysetmac(ah, entry, mac);
1726 }
1727
Sujithf1dc5602008-10-29 10:16:30 +05301728 return true;
1729}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001730EXPORT_SYMBOL(ath9k_hw_set_keycache_entry);
Sujithf1dc5602008-10-29 10:16:30 +05301731
Sujithcbe61d82009-02-09 13:27:12 +05301732bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
Sujithf1dc5602008-10-29 10:16:30 +05301733{
Sujith2660b812009-02-09 13:27:26 +05301734 if (entry < ah->caps.keycache_size) {
Sujithf1dc5602008-10-29 10:16:30 +05301735 u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
1736 if (val & AR_KEYTABLE_VALID)
1737 return true;
1738 }
1739 return false;
1740}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001741EXPORT_SYMBOL(ath9k_hw_keyisvalid);
Sujithf1dc5602008-10-29 10:16:30 +05301742
1743/******************************/
1744/* Power Management (Chipset) */
1745/******************************/
1746
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001747/*
1748 * Notify Power Mgt is disabled in self-generated frames.
1749 * If requested, force chip to sleep.
1750 */
Sujithcbe61d82009-02-09 13:27:12 +05301751static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301752{
1753 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1754 if (setChip) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001755 /*
1756 * Clear the RTC force wake bit to allow the
1757 * mac to go to sleep.
1758 */
Sujithf1dc5602008-10-29 10:16:30 +05301759 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1760 AR_RTC_FORCE_WAKE_EN);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001761 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301762 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1763
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001764 /* Shutdown chip. Active low */
Sujith14b3af32010-03-17 14:25:18 +05301765 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05301766 REG_CLR_BIT(ah, (AR_RTC_RESET),
1767 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301768 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001769}
1770
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001771/*
1772 * Notify Power Management is enabled in self-generating
1773 * frames. If request, set power mode of chip to
1774 * auto/normal. Duration in units of 128us (1/8 TU).
1775 */
Sujithcbe61d82009-02-09 13:27:12 +05301776static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001777{
Sujithf1dc5602008-10-29 10:16:30 +05301778 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1779 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05301780 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001781
Sujithf1dc5602008-10-29 10:16:30 +05301782 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001783 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05301784 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1785 AR_RTC_FORCE_WAKE_ON_INT);
1786 } else {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001787 /*
1788 * Clear the RTC force wake bit to allow the
1789 * mac to go to sleep.
1790 */
Sujithf1dc5602008-10-29 10:16:30 +05301791 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1792 AR_RTC_FORCE_WAKE_EN);
1793 }
1794 }
1795}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001796
Sujithcbe61d82009-02-09 13:27:12 +05301797static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301798{
1799 u32 val;
1800 int i;
1801
1802 if (setChip) {
1803 if ((REG_READ(ah, AR_RTC_STATUS) &
1804 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
1805 if (ath9k_hw_set_reset_reg(ah,
1806 ATH9K_RESET_POWER_ON) != true) {
1807 return false;
1808 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04001809 if (!AR_SREV_9300_20_OR_LATER(ah))
1810 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05301811 }
1812 if (AR_SREV_9100(ah))
1813 REG_SET_BIT(ah, AR_RTC_RESET,
1814 AR_RTC_RESET_EN);
1815
1816 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1817 AR_RTC_FORCE_WAKE_EN);
1818 udelay(50);
1819
1820 for (i = POWER_UP_TIME / 50; i > 0; i--) {
1821 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
1822 if (val == AR_RTC_STATUS_ON)
1823 break;
1824 udelay(50);
1825 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1826 AR_RTC_FORCE_WAKE_EN);
1827 }
1828 if (i == 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001829 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1830 "Failed to wakeup in %uus\n",
1831 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05301832 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001833 }
1834 }
1835
Sujithf1dc5602008-10-29 10:16:30 +05301836 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1837
1838 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001839}
1840
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001841bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05301842{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001843 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05301844 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05301845 static const char *modes[] = {
1846 "AWAKE",
1847 "FULL-SLEEP",
1848 "NETWORK SLEEP",
1849 "UNDEFINED"
1850 };
Sujithf1dc5602008-10-29 10:16:30 +05301851
Gabor Juhoscbdec972009-07-24 17:27:22 +02001852 if (ah->power_mode == mode)
1853 return status;
1854
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001855 ath_print(common, ATH_DBG_RESET, "%s -> %s\n",
1856 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05301857
1858 switch (mode) {
1859 case ATH9K_PM_AWAKE:
1860 status = ath9k_hw_set_power_awake(ah, setChip);
1861 break;
1862 case ATH9K_PM_FULL_SLEEP:
1863 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05301864 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05301865 break;
1866 case ATH9K_PM_NETWORK_SLEEP:
1867 ath9k_set_power_network_sleep(ah, setChip);
1868 break;
1869 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001870 ath_print(common, ATH_DBG_FATAL,
1871 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05301872 return false;
1873 }
Sujith2660b812009-02-09 13:27:26 +05301874 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05301875
1876 return status;
1877}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001878EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05301879
Sujithf1dc5602008-10-29 10:16:30 +05301880/*******************/
1881/* Beacon Handling */
1882/*******************/
1883
Sujithcbe61d82009-02-09 13:27:12 +05301884void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001885{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001886 int flags = 0;
1887
Sujith2660b812009-02-09 13:27:26 +05301888 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001889
Sujith7d0d0df2010-04-16 11:53:57 +05301890 ENABLE_REGWRITE_BUFFER(ah);
1891
Sujith2660b812009-02-09 13:27:26 +05301892 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001893 case NL80211_IFTYPE_STATION:
1894 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001895 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1896 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
1897 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
1898 flags |= AR_TBTT_TIMER_EN;
1899 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001900 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001901 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001902 REG_SET_BIT(ah, AR_TXCFG,
1903 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
1904 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
1905 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05301906 (ah->atim_window ? ah->
1907 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001908 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08001909 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001910 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1911 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
1912 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301913 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301914 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001915 REG_WRITE(ah, AR_NEXT_SWBA,
1916 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301917 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301918 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001919 flags |=
1920 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
1921 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001922 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001923 ath_print(ath9k_hw_common(ah), ATH_DBG_BEACON,
1924 "%s: unsupported opmode: %d\n",
1925 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08001926 return;
1927 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001928 }
1929
1930 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1931 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1932 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
1933 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
1934
Sujith7d0d0df2010-04-16 11:53:57 +05301935 REGWRITE_BUFFER_FLUSH(ah);
1936 DISABLE_REGWRITE_BUFFER(ah);
1937
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001938 beacon_period &= ~ATH9K_BEACON_ENA;
1939 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001940 ath9k_hw_reset_tsf(ah);
1941 }
1942
1943 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
1944}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001945EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001946
Sujithcbe61d82009-02-09 13:27:12 +05301947void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301948 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001949{
1950 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05301951 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001952 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001953
Sujith7d0d0df2010-04-16 11:53:57 +05301954 ENABLE_REGWRITE_BUFFER(ah);
1955
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001956 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
1957
1958 REG_WRITE(ah, AR_BEACON_PERIOD,
1959 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1960 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
1961 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1962
Sujith7d0d0df2010-04-16 11:53:57 +05301963 REGWRITE_BUFFER_FLUSH(ah);
1964 DISABLE_REGWRITE_BUFFER(ah);
1965
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001966 REG_RMW_FIELD(ah, AR_RSSI_THR,
1967 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
1968
1969 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
1970
1971 if (bs->bs_sleepduration > beaconintval)
1972 beaconintval = bs->bs_sleepduration;
1973
1974 dtimperiod = bs->bs_dtimperiod;
1975 if (bs->bs_sleepduration > dtimperiod)
1976 dtimperiod = bs->bs_sleepduration;
1977
1978 if (beaconintval == dtimperiod)
1979 nextTbtt = bs->bs_nextdtim;
1980 else
1981 nextTbtt = bs->bs_nexttbtt;
1982
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001983 ath_print(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
1984 ath_print(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
1985 ath_print(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
1986 ath_print(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001987
Sujith7d0d0df2010-04-16 11:53:57 +05301988 ENABLE_REGWRITE_BUFFER(ah);
1989
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001990 REG_WRITE(ah, AR_NEXT_DTIM,
1991 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
1992 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
1993
1994 REG_WRITE(ah, AR_SLEEP1,
1995 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
1996 | AR_SLEEP1_ASSUME_DTIM);
1997
Sujith60b67f52008-08-07 10:52:38 +05301998 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001999 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
2000 else
2001 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
2002
2003 REG_WRITE(ah, AR_SLEEP2,
2004 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
2005
2006 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
2007 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
2008
Sujith7d0d0df2010-04-16 11:53:57 +05302009 REGWRITE_BUFFER_FLUSH(ah);
2010 DISABLE_REGWRITE_BUFFER(ah);
2011
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002012 REG_SET_BIT(ah, AR_TIMER_MODE,
2013 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
2014 AR_DTIM_TIMER_EN);
2015
Sujith4af9cf42009-02-12 10:06:47 +05302016 /* TSF Out of Range Threshold */
2017 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002018}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002019EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002020
Sujithf1dc5602008-10-29 10:16:30 +05302021/*******************/
2022/* HW Capabilities */
2023/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002024
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002025int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002026{
Sujith2660b812009-02-09 13:27:26 +05302027 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002028 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002029 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002030 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002031
Sujithf1dc5602008-10-29 10:16:30 +05302032 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002033
Sujithf74df6f2009-02-09 13:27:24 +05302034 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002035 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302036
Sujithf74df6f2009-02-09 13:27:24 +05302037 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05302038 if (AR_SREV_9285_10_OR_LATER(ah))
2039 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002040 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302041
Sujithf74df6f2009-02-09 13:27:24 +05302042 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05302043
Sujith2660b812009-02-09 13:27:26 +05302044 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05302045 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002046 if (regulatory->current_rd == 0x64 ||
2047 regulatory->current_rd == 0x65)
2048 regulatory->current_rd += 5;
2049 else if (regulatory->current_rd == 0x41)
2050 regulatory->current_rd = 0x43;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002051 ath_print(common, ATH_DBG_REGULATORY,
2052 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002053 }
Sujithdc2222a2008-08-14 13:26:55 +05302054
Sujithf74df6f2009-02-09 13:27:24 +05302055 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002056 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
2057 ath_print(common, ATH_DBG_FATAL,
2058 "no band has been marked as supported in EEPROM.\n");
2059 return -EINVAL;
2060 }
2061
Sujithf1dc5602008-10-29 10:16:30 +05302062 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002063
Sujithf1dc5602008-10-29 10:16:30 +05302064 if (eeval & AR5416_OPFLAGS_11A) {
2065 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05302066 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05302067 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
2068 set_bit(ATH9K_MODE_11NA_HT20,
2069 pCap->wireless_modes);
2070 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
2071 set_bit(ATH9K_MODE_11NA_HT40PLUS,
2072 pCap->wireless_modes);
2073 set_bit(ATH9K_MODE_11NA_HT40MINUS,
2074 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002075 }
2076 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002077 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002078
Sujithf1dc5602008-10-29 10:16:30 +05302079 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05302080 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05302081 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05302082 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
2083 set_bit(ATH9K_MODE_11NG_HT20,
2084 pCap->wireless_modes);
2085 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
2086 set_bit(ATH9K_MODE_11NG_HT40PLUS,
2087 pCap->wireless_modes);
2088 set_bit(ATH9K_MODE_11NG_HT40MINUS,
2089 pCap->wireless_modes);
2090 }
2091 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002092 }
Sujithf1dc5602008-10-29 10:16:30 +05302093
Sujithf74df6f2009-02-09 13:27:24 +05302094 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002095 /*
2096 * For AR9271 we will temporarilly uses the rx chainmax as read from
2097 * the EEPROM.
2098 */
Sujith8147f5d2009-02-20 15:13:23 +05302099 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002100 !(eeval & AR5416_OPFLAGS_11A) &&
2101 !(AR_SREV_9271(ah)))
2102 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05302103 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
2104 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002105 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05302106 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05302107
Sujithd535a422009-02-09 13:27:06 +05302108 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05302109 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05302110
2111 pCap->low_2ghz_chan = 2312;
2112 pCap->high_2ghz_chan = 2732;
2113
2114 pCap->low_5ghz_chan = 4920;
2115 pCap->high_5ghz_chan = 6100;
2116
2117 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
2118 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
2119 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
2120
2121 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
2122 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
2123 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
2124
Sujith2660b812009-02-09 13:27:26 +05302125 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05302126 pCap->hw_caps |= ATH9K_HW_CAP_HT;
2127 else
2128 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
2129
2130 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
2131 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
2132 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
2133 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
2134
2135 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
2136 pCap->total_queues =
2137 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
2138 else
2139 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
2140
2141 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
2142 pCap->keycache_size =
2143 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
2144 else
2145 pCap->keycache_size = AR_KEYTABLE_SIZE;
2146
2147 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -05002148
2149 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
2150 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
2151 else
2152 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
Sujithf1dc5602008-10-29 10:16:30 +05302153
Sujith5b5fa352010-03-17 14:25:15 +05302154 if (AR_SREV_9271(ah))
2155 pCap->num_gpio_pins = AR9271_NUM_GPIO;
2156 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302157 pCap->num_gpio_pins = AR9285_NUM_GPIO;
2158 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302159 pCap->num_gpio_pins = AR928X_NUM_GPIO;
2160 else
2161 pCap->num_gpio_pins = AR_NUM_GPIO;
2162
Sujithf1dc5602008-10-29 10:16:30 +05302163 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
2164 pCap->hw_caps |= ATH9K_HW_CAP_CST;
2165 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
2166 } else {
2167 pCap->rts_aggr_limit = (8 * 1024);
2168 }
2169
2170 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
2171
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302172#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05302173 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
2174 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
2175 ah->rfkill_gpio =
2176 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
2177 ah->rfkill_polarity =
2178 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05302179
2180 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
2181 }
2182#endif
Vasanthakumar Thiagarajand5d11542010-05-17 18:57:56 -07002183 if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
Vivek Natarajanbde748a2010-04-05 14:48:05 +05302184 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
2185 else
2186 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05302187
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302188 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302189 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
2190 else
2191 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
2192
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002193 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05302194 pCap->reg_cap =
2195 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2196 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
2197 AR_EEPROM_EEREGCAP_EN_KK_U2 |
2198 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
2199 } else {
2200 pCap->reg_cap =
2201 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2202 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
2203 }
2204
Senthil Balasubramanianebb90cf2009-09-18 15:07:33 +05302205 /* Advertise midband for AR5416 with FCC midband set in eeprom */
2206 if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
2207 AR_SREV_5416(ah))
2208 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
Sujithf1dc5602008-10-29 10:16:30 +05302209
2210 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302211 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302212 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302213 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302214
Vasanthakumar Thiagarajanfe129462009-09-09 15:25:50 +05302215 if (AR_SREV_9280_10_OR_LATER(ah) &&
Luis R. Rodrigueza36cfbc2009-09-09 16:05:32 -07002216 ath9k_hw_btcoex_supported(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002217 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
2218 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302219
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302220 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002221 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
2222 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302223 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002224 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302225 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302226 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002227 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05302228 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002229
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002230 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajane5553722010-04-26 15:04:33 -04002231 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_LDPC |
2232 ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002233 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
2234 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
2235 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002236 pCap->tx_desc_len = sizeof(struct ar9003_txc);
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04002237 pCap->txs_len = sizeof(struct ar9003_txs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002238 } else {
2239 pCap->tx_desc_len = sizeof(struct ath_desc);
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04002240 if (AR_SREV_9280_20(ah) &&
2241 ((ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) <=
2242 AR5416_EEP_MINOR_VER_16) ||
2243 ah->eep_ops->get_eeprom(ah, EEP_FSTCLK_5G)))
2244 pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002245 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002246
Vasanthakumar Thiagarajan6c84ce02010-04-15 17:39:16 -04002247 if (AR_SREV_9300_20_OR_LATER(ah))
2248 pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
2249
Sujithb4dec5e2010-05-17 12:01:19 +05302250 if (AR_SREV_9287_10_OR_LATER(ah) || AR_SREV_9271(ah))
Vasanthakumar Thiagarajan6473d242010-05-13 18:42:38 -07002251 pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
2252
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002253 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002254}
2255
Sujithcbe61d82009-02-09 13:27:12 +05302256bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05302257 u32 capability, u32 *result)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002258{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002259 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302260 switch (type) {
2261 case ATH9K_CAP_CIPHER:
2262 switch (capability) {
2263 case ATH9K_CIPHER_AES_CCM:
2264 case ATH9K_CIPHER_AES_OCB:
2265 case ATH9K_CIPHER_TKIP:
2266 case ATH9K_CIPHER_WEP:
2267 case ATH9K_CIPHER_MIC:
2268 case ATH9K_CIPHER_CLR:
2269 return true;
2270 default:
2271 return false;
2272 }
2273 case ATH9K_CAP_TKIP_MIC:
2274 switch (capability) {
2275 case 0:
2276 return true;
2277 case 1:
Sujith2660b812009-02-09 13:27:26 +05302278 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05302279 AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
2280 false;
2281 }
2282 case ATH9K_CAP_TKIP_SPLIT:
Sujith2660b812009-02-09 13:27:26 +05302283 return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
Sujithf1dc5602008-10-29 10:16:30 +05302284 false : true;
Sujithf1dc5602008-10-29 10:16:30 +05302285 case ATH9K_CAP_MCAST_KEYSRCH:
2286 switch (capability) {
2287 case 0:
2288 return true;
2289 case 1:
2290 if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
2291 return false;
2292 } else {
Sujith2660b812009-02-09 13:27:26 +05302293 return (ah->sta_id1_defaults &
Sujithf1dc5602008-10-29 10:16:30 +05302294 AR_STA_ID1_MCAST_KSRCH) ? true :
2295 false;
2296 }
2297 }
2298 return false;
Sujithf1dc5602008-10-29 10:16:30 +05302299 case ATH9K_CAP_TXPOW:
2300 switch (capability) {
2301 case 0:
2302 return 0;
2303 case 1:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002304 *result = regulatory->power_limit;
Sujithf1dc5602008-10-29 10:16:30 +05302305 return 0;
2306 case 2:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002307 *result = regulatory->max_power_level;
Sujithf1dc5602008-10-29 10:16:30 +05302308 return 0;
2309 case 3:
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002310 *result = regulatory->tp_scale;
Sujithf1dc5602008-10-29 10:16:30 +05302311 return 0;
2312 }
2313 return false;
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05302314 case ATH9K_CAP_DS:
2315 return (AR_SREV_9280_20_OR_LATER(ah) &&
2316 (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
2317 ? false : true;
Sujithf1dc5602008-10-29 10:16:30 +05302318 default:
2319 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002320 }
Sujithf1dc5602008-10-29 10:16:30 +05302321}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002322EXPORT_SYMBOL(ath9k_hw_getcapability);
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002323
Sujithcbe61d82009-02-09 13:27:12 +05302324bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
Sujithf1dc5602008-10-29 10:16:30 +05302325 u32 capability, u32 setting, int *status)
2326{
Sujithf1dc5602008-10-29 10:16:30 +05302327 switch (type) {
2328 case ATH9K_CAP_TKIP_MIC:
2329 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302330 ah->sta_id1_defaults |=
Sujithf1dc5602008-10-29 10:16:30 +05302331 AR_STA_ID1_CRPT_MIC_ENABLE;
2332 else
Sujith2660b812009-02-09 13:27:26 +05302333 ah->sta_id1_defaults &=
Sujithf1dc5602008-10-29 10:16:30 +05302334 ~AR_STA_ID1_CRPT_MIC_ENABLE;
2335 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302336 case ATH9K_CAP_MCAST_KEYSRCH:
2337 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302338 ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05302339 else
Sujith2660b812009-02-09 13:27:26 +05302340 ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
Sujithf1dc5602008-10-29 10:16:30 +05302341 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302342 default:
2343 return false;
2344 }
2345}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002346EXPORT_SYMBOL(ath9k_hw_setcapability);
Sujithf1dc5602008-10-29 10:16:30 +05302347
2348/****************************/
2349/* GPIO / RFKILL / Antennae */
2350/****************************/
2351
Sujithcbe61d82009-02-09 13:27:12 +05302352static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302353 u32 gpio, u32 type)
2354{
2355 int addr;
2356 u32 gpio_shift, tmp;
2357
2358 if (gpio > 11)
2359 addr = AR_GPIO_OUTPUT_MUX3;
2360 else if (gpio > 5)
2361 addr = AR_GPIO_OUTPUT_MUX2;
2362 else
2363 addr = AR_GPIO_OUTPUT_MUX1;
2364
2365 gpio_shift = (gpio % 6) * 5;
2366
2367 if (AR_SREV_9280_20_OR_LATER(ah)
2368 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2369 REG_RMW(ah, addr, (type << gpio_shift),
2370 (0x1f << gpio_shift));
2371 } else {
2372 tmp = REG_READ(ah, addr);
2373 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2374 tmp &= ~(0x1f << gpio_shift);
2375 tmp |= (type << gpio_shift);
2376 REG_WRITE(ah, addr, tmp);
2377 }
2378}
2379
Sujithcbe61d82009-02-09 13:27:12 +05302380void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302381{
2382 u32 gpio_shift;
2383
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002384 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302385
2386 gpio_shift = gpio << 1;
2387
2388 REG_RMW(ah,
2389 AR_GPIO_OE_OUT,
2390 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2391 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2392}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002393EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302394
Sujithcbe61d82009-02-09 13:27:12 +05302395u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302396{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302397#define MS_REG_READ(x, y) \
2398 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2399
Sujith2660b812009-02-09 13:27:26 +05302400 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302401 return 0xffffffff;
2402
Felix Fietkau783dfca2010-04-15 17:38:11 -04002403 if (AR_SREV_9300_20_OR_LATER(ah))
2404 return MS_REG_READ(AR9300, gpio) != 0;
2405 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05302406 return MS_REG_READ(AR9271, gpio) != 0;
2407 else if (AR_SREV_9287_10_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302408 return MS_REG_READ(AR9287, gpio) != 0;
2409 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302410 return MS_REG_READ(AR9285, gpio) != 0;
2411 else if (AR_SREV_9280_10_OR_LATER(ah))
2412 return MS_REG_READ(AR928X, gpio) != 0;
2413 else
2414 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05302415}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002416EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302417
Sujithcbe61d82009-02-09 13:27:12 +05302418void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05302419 u32 ah_signal_type)
2420{
2421 u32 gpio_shift;
2422
2423 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
2424
2425 gpio_shift = 2 * gpio;
2426
2427 REG_RMW(ah,
2428 AR_GPIO_OE_OUT,
2429 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2430 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2431}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002432EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05302433
Sujithcbe61d82009-02-09 13:27:12 +05302434void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302435{
Sujith5b5fa352010-03-17 14:25:15 +05302436 if (AR_SREV_9271(ah))
2437 val = ~val;
2438
Sujithf1dc5602008-10-29 10:16:30 +05302439 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2440 AR_GPIO_BIT(gpio));
2441}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002442EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302443
Sujithcbe61d82009-02-09 13:27:12 +05302444u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302445{
2446 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
2447}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002448EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302449
Sujithcbe61d82009-02-09 13:27:12 +05302450void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302451{
2452 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2453}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002454EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302455
Sujithf1dc5602008-10-29 10:16:30 +05302456/*********************/
2457/* General Operation */
2458/*********************/
2459
Sujithcbe61d82009-02-09 13:27:12 +05302460u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302461{
2462 u32 bits = REG_READ(ah, AR_RX_FILTER);
2463 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2464
2465 if (phybits & AR_PHY_ERR_RADAR)
2466 bits |= ATH9K_RX_FILTER_PHYRADAR;
2467 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2468 bits |= ATH9K_RX_FILTER_PHYERR;
2469
2470 return bits;
2471}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002472EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302473
Sujithcbe61d82009-02-09 13:27:12 +05302474void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302475{
2476 u32 phybits;
2477
Sujith7d0d0df2010-04-16 11:53:57 +05302478 ENABLE_REGWRITE_BUFFER(ah);
2479
Sujith7ea310b2009-09-03 12:08:43 +05302480 REG_WRITE(ah, AR_RX_FILTER, bits);
2481
Sujithf1dc5602008-10-29 10:16:30 +05302482 phybits = 0;
2483 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2484 phybits |= AR_PHY_ERR_RADAR;
2485 if (bits & ATH9K_RX_FILTER_PHYERR)
2486 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2487 REG_WRITE(ah, AR_PHY_ERR, phybits);
2488
2489 if (phybits)
2490 REG_WRITE(ah, AR_RXCFG,
2491 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
2492 else
2493 REG_WRITE(ah, AR_RXCFG,
2494 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
Sujith7d0d0df2010-04-16 11:53:57 +05302495
2496 REGWRITE_BUFFER_FLUSH(ah);
2497 DISABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302498}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002499EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302500
Sujithcbe61d82009-02-09 13:27:12 +05302501bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302502{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302503 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2504 return false;
2505
2506 ath9k_hw_init_pll(ah, NULL);
2507 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302508}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002509EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302510
Sujithcbe61d82009-02-09 13:27:12 +05302511bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302512{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002513 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302514 return false;
2515
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302516 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2517 return false;
2518
2519 ath9k_hw_init_pll(ah, NULL);
2520 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302521}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002522EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302523
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002524void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05302525{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002526 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05302527 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002528 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05302529
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002530 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05302531
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002532 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002533 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002534 channel->max_antenna_gain * 2,
2535 channel->max_power * 2,
2536 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002537 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05302538}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002539EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302540
Sujithcbe61d82009-02-09 13:27:12 +05302541void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
Sujithf1dc5602008-10-29 10:16:30 +05302542{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002543 memcpy(ath9k_hw_common(ah)->macaddr, mac, ETH_ALEN);
Sujithf1dc5602008-10-29 10:16:30 +05302544}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002545EXPORT_SYMBOL(ath9k_hw_setmac);
Sujithf1dc5602008-10-29 10:16:30 +05302546
Sujithcbe61d82009-02-09 13:27:12 +05302547void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302548{
Sujith2660b812009-02-09 13:27:26 +05302549 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302550}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002551EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302552
Sujithcbe61d82009-02-09 13:27:12 +05302553void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302554{
2555 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2556 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2557}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002558EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302559
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002560void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302561{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002562 struct ath_common *common = ath9k_hw_common(ah);
2563
2564 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2565 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2566 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302567}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002568EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302569
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002570#define ATH9K_MAX_TSF_READ 10
2571
Sujithcbe61d82009-02-09 13:27:12 +05302572u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302573{
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002574 u32 tsf_lower, tsf_upper1, tsf_upper2;
2575 int i;
Sujithf1dc5602008-10-29 10:16:30 +05302576
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002577 tsf_upper1 = REG_READ(ah, AR_TSF_U32);
2578 for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
2579 tsf_lower = REG_READ(ah, AR_TSF_L32);
2580 tsf_upper2 = REG_READ(ah, AR_TSF_U32);
2581 if (tsf_upper2 == tsf_upper1)
2582 break;
2583 tsf_upper1 = tsf_upper2;
2584 }
Sujithf1dc5602008-10-29 10:16:30 +05302585
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002586 WARN_ON( i == ATH9K_MAX_TSF_READ );
2587
2588 return (((u64)tsf_upper1 << 32) | tsf_lower);
Sujithf1dc5602008-10-29 10:16:30 +05302589}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002590EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302591
Sujithcbe61d82009-02-09 13:27:12 +05302592void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002593{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002594 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002595 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002596}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002597EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002598
Sujithcbe61d82009-02-09 13:27:12 +05302599void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302600{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002601 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2602 AH_TSF_WRITE_TIMEOUT))
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002603 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
2604 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002605
Sujithf1dc5602008-10-29 10:16:30 +05302606 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002607}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002608EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002609
Sujith54e4cec2009-08-07 09:45:09 +05302610void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002611{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002612 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302613 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002614 else
Sujith2660b812009-02-09 13:27:26 +05302615 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002616}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002617EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002618
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002619void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002620{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002621 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05302622 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002623
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002624 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05302625 macmode = AR_2040_JOINED_RX_CLEAR;
2626 else
2627 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002628
Sujithf1dc5602008-10-29 10:16:30 +05302629 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002630}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302631
2632/* HW Generic timers configuration */
2633
2634static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2635{
2636 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2637 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2638 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2639 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2640 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2641 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2642 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2643 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2644 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2645 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2646 AR_NDP2_TIMER_MODE, 0x0002},
2647 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2648 AR_NDP2_TIMER_MODE, 0x0004},
2649 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2650 AR_NDP2_TIMER_MODE, 0x0008},
2651 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2652 AR_NDP2_TIMER_MODE, 0x0010},
2653 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2654 AR_NDP2_TIMER_MODE, 0x0020},
2655 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2656 AR_NDP2_TIMER_MODE, 0x0040},
2657 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2658 AR_NDP2_TIMER_MODE, 0x0080}
2659};
2660
2661/* HW generic timer primitives */
2662
2663/* compute and clear index of rightmost 1 */
2664static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
2665{
2666 u32 b;
2667
2668 b = *mask;
2669 b &= (0-b);
2670 *mask &= ~b;
2671 b *= debruijn32;
2672 b >>= 27;
2673
2674 return timer_table->gen_timer_index[b];
2675}
2676
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05302677u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302678{
2679 return REG_READ(ah, AR_TSF_L32);
2680}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002681EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302682
2683struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2684 void (*trigger)(void *),
2685 void (*overflow)(void *),
2686 void *arg,
2687 u8 timer_index)
2688{
2689 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2690 struct ath_gen_timer *timer;
2691
2692 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
2693
2694 if (timer == NULL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002695 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2696 "Failed to allocate memory"
2697 "for hw timer[%d]\n", timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302698 return NULL;
2699 }
2700
2701 /* allocate a hardware generic timer slot */
2702 timer_table->timers[timer_index] = timer;
2703 timer->index = timer_index;
2704 timer->trigger = trigger;
2705 timer->overflow = overflow;
2706 timer->arg = arg;
2707
2708 return timer;
2709}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002710EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302711
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002712void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2713 struct ath_gen_timer *timer,
2714 u32 timer_next,
2715 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302716{
2717 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2718 u32 tsf;
2719
2720 BUG_ON(!timer_period);
2721
2722 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
2723
2724 tsf = ath9k_hw_gettsf32(ah);
2725
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002726 ath_print(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
2727 "curent tsf %x period %x"
2728 "timer_next %x\n", tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302729
2730 /*
2731 * Pull timer_next forward if the current TSF already passed it
2732 * because of software latency
2733 */
2734 if (timer_next < tsf)
2735 timer_next = tsf + timer_period;
2736
2737 /*
2738 * Program generic timer registers
2739 */
2740 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2741 timer_next);
2742 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2743 timer_period);
2744 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2745 gen_tmr_configuration[timer->index].mode_mask);
2746
2747 /* Enable both trigger and thresh interrupt masks */
2748 REG_SET_BIT(ah, AR_IMR_S5,
2749 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2750 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302751}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002752EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302753
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002754void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302755{
2756 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2757
2758 if ((timer->index < AR_FIRST_NDP_TIMER) ||
2759 (timer->index >= ATH_MAX_GEN_TIMER)) {
2760 return;
2761 }
2762
2763 /* Clear generic timer enable bits. */
2764 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2765 gen_tmr_configuration[timer->index].mode_mask);
2766
2767 /* Disable both trigger and thresh interrupt masks */
2768 REG_CLR_BIT(ah, AR_IMR_S5,
2769 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2770 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2771
2772 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302773}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002774EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302775
2776void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
2777{
2778 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2779
2780 /* free the hardware generic timer slot */
2781 timer_table->timers[timer->index] = NULL;
2782 kfree(timer);
2783}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002784EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302785
2786/*
2787 * Generic Timer Interrupts handling
2788 */
2789void ath_gen_timer_isr(struct ath_hw *ah)
2790{
2791 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2792 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002793 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302794 u32 trigger_mask, thresh_mask, index;
2795
2796 /* get hardware generic timer interrupt status */
2797 trigger_mask = ah->intr_gen_timer_trigger;
2798 thresh_mask = ah->intr_gen_timer_thresh;
2799 trigger_mask &= timer_table->timer_mask.val;
2800 thresh_mask &= timer_table->timer_mask.val;
2801
2802 trigger_mask &= ~thresh_mask;
2803
2804 while (thresh_mask) {
2805 index = rightmost_index(timer_table, &thresh_mask);
2806 timer = timer_table->timers[index];
2807 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002808 ath_print(common, ATH_DBG_HWTIMER,
2809 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302810 timer->overflow(timer->arg);
2811 }
2812
2813 while (trigger_mask) {
2814 index = rightmost_index(timer_table, &trigger_mask);
2815 timer = timer_table->timers[index];
2816 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002817 ath_print(common, ATH_DBG_HWTIMER,
2818 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302819 timer->trigger(timer->arg);
2820 }
2821}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002822EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002823
Sujith05020d22010-03-17 14:25:23 +05302824/********/
2825/* HTC */
2826/********/
2827
2828void ath9k_hw_htc_resetinit(struct ath_hw *ah)
2829{
2830 ah->htc_reset_init = true;
2831}
2832EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
2833
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002834static struct {
2835 u32 version;
2836 const char * name;
2837} ath_mac_bb_names[] = {
2838 /* Devices with external radios */
2839 { AR_SREV_VERSION_5416_PCI, "5416" },
2840 { AR_SREV_VERSION_5416_PCIE, "5418" },
2841 { AR_SREV_VERSION_9100, "9100" },
2842 { AR_SREV_VERSION_9160, "9160" },
2843 /* Single-chip solutions */
2844 { AR_SREV_VERSION_9280, "9280" },
2845 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04002846 { AR_SREV_VERSION_9287, "9287" },
2847 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguezec839032010-04-15 17:39:20 -04002848 { AR_SREV_VERSION_9300, "9300" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002849};
2850
2851/* For devices with external radios */
2852static struct {
2853 u16 version;
2854 const char * name;
2855} ath_rf_names[] = {
2856 { 0, "5133" },
2857 { AR_RAD5133_SREV_MAJOR, "5133" },
2858 { AR_RAD5122_SREV_MAJOR, "5122" },
2859 { AR_RAD2133_SREV_MAJOR, "2133" },
2860 { AR_RAD2122_SREV_MAJOR, "2122" }
2861};
2862
2863/*
2864 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2865 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002866static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002867{
2868 int i;
2869
2870 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2871 if (ath_mac_bb_names[i].version == mac_bb_version) {
2872 return ath_mac_bb_names[i].name;
2873 }
2874 }
2875
2876 return "????";
2877}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002878
2879/*
2880 * Return the RF name. "????" is returned if the RF is unknown.
2881 * Used for devices with external radios.
2882 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002883static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002884{
2885 int i;
2886
2887 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2888 if (ath_rf_names[i].version == rf_version) {
2889 return ath_rf_names[i].name;
2890 }
2891 }
2892
2893 return "????";
2894}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002895
2896void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
2897{
2898 int used;
2899
2900 /* chipsets >= AR9280 are single-chip */
2901 if (AR_SREV_9280_10_OR_LATER(ah)) {
2902 used = snprintf(hw_name, len,
2903 "Atheros AR%s Rev:%x",
2904 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2905 ah->hw_version.macRev);
2906 }
2907 else {
2908 used = snprintf(hw_name, len,
2909 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
2910 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2911 ah->hw_version.macRev,
2912 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
2913 AR_RADIO_SREV_MAJOR)),
2914 ah->hw_version.phyRev);
2915 }
2916
2917 hw_name[used] = '\0';
2918}
2919EXPORT_SYMBOL(ath9k_hw_name);