blob: 2acd7998559971c5614b6d1d2845c5234d33d250 [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 }
Sujith04bd4632008-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. Rodriguez6a0ec302010-06-21 18:38:49 -0400391 ah->config.pcieSerDesWrite = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400392
393 /*
394 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
395 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
396 * This means we use it for all AR5416 devices, and the few
397 * minor PCI AR9280 devices out there.
398 *
399 * Serialization is required because these devices do not handle
400 * well the case of two concurrent reads/writes due to the latency
401 * involved. During one read/write another read/write can be issued
402 * on another CPU while the previous read/write may still be working
403 * on our hardware, if we hit this case the hardware poops in a loop.
404 * We prevent this by serializing reads and writes.
405 *
406 * This issue is not present on PCI-Express devices or pre-AR5416
407 * devices (legacy, 802.11abg).
408 */
409 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700410 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700411}
412
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700413static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700414{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700415 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
416
417 regulatory->country_code = CTRY_DEFAULT;
418 regulatory->power_limit = MAX_RATE_POWER;
419 regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
420
Sujithd535a422009-02-09 13:27:06 +0530421 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530422 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700423
424 ah->ah_flags = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700425 if (!AR_SREV_9100(ah))
426 ah->ah_flags = AH_USE_EEPROM;
427
Sujith2660b812009-02-09 13:27:26 +0530428 ah->atim_window = 0;
Felix Fietkau16f24112010-06-12 17:22:32 +0200429 ah->sta_id1_defaults =
430 AR_STA_ID1_CRPT_MIC_ENABLE |
431 AR_STA_ID1_MCAST_KSRCH;
Sujith2660b812009-02-09 13:27:26 +0530432 ah->beacon_interval = 100;
433 ah->enable_32kHz_clock = DONT_USE_32KHZ;
434 ah->slottime = (u32) -1;
Sujith2660b812009-02-09 13:27:26 +0530435 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200436 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700437}
438
Sujithcbe61d82009-02-09 13:27:12 +0530439static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700440{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700441 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530442 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700443 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530444 u16 eeval;
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400445 u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700446
Sujithf1dc5602008-10-29 10:16:30 +0530447 sum = 0;
448 for (i = 0; i < 3; i++) {
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400449 eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
Sujithf1dc5602008-10-29 10:16:30 +0530450 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700451 common->macaddr[2 * i] = eeval >> 8;
452 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700453 }
Sujithd8baa932009-03-30 15:28:25 +0530454 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530455 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700456
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700457 return 0;
458}
459
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700460static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700461{
462 int ecode;
463
Sujith527d4852010-03-17 14:25:16 +0530464 if (!AR_SREV_9271(ah)) {
465 if (!ath9k_hw_chip_test(ah))
466 return -ENODEV;
467 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700468
Luis R. Rodriguezebd5a142010-04-15 17:39:18 -0400469 if (!AR_SREV_9300_20_OR_LATER(ah)) {
470 ecode = ar9002_hw_rf_claim(ah);
471 if (ecode != 0)
472 return ecode;
473 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700474
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700475 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700476 if (ecode != 0)
477 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530478
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700479 ath_print(ath9k_hw_common(ah), ATH_DBG_CONFIG,
480 "Eeprom VER: %d, REV: %d\n",
481 ah->eep_ops->get_eeprom_ver(ah),
482 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530483
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400484 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
485 if (ecode) {
486 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
487 "Failed allocating banks for "
488 "external radio\n");
489 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400490 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700491
492 if (!AR_SREV_9100(ah)) {
493 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700494 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700495 }
Sujithf1dc5602008-10-29 10:16:30 +0530496
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700497 return 0;
498}
499
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400500static void ath9k_hw_attach_ops(struct ath_hw *ah)
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700501{
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400502 if (AR_SREV_9300_20_OR_LATER(ah))
503 ar9003_hw_attach_ops(ah);
504 else
505 ar9002_hw_attach_ops(ah);
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700506}
507
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400508/* Called for all hardware families */
509static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700510{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700511 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700512 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700513
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400514 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
515 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700516
517 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700518 ath_print(common, ATH_DBG_FATAL,
519 "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700520 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700521 }
522
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400523 ath9k_hw_init_defaults(ah);
524 ath9k_hw_init_config(ah);
525
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400526 ath9k_hw_attach_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400527
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700528 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700529 ath_print(common, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700530 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700531 }
532
533 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
534 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
535 (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
536 ah->config.serialize_regmode =
537 SER_REG_MODE_ON;
538 } else {
539 ah->config.serialize_regmode =
540 SER_REG_MODE_OFF;
541 }
542 }
543
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700544 ath_print(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700545 ah->config.serialize_regmode);
546
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500547 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
548 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
549 else
550 ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
551
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400552 if (!ath9k_hw_macversion_supported(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700553 ath_print(common, ATH_DBG_FATAL,
554 "Mac Chip Rev 0x%02x.%x is not supported by "
555 "this driver\n", ah->hw_version.macVersion,
556 ah->hw_version.macRev);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700557 return -EOPNOTSUPP;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700558 }
559
Luis R. Rodriguez0df13da2010-04-15 17:38:59 -0400560 if (AR_SREV_9271(ah) || AR_SREV_9100(ah))
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400561 ah->is_pciexpress = false;
562
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700563 ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700564 ath9k_hw_init_cal_settings(ah);
565
566 ah->ani_function = ATH9K_ANI_ALL;
Luis R. Rodriguez31a0bd32010-04-15 17:38:22 -0400567 if (AR_SREV_9280_10_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700568 ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -0400569 if (!AR_SREV_9300_20_OR_LATER(ah))
570 ah->ani_function &= ~ATH9K_ANI_MRC_CCK;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700571
572 ath9k_hw_init_mode_regs(ah);
573
Luis R. Rodriguez5efa3a62010-05-07 18:23:22 -0400574 /*
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -0400575 * Read back AR_WA into a permanent copy and set bits 14 and 17.
576 * We need to do this to avoid RMW of this register. We cannot
577 * read the reg when chip is asleep.
578 */
579 ah->WARegVal = REG_READ(ah, AR_WA);
580 ah->WARegVal |= (AR_WA_D3_L1_DISABLE |
581 AR_WA_ASPM_TIMER_BASED_DISABLE);
582
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700583 if (ah->is_pciexpress)
Vivek Natarajan93b1b372009-09-17 09:24:58 +0530584 ath9k_hw_configpcipowersave(ah, 0, 0);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700585 else
586 ath9k_hw_disablepcie(ah);
587
Luis R. Rodriguezd8f492b2010-04-15 17:39:04 -0400588 if (!AR_SREV_9300_20_OR_LATER(ah))
589 ar9002_hw_cck_chan14_spread(ah);
Sujith193cd452009-09-18 15:04:07 +0530590
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700591 r = ath9k_hw_post_init(ah);
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700592 if (r)
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700593 return r;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700594
595 ath9k_hw_init_mode_gain_regs(ah);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +0100596 r = ath9k_hw_fill_cap_info(ah);
597 if (r)
598 return r;
599
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700600 r = ath9k_hw_init_macaddr(ah);
601 if (r) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700602 ath_print(common, ATH_DBG_FATAL,
603 "Failed to initialize MAC address\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700604 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700605 }
606
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400607 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
Sujith2660b812009-02-09 13:27:26 +0530608 ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700609 else
Sujith2660b812009-02-09 13:27:26 +0530610 ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700611
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700612 ath9k_init_nfcal_hist_buffer(ah);
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -0400613 ah->bb_watchdog_timeout_ms = 25;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700614
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400615 common->state = ATH_HW_INITIALIZED;
616
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700617 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700618}
619
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400620int ath9k_hw_init(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530621{
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400622 int ret;
623 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530624
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400625 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
626 switch (ah->hw_version.devid) {
627 case AR5416_DEVID_PCI:
628 case AR5416_DEVID_PCIE:
629 case AR5416_AR9100_DEVID:
630 case AR9160_DEVID_PCI:
631 case AR9280_DEVID_PCI:
632 case AR9280_DEVID_PCIE:
633 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400634 case AR9287_DEVID_PCI:
635 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400636 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400637 case AR9300_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400638 break;
639 default:
640 if (common->bus_ops->ath_bus_type == ATH_USB)
641 break;
642 ath_print(common, ATH_DBG_FATAL,
643 "Hardware device ID 0x%04x not supported\n",
644 ah->hw_version.devid);
645 return -EOPNOTSUPP;
646 }
Sujithf1dc5602008-10-29 10:16:30 +0530647
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400648 ret = __ath9k_hw_init(ah);
649 if (ret) {
650 ath_print(common, ATH_DBG_FATAL,
651 "Unable to initialize hardware; "
652 "initialization status: %d\n", ret);
653 return ret;
654 }
Sujithf1dc5602008-10-29 10:16:30 +0530655
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400656 return 0;
Sujithf1dc5602008-10-29 10:16:30 +0530657}
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400658EXPORT_SYMBOL(ath9k_hw_init);
Sujithf1dc5602008-10-29 10:16:30 +0530659
Sujithcbe61d82009-02-09 13:27:12 +0530660static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530661{
Sujith7d0d0df2010-04-16 11:53:57 +0530662 ENABLE_REGWRITE_BUFFER(ah);
663
Sujithf1dc5602008-10-29 10:16:30 +0530664 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
665 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
666
667 REG_WRITE(ah, AR_QOS_NO_ACK,
668 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
669 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
670 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
671
672 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
673 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
674 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
675 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
676 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
Sujith7d0d0df2010-04-16 11:53:57 +0530677
678 REGWRITE_BUFFER_FLUSH(ah);
679 DISABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530680}
681
Sujithcbe61d82009-02-09 13:27:12 +0530682static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530683 struct ath9k_channel *chan)
684{
Luis R. Rodriguez64773962010-04-15 17:38:17 -0400685 u32 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530686
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100687 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530688
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400689 /* Switch the core clock for ar9271 to 117Mhz */
690 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530691 udelay(500);
692 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400693 }
694
Sujithf1dc5602008-10-29 10:16:30 +0530695 udelay(RTC_PLL_SETTLE_DELAY);
696
697 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
698}
699
Sujithcbe61d82009-02-09 13:27:12 +0530700static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800701 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530702{
Pavel Roskin152d5302010-03-31 18:05:37 -0400703 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530704 AR_IMR_TXURN |
705 AR_IMR_RXERR |
706 AR_IMR_RXORN |
707 AR_IMR_BCNMISC;
708
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400709 if (AR_SREV_9300_20_OR_LATER(ah)) {
710 imr_reg |= AR_IMR_RXOK_HP;
711 if (ah->config.rx_intr_mitigation)
712 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
713 else
714 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530715
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400716 } else {
717 if (ah->config.rx_intr_mitigation)
718 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
719 else
720 imr_reg |= AR_IMR_RXOK;
721 }
722
723 if (ah->config.tx_intr_mitigation)
724 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
725 else
726 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530727
Colin McCabed97809d2008-12-01 13:38:55 -0800728 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -0400729 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +0530730
Sujith7d0d0df2010-04-16 11:53:57 +0530731 ENABLE_REGWRITE_BUFFER(ah);
732
Pavel Roskin152d5302010-03-31 18:05:37 -0400733 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500734 ah->imrs2_reg |= AR_IMR_S2_GTT;
735 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530736
737 if (!AR_SREV_9100(ah)) {
738 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
739 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
740 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
741 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400742
Sujith7d0d0df2010-04-16 11:53:57 +0530743 REGWRITE_BUFFER_FLUSH(ah);
744 DISABLE_REGWRITE_BUFFER(ah);
745
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400746 if (AR_SREV_9300_20_OR_LATER(ah)) {
747 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
748 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
749 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
750 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
751 }
Sujithf1dc5602008-10-29 10:16:30 +0530752}
753
Felix Fietkau0005baf2010-01-15 02:33:40 +0100754static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530755{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100756 u32 val = ath9k_hw_mac_to_clks(ah, us);
757 val = min(val, (u32) 0xFFFF);
758 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530759}
760
Felix Fietkau0005baf2010-01-15 02:33:40 +0100761static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530762{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100763 u32 val = ath9k_hw_mac_to_clks(ah, us);
764 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
765 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
766}
767
768static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
769{
770 u32 val = ath9k_hw_mac_to_clks(ah, us);
771 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
772 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530773}
774
Sujithcbe61d82009-02-09 13:27:12 +0530775static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +0530776{
Sujithf1dc5602008-10-29 10:16:30 +0530777 if (tu > 0xFFFF) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700778 ath_print(ath9k_hw_common(ah), ATH_DBG_XMIT,
779 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +0530780 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +0530781 return false;
782 } else {
783 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +0530784 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +0530785 return true;
786 }
787}
788
Felix Fietkau0005baf2010-01-15 02:33:40 +0100789void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530790{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100791 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
792 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +0100793 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100794 int sifstime;
795
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700796 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
797 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +0530798
Sujith2660b812009-02-09 13:27:26 +0530799 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +0530800 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +0530801 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100802
803 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
804 sifstime = 16;
805 else
806 sifstime = 10;
807
Felix Fietkaue239d852010-01-15 02:34:58 +0100808 /* As defined by IEEE 802.11-2007 17.3.8.6 */
809 slottime = ah->slottime + 3 * ah->coverage_class;
810 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +0100811
812 /*
813 * Workaround for early ACK timeouts, add an offset to match the
814 * initval's 64us ack timeout value.
815 * This was initially only meant to work around an issue with delayed
816 * BA frames in some implementations, but it has been found to fix ACK
817 * timeout issues in other cases as well.
818 */
819 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
820 acktimeout += 64 - sifstime - ah->slottime;
821
Felix Fietkaue239d852010-01-15 02:34:58 +0100822 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100823 ath9k_hw_set_ack_timeout(ah, acktimeout);
824 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +0530825 if (ah->globaltxtimeout != (u32) -1)
826 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +0530827}
Felix Fietkau0005baf2010-01-15 02:33:40 +0100828EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +0530829
Sujith285f2dd2010-01-08 10:36:07 +0530830void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700831{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400832 struct ath_common *common = ath9k_hw_common(ah);
833
Sujith736b3a22010-03-17 14:25:24 +0530834 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400835 goto free_hw;
836
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700837 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400838
839free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400840 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700841}
Sujith285f2dd2010-01-08 10:36:07 +0530842EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700843
Sujithf1dc5602008-10-29 10:16:30 +0530844/*******/
845/* INI */
846/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700847
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400848u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -0400849{
850 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
851
852 if (IS_CHAN_B(chan))
853 ctl |= CTL_11B;
854 else if (IS_CHAN_G(chan))
855 ctl |= CTL_11G;
856 else
857 ctl |= CTL_11A;
858
859 return ctl;
860}
861
Sujithf1dc5602008-10-29 10:16:30 +0530862/****************************************/
863/* Reset and Channel Switching Routines */
864/****************************************/
865
Sujithcbe61d82009-02-09 13:27:12 +0530866static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530867{
Felix Fietkau57b32222010-04-15 17:39:22 -0400868 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530869 u32 regval;
870
Sujith7d0d0df2010-04-16 11:53:57 +0530871 ENABLE_REGWRITE_BUFFER(ah);
872
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400873 /*
874 * set AHB_MODE not to do cacheline prefetches
875 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400876 if (!AR_SREV_9300_20_OR_LATER(ah)) {
877 regval = REG_READ(ah, AR_AHB_MODE);
878 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
879 }
Sujithf1dc5602008-10-29 10:16:30 +0530880
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400881 /*
882 * let mac dma reads be in 128 byte chunks
883 */
Sujithf1dc5602008-10-29 10:16:30 +0530884 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
885 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
886
Sujith7d0d0df2010-04-16 11:53:57 +0530887 REGWRITE_BUFFER_FLUSH(ah);
888 DISABLE_REGWRITE_BUFFER(ah);
889
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400890 /*
891 * Restore TX Trigger Level to its pre-reset value.
892 * The initial value depends on whether aggregation is enabled, and is
893 * adjusted whenever underruns are detected.
894 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400895 if (!AR_SREV_9300_20_OR_LATER(ah))
896 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +0530897
Sujith7d0d0df2010-04-16 11:53:57 +0530898 ENABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530899
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400900 /*
901 * let mac dma writes be in 128 byte chunks
902 */
Sujithf1dc5602008-10-29 10:16:30 +0530903 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
904 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
905
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400906 /*
907 * Setup receive FIFO threshold to hold off TX activities
908 */
Sujithf1dc5602008-10-29 10:16:30 +0530909 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
910
Felix Fietkau57b32222010-04-15 17:39:22 -0400911 if (AR_SREV_9300_20_OR_LATER(ah)) {
912 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
913 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
914
915 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
916 ah->caps.rx_status_len);
917 }
918
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400919 /*
920 * reduce the number of usable entries in PCU TXBUF to avoid
921 * wrap around issues.
922 */
Sujithf1dc5602008-10-29 10:16:30 +0530923 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400924 /* For AR9285 the number of Fifos are reduced to half.
925 * So set the usable tx buf size also to half to
926 * avoid data/delimiter underruns
927 */
Sujithf1dc5602008-10-29 10:16:30 +0530928 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
929 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400930 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +0530931 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
932 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
933 }
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -0400934
Sujith7d0d0df2010-04-16 11:53:57 +0530935 REGWRITE_BUFFER_FLUSH(ah);
936 DISABLE_REGWRITE_BUFFER(ah);
937
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -0400938 if (AR_SREV_9300_20_OR_LATER(ah))
939 ath9k_hw_reset_txstatus_ring(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530940}
941
Sujithcbe61d82009-02-09 13:27:12 +0530942static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530943{
944 u32 val;
945
946 val = REG_READ(ah, AR_STA_ID1);
947 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
948 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -0800949 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +0530950 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
951 | AR_STA_ID1_KSRCH_MODE);
952 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
953 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800954 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400955 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +0530956 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
957 | AR_STA_ID1_KSRCH_MODE);
958 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
959 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800960 case NL80211_IFTYPE_STATION:
961 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +0530962 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
963 break;
964 }
965}
966
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400967void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
968 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700969{
970 u32 coef_exp, coef_man;
971
972 for (coef_exp = 31; coef_exp > 0; coef_exp--)
973 if ((coef_scaled >> coef_exp) & 0x1)
974 break;
975
976 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
977
978 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
979
980 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
981 *coef_exponent = coef_exp - 16;
982}
983
Sujithcbe61d82009-02-09 13:27:12 +0530984static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +0530985{
986 u32 rst_flags;
987 u32 tmpReg;
988
Sujith70768492009-02-16 13:23:12 +0530989 if (AR_SREV_9100(ah)) {
990 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
991 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
992 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
993 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
994 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
995 }
996
Sujith7d0d0df2010-04-16 11:53:57 +0530997 ENABLE_REGWRITE_BUFFER(ah);
998
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -0400999 if (AR_SREV_9300_20_OR_LATER(ah)) {
1000 REG_WRITE(ah, AR_WA, ah->WARegVal);
1001 udelay(10);
1002 }
1003
Sujithf1dc5602008-10-29 10:16:30 +05301004 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1005 AR_RTC_FORCE_WAKE_ON_INT);
1006
1007 if (AR_SREV_9100(ah)) {
1008 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1009 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1010 } else {
1011 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1012 if (tmpReg &
1013 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1014 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001015 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301016 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001017
1018 val = AR_RC_HOSTIF;
1019 if (!AR_SREV_9300_20_OR_LATER(ah))
1020 val |= AR_RC_AHB;
1021 REG_WRITE(ah, AR_RC, val);
1022
1023 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301024 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301025
1026 rst_flags = AR_RTC_RC_MAC_WARM;
1027 if (type == ATH9K_RESET_COLD)
1028 rst_flags |= AR_RTC_RC_MAC_COLD;
1029 }
1030
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001031 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujith7d0d0df2010-04-16 11:53:57 +05301032
1033 REGWRITE_BUFFER_FLUSH(ah);
1034 DISABLE_REGWRITE_BUFFER(ah);
1035
Sujithf1dc5602008-10-29 10:16:30 +05301036 udelay(50);
1037
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001038 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301039 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001040 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1041 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301042 return false;
1043 }
1044
1045 if (!AR_SREV_9100(ah))
1046 REG_WRITE(ah, AR_RC, 0);
1047
Sujithf1dc5602008-10-29 10:16:30 +05301048 if (AR_SREV_9100(ah))
1049 udelay(50);
1050
1051 return true;
1052}
1053
Sujithcbe61d82009-02-09 13:27:12 +05301054static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301055{
Sujith7d0d0df2010-04-16 11:53:57 +05301056 ENABLE_REGWRITE_BUFFER(ah);
1057
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001058 if (AR_SREV_9300_20_OR_LATER(ah)) {
1059 REG_WRITE(ah, AR_WA, ah->WARegVal);
1060 udelay(10);
1061 }
1062
Sujithf1dc5602008-10-29 10:16:30 +05301063 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1064 AR_RTC_FORCE_WAKE_ON_INT);
1065
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001066 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301067 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1068
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001069 REG_WRITE(ah, AR_RTC_RESET, 0);
Luis R. Rodriguezee031112010-06-21 18:38:51 -04001070 udelay(2);
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{
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001100 if (AR_SREV_9300_20_OR_LATER(ah)) {
1101 REG_WRITE(ah, AR_WA, ah->WARegVal);
1102 udelay(10);
1103 }
1104
Sujithf1dc5602008-10-29 10:16:30 +05301105 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1106 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1107
1108 switch (type) {
1109 case ATH9K_RESET_POWER_ON:
1110 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301111 case ATH9K_RESET_WARM:
1112 case ATH9K_RESET_COLD:
1113 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301114 default:
1115 return false;
1116 }
1117}
1118
Sujithcbe61d82009-02-09 13:27:12 +05301119static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301120 struct ath9k_channel *chan)
1121{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301122 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301123 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1124 return false;
1125 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301126 return false;
1127
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001128 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301129 return false;
1130
Sujith2660b812009-02-09 13:27:26 +05301131 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301132 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301133 ath9k_hw_set_rfmode(ah, chan);
1134
1135 return true;
1136}
1137
Sujithcbe61d82009-02-09 13:27:12 +05301138static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001139 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301140{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001141 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001142 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001143 struct ieee80211_channel *channel = chan->chan;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001144 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001145 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301146
1147 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1148 if (ath9k_hw_numtxpending(ah, qnum)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001149 ath_print(common, ATH_DBG_QUEUE,
1150 "Transmit frames pending on "
1151 "queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301152 return false;
1153 }
1154 }
1155
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001156 if (!ath9k_hw_rfbus_req(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001157 ath_print(common, ATH_DBG_FATAL,
1158 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301159 return false;
1160 }
1161
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001162 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301163
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001164 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001165 if (r) {
1166 ath_print(common, ATH_DBG_FATAL,
1167 "Failed to set channel\n");
1168 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301169 }
1170
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001171 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001172 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301173 channel->max_antenna_gain * 2,
1174 channel->max_power * 2,
1175 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001176 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301177
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001178 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301179
1180 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1181 ath9k_hw_set_delta_slope(ah, chan);
1182
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001183 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301184
1185 if (!chan->oneTimeCalsDone)
1186 chan->oneTimeCalsDone = true;
1187
1188 return true;
1189}
1190
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001191bool ath9k_hw_check_alive(struct ath_hw *ah)
Johannes Berg3b319aa2009-06-13 14:50:26 +05301192{
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001193 int count = 50;
1194 u32 reg;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301195
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001196 if (AR_SREV_9285_10_OR_LATER(ah))
1197 return true;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301198
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001199 do {
1200 reg = REG_READ(ah, AR_OBS_BUS_1);
1201
1202 if ((reg & 0x7E7FFFEF) == 0x00702400)
1203 continue;
1204
1205 switch (reg & 0x7E000B00) {
1206 case 0x1E000000:
1207 case 0x52000B00:
1208 case 0x18000B00:
1209 continue;
1210 default:
1211 return true;
1212 }
1213 } while (count-- > 0);
1214
1215 return false;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301216}
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001217EXPORT_SYMBOL(ath9k_hw_check_alive);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301218
Sujithcbe61d82009-02-09 13:27:12 +05301219int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001220 bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001221{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001222 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001223 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301224 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001225 u32 saveDefAntenna;
1226 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301227 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001228 int i, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001229
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001230 ah->txchainmask = common->tx_chainmask;
1231 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001232
Vasanthakumar Thiagarajan9b9cc612010-04-15 17:39:41 -04001233 if (!ah->chip_fullsleep) {
1234 ath9k_hw_abortpcurecv(ah);
1235 if (!ath9k_hw_stopdmarecv(ah))
1236 ath_print(common, ATH_DBG_XMIT,
1237 "Failed to stop receive dma\n");
1238 }
1239
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001240 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001241 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001242
Vasanthakumar Thiagarajan9ebef792009-09-17 09:26:44 +05301243 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001244 ath9k_hw_getnf(ah, curchan);
1245
1246 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301247 (ah->chip_fullsleep != true) &&
1248 (ah->curchan != NULL) &&
1249 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001250 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301251 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04001252 !AR_SREV_9280(ah)) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001253
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001254 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301255 ath9k_hw_loadnf(ah, ah->curchan);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001256 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001257 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001258 }
1259 }
1260
1261 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1262 if (saveDefAntenna == 0)
1263 saveDefAntenna = 1;
1264
1265 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1266
Sujith46fe7822009-09-17 09:25:25 +05301267 /* For chips on which RTC reset is done, save TSF before it gets cleared */
Felix Fietkauf860d522010-06-30 02:07:48 +02001268 if (AR_SREV_9100(ah) ||
1269 (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)))
Sujith46fe7822009-09-17 09:25:25 +05301270 tsf = ath9k_hw_gettsf64(ah);
1271
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001272 saveLedState = REG_READ(ah, AR_CFG_LED) &
1273 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1274 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1275
1276 ath9k_hw_mark_phy_inactive(ah);
1277
Sujith05020d22010-03-17 14:25:23 +05301278 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001279 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1280 REG_WRITE(ah,
1281 AR9271_RESET_POWER_DOWN_CONTROL,
1282 AR9271_RADIO_RF_RST);
1283 udelay(50);
1284 }
1285
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001286 if (!ath9k_hw_chip_reset(ah, chan)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001287 ath_print(common, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001288 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001289 }
1290
Sujith05020d22010-03-17 14:25:23 +05301291 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001292 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1293 ah->htc_reset_init = false;
1294 REG_WRITE(ah,
1295 AR9271_RESET_POWER_DOWN_CONTROL,
1296 AR9271_GATE_MAC_CTL);
1297 udelay(50);
1298 }
1299
Sujith46fe7822009-09-17 09:25:25 +05301300 /* Restore TSF */
Felix Fietkauf860d522010-06-30 02:07:48 +02001301 if (tsf)
Sujith46fe7822009-09-17 09:25:25 +05301302 ath9k_hw_settsf64(ah, tsf);
1303
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301304 if (AR_SREV_9280_10_OR_LATER(ah))
1305 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001306
Sujithe9141f72010-06-01 15:14:10 +05301307 if (!AR_SREV_9300_20_OR_LATER(ah))
1308 ar9002_hw_enable_async_fifo(ah);
1309
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001310 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001311 if (r)
1312 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001313
Felix Fietkauf860d522010-06-30 02:07:48 +02001314 /*
1315 * Some AR91xx SoC devices frequently fail to accept TSF writes
1316 * right after the chip reset. When that happens, write a new
1317 * value after the initvals have been applied, with an offset
1318 * based on measured time difference
1319 */
1320 if (AR_SREV_9100(ah) && (ath9k_hw_gettsf64(ah) < tsf)) {
1321 tsf += 1500;
1322 ath9k_hw_settsf64(ah, tsf);
1323 }
1324
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001325 /* Setup MFP options for CCMP */
1326 if (AR_SREV_9280_20_OR_LATER(ah)) {
1327 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1328 * frames when constructing CCMP AAD. */
1329 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1330 0xc7ff);
1331 ah->sw_mgmt_crypto = false;
1332 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1333 /* Disable hardware crypto for management frames */
1334 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1335 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1336 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1337 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1338 ah->sw_mgmt_crypto = true;
1339 } else
1340 ah->sw_mgmt_crypto = true;
1341
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001342 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1343 ath9k_hw_set_delta_slope(ah, chan);
1344
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001345 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301346 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001347
Sujith6819d572010-04-16 11:53:56 +05301348 ath9k_hw_set_operating_mode(ah, ah->opmode);
1349
Sujith7d0d0df2010-04-16 11:53:57 +05301350 ENABLE_REGWRITE_BUFFER(ah);
1351
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001352 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1353 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001354 | macStaId1
1355 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301356 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301357 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301358 | ah->sta_id1_defaults);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001359 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001360 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001361 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001362 REG_WRITE(ah, AR_ISR, ~0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001363 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1364
Sujith7d0d0df2010-04-16 11:53:57 +05301365 REGWRITE_BUFFER_FLUSH(ah);
1366 DISABLE_REGWRITE_BUFFER(ah);
1367
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001368 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001369 if (r)
1370 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001371
Sujith7d0d0df2010-04-16 11:53:57 +05301372 ENABLE_REGWRITE_BUFFER(ah);
1373
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001374 for (i = 0; i < AR_NUM_DCU; i++)
1375 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1376
Sujith7d0d0df2010-04-16 11:53:57 +05301377 REGWRITE_BUFFER_FLUSH(ah);
1378 DISABLE_REGWRITE_BUFFER(ah);
1379
Sujith2660b812009-02-09 13:27:26 +05301380 ah->intr_txqs = 0;
1381 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001382 ath9k_hw_resettxqueue(ah, i);
1383
Sujith2660b812009-02-09 13:27:26 +05301384 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001385 ath9k_hw_ani_cache_ini_regs(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001386 ath9k_hw_init_qos(ah);
1387
Sujith2660b812009-02-09 13:27:26 +05301388 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301389 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301390
Felix Fietkau0005baf2010-01-15 02:33:40 +01001391 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001392
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001393 if (!AR_SREV_9300_20_OR_LATER(ah)) {
Sujithe9141f72010-06-01 15:14:10 +05301394 ar9002_hw_update_async_fifo(ah);
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001395 ar9002_hw_enable_wep_aggregation(ah);
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301396 }
1397
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001398 REG_WRITE(ah, AR_STA_ID1,
1399 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
1400
1401 ath9k_hw_set_dma(ah);
1402
1403 REG_WRITE(ah, AR_OBS, 8);
1404
Sujith0ce024c2009-12-14 14:57:00 +05301405 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001406 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1407 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1408 }
1409
Vasanthakumar Thiagarajan7f62a132010-04-15 17:39:19 -04001410 if (ah->config.tx_intr_mitigation) {
1411 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
1412 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
1413 }
1414
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001415 ath9k_hw_init_bb(ah, chan);
1416
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001417 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001418 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001419
Sujith7d0d0df2010-04-16 11:53:57 +05301420 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001421
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001422 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001423 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1424
Sujith7d0d0df2010-04-16 11:53:57 +05301425 REGWRITE_BUFFER_FLUSH(ah);
1426 DISABLE_REGWRITE_BUFFER(ah);
1427
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001428 /*
1429 * For big endian systems turn on swapping for descriptors
1430 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001431 if (AR_SREV_9100(ah)) {
1432 u32 mask;
1433 mask = REG_READ(ah, AR_CFG);
1434 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001435 ath_print(common, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05301436 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001437 } else {
1438 mask =
1439 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1440 REG_WRITE(ah, AR_CFG, mask);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001441 ath_print(common, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05301442 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001443 }
1444 } else {
Sujithcbba8cd2010-06-02 15:53:31 +05301445 if (common->bus_ops->ath_bus_type == ATH_USB) {
1446 /* Configure AR9271 target WLAN */
1447 if (AR_SREV_9271(ah))
1448 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
1449 else
1450 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1451 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001452#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001453 else
1454 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001455#endif
1456 }
1457
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001458 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301459 ath9k_hw_btcoex_enable(ah);
1460
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001461 if (AR_SREV_9300_20_OR_LATER(ah)) {
1462 ath9k_hw_loadnf(ah, curchan);
1463 ath9k_hw_start_nfcal(ah);
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001464 ar9003_hw_bb_watchdog_config(ah);
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001465 }
1466
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001467 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001468}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001469EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001470
Sujithf1dc5602008-10-29 10:16:30 +05301471/************************/
1472/* Key Cache Management */
1473/************************/
1474
Sujithcbe61d82009-02-09 13:27:12 +05301475bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001476{
Sujithf1dc5602008-10-29 10:16:30 +05301477 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001478
Sujith2660b812009-02-09 13:27:26 +05301479 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001480 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1481 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001482 return false;
1483 }
1484
Sujithf1dc5602008-10-29 10:16:30 +05301485 keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001486
Sujithf1dc5602008-10-29 10:16:30 +05301487 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
1488 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
1489 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
1490 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
1491 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
1492 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
1493 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
1494 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
1495
1496 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1497 u16 micentry = entry + 64;
1498
1499 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
1500 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
1501 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
1502 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
1503
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001504 }
1505
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001506 return true;
1507}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001508EXPORT_SYMBOL(ath9k_hw_keyreset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001509
John W. Linvillef35376a2010-06-29 15:24:05 -04001510static bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001511{
Sujithf1dc5602008-10-29 10:16:30 +05301512 u32 macHi, macLo;
Felix Fietkau1d0bb422010-05-25 19:42:44 +02001513 u32 unicast_flag = AR_KEYTABLE_VALID;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001514
Sujith2660b812009-02-09 13:27:26 +05301515 if (entry >= ah->caps.keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001516 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1517 "keychache entry %u out of range\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001518 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001519 }
1520
Sujithf1dc5602008-10-29 10:16:30 +05301521 if (mac != NULL) {
Felix Fietkau1d0bb422010-05-25 19:42:44 +02001522 /*
1523 * AR_KEYTABLE_VALID indicates that the address is a unicast
1524 * address, which must match the transmitter address for
1525 * decrypting frames.
1526 * Not setting this bit allows the hardware to use the key
1527 * for multicast frame decryption.
1528 */
1529 if (mac[0] & 0x01)
1530 unicast_flag = 0;
1531
Sujithf1dc5602008-10-29 10:16:30 +05301532 macHi = (mac[5] << 8) | mac[4];
1533 macLo = (mac[3] << 24) |
1534 (mac[2] << 16) |
1535 (mac[1] << 8) |
1536 mac[0];
1537 macLo >>= 1;
1538 macLo |= (macHi & 1) << 31;
1539 macHi >>= 1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001540 } else {
Sujithf1dc5602008-10-29 10:16:30 +05301541 macLo = macHi = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001542 }
Sujithf1dc5602008-10-29 10:16:30 +05301543 REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
Felix Fietkau1d0bb422010-05-25 19:42:44 +02001544 REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | unicast_flag);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001545
1546 return true;
1547}
1548
Sujithcbe61d82009-02-09 13:27:12 +05301549bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
Sujithf1dc5602008-10-29 10:16:30 +05301550 const struct ath9k_keyval *k,
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001551 const u8 *mac)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001552{
Sujith2660b812009-02-09 13:27:26 +05301553 const struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001554 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301555 u32 key0, key1, key2, key3, key4;
1556 u32 keyType;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001557
Sujithf1dc5602008-10-29 10:16:30 +05301558 if (entry >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001559 ath_print(common, ATH_DBG_FATAL,
1560 "keycache entry %u out of range\n", entry);
Sujithf1dc5602008-10-29 10:16:30 +05301561 return false;
1562 }
1563
1564 switch (k->kv_type) {
1565 case ATH9K_CIPHER_AES_OCB:
1566 keyType = AR_KEYTABLE_TYPE_AES;
1567 break;
1568 case ATH9K_CIPHER_AES_CCM:
1569 if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001570 ath_print(common, ATH_DBG_ANY,
1571 "AES-CCM not supported by mac rev 0x%x\n",
1572 ah->hw_version.macRev);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001573 return false;
1574 }
Sujithf1dc5602008-10-29 10:16:30 +05301575 keyType = AR_KEYTABLE_TYPE_CCM;
1576 break;
1577 case ATH9K_CIPHER_TKIP:
1578 keyType = AR_KEYTABLE_TYPE_TKIP;
1579 if (ATH9K_IS_MIC_ENABLED(ah)
1580 && entry + 64 >= pCap->keycache_size) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001581 ath_print(common, ATH_DBG_ANY,
1582 "entry %u inappropriate for TKIP\n", entry);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001583 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001584 }
Sujithf1dc5602008-10-29 10:16:30 +05301585 break;
1586 case ATH9K_CIPHER_WEP:
Zhu Yie31a16d2009-05-21 21:47:03 +08001587 if (k->kv_len < WLAN_KEY_LEN_WEP40) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001588 ath_print(common, ATH_DBG_ANY,
1589 "WEP key length %u too small\n", k->kv_len);
Sujithf1dc5602008-10-29 10:16:30 +05301590 return false;
1591 }
Zhu Yie31a16d2009-05-21 21:47:03 +08001592 if (k->kv_len <= WLAN_KEY_LEN_WEP40)
Sujithf1dc5602008-10-29 10:16:30 +05301593 keyType = AR_KEYTABLE_TYPE_40;
Zhu Yie31a16d2009-05-21 21:47:03 +08001594 else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301595 keyType = AR_KEYTABLE_TYPE_104;
1596 else
1597 keyType = AR_KEYTABLE_TYPE_128;
1598 break;
1599 case ATH9K_CIPHER_CLR:
1600 keyType = AR_KEYTABLE_TYPE_CLR;
1601 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001602 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001603 ath_print(common, ATH_DBG_FATAL,
1604 "cipher %u not supported\n", k->kv_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001605 return false;
1606 }
Sujithf1dc5602008-10-29 10:16:30 +05301607
Jouni Malinene0caf9e2009-03-02 18:15:53 +02001608 key0 = get_unaligned_le32(k->kv_val + 0);
1609 key1 = get_unaligned_le16(k->kv_val + 4);
1610 key2 = get_unaligned_le32(k->kv_val + 6);
1611 key3 = get_unaligned_le16(k->kv_val + 10);
1612 key4 = get_unaligned_le32(k->kv_val + 12);
Zhu Yie31a16d2009-05-21 21:47:03 +08001613 if (k->kv_len <= WLAN_KEY_LEN_WEP104)
Sujithf1dc5602008-10-29 10:16:30 +05301614 key4 &= 0xff;
1615
Jouni Malinen672903b2009-03-02 15:06:31 +02001616 /*
1617 * Note: Key cache registers access special memory area that requires
1618 * two 32-bit writes to actually update the values in the internal
1619 * memory. Consequently, the exact order and pairs used here must be
1620 * maintained.
1621 */
1622
Sujithf1dc5602008-10-29 10:16:30 +05301623 if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
1624 u16 micentry = entry + 64;
1625
Jouni Malinen672903b2009-03-02 15:06:31 +02001626 /*
1627 * Write inverted key[47:0] first to avoid Michael MIC errors
1628 * on frames that could be sent or received at the same time.
1629 * The correct key will be written in the end once everything
1630 * else is ready.
1631 */
Sujithf1dc5602008-10-29 10:16:30 +05301632 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
1633 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001634
1635 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301636 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1637 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001638
1639 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301640 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1641 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
Jouni Malinen672903b2009-03-02 15:06:31 +02001642
1643 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301644 (void) ath9k_hw_keysetmac(ah, entry, mac);
1645
Sujith2660b812009-02-09 13:27:26 +05301646 if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
Jouni Malinen672903b2009-03-02 15:06:31 +02001647 /*
1648 * TKIP uses two key cache entries:
1649 * Michael MIC TX/RX keys in the same key cache entry
1650 * (idx = main index + 64):
1651 * key0 [31:0] = RX key [31:0]
1652 * key1 [15:0] = TX key [31:16]
1653 * key1 [31:16] = reserved
1654 * key2 [31:0] = RX key [63:32]
1655 * key3 [15:0] = TX key [15:0]
1656 * key3 [31:16] = reserved
1657 * key4 [31:0] = TX key [63:32]
1658 */
Sujithf1dc5602008-10-29 10:16:30 +05301659 u32 mic0, mic1, mic2, mic3, mic4;
1660
1661 mic0 = get_unaligned_le32(k->kv_mic + 0);
1662 mic2 = get_unaligned_le32(k->kv_mic + 4);
1663 mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
1664 mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
1665 mic4 = get_unaligned_le32(k->kv_txmic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001666
1667 /* Write RX[31:0] and TX[31:16] */
Sujithf1dc5602008-10-29 10:16:30 +05301668 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1669 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001670
1671 /* Write RX[63:32] and TX[15:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301672 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1673 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001674
1675 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301676 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
1677 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1678 AR_KEYTABLE_TYPE_CLR);
1679
1680 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001681 /*
1682 * TKIP uses four key cache entries (two for group
1683 * keys):
1684 * Michael MIC TX/RX keys are in different key cache
1685 * entries (idx = main index + 64 for TX and
1686 * main index + 32 + 96 for RX):
1687 * key0 [31:0] = TX/RX MIC key [31:0]
1688 * key1 [31:0] = reserved
1689 * key2 [31:0] = TX/RX MIC key [63:32]
1690 * key3 [31:0] = reserved
1691 * key4 [31:0] = reserved
1692 *
1693 * Upper layer code will call this function separately
1694 * for TX and RX keys when these registers offsets are
1695 * used.
1696 */
Sujithf1dc5602008-10-29 10:16:30 +05301697 u32 mic0, mic2;
1698
1699 mic0 = get_unaligned_le32(k->kv_mic + 0);
1700 mic2 = get_unaligned_le32(k->kv_mic + 4);
Jouni Malinen672903b2009-03-02 15:06:31 +02001701
1702 /* Write MIC key[31:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301703 REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
1704 REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001705
1706 /* Write MIC key[63:32] */
Sujithf1dc5602008-10-29 10:16:30 +05301707 REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
1708 REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001709
1710 /* Write TX[63:32] and keyType(reserved) */
Sujithf1dc5602008-10-29 10:16:30 +05301711 REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
1712 REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
1713 AR_KEYTABLE_TYPE_CLR);
1714 }
Jouni Malinen672903b2009-03-02 15:06:31 +02001715
1716 /* MAC address registers are reserved for the MIC entry */
Sujithf1dc5602008-10-29 10:16:30 +05301717 REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
1718 REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
Jouni Malinen672903b2009-03-02 15:06:31 +02001719
1720 /*
1721 * Write the correct (un-inverted) key[47:0] last to enable
1722 * TKIP now that all other registers are set with correct
1723 * values.
1724 */
Sujithf1dc5602008-10-29 10:16:30 +05301725 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1726 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
1727 } else {
Jouni Malinen672903b2009-03-02 15:06:31 +02001728 /* Write key[47:0] */
Sujithf1dc5602008-10-29 10:16:30 +05301729 REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
1730 REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
Jouni Malinen672903b2009-03-02 15:06:31 +02001731
1732 /* Write key[95:48] */
Sujithf1dc5602008-10-29 10:16:30 +05301733 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
1734 REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
Jouni Malinen672903b2009-03-02 15:06:31 +02001735
1736 /* Write key[127:96] and key type */
Sujithf1dc5602008-10-29 10:16:30 +05301737 REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
1738 REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
1739
Jouni Malinen672903b2009-03-02 15:06:31 +02001740 /* Write MAC address for the entry */
Sujithf1dc5602008-10-29 10:16:30 +05301741 (void) ath9k_hw_keysetmac(ah, entry, mac);
1742 }
1743
Sujithf1dc5602008-10-29 10:16:30 +05301744 return true;
1745}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001746EXPORT_SYMBOL(ath9k_hw_set_keycache_entry);
Sujithf1dc5602008-10-29 10:16:30 +05301747
Sujithf1dc5602008-10-29 10:16:30 +05301748/******************************/
1749/* Power Management (Chipset) */
1750/******************************/
1751
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001752/*
1753 * Notify Power Mgt is disabled in self-generated frames.
1754 * If requested, force chip to sleep.
1755 */
Sujithcbe61d82009-02-09 13:27:12 +05301756static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301757{
1758 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1759 if (setChip) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001760 /*
1761 * Clear the RTC force wake bit to allow the
1762 * mac to go to sleep.
1763 */
Sujithf1dc5602008-10-29 10:16:30 +05301764 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1765 AR_RTC_FORCE_WAKE_EN);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001766 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301767 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1768
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001769 /* Shutdown chip. Active low */
Sujith14b3af32010-03-17 14:25:18 +05301770 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05301771 REG_CLR_BIT(ah, (AR_RTC_RESET),
1772 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301773 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001774
1775 /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */
1776 if (AR_SREV_9300_20_OR_LATER(ah))
1777 REG_WRITE(ah, AR_WA,
1778 ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001779}
1780
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001781/*
1782 * Notify Power Management is enabled in self-generating
1783 * frames. If request, set power mode of chip to
1784 * auto/normal. Duration in units of 128us (1/8 TU).
1785 */
Sujithcbe61d82009-02-09 13:27:12 +05301786static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001787{
Sujithf1dc5602008-10-29 10:16:30 +05301788 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1789 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05301790 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001791
Sujithf1dc5602008-10-29 10:16:30 +05301792 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001793 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05301794 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1795 AR_RTC_FORCE_WAKE_ON_INT);
1796 } else {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001797 /*
1798 * Clear the RTC force wake bit to allow the
1799 * mac to go to sleep.
1800 */
Sujithf1dc5602008-10-29 10:16:30 +05301801 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1802 AR_RTC_FORCE_WAKE_EN);
1803 }
1804 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001805
1806 /* Clear Bit 14 of AR_WA after putting chip into Net Sleep mode. */
1807 if (AR_SREV_9300_20_OR_LATER(ah))
1808 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Sujithf1dc5602008-10-29 10:16:30 +05301809}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001810
Sujithcbe61d82009-02-09 13:27:12 +05301811static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301812{
1813 u32 val;
1814 int i;
1815
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001816 /* Set Bits 14 and 17 of AR_WA before powering on the chip. */
1817 if (AR_SREV_9300_20_OR_LATER(ah)) {
1818 REG_WRITE(ah, AR_WA, ah->WARegVal);
1819 udelay(10);
1820 }
1821
Sujithf1dc5602008-10-29 10:16:30 +05301822 if (setChip) {
1823 if ((REG_READ(ah, AR_RTC_STATUS) &
1824 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
1825 if (ath9k_hw_set_reset_reg(ah,
1826 ATH9K_RESET_POWER_ON) != true) {
1827 return false;
1828 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04001829 if (!AR_SREV_9300_20_OR_LATER(ah))
1830 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05301831 }
1832 if (AR_SREV_9100(ah))
1833 REG_SET_BIT(ah, AR_RTC_RESET,
1834 AR_RTC_RESET_EN);
1835
1836 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1837 AR_RTC_FORCE_WAKE_EN);
1838 udelay(50);
1839
1840 for (i = POWER_UP_TIME / 50; i > 0; i--) {
1841 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
1842 if (val == AR_RTC_STATUS_ON)
1843 break;
1844 udelay(50);
1845 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1846 AR_RTC_FORCE_WAKE_EN);
1847 }
1848 if (i == 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001849 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1850 "Failed to wakeup in %uus\n",
1851 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05301852 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001853 }
1854 }
1855
Sujithf1dc5602008-10-29 10:16:30 +05301856 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1857
1858 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001859}
1860
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001861bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05301862{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001863 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05301864 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05301865 static const char *modes[] = {
1866 "AWAKE",
1867 "FULL-SLEEP",
1868 "NETWORK SLEEP",
1869 "UNDEFINED"
1870 };
Sujithf1dc5602008-10-29 10:16:30 +05301871
Gabor Juhoscbdec972009-07-24 17:27:22 +02001872 if (ah->power_mode == mode)
1873 return status;
1874
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001875 ath_print(common, ATH_DBG_RESET, "%s -> %s\n",
1876 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05301877
1878 switch (mode) {
1879 case ATH9K_PM_AWAKE:
1880 status = ath9k_hw_set_power_awake(ah, setChip);
1881 break;
1882 case ATH9K_PM_FULL_SLEEP:
1883 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05301884 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05301885 break;
1886 case ATH9K_PM_NETWORK_SLEEP:
1887 ath9k_set_power_network_sleep(ah, setChip);
1888 break;
1889 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001890 ath_print(common, ATH_DBG_FATAL,
1891 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05301892 return false;
1893 }
Sujith2660b812009-02-09 13:27:26 +05301894 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05301895
1896 return status;
1897}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001898EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05301899
Sujithf1dc5602008-10-29 10:16:30 +05301900/*******************/
1901/* Beacon Handling */
1902/*******************/
1903
Sujithcbe61d82009-02-09 13:27:12 +05301904void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001905{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001906 int flags = 0;
1907
Sujith2660b812009-02-09 13:27:26 +05301908 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001909
Sujith7d0d0df2010-04-16 11:53:57 +05301910 ENABLE_REGWRITE_BUFFER(ah);
1911
Sujith2660b812009-02-09 13:27:26 +05301912 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001913 case NL80211_IFTYPE_STATION:
1914 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001915 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1916 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
1917 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
1918 flags |= AR_TBTT_TIMER_EN;
1919 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001920 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001921 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001922 REG_SET_BIT(ah, AR_TXCFG,
1923 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
1924 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
1925 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05301926 (ah->atim_window ? ah->
1927 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001928 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08001929 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001930 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1931 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
1932 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301933 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301934 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001935 REG_WRITE(ah, AR_NEXT_SWBA,
1936 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301937 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301938 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001939 flags |=
1940 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
1941 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001942 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001943 ath_print(ath9k_hw_common(ah), ATH_DBG_BEACON,
1944 "%s: unsupported opmode: %d\n",
1945 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08001946 return;
1947 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001948 }
1949
1950 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1951 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1952 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
1953 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
1954
Sujith7d0d0df2010-04-16 11:53:57 +05301955 REGWRITE_BUFFER_FLUSH(ah);
1956 DISABLE_REGWRITE_BUFFER(ah);
1957
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001958 beacon_period &= ~ATH9K_BEACON_ENA;
1959 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001960 ath9k_hw_reset_tsf(ah);
1961 }
1962
1963 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
1964}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001965EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001966
Sujithcbe61d82009-02-09 13:27:12 +05301967void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301968 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001969{
1970 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05301971 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001972 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001973
Sujith7d0d0df2010-04-16 11:53:57 +05301974 ENABLE_REGWRITE_BUFFER(ah);
1975
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001976 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
1977
1978 REG_WRITE(ah, AR_BEACON_PERIOD,
1979 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1980 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
1981 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1982
Sujith7d0d0df2010-04-16 11:53:57 +05301983 REGWRITE_BUFFER_FLUSH(ah);
1984 DISABLE_REGWRITE_BUFFER(ah);
1985
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001986 REG_RMW_FIELD(ah, AR_RSSI_THR,
1987 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
1988
1989 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
1990
1991 if (bs->bs_sleepduration > beaconintval)
1992 beaconintval = bs->bs_sleepduration;
1993
1994 dtimperiod = bs->bs_dtimperiod;
1995 if (bs->bs_sleepduration > dtimperiod)
1996 dtimperiod = bs->bs_sleepduration;
1997
1998 if (beaconintval == dtimperiod)
1999 nextTbtt = bs->bs_nextdtim;
2000 else
2001 nextTbtt = bs->bs_nexttbtt;
2002
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002003 ath_print(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
2004 ath_print(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
2005 ath_print(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
2006 ath_print(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002007
Sujith7d0d0df2010-04-16 11:53:57 +05302008 ENABLE_REGWRITE_BUFFER(ah);
2009
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002010 REG_WRITE(ah, AR_NEXT_DTIM,
2011 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
2012 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
2013
2014 REG_WRITE(ah, AR_SLEEP1,
2015 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
2016 | AR_SLEEP1_ASSUME_DTIM);
2017
Sujith60b67f52008-08-07 10:52:38 +05302018 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002019 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
2020 else
2021 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
2022
2023 REG_WRITE(ah, AR_SLEEP2,
2024 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
2025
2026 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
2027 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
2028
Sujith7d0d0df2010-04-16 11:53:57 +05302029 REGWRITE_BUFFER_FLUSH(ah);
2030 DISABLE_REGWRITE_BUFFER(ah);
2031
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002032 REG_SET_BIT(ah, AR_TIMER_MODE,
2033 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
2034 AR_DTIM_TIMER_EN);
2035
Sujith4af9cf42009-02-12 10:06:47 +05302036 /* TSF Out of Range Threshold */
2037 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002038}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002039EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002040
Sujithf1dc5602008-10-29 10:16:30 +05302041/*******************/
2042/* HW Capabilities */
2043/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002044
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002045int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002046{
Sujith2660b812009-02-09 13:27:26 +05302047 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002048 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002049 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002050 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002051
Sujithf1dc5602008-10-29 10:16:30 +05302052 u16 capField = 0, eeval;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002053
Sujithf74df6f2009-02-09 13:27:24 +05302054 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002055 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302056
Sujithf74df6f2009-02-09 13:27:24 +05302057 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Sujithfec0de12009-02-12 10:06:43 +05302058 if (AR_SREV_9285_10_OR_LATER(ah))
2059 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002060 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05302061
Sujithf74df6f2009-02-09 13:27:24 +05302062 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05302063
Sujith2660b812009-02-09 13:27:26 +05302064 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05302065 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002066 if (regulatory->current_rd == 0x64 ||
2067 regulatory->current_rd == 0x65)
2068 regulatory->current_rd += 5;
2069 else if (regulatory->current_rd == 0x41)
2070 regulatory->current_rd = 0x43;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002071 ath_print(common, ATH_DBG_REGULATORY,
2072 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002073 }
Sujithdc2222a2008-08-14 13:26:55 +05302074
Sujithf74df6f2009-02-09 13:27:24 +05302075 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002076 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
2077 ath_print(common, ATH_DBG_FATAL,
2078 "no band has been marked as supported in EEPROM.\n");
2079 return -EINVAL;
2080 }
2081
Sujithf1dc5602008-10-29 10:16:30 +05302082 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002083
Sujithf1dc5602008-10-29 10:16:30 +05302084 if (eeval & AR5416_OPFLAGS_11A) {
2085 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05302086 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05302087 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
2088 set_bit(ATH9K_MODE_11NA_HT20,
2089 pCap->wireless_modes);
2090 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
2091 set_bit(ATH9K_MODE_11NA_HT40PLUS,
2092 pCap->wireless_modes);
2093 set_bit(ATH9K_MODE_11NA_HT40MINUS,
2094 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002095 }
2096 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002097 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002098
Sujithf1dc5602008-10-29 10:16:30 +05302099 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05302100 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05302101 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05302102 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
2103 set_bit(ATH9K_MODE_11NG_HT20,
2104 pCap->wireless_modes);
2105 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
2106 set_bit(ATH9K_MODE_11NG_HT40PLUS,
2107 pCap->wireless_modes);
2108 set_bit(ATH9K_MODE_11NG_HT40MINUS,
2109 pCap->wireless_modes);
2110 }
2111 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002112 }
Sujithf1dc5602008-10-29 10:16:30 +05302113
Sujithf74df6f2009-02-09 13:27:24 +05302114 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002115 /*
2116 * For AR9271 we will temporarilly uses the rx chainmax as read from
2117 * the EEPROM.
2118 */
Sujith8147f5d2009-02-20 15:13:23 +05302119 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002120 !(eeval & AR5416_OPFLAGS_11A) &&
2121 !(AR_SREV_9271(ah)))
2122 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05302123 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
2124 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04002125 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05302126 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05302127
Sujithd535a422009-02-09 13:27:06 +05302128 if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
Sujith2660b812009-02-09 13:27:26 +05302129 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05302130
2131 pCap->low_2ghz_chan = 2312;
2132 pCap->high_2ghz_chan = 2732;
2133
2134 pCap->low_5ghz_chan = 4920;
2135 pCap->high_5ghz_chan = 6100;
2136
2137 pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
2138 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
2139 pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
2140
2141 pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
2142 pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
2143 pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
2144
Sujith2660b812009-02-09 13:27:26 +05302145 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05302146 pCap->hw_caps |= ATH9K_HW_CAP_HT;
2147 else
2148 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
2149
2150 pCap->hw_caps |= ATH9K_HW_CAP_GTT;
2151 pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
2152 pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
2153 pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
2154
2155 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
2156 pCap->total_queues =
2157 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
2158 else
2159 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
2160
2161 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
2162 pCap->keycache_size =
2163 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
2164 else
2165 pCap->keycache_size = AR_KEYTABLE_SIZE;
2166
2167 pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -05002168
2169 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
2170 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
2171 else
2172 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
Sujithf1dc5602008-10-29 10:16:30 +05302173
Sujith5b5fa352010-03-17 14:25:15 +05302174 if (AR_SREV_9271(ah))
2175 pCap->num_gpio_pins = AR9271_NUM_GPIO;
Sujith88c1f4f2010-06-30 14:46:31 +05302176 else if (AR_DEVID_7010(ah))
2177 pCap->num_gpio_pins = AR7010_NUM_GPIO;
Sujith5b5fa352010-03-17 14:25:15 +05302178 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302179 pCap->num_gpio_pins = AR9285_NUM_GPIO;
2180 else if (AR_SREV_9280_10_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302181 pCap->num_gpio_pins = AR928X_NUM_GPIO;
2182 else
2183 pCap->num_gpio_pins = AR_NUM_GPIO;
2184
Sujithf1dc5602008-10-29 10:16:30 +05302185 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
2186 pCap->hw_caps |= ATH9K_HW_CAP_CST;
2187 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
2188 } else {
2189 pCap->rts_aggr_limit = (8 * 1024);
2190 }
2191
2192 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
2193
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05302194#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05302195 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
2196 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
2197 ah->rfkill_gpio =
2198 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
2199 ah->rfkill_polarity =
2200 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05302201
2202 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
2203 }
2204#endif
Vasanthakumar Thiagarajand5d11542010-05-17 18:57:56 -07002205 if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
Vivek Natarajanbde748a2010-04-05 14:48:05 +05302206 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
2207 else
2208 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05302209
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05302210 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05302211 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
2212 else
2213 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
2214
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002215 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05302216 pCap->reg_cap =
2217 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2218 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
2219 AR_EEPROM_EEREGCAP_EN_KK_U2 |
2220 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
2221 } else {
2222 pCap->reg_cap =
2223 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
2224 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
2225 }
2226
Senthil Balasubramanianebb90cf2009-09-18 15:07:33 +05302227 /* Advertise midband for AR5416 with FCC midband set in eeprom */
2228 if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
2229 AR_SREV_5416(ah))
2230 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
Sujithf1dc5602008-10-29 10:16:30 +05302231
2232 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302233 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302234 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05302235 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05302236
Vasanthakumar Thiagarajanfe129462009-09-09 15:25:50 +05302237 if (AR_SREV_9280_10_OR_LATER(ah) &&
Luis R. Rodrigueza36cfbc2009-09-09 16:05:32 -07002238 ath9k_hw_btcoex_supported(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002239 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
2240 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302241
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302242 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002243 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
2244 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302245 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002246 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05302247 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05302248 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07002249 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05302250 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002251
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002252 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajane5553722010-04-26 15:04:33 -04002253 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_LDPC |
2254 ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002255 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
2256 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
2257 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002258 pCap->tx_desc_len = sizeof(struct ar9003_txc);
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04002259 pCap->txs_len = sizeof(struct ar9003_txs);
Felix Fietkau49352502010-06-12 00:33:59 -04002260 if (ah->eep_ops->get_eeprom(ah, EEP_PAPRD))
2261 pCap->hw_caps |= ATH9K_HW_CAP_PAPRD;
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04002262 } else {
2263 pCap->tx_desc_len = sizeof(struct ath_desc);
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04002264 if (AR_SREV_9280_20(ah) &&
2265 ((ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) <=
2266 AR5416_EEP_MINOR_VER_16) ||
2267 ah->eep_ops->get_eeprom(ah, EEP_FSTCLK_5G)))
2268 pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04002269 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04002270
Vasanthakumar Thiagarajan6c84ce02010-04-15 17:39:16 -04002271 if (AR_SREV_9300_20_OR_LATER(ah))
2272 pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
2273
Sujithb4dec5e2010-05-17 12:01:19 +05302274 if (AR_SREV_9287_10_OR_LATER(ah) || AR_SREV_9271(ah))
Vasanthakumar Thiagarajan6473d242010-05-13 18:42:38 -07002275 pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
2276
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01002277 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07002278}
2279
Sujithf1dc5602008-10-29 10:16:30 +05302280/****************************/
2281/* GPIO / RFKILL / Antennae */
2282/****************************/
2283
Sujithcbe61d82009-02-09 13:27:12 +05302284static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05302285 u32 gpio, u32 type)
2286{
2287 int addr;
2288 u32 gpio_shift, tmp;
2289
2290 if (gpio > 11)
2291 addr = AR_GPIO_OUTPUT_MUX3;
2292 else if (gpio > 5)
2293 addr = AR_GPIO_OUTPUT_MUX2;
2294 else
2295 addr = AR_GPIO_OUTPUT_MUX1;
2296
2297 gpio_shift = (gpio % 6) * 5;
2298
2299 if (AR_SREV_9280_20_OR_LATER(ah)
2300 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2301 REG_RMW(ah, addr, (type << gpio_shift),
2302 (0x1f << gpio_shift));
2303 } else {
2304 tmp = REG_READ(ah, addr);
2305 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2306 tmp &= ~(0x1f << gpio_shift);
2307 tmp |= (type << gpio_shift);
2308 REG_WRITE(ah, addr, tmp);
2309 }
2310}
2311
Sujithcbe61d82009-02-09 13:27:12 +05302312void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302313{
2314 u32 gpio_shift;
2315
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002316 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302317
Sujith88c1f4f2010-06-30 14:46:31 +05302318 if (AR_DEVID_7010(ah)) {
2319 gpio_shift = gpio;
2320 REG_RMW(ah, AR7010_GPIO_OE,
2321 (AR7010_GPIO_OE_AS_INPUT << gpio_shift),
2322 (AR7010_GPIO_OE_MASK << gpio_shift));
2323 return;
2324 }
Sujithf1dc5602008-10-29 10:16:30 +05302325
Sujith88c1f4f2010-06-30 14:46:31 +05302326 gpio_shift = gpio << 1;
Sujithf1dc5602008-10-29 10:16:30 +05302327 REG_RMW(ah,
2328 AR_GPIO_OE_OUT,
2329 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2330 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2331}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002332EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302333
Sujithcbe61d82009-02-09 13:27:12 +05302334u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302335{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302336#define MS_REG_READ(x, y) \
2337 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2338
Sujith2660b812009-02-09 13:27:26 +05302339 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302340 return 0xffffffff;
2341
Sujith88c1f4f2010-06-30 14:46:31 +05302342 if (AR_DEVID_7010(ah)) {
2343 u32 val;
2344 val = REG_READ(ah, AR7010_GPIO_IN);
2345 return (MS(val, AR7010_GPIO_IN_VAL) & AR_GPIO_BIT(gpio)) == 0;
2346 } else if (AR_SREV_9300_20_OR_LATER(ah))
Felix Fietkau783dfca2010-04-15 17:38:11 -04002347 return MS_REG_READ(AR9300, gpio) != 0;
2348 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05302349 return MS_REG_READ(AR9271, gpio) != 0;
2350 else if (AR_SREV_9287_10_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302351 return MS_REG_READ(AR9287, gpio) != 0;
2352 else if (AR_SREV_9285_10_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302353 return MS_REG_READ(AR9285, gpio) != 0;
2354 else if (AR_SREV_9280_10_OR_LATER(ah))
2355 return MS_REG_READ(AR928X, gpio) != 0;
2356 else
2357 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05302358}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002359EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302360
Sujithcbe61d82009-02-09 13:27:12 +05302361void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05302362 u32 ah_signal_type)
2363{
2364 u32 gpio_shift;
2365
Sujith88c1f4f2010-06-30 14:46:31 +05302366 if (AR_DEVID_7010(ah)) {
2367 gpio_shift = gpio;
2368 REG_RMW(ah, AR7010_GPIO_OE,
2369 (AR7010_GPIO_OE_AS_OUTPUT << gpio_shift),
2370 (AR7010_GPIO_OE_MASK << gpio_shift));
2371 return;
2372 }
2373
Sujithf1dc5602008-10-29 10:16:30 +05302374 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
Sujithf1dc5602008-10-29 10:16:30 +05302375 gpio_shift = 2 * gpio;
Sujithf1dc5602008-10-29 10:16:30 +05302376 REG_RMW(ah,
2377 AR_GPIO_OE_OUT,
2378 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2379 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2380}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002381EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05302382
Sujithcbe61d82009-02-09 13:27:12 +05302383void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302384{
Sujith88c1f4f2010-06-30 14:46:31 +05302385 if (AR_DEVID_7010(ah)) {
2386 val = val ? 0 : 1;
2387 REG_RMW(ah, AR7010_GPIO_OUT, ((val&1) << gpio),
2388 AR_GPIO_BIT(gpio));
2389 return;
2390 }
2391
Sujith5b5fa352010-03-17 14:25:15 +05302392 if (AR_SREV_9271(ah))
2393 val = ~val;
2394
Sujithf1dc5602008-10-29 10:16:30 +05302395 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2396 AR_GPIO_BIT(gpio));
2397}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002398EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302399
Sujithcbe61d82009-02-09 13:27:12 +05302400u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302401{
2402 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
2403}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002404EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302405
Sujithcbe61d82009-02-09 13:27:12 +05302406void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302407{
2408 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2409}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002410EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302411
Sujithf1dc5602008-10-29 10:16:30 +05302412/*********************/
2413/* General Operation */
2414/*********************/
2415
Sujithcbe61d82009-02-09 13:27:12 +05302416u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302417{
2418 u32 bits = REG_READ(ah, AR_RX_FILTER);
2419 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2420
2421 if (phybits & AR_PHY_ERR_RADAR)
2422 bits |= ATH9K_RX_FILTER_PHYRADAR;
2423 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2424 bits |= ATH9K_RX_FILTER_PHYERR;
2425
2426 return bits;
2427}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002428EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302429
Sujithcbe61d82009-02-09 13:27:12 +05302430void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302431{
2432 u32 phybits;
2433
Sujith7d0d0df2010-04-16 11:53:57 +05302434 ENABLE_REGWRITE_BUFFER(ah);
2435
Sujith7ea310b2009-09-03 12:08:43 +05302436 REG_WRITE(ah, AR_RX_FILTER, bits);
2437
Sujithf1dc5602008-10-29 10:16:30 +05302438 phybits = 0;
2439 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2440 phybits |= AR_PHY_ERR_RADAR;
2441 if (bits & ATH9K_RX_FILTER_PHYERR)
2442 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2443 REG_WRITE(ah, AR_PHY_ERR, phybits);
2444
2445 if (phybits)
2446 REG_WRITE(ah, AR_RXCFG,
2447 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
2448 else
2449 REG_WRITE(ah, AR_RXCFG,
2450 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
Sujith7d0d0df2010-04-16 11:53:57 +05302451
2452 REGWRITE_BUFFER_FLUSH(ah);
2453 DISABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302454}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002455EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302456
Sujithcbe61d82009-02-09 13:27:12 +05302457bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302458{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302459 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2460 return false;
2461
2462 ath9k_hw_init_pll(ah, NULL);
2463 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302464}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002465EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302466
Sujithcbe61d82009-02-09 13:27:12 +05302467bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302468{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002469 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302470 return false;
2471
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302472 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2473 return false;
2474
2475 ath9k_hw_init_pll(ah, NULL);
2476 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302477}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002478EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302479
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002480void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05302481{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002482 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05302483 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002484 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05302485
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002486 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05302487
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002488 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002489 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002490 channel->max_antenna_gain * 2,
2491 channel->max_power * 2,
2492 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002493 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05302494}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002495EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302496
Sujithcbe61d82009-02-09 13:27:12 +05302497void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302498{
Sujith2660b812009-02-09 13:27:26 +05302499 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302500}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002501EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302502
Sujithcbe61d82009-02-09 13:27:12 +05302503void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302504{
2505 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2506 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2507}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002508EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302509
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002510void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302511{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002512 struct ath_common *common = ath9k_hw_common(ah);
2513
2514 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2515 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2516 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302517}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002518EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302519
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002520#define ATH9K_MAX_TSF_READ 10
2521
Sujithcbe61d82009-02-09 13:27:12 +05302522u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302523{
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002524 u32 tsf_lower, tsf_upper1, tsf_upper2;
2525 int i;
Sujithf1dc5602008-10-29 10:16:30 +05302526
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002527 tsf_upper1 = REG_READ(ah, AR_TSF_U32);
2528 for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
2529 tsf_lower = REG_READ(ah, AR_TSF_L32);
2530 tsf_upper2 = REG_READ(ah, AR_TSF_U32);
2531 if (tsf_upper2 == tsf_upper1)
2532 break;
2533 tsf_upper1 = tsf_upper2;
2534 }
Sujithf1dc5602008-10-29 10:16:30 +05302535
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002536 WARN_ON( i == ATH9K_MAX_TSF_READ );
2537
2538 return (((u64)tsf_upper1 << 32) | tsf_lower);
Sujithf1dc5602008-10-29 10:16:30 +05302539}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002540EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302541
Sujithcbe61d82009-02-09 13:27:12 +05302542void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002543{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002544 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002545 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002546}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002547EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002548
Sujithcbe61d82009-02-09 13:27:12 +05302549void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302550{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002551 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2552 AH_TSF_WRITE_TIMEOUT))
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002553 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
2554 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002555
Sujithf1dc5602008-10-29 10:16:30 +05302556 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002557}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002558EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002559
Sujith54e4cec2009-08-07 09:45:09 +05302560void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002561{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002562 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302563 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002564 else
Sujith2660b812009-02-09 13:27:26 +05302565 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002566}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002567EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002568
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002569void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002570{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002571 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05302572 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002573
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002574 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05302575 macmode = AR_2040_JOINED_RX_CLEAR;
2576 else
2577 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002578
Sujithf1dc5602008-10-29 10:16:30 +05302579 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002580}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302581
2582/* HW Generic timers configuration */
2583
2584static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2585{
2586 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2587 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2588 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2589 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2590 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2591 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2592 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2593 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2594 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2595 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2596 AR_NDP2_TIMER_MODE, 0x0002},
2597 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2598 AR_NDP2_TIMER_MODE, 0x0004},
2599 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2600 AR_NDP2_TIMER_MODE, 0x0008},
2601 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2602 AR_NDP2_TIMER_MODE, 0x0010},
2603 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2604 AR_NDP2_TIMER_MODE, 0x0020},
2605 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2606 AR_NDP2_TIMER_MODE, 0x0040},
2607 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2608 AR_NDP2_TIMER_MODE, 0x0080}
2609};
2610
2611/* HW generic timer primitives */
2612
2613/* compute and clear index of rightmost 1 */
2614static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
2615{
2616 u32 b;
2617
2618 b = *mask;
2619 b &= (0-b);
2620 *mask &= ~b;
2621 b *= debruijn32;
2622 b >>= 27;
2623
2624 return timer_table->gen_timer_index[b];
2625}
2626
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05302627u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302628{
2629 return REG_READ(ah, AR_TSF_L32);
2630}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002631EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302632
2633struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2634 void (*trigger)(void *),
2635 void (*overflow)(void *),
2636 void *arg,
2637 u8 timer_index)
2638{
2639 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2640 struct ath_gen_timer *timer;
2641
2642 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
2643
2644 if (timer == NULL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002645 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2646 "Failed to allocate memory"
2647 "for hw timer[%d]\n", timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302648 return NULL;
2649 }
2650
2651 /* allocate a hardware generic timer slot */
2652 timer_table->timers[timer_index] = timer;
2653 timer->index = timer_index;
2654 timer->trigger = trigger;
2655 timer->overflow = overflow;
2656 timer->arg = arg;
2657
2658 return timer;
2659}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002660EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302661
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002662void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2663 struct ath_gen_timer *timer,
2664 u32 timer_next,
2665 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302666{
2667 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2668 u32 tsf;
2669
2670 BUG_ON(!timer_period);
2671
2672 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
2673
2674 tsf = ath9k_hw_gettsf32(ah);
2675
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002676 ath_print(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
2677 "curent tsf %x period %x"
2678 "timer_next %x\n", tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302679
2680 /*
2681 * Pull timer_next forward if the current TSF already passed it
2682 * because of software latency
2683 */
2684 if (timer_next < tsf)
2685 timer_next = tsf + timer_period;
2686
2687 /*
2688 * Program generic timer registers
2689 */
2690 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2691 timer_next);
2692 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2693 timer_period);
2694 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2695 gen_tmr_configuration[timer->index].mode_mask);
2696
2697 /* Enable both trigger and thresh interrupt masks */
2698 REG_SET_BIT(ah, AR_IMR_S5,
2699 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2700 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302701}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002702EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302703
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002704void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302705{
2706 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2707
2708 if ((timer->index < AR_FIRST_NDP_TIMER) ||
2709 (timer->index >= ATH_MAX_GEN_TIMER)) {
2710 return;
2711 }
2712
2713 /* Clear generic timer enable bits. */
2714 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2715 gen_tmr_configuration[timer->index].mode_mask);
2716
2717 /* Disable both trigger and thresh interrupt masks */
2718 REG_CLR_BIT(ah, AR_IMR_S5,
2719 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2720 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2721
2722 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302723}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002724EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302725
2726void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
2727{
2728 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2729
2730 /* free the hardware generic timer slot */
2731 timer_table->timers[timer->index] = NULL;
2732 kfree(timer);
2733}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002734EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302735
2736/*
2737 * Generic Timer Interrupts handling
2738 */
2739void ath_gen_timer_isr(struct ath_hw *ah)
2740{
2741 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2742 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002743 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302744 u32 trigger_mask, thresh_mask, index;
2745
2746 /* get hardware generic timer interrupt status */
2747 trigger_mask = ah->intr_gen_timer_trigger;
2748 thresh_mask = ah->intr_gen_timer_thresh;
2749 trigger_mask &= timer_table->timer_mask.val;
2750 thresh_mask &= timer_table->timer_mask.val;
2751
2752 trigger_mask &= ~thresh_mask;
2753
2754 while (thresh_mask) {
2755 index = rightmost_index(timer_table, &thresh_mask);
2756 timer = timer_table->timers[index];
2757 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002758 ath_print(common, ATH_DBG_HWTIMER,
2759 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302760 timer->overflow(timer->arg);
2761 }
2762
2763 while (trigger_mask) {
2764 index = rightmost_index(timer_table, &trigger_mask);
2765 timer = timer_table->timers[index];
2766 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002767 ath_print(common, ATH_DBG_HWTIMER,
2768 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302769 timer->trigger(timer->arg);
2770 }
2771}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002772EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002773
Sujith05020d22010-03-17 14:25:23 +05302774/********/
2775/* HTC */
2776/********/
2777
2778void ath9k_hw_htc_resetinit(struct ath_hw *ah)
2779{
2780 ah->htc_reset_init = true;
2781}
2782EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
2783
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002784static struct {
2785 u32 version;
2786 const char * name;
2787} ath_mac_bb_names[] = {
2788 /* Devices with external radios */
2789 { AR_SREV_VERSION_5416_PCI, "5416" },
2790 { AR_SREV_VERSION_5416_PCIE, "5418" },
2791 { AR_SREV_VERSION_9100, "9100" },
2792 { AR_SREV_VERSION_9160, "9160" },
2793 /* Single-chip solutions */
2794 { AR_SREV_VERSION_9280, "9280" },
2795 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04002796 { AR_SREV_VERSION_9287, "9287" },
2797 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguezec839032010-04-15 17:39:20 -04002798 { AR_SREV_VERSION_9300, "9300" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002799};
2800
2801/* For devices with external radios */
2802static struct {
2803 u16 version;
2804 const char * name;
2805} ath_rf_names[] = {
2806 { 0, "5133" },
2807 { AR_RAD5133_SREV_MAJOR, "5133" },
2808 { AR_RAD5122_SREV_MAJOR, "5122" },
2809 { AR_RAD2133_SREV_MAJOR, "2133" },
2810 { AR_RAD2122_SREV_MAJOR, "2122" }
2811};
2812
2813/*
2814 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2815 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002816static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002817{
2818 int i;
2819
2820 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2821 if (ath_mac_bb_names[i].version == mac_bb_version) {
2822 return ath_mac_bb_names[i].name;
2823 }
2824 }
2825
2826 return "????";
2827}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002828
2829/*
2830 * Return the RF name. "????" is returned if the RF is unknown.
2831 * Used for devices with external radios.
2832 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002833static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002834{
2835 int i;
2836
2837 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2838 if (ath_rf_names[i].version == rf_version) {
2839 return ath_rf_names[i].name;
2840 }
2841 }
2842
2843 return "????";
2844}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002845
2846void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
2847{
2848 int used;
2849
2850 /* chipsets >= AR9280 are single-chip */
2851 if (AR_SREV_9280_10_OR_LATER(ah)) {
2852 used = snprintf(hw_name, len,
2853 "Atheros AR%s Rev:%x",
2854 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2855 ah->hw_version.macRev);
2856 }
2857 else {
2858 used = snprintf(hw_name, len,
2859 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
2860 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2861 ah->hw_version.macRev,
2862 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
2863 AR_RADIO_SREV_MAJOR)),
2864 ah->hw_version.phyRev);
2865 }
2866
2867 hw_name[used] = '\0';
2868}
2869EXPORT_SYMBOL(ath9k_hw_name);