blob: 98c97653c21bb184ed48cc179eef5911370c6eeb [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);
Sujithf1dc5602008-10-29 10:16:30 +0530302}
303
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400304/* This should work for all families including legacy */
Sujithcbe61d82009-02-09 13:27:12 +0530305static bool ath9k_hw_chip_test(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530306{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700307 struct ath_common *common = ath9k_hw_common(ah);
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400308 u32 regAddr[2] = { AR_STA_ID0 };
Sujithf1dc5602008-10-29 10:16:30 +0530309 u32 regHold[2];
310 u32 patternData[4] = { 0x55555555,
311 0xaaaaaaaa,
312 0x66666666,
313 0x99999999 };
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400314 int i, j, loop_max;
Sujithf1dc5602008-10-29 10:16:30 +0530315
Senthil Balasubramanian1f3f0612010-04-15 17:38:29 -0400316 if (!AR_SREV_9300_20_OR_LATER(ah)) {
317 loop_max = 2;
318 regAddr[1] = AR_PHY_BASE + (8 << 2);
319 } else
320 loop_max = 1;
321
322 for (i = 0; i < loop_max; i++) {
Sujithf1dc5602008-10-29 10:16:30 +0530323 u32 addr = regAddr[i];
324 u32 wrData, rdData;
325
326 regHold[i] = REG_READ(ah, addr);
327 for (j = 0; j < 0x100; j++) {
328 wrData = (j << 16) | j;
329 REG_WRITE(ah, addr, wrData);
330 rdData = REG_READ(ah, addr);
331 if (rdData != wrData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700332 ath_print(common, ATH_DBG_FATAL,
333 "address test failed "
334 "addr: 0x%08x - wr:0x%08x != "
335 "rd:0x%08x\n",
336 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530337 return false;
338 }
339 }
340 for (j = 0; j < 4; j++) {
341 wrData = patternData[j];
342 REG_WRITE(ah, addr, wrData);
343 rdData = REG_READ(ah, addr);
344 if (wrData != rdData) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700345 ath_print(common, ATH_DBG_FATAL,
346 "address test failed "
347 "addr: 0x%08x - wr:0x%08x != "
348 "rd:0x%08x\n",
349 addr, wrData, rdData);
Sujithf1dc5602008-10-29 10:16:30 +0530350 return false;
351 }
352 }
353 REG_WRITE(ah, regAddr[i], regHold[i]);
354 }
355 udelay(100);
Sujithcbe61d82009-02-09 13:27:12 +0530356
Sujithf1dc5602008-10-29 10:16:30 +0530357 return true;
358}
359
Luis R. Rodriguezb8b0f372009-08-03 12:24:43 -0700360static void ath9k_hw_init_config(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700361{
362 int i;
363
Sujith2660b812009-02-09 13:27:26 +0530364 ah->config.dma_beacon_response_time = 2;
365 ah->config.sw_beacon_response_time = 10;
366 ah->config.additional_swba_backoff = 0;
367 ah->config.ack_6mb = 0x0;
368 ah->config.cwm_ignore_extcca = 0;
369 ah->config.pcie_powersave_enable = 0;
Sujith2660b812009-02-09 13:27:26 +0530370 ah->config.pcie_clock_req = 0;
Sujith2660b812009-02-09 13:27:26 +0530371 ah->config.pcie_waen = 0;
372 ah->config.analog_shiftreg = 1;
Sujith2660b812009-02-09 13:27:26 +0530373 ah->config.ofdm_trig_low = 200;
374 ah->config.ofdm_trig_high = 500;
375 ah->config.cck_trig_high = 200;
376 ah->config.cck_trig_low = 100;
Luis R. Rodriguez03c72512010-06-12 00:33:46 -0400377 ah->config.enable_ani = true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700378
379 for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
Sujith2660b812009-02-09 13:27:26 +0530380 ah->config.spurchans[i][0] = AR_NO_SPUR;
381 ah->config.spurchans[i][1] = AR_NO_SPUR;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700382 }
383
Luis R. Rodriguez5ffaf8a2010-02-02 11:58:33 -0500384 if (ah->hw_version.devid != AR2427_DEVID_PCIE)
385 ah->config.ht_enable = 1;
386 else
387 ah->config.ht_enable = 0;
388
Sujith0ce024c2009-12-14 14:57:00 +0530389 ah->config.rx_intr_mitigation = true;
Luis R. Rodriguez6a0ec302010-06-21 18:38:49 -0400390 ah->config.pcieSerDesWrite = true;
Luis R. Rodriguez61584252009-03-12 18:18:49 -0400391
392 /*
393 * We need this for PCI devices only (Cardbus, PCI, miniPCI)
394 * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
395 * This means we use it for all AR5416 devices, and the few
396 * minor PCI AR9280 devices out there.
397 *
398 * Serialization is required because these devices do not handle
399 * well the case of two concurrent reads/writes due to the latency
400 * involved. During one read/write another read/write can be issued
401 * on another CPU while the previous read/write may still be working
402 * on our hardware, if we hit this case the hardware poops in a loop.
403 * We prevent this by serializing reads and writes.
404 *
405 * This issue is not present on PCI-Express devices or pre-AR5416
406 * devices (legacy, 802.11abg).
407 */
408 if (num_possible_cpus() > 1)
David S. Miller2d6a5e92009-03-17 15:01:30 -0700409 ah->config.serialize_regmode = SER_REG_MODE_AUTO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700410}
411
Luis R. Rodriguez50aca252009-08-03 12:24:42 -0700412static void ath9k_hw_init_defaults(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700413{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -0700414 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
415
416 regulatory->country_code = CTRY_DEFAULT;
417 regulatory->power_limit = MAX_RATE_POWER;
418 regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
419
Sujithd535a422009-02-09 13:27:06 +0530420 ah->hw_version.magic = AR5416_MAGIC;
Sujithd535a422009-02-09 13:27:06 +0530421 ah->hw_version.subvendorid = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700422
423 ah->ah_flags = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700424 if (!AR_SREV_9100(ah))
425 ah->ah_flags = AH_USE_EEPROM;
426
Sujith2660b812009-02-09 13:27:26 +0530427 ah->atim_window = 0;
Felix Fietkau16f24112010-06-12 17:22:32 +0200428 ah->sta_id1_defaults =
429 AR_STA_ID1_CRPT_MIC_ENABLE |
430 AR_STA_ID1_MCAST_KSRCH;
Sujith2660b812009-02-09 13:27:26 +0530431 ah->beacon_interval = 100;
432 ah->enable_32kHz_clock = DONT_USE_32KHZ;
433 ah->slottime = (u32) -1;
Sujith2660b812009-02-09 13:27:26 +0530434 ah->globaltxtimeout = (u32) -1;
Gabor Juhoscbdec972009-07-24 17:27:22 +0200435 ah->power_mode = ATH9K_PM_UNDEFINED;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700436}
437
Sujithcbe61d82009-02-09 13:27:12 +0530438static int ath9k_hw_init_macaddr(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700439{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700440 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530441 u32 sum;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700442 int i;
Sujithf1dc5602008-10-29 10:16:30 +0530443 u16 eeval;
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400444 u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700445
Sujithf1dc5602008-10-29 10:16:30 +0530446 sum = 0;
447 for (i = 0; i < 3; i++) {
Luis R. Rodriguez49101672010-04-15 17:39:13 -0400448 eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
Sujithf1dc5602008-10-29 10:16:30 +0530449 sum += eeval;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700450 common->macaddr[2 * i] = eeval >> 8;
451 common->macaddr[2 * i + 1] = eeval & 0xff;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700452 }
Sujithd8baa932009-03-30 15:28:25 +0530453 if (sum == 0 || sum == 0xffff * 3)
Sujithf1dc5602008-10-29 10:16:30 +0530454 return -EADDRNOTAVAIL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700455
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700456 return 0;
457}
458
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700459static int ath9k_hw_post_init(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700460{
461 int ecode;
462
Sujith527d4852010-03-17 14:25:16 +0530463 if (!AR_SREV_9271(ah)) {
464 if (!ath9k_hw_chip_test(ah))
465 return -ENODEV;
466 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700467
Luis R. Rodriguezebd5a142010-04-15 17:39:18 -0400468 if (!AR_SREV_9300_20_OR_LATER(ah)) {
469 ecode = ar9002_hw_rf_claim(ah);
470 if (ecode != 0)
471 return ecode;
472 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700473
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700474 ecode = ath9k_hw_eeprom_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700475 if (ecode != 0)
476 return ecode;
Sujith7d01b222009-03-13 08:55:55 +0530477
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700478 ath_print(ath9k_hw_common(ah), ATH_DBG_CONFIG,
479 "Eeprom VER: %d, REV: %d\n",
480 ah->eep_ops->get_eeprom_ver(ah),
481 ah->eep_ops->get_eeprom_rev(ah));
Sujith7d01b222009-03-13 08:55:55 +0530482
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400483 ecode = ath9k_hw_rf_alloc_ext_banks(ah);
484 if (ecode) {
485 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
486 "Failed allocating banks for "
487 "external radio\n");
488 return ecode;
Luis R. Rodriguez574d6b12009-10-19 02:33:37 -0400489 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700490
491 if (!AR_SREV_9100(ah)) {
492 ath9k_hw_ani_setup(ah);
Luis R. Rodriguezf637cfd2009-08-03 12:24:46 -0700493 ath9k_hw_ani_init(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700494 }
Sujithf1dc5602008-10-29 10:16:30 +0530495
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700496 return 0;
497}
498
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400499static void ath9k_hw_attach_ops(struct ath_hw *ah)
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700500{
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400501 if (AR_SREV_9300_20_OR_LATER(ah))
502 ar9003_hw_attach_ops(ah);
503 else
504 ar9002_hw_attach_ops(ah);
Luis R. Rodriguezee2bb462009-08-03 12:24:39 -0700505}
506
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400507/* Called for all hardware families */
508static int __ath9k_hw_init(struct ath_hw *ah)
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700509{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700510 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700511 int r = 0;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700512
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400513 if (ah->hw_version.devid == AR5416_AR9100_DEVID)
514 ah->hw_version.macVersion = AR_SREV_VERSION_9100;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700515
516 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700517 ath_print(common, ATH_DBG_FATAL,
518 "Couldn't reset chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700519 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700520 }
521
Luis R. Rodriguezbab1f622010-04-15 17:38:20 -0400522 ath9k_hw_init_defaults(ah);
523 ath9k_hw_init_config(ah);
524
Luis R. Rodriguez8525f282010-04-15 17:38:19 -0400525 ath9k_hw_attach_ops(ah);
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400526
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700527 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700528 ath_print(common, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
Luis R. Rodriguez95fafca2009-08-03 12:24:54 -0700529 return -EIO;
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700530 }
531
532 if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
533 if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
John W. Linville4c85ab12010-07-28 10:06:35 -0400534 ((AR_SREV_9160(ah) || AR_SREV_9280(ah)) &&
535 !ah->is_pciexpress)) {
Luis R. Rodriguezaa4058a2009-08-03 12:24:45 -0700536 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;
Felix Fietkau7a370812010-09-22 12:34:52 +0200567 if (AR_SREV_9280_20_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. Rodriguezaea702b2010-05-13 13:33:43 -0400612 ah->bb_watchdog_timeout_ms = 25;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700613
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400614 common->state = ATH_HW_INITIALIZED;
615
Luis R. Rodriguez4f3acf82009-08-03 12:24:36 -0700616 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700617}
618
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400619int ath9k_hw_init(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530620{
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400621 int ret;
622 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530623
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400624 /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
625 switch (ah->hw_version.devid) {
626 case AR5416_DEVID_PCI:
627 case AR5416_DEVID_PCIE:
628 case AR5416_AR9100_DEVID:
629 case AR9160_DEVID_PCI:
630 case AR9280_DEVID_PCI:
631 case AR9280_DEVID_PCIE:
632 case AR9285_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400633 case AR9287_DEVID_PCI:
634 case AR9287_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400635 case AR2427_DEVID_PCIE:
Senthil Balasubramaniandb3cc532010-04-15 17:38:18 -0400636 case AR9300_DEVID_PCIE:
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400637 break;
638 default:
639 if (common->bus_ops->ath_bus_type == ATH_USB)
640 break;
641 ath_print(common, ATH_DBG_FATAL,
642 "Hardware device ID 0x%04x not supported\n",
643 ah->hw_version.devid);
644 return -EOPNOTSUPP;
645 }
Sujithf1dc5602008-10-29 10:16:30 +0530646
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400647 ret = __ath9k_hw_init(ah);
648 if (ret) {
649 ath_print(common, ATH_DBG_FATAL,
650 "Unable to initialize hardware; "
651 "initialization status: %d\n", ret);
652 return ret;
653 }
Sujithf1dc5602008-10-29 10:16:30 +0530654
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400655 return 0;
Sujithf1dc5602008-10-29 10:16:30 +0530656}
Luis R. Rodriguezd70357d2010-04-15 17:38:06 -0400657EXPORT_SYMBOL(ath9k_hw_init);
Sujithf1dc5602008-10-29 10:16:30 +0530658
Sujithcbe61d82009-02-09 13:27:12 +0530659static void ath9k_hw_init_qos(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530660{
Sujith7d0d0df2010-04-16 11:53:57 +0530661 ENABLE_REGWRITE_BUFFER(ah);
662
Sujithf1dc5602008-10-29 10:16:30 +0530663 REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
664 REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
665
666 REG_WRITE(ah, AR_QOS_NO_ACK,
667 SM(2, AR_QOS_NO_ACK_TWO_BIT) |
668 SM(5, AR_QOS_NO_ACK_BIT_OFF) |
669 SM(0, AR_QOS_NO_ACK_BYTE_OFF));
670
671 REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
672 REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
673 REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
674 REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
675 REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
Sujith7d0d0df2010-04-16 11:53:57 +0530676
677 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530678}
679
Sujithcbe61d82009-02-09 13:27:12 +0530680static void ath9k_hw_init_pll(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +0530681 struct ath9k_channel *chan)
682{
Luis R. Rodriguez64773962010-04-15 17:38:17 -0400683 u32 pll = ath9k_hw_compute_pll_control(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +0530684
Gabor Juhosd03a66c2009-01-14 20:17:09 +0100685 REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
Sujithf1dc5602008-10-29 10:16:30 +0530686
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400687 /* Switch the core clock for ar9271 to 117Mhz */
688 if (AR_SREV_9271(ah)) {
Sujith25e2ab12010-03-17 14:25:22 +0530689 udelay(500);
690 REG_WRITE(ah, 0x50040, 0x304);
Luis R. Rodriguezc75724d2009-10-19 02:33:34 -0400691 }
692
Sujithf1dc5602008-10-29 10:16:30 +0530693 udelay(RTC_PLL_SETTLE_DELAY);
694
695 REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
696}
697
Sujithcbe61d82009-02-09 13:27:12 +0530698static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
Colin McCabed97809d2008-12-01 13:38:55 -0800699 enum nl80211_iftype opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530700{
Pavel Roskin152d5302010-03-31 18:05:37 -0400701 u32 imr_reg = AR_IMR_TXERR |
Sujithf1dc5602008-10-29 10:16:30 +0530702 AR_IMR_TXURN |
703 AR_IMR_RXERR |
704 AR_IMR_RXORN |
705 AR_IMR_BCNMISC;
706
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400707 if (AR_SREV_9300_20_OR_LATER(ah)) {
708 imr_reg |= AR_IMR_RXOK_HP;
709 if (ah->config.rx_intr_mitigation)
710 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
711 else
712 imr_reg |= AR_IMR_RXOK_LP;
Sujithf1dc5602008-10-29 10:16:30 +0530713
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400714 } else {
715 if (ah->config.rx_intr_mitigation)
716 imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
717 else
718 imr_reg |= AR_IMR_RXOK;
719 }
720
721 if (ah->config.tx_intr_mitigation)
722 imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
723 else
724 imr_reg |= AR_IMR_TXOK;
Sujithf1dc5602008-10-29 10:16:30 +0530725
Colin McCabed97809d2008-12-01 13:38:55 -0800726 if (opmode == NL80211_IFTYPE_AP)
Pavel Roskin152d5302010-03-31 18:05:37 -0400727 imr_reg |= AR_IMR_MIB;
Sujithf1dc5602008-10-29 10:16:30 +0530728
Sujith7d0d0df2010-04-16 11:53:57 +0530729 ENABLE_REGWRITE_BUFFER(ah);
730
Pavel Roskin152d5302010-03-31 18:05:37 -0400731 REG_WRITE(ah, AR_IMR, imr_reg);
Pavel Roskin74bad5c2010-02-23 18:15:27 -0500732 ah->imrs2_reg |= AR_IMR_S2_GTT;
733 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +0530734
735 if (!AR_SREV_9100(ah)) {
736 REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
737 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
738 REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
739 }
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400740
Sujith7d0d0df2010-04-16 11:53:57 +0530741 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530742
Vasanthakumar Thiagarajan66860242010-04-15 17:39:07 -0400743 if (AR_SREV_9300_20_OR_LATER(ah)) {
744 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
745 REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
746 REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
747 REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
748 }
Sujithf1dc5602008-10-29 10:16:30 +0530749}
750
Felix Fietkau0005baf2010-01-15 02:33:40 +0100751static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530752{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100753 u32 val = ath9k_hw_mac_to_clks(ah, us);
754 val = min(val, (u32) 0xFFFF);
755 REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
Sujithf1dc5602008-10-29 10:16:30 +0530756}
757
Felix Fietkau0005baf2010-01-15 02:33:40 +0100758static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
Sujithf1dc5602008-10-29 10:16:30 +0530759{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100760 u32 val = ath9k_hw_mac_to_clks(ah, us);
761 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
762 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
763}
764
765static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
766{
767 u32 val = ath9k_hw_mac_to_clks(ah, us);
768 val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
769 REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
Sujithf1dc5602008-10-29 10:16:30 +0530770}
771
Sujithcbe61d82009-02-09 13:27:12 +0530772static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
Sujithf1dc5602008-10-29 10:16:30 +0530773{
Sujithf1dc5602008-10-29 10:16:30 +0530774 if (tu > 0xFFFF) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700775 ath_print(ath9k_hw_common(ah), ATH_DBG_XMIT,
776 "bad global tx timeout %u\n", tu);
Sujith2660b812009-02-09 13:27:26 +0530777 ah->globaltxtimeout = (u32) -1;
Sujithf1dc5602008-10-29 10:16:30 +0530778 return false;
779 } else {
780 REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
Sujith2660b812009-02-09 13:27:26 +0530781 ah->globaltxtimeout = tu;
Sujithf1dc5602008-10-29 10:16:30 +0530782 return true;
783 }
784}
785
Felix Fietkau0005baf2010-01-15 02:33:40 +0100786void ath9k_hw_init_global_settings(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530787{
Felix Fietkau0005baf2010-01-15 02:33:40 +0100788 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
789 int acktimeout;
Felix Fietkaue239d852010-01-15 02:34:58 +0100790 int slottime;
Felix Fietkau0005baf2010-01-15 02:33:40 +0100791 int sifstime;
792
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700793 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
794 ah->misc_mode);
Sujithf1dc5602008-10-29 10:16:30 +0530795
Sujith2660b812009-02-09 13:27:26 +0530796 if (ah->misc_mode != 0)
Sujithf1dc5602008-10-29 10:16:30 +0530797 REG_WRITE(ah, AR_PCU_MISC,
Sujith2660b812009-02-09 13:27:26 +0530798 REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100799
800 if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
801 sifstime = 16;
802 else
803 sifstime = 10;
804
Felix Fietkaue239d852010-01-15 02:34:58 +0100805 /* As defined by IEEE 802.11-2007 17.3.8.6 */
806 slottime = ah->slottime + 3 * ah->coverage_class;
807 acktimeout = slottime + sifstime;
Felix Fietkau42c45682010-02-11 18:07:19 +0100808
809 /*
810 * Workaround for early ACK timeouts, add an offset to match the
811 * initval's 64us ack timeout value.
812 * This was initially only meant to work around an issue with delayed
813 * BA frames in some implementations, but it has been found to fix ACK
814 * timeout issues in other cases as well.
815 */
816 if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
817 acktimeout += 64 - sifstime - ah->slottime;
818
Felix Fietkaue239d852010-01-15 02:34:58 +0100819 ath9k_hw_setslottime(ah, slottime);
Felix Fietkau0005baf2010-01-15 02:33:40 +0100820 ath9k_hw_set_ack_timeout(ah, acktimeout);
821 ath9k_hw_set_cts_timeout(ah, acktimeout);
Sujith2660b812009-02-09 13:27:26 +0530822 if (ah->globaltxtimeout != (u32) -1)
823 ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
Sujithf1dc5602008-10-29 10:16:30 +0530824}
Felix Fietkau0005baf2010-01-15 02:33:40 +0100825EXPORT_SYMBOL(ath9k_hw_init_global_settings);
Sujithf1dc5602008-10-29 10:16:30 +0530826
Sujith285f2dd2010-01-08 10:36:07 +0530827void ath9k_hw_deinit(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700828{
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400829 struct ath_common *common = ath9k_hw_common(ah);
830
Sujith736b3a22010-03-17 14:25:24 +0530831 if (common->state < ATH_HW_INITIALIZED)
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400832 goto free_hw;
833
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -0700834 ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
Luis R. Rodriguez211f5852009-10-06 21:19:07 -0400835
836free_hw:
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400837 ath9k_hw_rf_free_ext_banks(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700838}
Sujith285f2dd2010-01-08 10:36:07 +0530839EXPORT_SYMBOL(ath9k_hw_deinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700840
Sujithf1dc5602008-10-29 10:16:30 +0530841/*******/
842/* INI */
843/*******/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700844
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400845u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
Bob Copeland3a702e42009-03-30 22:30:29 -0400846{
847 u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
848
849 if (IS_CHAN_B(chan))
850 ctl |= CTL_11B;
851 else if (IS_CHAN_G(chan))
852 ctl |= CTL_11G;
853 else
854 ctl |= CTL_11A;
855
856 return ctl;
857}
858
Sujithf1dc5602008-10-29 10:16:30 +0530859/****************************************/
860/* Reset and Channel Switching Routines */
861/****************************************/
862
Sujithcbe61d82009-02-09 13:27:12 +0530863static inline void ath9k_hw_set_dma(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530864{
Felix Fietkau57b32222010-04-15 17:39:22 -0400865 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530866 u32 regval;
867
Sujith7d0d0df2010-04-16 11:53:57 +0530868 ENABLE_REGWRITE_BUFFER(ah);
869
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400870 /*
871 * set AHB_MODE not to do cacheline prefetches
872 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400873 if (!AR_SREV_9300_20_OR_LATER(ah)) {
874 regval = REG_READ(ah, AR_AHB_MODE);
875 REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
876 }
Sujithf1dc5602008-10-29 10:16:30 +0530877
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400878 /*
879 * let mac dma reads be in 128 byte chunks
880 */
Sujithf1dc5602008-10-29 10:16:30 +0530881 regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
882 REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
883
Sujith7d0d0df2010-04-16 11:53:57 +0530884 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530885
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400886 /*
887 * Restore TX Trigger Level to its pre-reset value.
888 * The initial value depends on whether aggregation is enabled, and is
889 * adjusted whenever underruns are detected.
890 */
Felix Fietkau57b32222010-04-15 17:39:22 -0400891 if (!AR_SREV_9300_20_OR_LATER(ah))
892 REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
Sujithf1dc5602008-10-29 10:16:30 +0530893
Sujith7d0d0df2010-04-16 11:53:57 +0530894 ENABLE_REGWRITE_BUFFER(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530895
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400896 /*
897 * let mac dma writes be in 128 byte chunks
898 */
Sujithf1dc5602008-10-29 10:16:30 +0530899 regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
900 REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
901
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400902 /*
903 * Setup receive FIFO threshold to hold off TX activities
904 */
Sujithf1dc5602008-10-29 10:16:30 +0530905 REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
906
Felix Fietkau57b32222010-04-15 17:39:22 -0400907 if (AR_SREV_9300_20_OR_LATER(ah)) {
908 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
909 REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
910
911 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
912 ah->caps.rx_status_len);
913 }
914
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400915 /*
916 * reduce the number of usable entries in PCU TXBUF to avoid
917 * wrap around issues.
918 */
Sujithf1dc5602008-10-29 10:16:30 +0530919 if (AR_SREV_9285(ah)) {
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400920 /* For AR9285 the number of Fifos are reduced to half.
921 * So set the usable tx buf size also to half to
922 * avoid data/delimiter underruns
923 */
Sujithf1dc5602008-10-29 10:16:30 +0530924 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
925 AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -0400926 } else if (!AR_SREV_9271(ah)) {
Sujithf1dc5602008-10-29 10:16:30 +0530927 REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
928 AR_PCU_TXBUF_CTRL_USABLE_SIZE);
929 }
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -0400930
Sujith7d0d0df2010-04-16 11:53:57 +0530931 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +0530932
Vasanthakumar Thiagarajan744d4022010-04-15 17:39:27 -0400933 if (AR_SREV_9300_20_OR_LATER(ah))
934 ath9k_hw_reset_txstatus_ring(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530935}
936
Sujithcbe61d82009-02-09 13:27:12 +0530937static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
Sujithf1dc5602008-10-29 10:16:30 +0530938{
939 u32 val;
940
941 val = REG_READ(ah, AR_STA_ID1);
942 val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
943 switch (opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -0800944 case NL80211_IFTYPE_AP:
Sujithf1dc5602008-10-29 10:16:30 +0530945 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
946 | AR_STA_ID1_KSRCH_MODE);
947 REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
948 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800949 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -0400950 case NL80211_IFTYPE_MESH_POINT:
Sujithf1dc5602008-10-29 10:16:30 +0530951 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
952 | AR_STA_ID1_KSRCH_MODE);
953 REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
954 break;
Colin McCabed97809d2008-12-01 13:38:55 -0800955 case NL80211_IFTYPE_STATION:
956 case NL80211_IFTYPE_MONITOR:
Sujithf1dc5602008-10-29 10:16:30 +0530957 REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
958 break;
959 }
960}
961
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -0400962void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
963 u32 *coef_mantissa, u32 *coef_exponent)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700964{
965 u32 coef_exp, coef_man;
966
967 for (coef_exp = 31; coef_exp > 0; coef_exp--)
968 if ((coef_scaled >> coef_exp) & 0x1)
969 break;
970
971 coef_exp = 14 - (coef_exp - COEF_SCALE_S);
972
973 coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
974
975 *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
976 *coef_exponent = coef_exp - 16;
977}
978
Sujithcbe61d82009-02-09 13:27:12 +0530979static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
Sujithf1dc5602008-10-29 10:16:30 +0530980{
981 u32 rst_flags;
982 u32 tmpReg;
983
Sujith70768492009-02-16 13:23:12 +0530984 if (AR_SREV_9100(ah)) {
985 u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
986 val &= ~AR_RTC_DERIVED_CLK_PERIOD;
987 val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
988 REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
989 (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
990 }
991
Sujith7d0d0df2010-04-16 11:53:57 +0530992 ENABLE_REGWRITE_BUFFER(ah);
993
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -0400994 if (AR_SREV_9300_20_OR_LATER(ah)) {
995 REG_WRITE(ah, AR_WA, ah->WARegVal);
996 udelay(10);
997 }
998
Sujithf1dc5602008-10-29 10:16:30 +0530999 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1000 AR_RTC_FORCE_WAKE_ON_INT);
1001
1002 if (AR_SREV_9100(ah)) {
1003 rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
1004 AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
1005 } else {
1006 tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
1007 if (tmpReg &
1008 (AR_INTR_SYNC_LOCAL_TIMEOUT |
1009 AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001010 u32 val;
Sujithf1dc5602008-10-29 10:16:30 +05301011 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001012
1013 val = AR_RC_HOSTIF;
1014 if (!AR_SREV_9300_20_OR_LATER(ah))
1015 val |= AR_RC_AHB;
1016 REG_WRITE(ah, AR_RC, val);
1017
1018 } else if (!AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301019 REG_WRITE(ah, AR_RC, AR_RC_AHB);
Sujithf1dc5602008-10-29 10:16:30 +05301020
1021 rst_flags = AR_RTC_RC_MAC_WARM;
1022 if (type == ATH9K_RESET_COLD)
1023 rst_flags |= AR_RTC_RC_MAC_COLD;
1024 }
1025
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001026 REG_WRITE(ah, AR_RTC_RC, rst_flags);
Sujith7d0d0df2010-04-16 11:53:57 +05301027
1028 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301029
Sujithf1dc5602008-10-29 10:16:30 +05301030 udelay(50);
1031
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001032 REG_WRITE(ah, AR_RTC_RC, 0);
Sujith0caa7b12009-02-16 13:23:20 +05301033 if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001034 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1035 "RTC stuck in MAC reset\n");
Sujithf1dc5602008-10-29 10:16:30 +05301036 return false;
1037 }
1038
1039 if (!AR_SREV_9100(ah))
1040 REG_WRITE(ah, AR_RC, 0);
1041
Sujithf1dc5602008-10-29 10:16:30 +05301042 if (AR_SREV_9100(ah))
1043 udelay(50);
1044
1045 return true;
1046}
1047
Sujithcbe61d82009-02-09 13:27:12 +05301048static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05301049{
Sujith7d0d0df2010-04-16 11:53:57 +05301050 ENABLE_REGWRITE_BUFFER(ah);
1051
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001052 if (AR_SREV_9300_20_OR_LATER(ah)) {
1053 REG_WRITE(ah, AR_WA, ah->WARegVal);
1054 udelay(10);
1055 }
1056
Sujithf1dc5602008-10-29 10:16:30 +05301057 REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
1058 AR_RTC_FORCE_WAKE_ON_INT);
1059
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001060 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301061 REG_WRITE(ah, AR_RC, AR_RC_AHB);
1062
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001063 REG_WRITE(ah, AR_RTC_RESET, 0);
Luis R. Rodriguezee031112010-06-21 18:38:51 -04001064 udelay(2);
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301065
Sujith7d0d0df2010-04-16 11:53:57 +05301066 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301067
Senthil Balasubramanian84e21692010-04-15 17:38:30 -04001068 if (!AR_SREV_9300_20_OR_LATER(ah))
1069 udelay(2);
1070
1071 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Vasanthakumar Thiagarajan1c29ce62009-08-31 17:48:36 +05301072 REG_WRITE(ah, AR_RC, 0);
1073
Gabor Juhosd03a66c2009-01-14 20:17:09 +01001074 REG_WRITE(ah, AR_RTC_RESET, 1);
Sujithf1dc5602008-10-29 10:16:30 +05301075
1076 if (!ath9k_hw_wait(ah,
1077 AR_RTC_STATUS,
1078 AR_RTC_STATUS_M,
Sujith0caa7b12009-02-16 13:23:20 +05301079 AR_RTC_STATUS_ON,
1080 AH_WAIT_TIMEOUT)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001081 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
1082 "RTC not waking up\n");
Sujithf1dc5602008-10-29 10:16:30 +05301083 return false;
1084 }
1085
1086 ath9k_hw_read_revisions(ah);
1087
1088 return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
1089}
1090
Sujithcbe61d82009-02-09 13:27:12 +05301091static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
Sujithf1dc5602008-10-29 10:16:30 +05301092{
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001093 if (AR_SREV_9300_20_OR_LATER(ah)) {
1094 REG_WRITE(ah, AR_WA, ah->WARegVal);
1095 udelay(10);
1096 }
1097
Sujithf1dc5602008-10-29 10:16:30 +05301098 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1099 AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
1100
1101 switch (type) {
1102 case ATH9K_RESET_POWER_ON:
1103 return ath9k_hw_set_reset_power_on(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301104 case ATH9K_RESET_WARM:
1105 case ATH9K_RESET_COLD:
1106 return ath9k_hw_set_reset(ah, type);
Sujithf1dc5602008-10-29 10:16:30 +05301107 default:
1108 return false;
1109 }
1110}
1111
Sujithcbe61d82009-02-09 13:27:12 +05301112static bool ath9k_hw_chip_reset(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301113 struct ath9k_channel *chan)
1114{
Vivek Natarajan42abfbe2009-09-17 09:27:59 +05301115 if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
Senthil Balasubramanian8bd1d072009-02-12 13:57:03 +05301116 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
1117 return false;
1118 } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
Sujithf1dc5602008-10-29 10:16:30 +05301119 return false;
1120
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001121 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05301122 return false;
1123
Sujith2660b812009-02-09 13:27:26 +05301124 ah->chip_fullsleep = false;
Sujithf1dc5602008-10-29 10:16:30 +05301125 ath9k_hw_init_pll(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301126 ath9k_hw_set_rfmode(ah, chan);
1127
1128 return true;
1129}
1130
Sujithcbe61d82009-02-09 13:27:12 +05301131static bool ath9k_hw_channel_change(struct ath_hw *ah,
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001132 struct ath9k_channel *chan)
Sujithf1dc5602008-10-29 10:16:30 +05301133{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001134 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001135 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08001136 struct ieee80211_channel *channel = chan->chan;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001137 u32 qnum;
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001138 int r;
Sujithf1dc5602008-10-29 10:16:30 +05301139
1140 for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
1141 if (ath9k_hw_numtxpending(ah, qnum)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001142 ath_print(common, ATH_DBG_QUEUE,
1143 "Transmit frames pending on "
1144 "queue %d\n", qnum);
Sujithf1dc5602008-10-29 10:16:30 +05301145 return false;
1146 }
1147 }
1148
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001149 if (!ath9k_hw_rfbus_req(ah)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001150 ath_print(common, ATH_DBG_FATAL,
1151 "Could not kill baseband RX\n");
Sujithf1dc5602008-10-29 10:16:30 +05301152 return false;
1153 }
1154
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001155 ath9k_hw_set_channel_regs(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301156
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001157 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001158 if (r) {
1159 ath_print(common, ATH_DBG_FATAL,
1160 "Failed to set channel\n");
1161 return false;
Sujithf1dc5602008-10-29 10:16:30 +05301162 }
1163
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07001164 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001165 ath9k_regd_get_ctl(regulatory, chan),
Sujithf74df6f2009-02-09 13:27:24 +05301166 channel->max_antenna_gain * 2,
1167 channel->max_power * 2,
1168 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001169 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05301170
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001171 ath9k_hw_rfbus_done(ah);
Sujithf1dc5602008-10-29 10:16:30 +05301172
1173 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1174 ath9k_hw_set_delta_slope(ah, chan);
1175
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001176 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithf1dc5602008-10-29 10:16:30 +05301177
Sujithf1dc5602008-10-29 10:16:30 +05301178 return true;
1179}
1180
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001181bool ath9k_hw_check_alive(struct ath_hw *ah)
Johannes Berg3b319aa2009-06-13 14:50:26 +05301182{
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001183 int count = 50;
1184 u32 reg;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301185
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001186 if (AR_SREV_9285_12_OR_LATER(ah))
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001187 return true;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301188
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001189 do {
1190 reg = REG_READ(ah, AR_OBS_BUS_1);
1191
1192 if ((reg & 0x7E7FFFEF) == 0x00702400)
1193 continue;
1194
1195 switch (reg & 0x7E000B00) {
1196 case 0x1E000000:
1197 case 0x52000B00:
1198 case 0x18000B00:
1199 continue;
1200 default:
1201 return true;
1202 }
1203 } while (count-- > 0);
1204
1205 return false;
Johannes Berg3b319aa2009-06-13 14:50:26 +05301206}
Felix Fietkauc9c99e52010-04-19 19:57:29 +02001207EXPORT_SYMBOL(ath9k_hw_check_alive);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301208
Sujithcbe61d82009-02-09 13:27:12 +05301209int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001210 struct ath9k_hw_cal_data *caldata, bool bChannelChange)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001211{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001212 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001213 u32 saveLedState;
Sujith2660b812009-02-09 13:27:26 +05301214 struct ath9k_channel *curchan = ah->curchan;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001215 u32 saveDefAntenna;
1216 u32 macStaId1;
Sujith46fe7822009-09-17 09:25:25 +05301217 u64 tsf = 0;
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001218 int i, r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001219
Luis R. Rodriguez43c27612009-09-13 21:07:07 -07001220 ah->txchainmask = common->tx_chainmask;
1221 ah->rxchainmask = common->rx_chainmask;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001222
Vasanthakumar Thiagarajan9b9cc612010-04-15 17:39:41 -04001223 if (!ah->chip_fullsleep) {
1224 ath9k_hw_abortpcurecv(ah);
Felix Fietkau9cc2f3e2010-07-11 12:48:42 +02001225 if (!ath9k_hw_stopdmarecv(ah)) {
Vasanthakumar Thiagarajan9b9cc612010-04-15 17:39:41 -04001226 ath_print(common, ATH_DBG_XMIT,
1227 "Failed to stop receive dma\n");
Felix Fietkau9cc2f3e2010-07-11 12:48:42 +02001228 bChannelChange = false;
1229 }
Vasanthakumar Thiagarajan9b9cc612010-04-15 17:39:41 -04001230 }
1231
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001232 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001233 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001234
Felix Fietkaud9891c72010-09-29 17:15:27 +02001235 if (curchan && !ah->chip_fullsleep)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001236 ath9k_hw_getnf(ah, curchan);
1237
Felix Fietkau20bd2a02010-07-31 00:12:00 +02001238 ah->caldata = caldata;
1239 if (caldata &&
1240 (chan->channel != caldata->channel ||
1241 (chan->channelFlags & ~CHANNEL_CW_INT) !=
1242 (caldata->channelFlags & ~CHANNEL_CW_INT))) {
1243 /* Operating channel changed, reset channel calibration data */
1244 memset(caldata, 0, sizeof(*caldata));
1245 ath9k_init_nfcal_hist_buffer(ah, chan);
1246 }
1247
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001248 if (bChannelChange &&
Sujith2660b812009-02-09 13:27:26 +05301249 (ah->chip_fullsleep != true) &&
1250 (ah->curchan != NULL) &&
1251 (chan->channel != ah->curchan->channel) &&
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001252 ((chan->channelFlags & CHANNEL_ALL) ==
Sujith2660b812009-02-09 13:27:26 +05301253 (ah->curchan->channelFlags & CHANNEL_ALL)) &&
Rajkumar Manoharan58d7e0f2010-09-08 15:57:12 +05301254 (!AR_SREV_9280(ah) || AR_DEVID_7010(ah))) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001255
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001256 if (ath9k_hw_channel_change(ah, chan)) {
Sujith2660b812009-02-09 13:27:26 +05301257 ath9k_hw_loadnf(ah, ah->curchan);
Felix Fietkau00c86592010-07-30 21:02:09 +02001258 ath9k_hw_start_nfcal(ah, true);
Rajkumar Manoharanc2ba3342010-09-03 16:00:00 +05301259 if (AR_SREV_9271(ah))
1260 ar9002_hw_load_ani_reg(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001261 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001262 }
1263 }
1264
1265 saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
1266 if (saveDefAntenna == 0)
1267 saveDefAntenna = 1;
1268
1269 macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
1270
Sujith46fe7822009-09-17 09:25:25 +05301271 /* For chips on which RTC reset is done, save TSF before it gets cleared */
Felix Fietkauf860d522010-06-30 02:07:48 +02001272 if (AR_SREV_9100(ah) ||
1273 (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)))
Sujith46fe7822009-09-17 09:25:25 +05301274 tsf = ath9k_hw_gettsf64(ah);
1275
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001276 saveLedState = REG_READ(ah, AR_CFG_LED) &
1277 (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
1278 AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
1279
1280 ath9k_hw_mark_phy_inactive(ah);
1281
Sujith05020d22010-03-17 14:25:23 +05301282 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001283 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1284 REG_WRITE(ah,
1285 AR9271_RESET_POWER_DOWN_CONTROL,
1286 AR9271_RADIO_RF_RST);
1287 udelay(50);
1288 }
1289
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001290 if (!ath9k_hw_chip_reset(ah, chan)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001291 ath_print(common, ATH_DBG_FATAL, "Chip reset failed\n");
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001292 return -EINVAL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001293 }
1294
Sujith05020d22010-03-17 14:25:23 +05301295 /* Only required on the first reset */
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001296 if (AR_SREV_9271(ah) && ah->htc_reset_init) {
1297 ah->htc_reset_init = false;
1298 REG_WRITE(ah,
1299 AR9271_RESET_POWER_DOWN_CONTROL,
1300 AR9271_GATE_MAC_CTL);
1301 udelay(50);
1302 }
1303
Sujith46fe7822009-09-17 09:25:25 +05301304 /* Restore TSF */
Felix Fietkauf860d522010-06-30 02:07:48 +02001305 if (tsf)
Sujith46fe7822009-09-17 09:25:25 +05301306 ath9k_hw_settsf64(ah, tsf);
1307
Felix Fietkau7a370812010-09-22 12:34:52 +02001308 if (AR_SREV_9280_20_OR_LATER(ah))
Vasanthakumar Thiagarajan369391d2009-01-21 19:24:13 +05301309 REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001310
Sujithe9141f72010-06-01 15:14:10 +05301311 if (!AR_SREV_9300_20_OR_LATER(ah))
1312 ar9002_hw_enable_async_fifo(ah);
1313
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07001314 r = ath9k_hw_process_ini(ah, chan);
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001315 if (r)
1316 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001317
Felix Fietkauf860d522010-06-30 02:07:48 +02001318 /*
1319 * Some AR91xx SoC devices frequently fail to accept TSF writes
1320 * right after the chip reset. When that happens, write a new
1321 * value after the initvals have been applied, with an offset
1322 * based on measured time difference
1323 */
1324 if (AR_SREV_9100(ah) && (ath9k_hw_gettsf64(ah) < tsf)) {
1325 tsf += 1500;
1326 ath9k_hw_settsf64(ah, tsf);
1327 }
1328
Jouni Malinen0ced0e12009-01-08 13:32:13 +02001329 /* Setup MFP options for CCMP */
1330 if (AR_SREV_9280_20_OR_LATER(ah)) {
1331 /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
1332 * frames when constructing CCMP AAD. */
1333 REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
1334 0xc7ff);
1335 ah->sw_mgmt_crypto = false;
1336 } else if (AR_SREV_9160_10_OR_LATER(ah)) {
1337 /* Disable hardware crypto for management frames */
1338 REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
1339 AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
1340 REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
1341 AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
1342 ah->sw_mgmt_crypto = true;
1343 } else
1344 ah->sw_mgmt_crypto = true;
1345
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001346 if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
1347 ath9k_hw_set_delta_slope(ah, chan);
1348
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001349 ath9k_hw_spur_mitigate_freq(ah, chan);
Sujithd6509152009-03-13 08:56:05 +05301350 ah->eep_ops->set_board_values(ah, chan);
Luis R. Rodrigueza7765822009-10-19 02:33:45 -04001351
Sujith6819d572010-04-16 11:53:56 +05301352 ath9k_hw_set_operating_mode(ah, ah->opmode);
1353
Sujith7d0d0df2010-04-16 11:53:57 +05301354 ENABLE_REGWRITE_BUFFER(ah);
1355
Luis R. Rodriguez15107182009-09-10 09:22:37 -07001356 REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
1357 REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001358 | macStaId1
1359 | AR_STA_ID1_RTS_USE_DEF
Sujith2660b812009-02-09 13:27:26 +05301360 | (ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301361 ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
Sujith2660b812009-02-09 13:27:26 +05301362 | ah->sta_id1_defaults);
Luis R. Rodriguez13b81552009-09-10 17:52:45 -07001363 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001364 REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
Luis R. Rodriguez3453ad82009-09-10 08:57:00 -07001365 ath9k_hw_write_associd(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001366 REG_WRITE(ah, AR_ISR, ~0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001367 REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
1368
Sujith7d0d0df2010-04-16 11:53:57 +05301369 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301370
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001371 r = ath9k_hw_rf_set_freq(ah, chan);
Luis R. Rodriguez0a3b7ba2009-10-19 02:33:40 -04001372 if (r)
1373 return r;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001374
Sujith7d0d0df2010-04-16 11:53:57 +05301375 ENABLE_REGWRITE_BUFFER(ah);
1376
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001377 for (i = 0; i < AR_NUM_DCU; i++)
1378 REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
1379
Sujith7d0d0df2010-04-16 11:53:57 +05301380 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301381
Sujith2660b812009-02-09 13:27:26 +05301382 ah->intr_txqs = 0;
1383 for (i = 0; i < ah->caps.total_queues; i++)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001384 ath9k_hw_resettxqueue(ah, i);
1385
Sujith2660b812009-02-09 13:27:26 +05301386 ath9k_hw_init_interrupt_masks(ah, ah->opmode);
Luis R. Rodrigueze36b27a2010-06-12 00:33:45 -04001387 ath9k_hw_ani_cache_ini_regs(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001388 ath9k_hw_init_qos(ah);
1389
Sujith2660b812009-02-09 13:27:26 +05301390 if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
Vasanthakumar Thiagarajan500c0642008-09-10 18:50:17 +05301391 ath9k_enable_rfkill(ah);
Johannes Berg3b319aa2009-06-13 14:50:26 +05301392
Felix Fietkau0005baf2010-01-15 02:33:40 +01001393 ath9k_hw_init_global_settings(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001394
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001395 if (!AR_SREV_9300_20_OR_LATER(ah)) {
Sujithe9141f72010-06-01 15:14:10 +05301396 ar9002_hw_update_async_fifo(ah);
Luis R. Rodriguez6c94fdc2010-04-15 17:39:24 -04001397 ar9002_hw_enable_wep_aggregation(ah);
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05301398 }
1399
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001400 REG_WRITE(ah, AR_STA_ID1,
1401 REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
1402
1403 ath9k_hw_set_dma(ah);
1404
1405 REG_WRITE(ah, AR_OBS, 8);
1406
Sujith0ce024c2009-12-14 14:57:00 +05301407 if (ah->config.rx_intr_mitigation) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001408 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
1409 REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
1410 }
1411
Vasanthakumar Thiagarajan7f62a132010-04-15 17:39:19 -04001412 if (ah->config.tx_intr_mitigation) {
1413 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
1414 REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
1415 }
1416
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001417 ath9k_hw_init_bb(ah, chan);
1418
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001419 if (!ath9k_hw_init_cal(ah, chan))
Joe Perches6badaaf2009-06-28 09:26:32 -07001420 return -EIO;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001421
Sujith7d0d0df2010-04-16 11:53:57 +05301422 ENABLE_REGWRITE_BUFFER(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001423
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -04001424 ath9k_hw_restore_chainmask(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001425 REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
1426
Sujith7d0d0df2010-04-16 11:53:57 +05301427 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301428
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001429 /*
1430 * For big endian systems turn on swapping for descriptors
1431 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001432 if (AR_SREV_9100(ah)) {
1433 u32 mask;
1434 mask = REG_READ(ah, AR_CFG);
1435 if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001436 ath_print(common, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05301437 "CFG Byte Swap Set 0x%x\n", mask);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001438 } else {
1439 mask =
1440 INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
1441 REG_WRITE(ah, AR_CFG, mask);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001442 ath_print(common, ATH_DBG_RESET,
Sujith04bd4632008-11-28 22:18:05 +05301443 "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001444 }
1445 } else {
Sujithcbba8cd2010-06-02 15:53:31 +05301446 if (common->bus_ops->ath_bus_type == ATH_USB) {
1447 /* Configure AR9271 target WLAN */
1448 if (AR_SREV_9271(ah))
1449 REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
1450 else
1451 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
1452 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001453#ifdef __BIG_ENDIAN
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001454 else
1455 REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001456#endif
1457 }
1458
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001459 if (ah->btcoex_hw.enabled)
Vasanthakumar Thiagarajan42cc41e2009-08-26 21:08:45 +05301460 ath9k_hw_btcoex_enable(ah);
1461
Felix Fietkau00c86592010-07-30 21:02:09 +02001462 if (AR_SREV_9300_20_OR_LATER(ah))
Luis R. Rodriguezaea702b2010-05-13 13:33:43 -04001463 ar9003_hw_bb_watchdog_config(ah);
Vasanthakumar Thiagarajand8903a52010-04-15 17:39:25 -04001464
Luis R. Rodriguezae8d2852008-12-23 15:58:40 -08001465 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001466}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001467EXPORT_SYMBOL(ath9k_hw_reset);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001468
Sujithf1dc5602008-10-29 10:16:30 +05301469/******************************/
1470/* Power Management (Chipset) */
1471/******************************/
1472
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001473/*
1474 * Notify Power Mgt is disabled in self-generated frames.
1475 * If requested, force chip to sleep.
1476 */
Sujithcbe61d82009-02-09 13:27:12 +05301477static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301478{
1479 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1480 if (setChip) {
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001481 /*
1482 * Clear the RTC force wake bit to allow the
1483 * mac to go to sleep.
1484 */
Sujithf1dc5602008-10-29 10:16:30 +05301485 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1486 AR_RTC_FORCE_WAKE_EN);
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001487 if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301488 REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
1489
Luis R. Rodriguez42d5bc32010-04-15 17:38:12 -04001490 /* Shutdown chip. Active low */
Sujith14b3af32010-03-17 14:25:18 +05301491 if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
Sujith4921be82009-09-18 15:04:27 +05301492 REG_CLR_BIT(ah, (AR_RTC_RESET),
1493 AR_RTC_RESET_EN);
Sujithf1dc5602008-10-29 10:16:30 +05301494 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001495
1496 /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */
1497 if (AR_SREV_9300_20_OR_LATER(ah))
1498 REG_WRITE(ah, AR_WA,
1499 ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001500}
1501
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001502/*
1503 * Notify Power Management is enabled in self-generating
1504 * frames. If request, set power mode of chip to
1505 * auto/normal. Duration in units of 128us (1/8 TU).
1506 */
Sujithcbe61d82009-02-09 13:27:12 +05301507static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001508{
Sujithf1dc5602008-10-29 10:16:30 +05301509 REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1510 if (setChip) {
Sujith2660b812009-02-09 13:27:26 +05301511 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001512
Sujithf1dc5602008-10-29 10:16:30 +05301513 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001514 /* Set WakeOnInterrupt bit; clear ForceWake bit */
Sujithf1dc5602008-10-29 10:16:30 +05301515 REG_WRITE(ah, AR_RTC_FORCE_WAKE,
1516 AR_RTC_FORCE_WAKE_ON_INT);
1517 } else {
Luis R. Rodriguezbbd79af2010-04-15 17:38:16 -04001518 /*
1519 * Clear the RTC force wake bit to allow the
1520 * mac to go to sleep.
1521 */
Sujithf1dc5602008-10-29 10:16:30 +05301522 REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
1523 AR_RTC_FORCE_WAKE_EN);
1524 }
1525 }
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001526
1527 /* Clear Bit 14 of AR_WA after putting chip into Net Sleep mode. */
1528 if (AR_SREV_9300_20_OR_LATER(ah))
1529 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
Sujithf1dc5602008-10-29 10:16:30 +05301530}
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001531
Sujithcbe61d82009-02-09 13:27:12 +05301532static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
Sujithf1dc5602008-10-29 10:16:30 +05301533{
1534 u32 val;
1535 int i;
1536
Luis R. Rodriguez9a658d22010-06-21 18:38:47 -04001537 /* Set Bits 14 and 17 of AR_WA before powering on the chip. */
1538 if (AR_SREV_9300_20_OR_LATER(ah)) {
1539 REG_WRITE(ah, AR_WA, ah->WARegVal);
1540 udelay(10);
1541 }
1542
Sujithf1dc5602008-10-29 10:16:30 +05301543 if (setChip) {
1544 if ((REG_READ(ah, AR_RTC_STATUS) &
1545 AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
1546 if (ath9k_hw_set_reset_reg(ah,
1547 ATH9K_RESET_POWER_ON) != true) {
1548 return false;
1549 }
Luis R. Rodrigueze0412282010-04-15 17:38:15 -04001550 if (!AR_SREV_9300_20_OR_LATER(ah))
1551 ath9k_hw_init_pll(ah, NULL);
Sujithf1dc5602008-10-29 10:16:30 +05301552 }
1553 if (AR_SREV_9100(ah))
1554 REG_SET_BIT(ah, AR_RTC_RESET,
1555 AR_RTC_RESET_EN);
1556
1557 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1558 AR_RTC_FORCE_WAKE_EN);
1559 udelay(50);
1560
1561 for (i = POWER_UP_TIME / 50; i > 0; i--) {
1562 val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
1563 if (val == AR_RTC_STATUS_ON)
1564 break;
1565 udelay(50);
1566 REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
1567 AR_RTC_FORCE_WAKE_EN);
1568 }
1569 if (i == 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001570 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
1571 "Failed to wakeup in %uus\n",
1572 POWER_UP_TIME / 20);
Sujithf1dc5602008-10-29 10:16:30 +05301573 return false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001574 }
1575 }
1576
Sujithf1dc5602008-10-29 10:16:30 +05301577 REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
1578
1579 return true;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001580}
1581
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07001582bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
Sujithf1dc5602008-10-29 10:16:30 +05301583{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001584 struct ath_common *common = ath9k_hw_common(ah);
Sujithcbe61d82009-02-09 13:27:12 +05301585 int status = true, setChip = true;
Sujithf1dc5602008-10-29 10:16:30 +05301586 static const char *modes[] = {
1587 "AWAKE",
1588 "FULL-SLEEP",
1589 "NETWORK SLEEP",
1590 "UNDEFINED"
1591 };
Sujithf1dc5602008-10-29 10:16:30 +05301592
Gabor Juhoscbdec972009-07-24 17:27:22 +02001593 if (ah->power_mode == mode)
1594 return status;
1595
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001596 ath_print(common, ATH_DBG_RESET, "%s -> %s\n",
1597 modes[ah->power_mode], modes[mode]);
Sujithf1dc5602008-10-29 10:16:30 +05301598
1599 switch (mode) {
1600 case ATH9K_PM_AWAKE:
1601 status = ath9k_hw_set_power_awake(ah, setChip);
1602 break;
1603 case ATH9K_PM_FULL_SLEEP:
1604 ath9k_set_power_sleep(ah, setChip);
Sujith2660b812009-02-09 13:27:26 +05301605 ah->chip_fullsleep = true;
Sujithf1dc5602008-10-29 10:16:30 +05301606 break;
1607 case ATH9K_PM_NETWORK_SLEEP:
1608 ath9k_set_power_network_sleep(ah, setChip);
1609 break;
1610 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001611 ath_print(common, ATH_DBG_FATAL,
1612 "Unknown power mode %u\n", mode);
Sujithf1dc5602008-10-29 10:16:30 +05301613 return false;
1614 }
Sujith2660b812009-02-09 13:27:26 +05301615 ah->power_mode = mode;
Sujithf1dc5602008-10-29 10:16:30 +05301616
1617 return status;
1618}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001619EXPORT_SYMBOL(ath9k_hw_setpower);
Sujithf1dc5602008-10-29 10:16:30 +05301620
Sujithf1dc5602008-10-29 10:16:30 +05301621/*******************/
1622/* Beacon Handling */
1623/*******************/
1624
Sujithcbe61d82009-02-09 13:27:12 +05301625void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001626{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001627 int flags = 0;
1628
Sujith2660b812009-02-09 13:27:26 +05301629 ah->beacon_interval = beacon_period;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001630
Sujith7d0d0df2010-04-16 11:53:57 +05301631 ENABLE_REGWRITE_BUFFER(ah);
1632
Sujith2660b812009-02-09 13:27:26 +05301633 switch (ah->opmode) {
Colin McCabed97809d2008-12-01 13:38:55 -08001634 case NL80211_IFTYPE_STATION:
1635 case NL80211_IFTYPE_MONITOR:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001636 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1637 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
1638 REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
1639 flags |= AR_TBTT_TIMER_EN;
1640 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001641 case NL80211_IFTYPE_ADHOC:
Pat Erley9cb54122009-03-20 22:59:59 -04001642 case NL80211_IFTYPE_MESH_POINT:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001643 REG_SET_BIT(ah, AR_TXCFG,
1644 AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
1645 REG_WRITE(ah, AR_NEXT_NDP_TIMER,
1646 TU_TO_USEC(next_beacon +
Sujith2660b812009-02-09 13:27:26 +05301647 (ah->atim_window ? ah->
1648 atim_window : 1)));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001649 flags |= AR_NDP_TIMER_EN;
Colin McCabed97809d2008-12-01 13:38:55 -08001650 case NL80211_IFTYPE_AP:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001651 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
1652 REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
1653 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301654 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301655 dma_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001656 REG_WRITE(ah, AR_NEXT_SWBA,
1657 TU_TO_USEC(next_beacon -
Sujith2660b812009-02-09 13:27:26 +05301658 ah->config.
Sujith60b67f52008-08-07 10:52:38 +05301659 sw_beacon_response_time));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001660 flags |=
1661 AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
1662 break;
Colin McCabed97809d2008-12-01 13:38:55 -08001663 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001664 ath_print(ath9k_hw_common(ah), ATH_DBG_BEACON,
1665 "%s: unsupported opmode: %d\n",
1666 __func__, ah->opmode);
Colin McCabed97809d2008-12-01 13:38:55 -08001667 return;
1668 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001669 }
1670
1671 REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1672 REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
1673 REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
1674 REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
1675
Sujith7d0d0df2010-04-16 11:53:57 +05301676 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301677
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001678 beacon_period &= ~ATH9K_BEACON_ENA;
1679 if (beacon_period & ATH9K_BEACON_RESET_TSF) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001680 ath9k_hw_reset_tsf(ah);
1681 }
1682
1683 REG_SET_BIT(ah, AR_TIMER_MODE, flags);
1684}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001685EXPORT_SYMBOL(ath9k_hw_beaconinit);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001686
Sujithcbe61d82009-02-09 13:27:12 +05301687void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301688 const struct ath9k_beacon_state *bs)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001689{
1690 u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
Sujith2660b812009-02-09 13:27:26 +05301691 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001692 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001693
Sujith7d0d0df2010-04-16 11:53:57 +05301694 ENABLE_REGWRITE_BUFFER(ah);
1695
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001696 REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
1697
1698 REG_WRITE(ah, AR_BEACON_PERIOD,
1699 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1700 REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
1701 TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
1702
Sujith7d0d0df2010-04-16 11:53:57 +05301703 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301704
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001705 REG_RMW_FIELD(ah, AR_RSSI_THR,
1706 AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
1707
1708 beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
1709
1710 if (bs->bs_sleepduration > beaconintval)
1711 beaconintval = bs->bs_sleepduration;
1712
1713 dtimperiod = bs->bs_dtimperiod;
1714 if (bs->bs_sleepduration > dtimperiod)
1715 dtimperiod = bs->bs_sleepduration;
1716
1717 if (beaconintval == dtimperiod)
1718 nextTbtt = bs->bs_nextdtim;
1719 else
1720 nextTbtt = bs->bs_nexttbtt;
1721
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001722 ath_print(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
1723 ath_print(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
1724 ath_print(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
1725 ath_print(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001726
Sujith7d0d0df2010-04-16 11:53:57 +05301727 ENABLE_REGWRITE_BUFFER(ah);
1728
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001729 REG_WRITE(ah, AR_NEXT_DTIM,
1730 TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
1731 REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
1732
1733 REG_WRITE(ah, AR_SLEEP1,
1734 SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
1735 | AR_SLEEP1_ASSUME_DTIM);
1736
Sujith60b67f52008-08-07 10:52:38 +05301737 if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001738 beacontimeout = (BEACON_TIMEOUT_VAL << 3);
1739 else
1740 beacontimeout = MIN_BEACON_TIMEOUT_VAL;
1741
1742 REG_WRITE(ah, AR_SLEEP2,
1743 SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
1744
1745 REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
1746 REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
1747
Sujith7d0d0df2010-04-16 11:53:57 +05301748 REGWRITE_BUFFER_FLUSH(ah);
Sujith7d0d0df2010-04-16 11:53:57 +05301749
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001750 REG_SET_BIT(ah, AR_TIMER_MODE,
1751 AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
1752 AR_DTIM_TIMER_EN);
1753
Sujith4af9cf42009-02-12 10:06:47 +05301754 /* TSF Out of Range Threshold */
1755 REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001756}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001757EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001758
Sujithf1dc5602008-10-29 10:16:30 +05301759/*******************/
1760/* HW Capabilities */
1761/*******************/
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001762
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001763int ath9k_hw_fill_cap_info(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001764{
Sujith2660b812009-02-09 13:27:26 +05301765 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001766 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001767 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001768 struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001769
Sujithf1dc5602008-10-29 10:16:30 +05301770 u16 capField = 0, eeval;
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07001771 u8 ant_div_ctl1;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001772
Sujithf74df6f2009-02-09 13:27:24 +05301773 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001774 regulatory->current_rd = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301775
Sujithf74df6f2009-02-09 13:27:24 +05301776 eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001777 if (AR_SREV_9285_12_OR_LATER(ah))
Sujithfec0de12009-02-12 10:06:43 +05301778 eeval |= AR9285_RDEXT_DEFAULT;
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001779 regulatory->current_rd_ext = eeval;
Sujithf1dc5602008-10-29 10:16:30 +05301780
Sujithf74df6f2009-02-09 13:27:24 +05301781 capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
Sujithf1dc5602008-10-29 10:16:30 +05301782
Sujith2660b812009-02-09 13:27:26 +05301783 if (ah->opmode != NL80211_IFTYPE_AP &&
Sujithd535a422009-02-09 13:27:06 +05301784 ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001785 if (regulatory->current_rd == 0x64 ||
1786 regulatory->current_rd == 0x65)
1787 regulatory->current_rd += 5;
1788 else if (regulatory->current_rd == 0x41)
1789 regulatory->current_rd = 0x43;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07001790 ath_print(common, ATH_DBG_REGULATORY,
1791 "regdomain mapped to 0x%x\n", regulatory->current_rd);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001792 }
Sujithdc2222a2008-08-14 13:26:55 +05301793
Sujithf74df6f2009-02-09 13:27:24 +05301794 eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001795 if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
1796 ath_print(common, ATH_DBG_FATAL,
1797 "no band has been marked as supported in EEPROM.\n");
1798 return -EINVAL;
1799 }
1800
Sujithf1dc5602008-10-29 10:16:30 +05301801 bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001802
Sujithf1dc5602008-10-29 10:16:30 +05301803 if (eeval & AR5416_OPFLAGS_11A) {
1804 set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05301805 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05301806 if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
1807 set_bit(ATH9K_MODE_11NA_HT20,
1808 pCap->wireless_modes);
1809 if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
1810 set_bit(ATH9K_MODE_11NA_HT40PLUS,
1811 pCap->wireless_modes);
1812 set_bit(ATH9K_MODE_11NA_HT40MINUS,
1813 pCap->wireless_modes);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001814 }
1815 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001816 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001817
Sujithf1dc5602008-10-29 10:16:30 +05301818 if (eeval & AR5416_OPFLAGS_11G) {
Sujithf1dc5602008-10-29 10:16:30 +05301819 set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
Sujith2660b812009-02-09 13:27:26 +05301820 if (ah->config.ht_enable) {
Sujithf1dc5602008-10-29 10:16:30 +05301821 if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
1822 set_bit(ATH9K_MODE_11NG_HT20,
1823 pCap->wireless_modes);
1824 if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
1825 set_bit(ATH9K_MODE_11NG_HT40PLUS,
1826 pCap->wireless_modes);
1827 set_bit(ATH9K_MODE_11NG_HT40MINUS,
1828 pCap->wireless_modes);
1829 }
1830 }
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07001831 }
Sujithf1dc5602008-10-29 10:16:30 +05301832
Sujithf74df6f2009-02-09 13:27:24 +05301833 pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001834 /*
1835 * For AR9271 we will temporarilly uses the rx chainmax as read from
1836 * the EEPROM.
1837 */
Sujith8147f5d2009-02-20 15:13:23 +05301838 if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001839 !(eeval & AR5416_OPFLAGS_11A) &&
1840 !(AR_SREV_9271(ah)))
1841 /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
Sujith8147f5d2009-02-20 15:13:23 +05301842 pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
1843 else
Luis R. Rodriguezd7e7d222009-08-03 23:14:12 -04001844 /* Use rx_chainmask from EEPROM. */
Sujith8147f5d2009-02-20 15:13:23 +05301845 pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
Sujithf1dc5602008-10-29 10:16:30 +05301846
Felix Fietkau7a370812010-09-22 12:34:52 +02001847 ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
Sujithf1dc5602008-10-29 10:16:30 +05301848
1849 pCap->low_2ghz_chan = 2312;
1850 pCap->high_2ghz_chan = 2732;
1851
1852 pCap->low_5ghz_chan = 4920;
1853 pCap->high_5ghz_chan = 6100;
1854
Bruno Randolfce2220d2010-09-17 11:36:25 +09001855 common->crypt_caps |= ATH_CRYPT_CAP_CIPHER_AESCCM;
1856
Sujith2660b812009-02-09 13:27:26 +05301857 if (ah->config.ht_enable)
Sujithf1dc5602008-10-29 10:16:30 +05301858 pCap->hw_caps |= ATH9K_HW_CAP_HT;
1859 else
1860 pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
1861
Sujithf1dc5602008-10-29 10:16:30 +05301862 if (capField & AR_EEPROM_EEPCAP_MAXQCU)
1863 pCap->total_queues =
1864 MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
1865 else
1866 pCap->total_queues = ATH9K_NUM_TX_QUEUES;
1867
1868 if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
1869 pCap->keycache_size =
1870 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
1871 else
1872 pCap->keycache_size = AR_KEYTABLE_SIZE;
1873
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -05001874 if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
1875 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
1876 else
1877 pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
Sujithf1dc5602008-10-29 10:16:30 +05301878
Sujith5b5fa352010-03-17 14:25:15 +05301879 if (AR_SREV_9271(ah))
1880 pCap->num_gpio_pins = AR9271_NUM_GPIO;
Sujith88c1f4f2010-06-30 14:46:31 +05301881 else if (AR_DEVID_7010(ah))
1882 pCap->num_gpio_pins = AR7010_NUM_GPIO;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02001883 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05301884 pCap->num_gpio_pins = AR9285_NUM_GPIO;
Felix Fietkau7a370812010-09-22 12:34:52 +02001885 else if (AR_SREV_9280_20_OR_LATER(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301886 pCap->num_gpio_pins = AR928X_NUM_GPIO;
1887 else
1888 pCap->num_gpio_pins = AR_NUM_GPIO;
1889
Sujithf1dc5602008-10-29 10:16:30 +05301890 if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
1891 pCap->hw_caps |= ATH9K_HW_CAP_CST;
1892 pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
1893 } else {
1894 pCap->rts_aggr_limit = (8 * 1024);
1895 }
1896
1897 pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
1898
Senthil Balasubramaniane97275c2008-11-13 18:00:02 +05301899#if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
Sujith2660b812009-02-09 13:27:26 +05301900 ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
1901 if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
1902 ah->rfkill_gpio =
1903 MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
1904 ah->rfkill_polarity =
1905 MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
Sujithf1dc5602008-10-29 10:16:30 +05301906
1907 pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
1908 }
1909#endif
Vasanthakumar Thiagarajand5d11542010-05-17 18:57:56 -07001910 if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
Vivek Natarajanbde748a2010-04-05 14:48:05 +05301911 pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
1912 else
1913 pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
Sujithf1dc5602008-10-29 10:16:30 +05301914
Senthil Balasubramaniane7594072008-12-08 19:43:48 +05301915 if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
Sujithf1dc5602008-10-29 10:16:30 +05301916 pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
1917 else
1918 pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
1919
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07001920 if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
Sujithf1dc5602008-10-29 10:16:30 +05301921 pCap->reg_cap =
1922 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
1923 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
1924 AR_EEPROM_EEREGCAP_EN_KK_U2 |
1925 AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
1926 } else {
1927 pCap->reg_cap =
1928 AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
1929 AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
1930 }
1931
Senthil Balasubramanianebb90cf2009-09-18 15:07:33 +05301932 /* Advertise midband for AR5416 with FCC midband set in eeprom */
1933 if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
1934 AR_SREV_5416(ah))
1935 pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
Sujithf1dc5602008-10-29 10:16:30 +05301936
1937 pCap->num_antcfg_5ghz =
Sujithf74df6f2009-02-09 13:27:24 +05301938 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05301939 pCap->num_antcfg_2ghz =
Sujithf74df6f2009-02-09 13:27:24 +05301940 ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
Sujithf1dc5602008-10-29 10:16:30 +05301941
Felix Fietkau7a370812010-09-22 12:34:52 +02001942 if (AR_SREV_9280_20_OR_LATER(ah) &&
Luis R. Rodrigueza36cfbc2009-09-09 16:05:32 -07001943 ath9k_hw_btcoex_supported(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001944 btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
1945 btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05301946
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05301947 if (AR_SREV_9285(ah)) {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001948 btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
1949 btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05301950 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001951 btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
Vasanthakumar Thiagarajan8c8f9ba2009-09-09 15:25:52 +05301952 }
Vasanthakumar Thiagarajan22f25d02009-08-26 21:08:47 +05301953 } else {
Luis R. Rodriguez766ec4a2009-09-09 14:52:02 -07001954 btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
Vasanthakumar Thiagarajanc97c92d2009-01-02 15:35:46 +05301955 }
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001956
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04001957 if (AR_SREV_9300_20_OR_LATER(ah)) {
Vasanthakumar Thiagarajane5553722010-04-26 15:04:33 -04001958 pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_LDPC |
1959 ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04001960 pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
1961 pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
1962 pCap->rx_status_len = sizeof(struct ar9003_rxs);
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04001963 pCap->tx_desc_len = sizeof(struct ar9003_txc);
Vasanthakumar Thiagarajan5088c2f2010-04-15 17:39:34 -04001964 pCap->txs_len = sizeof(struct ar9003_txs);
Felix Fietkau49352502010-06-12 00:33:59 -04001965 if (ah->eep_ops->get_eeprom(ah, EEP_PAPRD))
1966 pCap->hw_caps |= ATH9K_HW_CAP_PAPRD;
Vasanthakumar Thiagarajan162c3be2010-04-15 17:38:41 -04001967 } else {
1968 pCap->tx_desc_len = sizeof(struct ath_desc);
Felix Fietkau6b42e8d2010-04-26 15:04:35 -04001969 if (AR_SREV_9280_20(ah) &&
1970 ((ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) <=
1971 AR5416_EEP_MINOR_VER_16) ||
1972 ah->eep_ops->get_eeprom(ah, EEP_FSTCLK_5G)))
1973 pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
Vasanthakumar Thiagarajanceb26442010-04-15 17:38:25 -04001974 }
Vasanthakumar Thiagarajan1adf02f2010-04-15 17:38:24 -04001975
Vasanthakumar Thiagarajan6c84ce02010-04-15 17:39:16 -04001976 if (AR_SREV_9300_20_OR_LATER(ah))
1977 pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
1978
Felix Fietkaua42acef2010-09-22 12:34:54 +02001979 if (AR_SREV_9287_11_OR_LATER(ah) || AR_SREV_9271(ah))
Vasanthakumar Thiagarajan6473d242010-05-13 18:42:38 -07001980 pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
1981
Vasanthakumar Thiagarajan754dc532010-09-02 01:34:41 -07001982 if (AR_SREV_9285(ah))
1983 if (ah->eep_ops->get_eeprom(ah, EEP_MODAL_VER) >= 3) {
1984 ant_div_ctl1 =
1985 ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
1986 if ((ant_div_ctl1 & 0x1) && ((ant_div_ctl1 >> 3) & 0x1))
1987 pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
1988 }
1989
Gabor Juhosa9a29ce2009-11-27 12:01:35 +01001990 return 0;
Luis R. Rodriguez6f255422008-10-03 15:45:27 -07001991}
1992
Sujithf1dc5602008-10-29 10:16:30 +05301993/****************************/
1994/* GPIO / RFKILL / Antennae */
1995/****************************/
1996
Sujithcbe61d82009-02-09 13:27:12 +05301997static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +05301998 u32 gpio, u32 type)
1999{
2000 int addr;
2001 u32 gpio_shift, tmp;
2002
2003 if (gpio > 11)
2004 addr = AR_GPIO_OUTPUT_MUX3;
2005 else if (gpio > 5)
2006 addr = AR_GPIO_OUTPUT_MUX2;
2007 else
2008 addr = AR_GPIO_OUTPUT_MUX1;
2009
2010 gpio_shift = (gpio % 6) * 5;
2011
2012 if (AR_SREV_9280_20_OR_LATER(ah)
2013 || (addr != AR_GPIO_OUTPUT_MUX1)) {
2014 REG_RMW(ah, addr, (type << gpio_shift),
2015 (0x1f << gpio_shift));
2016 } else {
2017 tmp = REG_READ(ah, addr);
2018 tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
2019 tmp &= ~(0x1f << gpio_shift);
2020 tmp |= (type << gpio_shift);
2021 REG_WRITE(ah, addr, tmp);
2022 }
2023}
2024
Sujithcbe61d82009-02-09 13:27:12 +05302025void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302026{
2027 u32 gpio_shift;
2028
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -07002029 BUG_ON(gpio >= ah->caps.num_gpio_pins);
Sujithf1dc5602008-10-29 10:16:30 +05302030
Sujith88c1f4f2010-06-30 14:46:31 +05302031 if (AR_DEVID_7010(ah)) {
2032 gpio_shift = gpio;
2033 REG_RMW(ah, AR7010_GPIO_OE,
2034 (AR7010_GPIO_OE_AS_INPUT << gpio_shift),
2035 (AR7010_GPIO_OE_MASK << gpio_shift));
2036 return;
2037 }
Sujithf1dc5602008-10-29 10:16:30 +05302038
Sujith88c1f4f2010-06-30 14:46:31 +05302039 gpio_shift = gpio << 1;
Sujithf1dc5602008-10-29 10:16:30 +05302040 REG_RMW(ah,
2041 AR_GPIO_OE_OUT,
2042 (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
2043 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2044}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002045EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
Sujithf1dc5602008-10-29 10:16:30 +05302046
Sujithcbe61d82009-02-09 13:27:12 +05302047u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
Sujithf1dc5602008-10-29 10:16:30 +05302048{
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302049#define MS_REG_READ(x, y) \
2050 (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
2051
Sujith2660b812009-02-09 13:27:26 +05302052 if (gpio >= ah->caps.num_gpio_pins)
Sujithf1dc5602008-10-29 10:16:30 +05302053 return 0xffffffff;
2054
Sujith88c1f4f2010-06-30 14:46:31 +05302055 if (AR_DEVID_7010(ah)) {
2056 u32 val;
2057 val = REG_READ(ah, AR7010_GPIO_IN);
2058 return (MS(val, AR7010_GPIO_IN_VAL) & AR_GPIO_BIT(gpio)) == 0;
2059 } else if (AR_SREV_9300_20_OR_LATER(ah))
Felix Fietkau783dfca2010-04-15 17:38:11 -04002060 return MS_REG_READ(AR9300, gpio) != 0;
2061 else if (AR_SREV_9271(ah))
Sujith5b5fa352010-03-17 14:25:15 +05302062 return MS_REG_READ(AR9271, gpio) != 0;
Felix Fietkaua42acef2010-09-22 12:34:54 +02002063 else if (AR_SREV_9287_11_OR_LATER(ah))
Vivek Natarajanac88b6e2009-07-23 10:59:57 +05302064 return MS_REG_READ(AR9287, gpio) != 0;
Felix Fietkaue17f83e2010-09-22 12:34:53 +02002065 else if (AR_SREV_9285_12_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302066 return MS_REG_READ(AR9285, gpio) != 0;
Felix Fietkau7a370812010-09-22 12:34:52 +02002067 else if (AR_SREV_9280_20_OR_LATER(ah))
Senthil Balasubramaniancb33c412008-12-24 18:03:58 +05302068 return MS_REG_READ(AR928X, gpio) != 0;
2069 else
2070 return MS_REG_READ(AR, gpio) != 0;
Sujithf1dc5602008-10-29 10:16:30 +05302071}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002072EXPORT_SYMBOL(ath9k_hw_gpio_get);
Sujithf1dc5602008-10-29 10:16:30 +05302073
Sujithcbe61d82009-02-09 13:27:12 +05302074void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
Sujithf1dc5602008-10-29 10:16:30 +05302075 u32 ah_signal_type)
2076{
2077 u32 gpio_shift;
2078
Sujith88c1f4f2010-06-30 14:46:31 +05302079 if (AR_DEVID_7010(ah)) {
2080 gpio_shift = gpio;
2081 REG_RMW(ah, AR7010_GPIO_OE,
2082 (AR7010_GPIO_OE_AS_OUTPUT << gpio_shift),
2083 (AR7010_GPIO_OE_MASK << gpio_shift));
2084 return;
2085 }
2086
Sujithf1dc5602008-10-29 10:16:30 +05302087 ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
Sujithf1dc5602008-10-29 10:16:30 +05302088 gpio_shift = 2 * gpio;
Sujithf1dc5602008-10-29 10:16:30 +05302089 REG_RMW(ah,
2090 AR_GPIO_OE_OUT,
2091 (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
2092 (AR_GPIO_OE_OUT_DRV << gpio_shift));
2093}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002094EXPORT_SYMBOL(ath9k_hw_cfg_output);
Sujithf1dc5602008-10-29 10:16:30 +05302095
Sujithcbe61d82009-02-09 13:27:12 +05302096void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
Sujithf1dc5602008-10-29 10:16:30 +05302097{
Sujith88c1f4f2010-06-30 14:46:31 +05302098 if (AR_DEVID_7010(ah)) {
2099 val = val ? 0 : 1;
2100 REG_RMW(ah, AR7010_GPIO_OUT, ((val&1) << gpio),
2101 AR_GPIO_BIT(gpio));
2102 return;
2103 }
2104
Sujith5b5fa352010-03-17 14:25:15 +05302105 if (AR_SREV_9271(ah))
2106 val = ~val;
2107
Sujithf1dc5602008-10-29 10:16:30 +05302108 REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
2109 AR_GPIO_BIT(gpio));
2110}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002111EXPORT_SYMBOL(ath9k_hw_set_gpio);
Sujithf1dc5602008-10-29 10:16:30 +05302112
Sujithcbe61d82009-02-09 13:27:12 +05302113u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302114{
2115 return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
2116}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002117EXPORT_SYMBOL(ath9k_hw_getdefantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302118
Sujithcbe61d82009-02-09 13:27:12 +05302119void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
Sujithf1dc5602008-10-29 10:16:30 +05302120{
2121 REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
2122}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002123EXPORT_SYMBOL(ath9k_hw_setantenna);
Sujithf1dc5602008-10-29 10:16:30 +05302124
Sujithf1dc5602008-10-29 10:16:30 +05302125/*********************/
2126/* General Operation */
2127/*********************/
2128
Sujithcbe61d82009-02-09 13:27:12 +05302129u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302130{
2131 u32 bits = REG_READ(ah, AR_RX_FILTER);
2132 u32 phybits = REG_READ(ah, AR_PHY_ERR);
2133
2134 if (phybits & AR_PHY_ERR_RADAR)
2135 bits |= ATH9K_RX_FILTER_PHYRADAR;
2136 if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
2137 bits |= ATH9K_RX_FILTER_PHYERR;
2138
2139 return bits;
2140}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002141EXPORT_SYMBOL(ath9k_hw_getrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302142
Sujithcbe61d82009-02-09 13:27:12 +05302143void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
Sujithf1dc5602008-10-29 10:16:30 +05302144{
2145 u32 phybits;
2146
Sujith7d0d0df2010-04-16 11:53:57 +05302147 ENABLE_REGWRITE_BUFFER(ah);
2148
Sujith7ea310b2009-09-03 12:08:43 +05302149 REG_WRITE(ah, AR_RX_FILTER, bits);
2150
Sujithf1dc5602008-10-29 10:16:30 +05302151 phybits = 0;
2152 if (bits & ATH9K_RX_FILTER_PHYRADAR)
2153 phybits |= AR_PHY_ERR_RADAR;
2154 if (bits & ATH9K_RX_FILTER_PHYERR)
2155 phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
2156 REG_WRITE(ah, AR_PHY_ERR, phybits);
2157
2158 if (phybits)
2159 REG_WRITE(ah, AR_RXCFG,
2160 REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
2161 else
2162 REG_WRITE(ah, AR_RXCFG,
2163 REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
Sujith7d0d0df2010-04-16 11:53:57 +05302164
2165 REGWRITE_BUFFER_FLUSH(ah);
Sujithf1dc5602008-10-29 10:16:30 +05302166}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002167EXPORT_SYMBOL(ath9k_hw_setrxfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302168
Sujithcbe61d82009-02-09 13:27:12 +05302169bool ath9k_hw_phy_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302170{
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302171 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
2172 return false;
2173
2174 ath9k_hw_init_pll(ah, NULL);
2175 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302176}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002177EXPORT_SYMBOL(ath9k_hw_phy_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302178
Sujithcbe61d82009-02-09 13:27:12 +05302179bool ath9k_hw_disable(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302180{
Luis R. Rodriguez9ecdef42009-09-09 21:10:09 -07002181 if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
Sujithf1dc5602008-10-29 10:16:30 +05302182 return false;
2183
Senthil Balasubramanian63a75b92009-09-18 15:07:03 +05302184 if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
2185 return false;
2186
2187 ath9k_hw_init_pll(ah, NULL);
2188 return true;
Sujithf1dc5602008-10-29 10:16:30 +05302189}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002190EXPORT_SYMBOL(ath9k_hw_disable);
Sujithf1dc5602008-10-29 10:16:30 +05302191
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002192void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
Sujithf1dc5602008-10-29 10:16:30 +05302193{
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002194 struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
Sujith2660b812009-02-09 13:27:26 +05302195 struct ath9k_channel *chan = ah->curchan;
Luis R. Rodriguez5f8e0772009-01-22 15:16:48 -08002196 struct ieee80211_channel *channel = chan->chan;
Sujithf1dc5602008-10-29 10:16:30 +05302197
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002198 regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
Sujithf1dc5602008-10-29 10:16:30 +05302199
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002200 ah->eep_ops->set_txpower(ah, chan,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002201 ath9k_regd_get_ctl(regulatory, chan),
Vasanthakumar Thiagarajan8fbff4b2009-05-08 17:54:51 -07002202 channel->max_antenna_gain * 2,
2203 channel->max_power * 2,
2204 min((u32) MAX_RATE_POWER,
Luis R. Rodriguez608b88c2009-08-17 18:07:23 -07002205 (u32) regulatory->power_limit));
Sujithf1dc5602008-10-29 10:16:30 +05302206}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002207EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
Sujithf1dc5602008-10-29 10:16:30 +05302208
Sujithcbe61d82009-02-09 13:27:12 +05302209void ath9k_hw_setopmode(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302210{
Sujith2660b812009-02-09 13:27:26 +05302211 ath9k_hw_set_operating_mode(ah, ah->opmode);
Sujithf1dc5602008-10-29 10:16:30 +05302212}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002213EXPORT_SYMBOL(ath9k_hw_setopmode);
Sujithf1dc5602008-10-29 10:16:30 +05302214
Sujithcbe61d82009-02-09 13:27:12 +05302215void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
Sujithf1dc5602008-10-29 10:16:30 +05302216{
2217 REG_WRITE(ah, AR_MCAST_FIL0, filter0);
2218 REG_WRITE(ah, AR_MCAST_FIL1, filter1);
2219}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002220EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
Sujithf1dc5602008-10-29 10:16:30 +05302221
Luis R. Rodriguezf2b21432009-09-10 08:50:20 -07002222void ath9k_hw_write_associd(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302223{
Luis R. Rodriguez15107182009-09-10 09:22:37 -07002224 struct ath_common *common = ath9k_hw_common(ah);
2225
2226 REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
2227 REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
2228 ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
Sujithf1dc5602008-10-29 10:16:30 +05302229}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002230EXPORT_SYMBOL(ath9k_hw_write_associd);
Sujithf1dc5602008-10-29 10:16:30 +05302231
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002232#define ATH9K_MAX_TSF_READ 10
2233
Sujithcbe61d82009-02-09 13:27:12 +05302234u64 ath9k_hw_gettsf64(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302235{
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002236 u32 tsf_lower, tsf_upper1, tsf_upper2;
2237 int i;
Sujithf1dc5602008-10-29 10:16:30 +05302238
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002239 tsf_upper1 = REG_READ(ah, AR_TSF_U32);
2240 for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
2241 tsf_lower = REG_READ(ah, AR_TSF_L32);
2242 tsf_upper2 = REG_READ(ah, AR_TSF_U32);
2243 if (tsf_upper2 == tsf_upper1)
2244 break;
2245 tsf_upper1 = tsf_upper2;
2246 }
Sujithf1dc5602008-10-29 10:16:30 +05302247
Benoit Papillault1c0fc652010-04-16 00:07:26 +02002248 WARN_ON( i == ATH9K_MAX_TSF_READ );
2249
2250 return (((u64)tsf_upper1 << 32) | tsf_lower);
Sujithf1dc5602008-10-29 10:16:30 +05302251}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002252EXPORT_SYMBOL(ath9k_hw_gettsf64);
Sujithf1dc5602008-10-29 10:16:30 +05302253
Sujithcbe61d82009-02-09 13:27:12 +05302254void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002255{
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002256 REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
Alina Friedrichsenb9a16192009-03-02 23:28:38 +01002257 REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002258}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002259EXPORT_SYMBOL(ath9k_hw_settsf64);
Alina Friedrichsen27abe062009-01-23 05:44:21 +01002260
Sujithcbe61d82009-02-09 13:27:12 +05302261void ath9k_hw_reset_tsf(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +05302262{
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002263 if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
2264 AH_TSF_WRITE_TIMEOUT))
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002265 ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
2266 "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
Gabor Juhosf9b604f2009-06-21 00:02:15 +02002267
Sujithf1dc5602008-10-29 10:16:30 +05302268 REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002269}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002270EXPORT_SYMBOL(ath9k_hw_reset_tsf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002271
Sujith54e4cec2009-08-07 09:45:09 +05302272void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002273{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002274 if (setting)
Sujith2660b812009-02-09 13:27:26 +05302275 ah->misc_mode |= AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002276 else
Sujith2660b812009-02-09 13:27:26 +05302277 ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002278}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002279EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002280
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002281void ath9k_hw_set11nmac2040(struct ath_hw *ah)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002282{
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002283 struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
Sujithf1dc5602008-10-29 10:16:30 +05302284 u32 macmode;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002285
Luis R. Rodriguez25c56ee2009-09-13 23:04:44 -07002286 if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
Sujithf1dc5602008-10-29 10:16:30 +05302287 macmode = AR_2040_JOINED_RX_CLEAR;
2288 else
2289 macmode = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002290
Sujithf1dc5602008-10-29 10:16:30 +05302291 REG_WRITE(ah, AR_2040_MODE, macmode);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07002292}
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302293
2294/* HW Generic timers configuration */
2295
2296static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
2297{
2298 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2299 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2300 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2301 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2302 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2303 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2304 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2305 {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
2306 {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
2307 {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
2308 AR_NDP2_TIMER_MODE, 0x0002},
2309 {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
2310 AR_NDP2_TIMER_MODE, 0x0004},
2311 {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
2312 AR_NDP2_TIMER_MODE, 0x0008},
2313 {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
2314 AR_NDP2_TIMER_MODE, 0x0010},
2315 {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
2316 AR_NDP2_TIMER_MODE, 0x0020},
2317 {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
2318 AR_NDP2_TIMER_MODE, 0x0040},
2319 {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
2320 AR_NDP2_TIMER_MODE, 0x0080}
2321};
2322
2323/* HW generic timer primitives */
2324
2325/* compute and clear index of rightmost 1 */
2326static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
2327{
2328 u32 b;
2329
2330 b = *mask;
2331 b &= (0-b);
2332 *mask &= ~b;
2333 b *= debruijn32;
2334 b >>= 27;
2335
2336 return timer_table->gen_timer_index[b];
2337}
2338
Vasanthakumar Thiagarajan17739122009-08-26 21:08:50 +05302339u32 ath9k_hw_gettsf32(struct ath_hw *ah)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302340{
2341 return REG_READ(ah, AR_TSF_L32);
2342}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002343EXPORT_SYMBOL(ath9k_hw_gettsf32);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302344
2345struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
2346 void (*trigger)(void *),
2347 void (*overflow)(void *),
2348 void *arg,
2349 u8 timer_index)
2350{
2351 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2352 struct ath_gen_timer *timer;
2353
2354 timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
2355
2356 if (timer == NULL) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002357 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
2358 "Failed to allocate memory"
2359 "for hw timer[%d]\n", timer_index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302360 return NULL;
2361 }
2362
2363 /* allocate a hardware generic timer slot */
2364 timer_table->timers[timer_index] = timer;
2365 timer->index = timer_index;
2366 timer->trigger = trigger;
2367 timer->overflow = overflow;
2368 timer->arg = arg;
2369
2370 return timer;
2371}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002372EXPORT_SYMBOL(ath_gen_timer_alloc);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302373
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002374void ath9k_hw_gen_timer_start(struct ath_hw *ah,
2375 struct ath_gen_timer *timer,
2376 u32 timer_next,
2377 u32 timer_period)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302378{
2379 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2380 u32 tsf;
2381
2382 BUG_ON(!timer_period);
2383
2384 set_bit(timer->index, &timer_table->timer_mask.timer_bits);
2385
2386 tsf = ath9k_hw_gettsf32(ah);
2387
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002388 ath_print(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
2389 "curent tsf %x period %x"
2390 "timer_next %x\n", tsf, timer_period, timer_next);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302391
2392 /*
2393 * Pull timer_next forward if the current TSF already passed it
2394 * because of software latency
2395 */
2396 if (timer_next < tsf)
2397 timer_next = tsf + timer_period;
2398
2399 /*
2400 * Program generic timer registers
2401 */
2402 REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
2403 timer_next);
2404 REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
2405 timer_period);
2406 REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2407 gen_tmr_configuration[timer->index].mode_mask);
2408
2409 /* Enable both trigger and thresh interrupt masks */
2410 REG_SET_BIT(ah, AR_IMR_S5,
2411 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2412 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302413}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002414EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302415
Luis R. Rodriguezcd9bf682009-09-13 02:08:34 -07002416void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302417{
2418 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2419
2420 if ((timer->index < AR_FIRST_NDP_TIMER) ||
2421 (timer->index >= ATH_MAX_GEN_TIMER)) {
2422 return;
2423 }
2424
2425 /* Clear generic timer enable bits. */
2426 REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
2427 gen_tmr_configuration[timer->index].mode_mask);
2428
2429 /* Disable both trigger and thresh interrupt masks */
2430 REG_CLR_BIT(ah, AR_IMR_S5,
2431 (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
2432 SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
2433
2434 clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302435}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002436EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302437
2438void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
2439{
2440 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2441
2442 /* free the hardware generic timer slot */
2443 timer_table->timers[timer->index] = NULL;
2444 kfree(timer);
2445}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002446EXPORT_SYMBOL(ath_gen_timer_free);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302447
2448/*
2449 * Generic Timer Interrupts handling
2450 */
2451void ath_gen_timer_isr(struct ath_hw *ah)
2452{
2453 struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
2454 struct ath_gen_timer *timer;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002455 struct ath_common *common = ath9k_hw_common(ah);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302456 u32 trigger_mask, thresh_mask, index;
2457
2458 /* get hardware generic timer interrupt status */
2459 trigger_mask = ah->intr_gen_timer_trigger;
2460 thresh_mask = ah->intr_gen_timer_thresh;
2461 trigger_mask &= timer_table->timer_mask.val;
2462 thresh_mask &= timer_table->timer_mask.val;
2463
2464 trigger_mask &= ~thresh_mask;
2465
2466 while (thresh_mask) {
2467 index = rightmost_index(timer_table, &thresh_mask);
2468 timer = timer_table->timers[index];
2469 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002470 ath_print(common, ATH_DBG_HWTIMER,
2471 "TSF overflow for Gen timer %d\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302472 timer->overflow(timer->arg);
2473 }
2474
2475 while (trigger_mask) {
2476 index = rightmost_index(timer_table, &trigger_mask);
2477 timer = timer_table->timers[index];
2478 BUG_ON(!timer);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -07002479 ath_print(common, ATH_DBG_HWTIMER,
2480 "Gen timer[%d] trigger\n", index);
Vasanthakumar Thiagarajanff155a42009-08-26 21:08:49 +05302481 timer->trigger(timer->arg);
2482 }
2483}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04002484EXPORT_SYMBOL(ath_gen_timer_isr);
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002485
Sujith05020d22010-03-17 14:25:23 +05302486/********/
2487/* HTC */
2488/********/
2489
2490void ath9k_hw_htc_resetinit(struct ath_hw *ah)
2491{
2492 ah->htc_reset_init = true;
2493}
2494EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
2495
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002496static struct {
2497 u32 version;
2498 const char * name;
2499} ath_mac_bb_names[] = {
2500 /* Devices with external radios */
2501 { AR_SREV_VERSION_5416_PCI, "5416" },
2502 { AR_SREV_VERSION_5416_PCIE, "5418" },
2503 { AR_SREV_VERSION_9100, "9100" },
2504 { AR_SREV_VERSION_9160, "9160" },
2505 /* Single-chip solutions */
2506 { AR_SREV_VERSION_9280, "9280" },
2507 { AR_SREV_VERSION_9285, "9285" },
Luis R. Rodriguez11158472009-10-27 12:59:35 -04002508 { AR_SREV_VERSION_9287, "9287" },
2509 { AR_SREV_VERSION_9271, "9271" },
Luis R. Rodriguezec839032010-04-15 17:39:20 -04002510 { AR_SREV_VERSION_9300, "9300" },
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002511};
2512
2513/* For devices with external radios */
2514static struct {
2515 u16 version;
2516 const char * name;
2517} ath_rf_names[] = {
2518 { 0, "5133" },
2519 { AR_RAD5133_SREV_MAJOR, "5133" },
2520 { AR_RAD5122_SREV_MAJOR, "5122" },
2521 { AR_RAD2133_SREV_MAJOR, "2133" },
2522 { AR_RAD2122_SREV_MAJOR, "2122" }
2523};
2524
2525/*
2526 * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
2527 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002528static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002529{
2530 int i;
2531
2532 for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
2533 if (ath_mac_bb_names[i].version == mac_bb_version) {
2534 return ath_mac_bb_names[i].name;
2535 }
2536 }
2537
2538 return "????";
2539}
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002540
2541/*
2542 * Return the RF name. "????" is returned if the RF is unknown.
2543 * Used for devices with external radios.
2544 */
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002545static const char *ath9k_hw_rf_name(u16 rf_version)
Luis R. Rodriguez2da4f012009-10-27 12:59:33 -04002546{
2547 int i;
2548
2549 for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
2550 if (ath_rf_names[i].version == rf_version) {
2551 return ath_rf_names[i].name;
2552 }
2553 }
2554
2555 return "????";
2556}
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002557
2558void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
2559{
2560 int used;
2561
2562 /* chipsets >= AR9280 are single-chip */
Felix Fietkau7a370812010-09-22 12:34:52 +02002563 if (AR_SREV_9280_20_OR_LATER(ah)) {
Luis R. Rodriguezf934c4d2009-10-27 12:59:34 -04002564 used = snprintf(hw_name, len,
2565 "Atheros AR%s Rev:%x",
2566 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2567 ah->hw_version.macRev);
2568 }
2569 else {
2570 used = snprintf(hw_name, len,
2571 "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
2572 ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
2573 ah->hw_version.macRev,
2574 ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
2575 AR_RADIO_SREV_MAJOR)),
2576 ah->hw_version.phyRev);
2577 }
2578
2579 hw_name[used] = '\0';
2580}
2581EXPORT_SYMBOL(ath9k_hw_name);